Defined Types



MOViewListViewDropOperation

Enumeration for types of drop operations supported by MOViewListView.
typedef enum { MOViewListViewDropOnItem,
    MOViewListViewDropBeforeItem } MOViewListViewDropOperation;

Enumeration for types of drop operations supported by MOViewListView.

Constants
MOViewListViewDropOnItem
Drop operation constant for dropping something "onto" a label.
MOViewListViewDropBeforeItem
Drop operation constant for dropping something "between" two views (ie dropping a new item/subview into a view list view).

MOViewListViewLabelBarAppearance

Constants for setting MOViewListView label bar appearance.
See Also:
MOViewListViewLabelBarAppearance
typedef enum {
    MOViewListViewDefaultLabelBars = 0,
    MOViewListViewDarkGrayLabelBars = 1,
    MOViewListViewLightGrayLabelBars = 2,
    MOViewListViewProjectBuilderLabelBars = 3,
    MOViewListViewFinderLabelBars = 4,
} MOViewListViewLabelBarAppearance;

MOViewListView provides an API for switching between several predefined label bar appearances. These constants specify the available presets.

Constants
MOViewListViewDefaultLabelBars
The default scheme, currently the same as MOViewListViewLightGrayLabelBars.
MOViewListViewDarkGrayLabelBars
Dark gray label bars, white text, white disclosure controls with shadows.
MOViewListViewLightGrayLabelBars
Light gray label bars, black text, dark gray disclosure controls with no shadow.
MOViewListViewProjectBuilderLabelBars
Slightly corduroy light gray bars with a darker border, black text, drak gray disclosure controls with no shadow.
MOViewListViewFinderLabelBars
No label bars (same as background) but a single black line above each label, black text, drak gray disclosure controls with no shadow.

(Last Updated 3/20/2005)