Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / guicast / bclistbox.inc
blob68ccc9bc87b6620c77df3763241370206cf2f0aa
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
32 //      Local Variables:
33 //      mode: C++
34 //      c-file-style: "linux"
35 //      End: