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 / bcpopup.h < prev    next >
C/C++ Source or Header  |  2000-11-29  |  394b  |  27 lines

  1. #ifndef BCPOPUP_H
  2. #define BCPOPUP_H
  3.  
  4. #include "arraylist.h"
  5. #include "bcpixmap.inc"
  6. #include "bcwindowbase.h"
  7.  
  8. class BC_Popup : public BC_WindowBase
  9. {
  10. public:
  11.     BC_Popup(BC_WindowBase *parent_window, 
  12.                 int x, 
  13.                 int y, 
  14.                 int w, 
  15.                 int h, 
  16.                 int bg_color, 
  17.                 int hide = 0, 
  18.                 BC_Pixmap *bg_pixmap = 0);
  19.     virtual ~BC_Popup();
  20.  
  21.     int initialize() { return 0; };
  22. private:
  23. };
  24.  
  25.  
  26. #endif
  27.