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.C < prev    next >
C/C++ Source or Header  |  2000-11-29  |  732b  |  47 lines

  1. #include "bclistbox.h"
  2. #include "bcpopuplistbox.h"
  3.  
  4. BC_PopupListText::BC_PopupListText(BC_PopupListBox *popup_listbox)
  5.  : BC_TextBox(popup_listbox->x - popup_listbox->w + BCPOPUPLISTBOX_W,
  6.      popup_listbox->y, 
  7.     popup_listbox->w - BCPOPUPLISTBOX_W, 
  8.     1,
  9.     popup_listbox->text)
  10. {
  11. public:
  12.     ~BC_PopupListText();
  13.  
  14.     int handle_event()
  15.  
  16.  
  17.  
  18.  
  19.  
  20. BC_PopupListBox::BC_PopupListBox(BC_SubWindow *parent_window,
  21.     int x, int y, int w, int h, 
  22.     ArrayList<BC_ListBoxItem*> *data,
  23.     char *text)
  24.  : BC_ListBox(x + w - BCPOPUPLISTBOX_W, y, w, h,
  25.      LISTBOX_TEXT,
  26.     data,
  27.     0,
  28.     0,
  29.     1,
  30.     0,
  31.     1,
  32.     LISTBOX_SINGLE)
  33. {
  34.     this->data = data;
  35. }
  36.  
  37. BC_PopupListBox::~BC_PopupListBox()
  38. {
  39.     delete listbox;
  40. }
  41.  
  42. int BC_PopupListBox::initialize()
  43. {
  44.     BC_ListBox::initialize();
  45.     
  46. }
  47.