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 / bcpopuplistbox.h < prev    next >
C/C++ Source or Header  |  2000-11-29  |  584b  |  36 lines

  1. #ifndef BCPOPUPLISTBOX_H
  2. #define BCPOPUPLISTBOX_H
  3.  
  4. #include "bclistbox.h"
  5. #include "bctextbox.h"
  6.  
  7. class BC_PopupListText : public BC_TextBox
  8. {
  9. public:
  10.     BC_PopupListText(BC_PopupListBox *popup_listbox);
  11.     ~BC_PopupListText();
  12.     
  13.     int handle_event();
  14.     
  15.     BC_PopupListBox *popup_listbox;
  16. };
  17.  
  18. class BC_PopupListBox : public BC_ListBox
  19. {
  20. public:
  21.     BC_PopupListBox(int x, int y, int w, int h, 
  22.         ArrayList<BC_ListBoxItem*> *data,
  23.         char *text);
  24.     ~BC_PopupListBox();
  25.     
  26.     int initialize();
  27.  
  28. private:
  29.     ArrayList<BC_ListBoxItem*> *data;
  30.  
  31.     BC_Listbox *listbox;
  32.     BC_PopupListText *textbox;
  33. };
  34.  
  35. #endif
  36.