home *** CD-ROM | disk | FTP | other *** search
/ Geek 6 / Geek-006.iso / linux / video / xmovie-1.5.3.tar.gz / xmovie-1.5.3.tar / xmovie-1.5.3 / guicast / bclistbox.inc < prev    next >
Text File  |  2000-11-29  |  419b  |  23 lines

  1. #ifndef BCLISTBOX_INC
  2. #define BCLISTBOX_INC
  3.  
  4. // Selection mode
  5. #define LISTBOX_SINGLE   0      // Single selection
  6. #define LISTBOX_MULTIPLE 1      // Multiple selections
  7.  
  8. // Display format
  9. #define LISTBOX_TEXT     0
  10. #define LISTBOX_ICONS    1
  11.  
  12. // Icon position
  13. #define ICON_LEFT        0
  14. #define ICON_TOP         1
  15.  
  16. #define LISTBOX_MARGIN   4
  17. #define ICON_MARGIN      1
  18.  
  19. class BC_ListBoxItem;
  20. class BC_ListBox;
  21.  
  22. #endif
  23.