00001 #ifndef __QMDI_HOST_H__ 00002 #define __QMDI_HOST_H__ 00003 00004 #include "actiongrouplist.h" 00005 00014 // $Id: qmdihost.h 145 2007-04-21 19:39:08Z elcuco $ 00015 00016 class QMainWindow; 00017 class qmdiClient; 00018 00019 class qmdiHost 00020 { 00021 public: 00022 qmdiHost(); 00023 virtual ~qmdiHost(); 00024 00025 qmdiActionGroupList menus; 00026 qmdiActionGroupList toolbars; 00027 00028 void updateGUI( QMainWindow *window = NULL ); 00029 void mergeClient( qmdiClient *client ); 00030 void unmergeClient( qmdiClient *client ); 00031 00032 QList<QToolBar*>* toolBarList; 00033 }; 00034 00035 #endif // __QMDI_CLIENT_H__