r1009: Move the dependencies to newer package names
[cinelerra_cv/mob.git] / guicast / bclistbox.inc
blobe7e25b792af1d3546653531e8e4f9b264d6bec71
1 #ifndef BCLISTBOX_INC
2 #define BCLISTBOX_INC
4 // Selection mode
5 #define LISTBOX_SINGLE   0      // Single selection
6 #define LISTBOX_MULTIPLE 1      // Multiple selections
8 // Display format
9 #define LISTBOX_TEXT     0
10 #define LISTBOX_ICONS    1
12 // Icon position
13 #define ICON_LEFT        0
14 #define ICON_TOP         1
16 // White space around text
17 #define LISTBOX_MARGIN   4
18 // Distance from sides of window
19 #define LISTBOX_BORDER   2
20 #define ICON_MARGIN      1
21 #define LISTBOX_INDENT   10
23 // Justification for popup listbox
24 #define LISTBOX_LEFT     0
25 #define LISTBOX_RIGHT    1
27 class BC_ListBoxItem;
28 class BC_ListBox;
30 #endif