00001 #ifndef BCPOPUP_H
00002 #define BCPOPUP_H
00003
00004 #include "arraylist.h"
00005 #include "bcpixmap.inc"
00006 #include "bcwindowbase.h"
00007
00008 class BC_Popup : public BC_WindowBase
00009 {
00010 public:
00011 BC_Popup(BC_WindowBase *parent_window,
00012 int x,
00013 int y,
00014 int w,
00015 int h,
00016 int bg_color,
00017 int hide = 0,
00018 BC_Pixmap *bg_pixmap = 0);
00019 virtual ~BC_Popup();
00020
00021 int initialize() { return 0; };
00022 private:
00023 };
00024
00025 class BC_FullScreen : public BC_WindowBase
00026 {
00027 public:
00028 BC_FullScreen(BC_WindowBase *parent_window,
00029 int w,
00030 int h,
00031 int bg_color,
00032 int vm_scale,
00033 int hide = 0,
00034 BC_Pixmap *bg_pixmap = 0);
00035 virtual ~BC_FullScreen();
00036 };
00037
00038 #endif