X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_InputPanel.h;h=81a6e5decb90f9675236b32b4c880364e9bb170d;hb=5cae7e874afd2fc1b6f61023e8ebd33a933db3c7;hp=b05302e8ae6eaf6fbe9a7092669671de05ba7cd8;hpb=ea51c1575cfdc7e3ad0b8cc1db55d9d83626b12d;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_InputPanel.h b/src/HYDROGUI/HYDROGUI_InputPanel.h index b05302e8..81a6e5de 100644 --- a/src/HYDROGUI/HYDROGUI_InputPanel.h +++ b/src/HYDROGUI/HYDROGUI_InputPanel.h @@ -27,6 +27,8 @@ class QFrame; class QPushButton; +class QLayout; +class QCloseEvent; class HYDROGUI_Module; @@ -38,13 +40,12 @@ class HYDROGUI_InputPanel : public QDockWidget Q_OBJECT public: - HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QString& theTitle ); + HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QString& theTitle, bool doInitLayout = true ); virtual ~HYDROGUI_InputPanel(); - void addWidget( const QString& theLabel, QWidget* theWidget ); - void addWidget( QWidget* theWidget, const int theRow, const int theColumn ); - void addSeparator(); - void setRowStretch(); + void addWidget( QWidget* theWidget, int theStretch = 0 ); + void addLayout( QLayout* theLayout ); + void addStretch(); HYDROGUI_Module* module() const; @@ -57,6 +58,10 @@ protected slots: void onCancel(); void onHelp(); +protected: + QFrame* mainFrame() const; + virtual void closeEvent ( QCloseEvent * event ); + private: HYDROGUI_Module* myModule; QFrame* myMainFrame;