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 / bcsubwindow.h < prev    next >
C/C++ Source or Header  |  2000-11-29  |  413b  |  31 lines

  1. #ifndef BCSUBWINDOW_H
  2. #define BCSUBWINDOW_H
  3.  
  4. #include "arraylist.h"
  5. #include "bcwindowbase.h"
  6.  
  7. class BC_SubWindow : public BC_WindowBase
  8. {
  9. public:
  10.     BC_SubWindow(int x, int y, int w, int h, int bg_color = -1);
  11.     virtual ~BC_SubWindow();
  12.  
  13.     virtual int initialize();
  14. private:
  15. };
  16.  
  17. class BC_SubWindowList : public ArrayList<BC_WindowBase*>
  18. {
  19. public:
  20.     BC_SubWindowList();
  21.     ~BC_SubWindowList();
  22.  
  23.  
  24. private:
  25.     
  26. };
  27.  
  28.  
  29.  
  30. #endif
  31.