X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_InputPanel.h;h=00c2c7109656185ac21be5a3ae62ea5a065b6ad3;hb=de7cf9bb0a7a41d6487013c87f4a54d0664cd303;hp=3321f56d11df239cc6ccaf041394e97d977b4563;hpb=6a7b1d68094c60ceebc46449530a3f12fe16b080;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_InputPanel.h b/src/HYDROGUI/HYDROGUI_InputPanel.h index 3321f56d..00c2c710 100644 --- a/src/HYDROGUI/HYDROGUI_InputPanel.h +++ b/src/HYDROGUI/HYDROGUI_InputPanel.h @@ -28,6 +28,7 @@ class QFrame; class QPushButton; class QLayout; +class QCloseEvent; class HYDROGUI_Module; @@ -39,10 +40,10 @@ 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( QWidget* theWidget ); + void addWidget( QWidget* theWidget, int theStretch = 0 ); void addLayout( QLayout* theLayout ); void addStretch(); @@ -59,14 +60,17 @@ protected slots: protected: QFrame* mainFrame() const; + QFrame* buttonFrame() const; + virtual void closeEvent ( QCloseEvent * event ); + + QPushButton* myCancel; + QPushButton* myHelp; private: HYDROGUI_Module* myModule; QFrame* myMainFrame; QFrame* myBtnFrame; QPushButton* myApply; - QPushButton* myCancel; - QPushButton* myHelp; }; #endif