X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_InputPanel.h;h=81a6e5decb90f9675236b32b4c880364e9bb170d;hb=5cae7e874afd2fc1b6f61023e8ebd33a933db3c7;hp=7c3c829b404e9c5e45d9c110b74bb235700cf8a0;hpb=a502bc91af765db8df39ed99c321af63631ec2c4;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_InputPanel.h b/src/HYDROGUI/HYDROGUI_InputPanel.h index 7c3c829b..81a6e5de 100644 --- a/src/HYDROGUI/HYDROGUI_InputPanel.h +++ b/src/HYDROGUI/HYDROGUI_InputPanel.h @@ -28,7 +28,7 @@ class QFrame; class QPushButton; class QLayout; -class QStackedLayout; +class QCloseEvent; class HYDROGUI_Module; @@ -40,15 +40,13 @@ 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(); - void addToStackedLayout( QWidget* ); - void activateWidget( QWidget* ); HYDROGUI_Module* module() const; signals: @@ -62,6 +60,7 @@ protected slots: protected: QFrame* mainFrame() const; + virtual void closeEvent ( QCloseEvent * event ); private: HYDROGUI_Module* myModule; @@ -70,7 +69,6 @@ private: QPushButton* myApply; QPushButton* myCancel; QPushButton* myHelp; - QStackedLayout* myStackedLayout; }; #endif