00001 00002 00003 00004 #ifndef MENUBAR_H 00005 #define MENUBAR_H 00006 00007 #include "PopupMenu.h" 00008 00009 namespace wkgl { 00010 00018 class MenuBar : public Menu 00019 { 00020 protected: 00021 Window* owner; 00022 00023 public: 00027 MenuBar( Window* owner ); 00028 00032 virtual BOOL create( MenuItem *parent ); 00033 00036 virtual BOOL callBack(Component* com, UINT message, 00037 WPARAM wParam, LPARAM lParam); 00038 }; 00039 } 00040 #endif
1.2.18