X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_InputPanel.h;h=da05247f69536ec344f5cd11a8a6e55268bf2952;hb=81c9f5cdf82909d0aebd2c491c50fa7516cc80b7;hp=847dfc7282f949755e52f316a365e3d00c7618bd;hpb=ed25fab026dbb34e7bb7f5198bf54c9c20135f3f;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_InputPanel.h b/src/HYDROGUI/HYDROGUI_InputPanel.h index 847dfc72..da05247f 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(); @@ -51,19 +52,26 @@ public: signals: void panelApply(); void panelCancel(); + void panelHelp(); protected slots: void onApply(); void onCancel(); void onHelp(); +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