00001 #ifndef IGUANA_STUDIO_IG_QTOOL_BOX_SITE_H 00002 # define IGUANA_STUDIO_IG_QTOOL_BOX_SITE_H 00003 00004 //<<<<<< INCLUDES >>>>>> 00005 00006 # include "Iguana/Studio/interface/config.h" 00007 # include "Iguana/Studio/interface/IgQtSiteStack.h" 00008 # include <string> 00009 00010 //<<<<<< PUBLIC DEFINES >>>>>> 00011 //<<<<<< PUBLIC CONSTANTS >>>>>> 00012 //<<<<<< PUBLIC TYPES >>>>>> 00013 00014 class QWidget; 00015 class QToolBox; 00016 class IgState; 00017 00018 //<<<<<< PUBLIC VARIABLES >>>>>> 00019 //<<<<<< PUBLIC FUNCTIONS >>>>>> 00020 //<<<<<< CLASS DECLARATIONS >>>>>> 00021 00022 class IGUANA_STUDIO_API IgQToolBoxSite : public IgQtSiteStack 00023 { 00024 public: 00025 IgQToolBoxSite (IgState *state, IgQtSite *parent); 00026 00027 // implicit copy constructor 00028 // implicit assignment operator 00029 // implicit destructor 00030 static const char * catalogLabel (void); 00031 IgQtSite *hostWithName (const std::string &name); 00032 00033 protected: 00034 virtual QWidget * self (void); 00035 virtual QWidget * host (void); 00036 virtual void host (QWidget *child); 00037 00038 private: 00039 QToolBox * m_widget; 00040 std::string m_currentName; 00041 }; 00042 00043 //<<<<<< INLINE PUBLIC FUNCTIONS >>>>>> 00044 //<<<<<< INLINE MEMBER FUNCTIONS >>>>>> 00045 00046 #endif // IGUANA_STUDIO_IG_QTOOL_BOX_SITE_H