X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_InputPanel.h;h=00c2c7109656185ac21be5a3ae62ea5a065b6ad3;hb=de7cf9bb0a7a41d6487013c87f4a54d0664cd303;hp=319086fe7ccbf27bd53a8ae86d655e9c66320ae3;hpb=d6aeef5b61d85b44493cd5d93ed9870cc513e68f;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_InputPanel.h b/src/HYDROGUI/HYDROGUI_InputPanel.h index 319086fe..00c2c710 100644 --- a/src/HYDROGUI/HYDROGUI_InputPanel.h +++ b/src/HYDROGUI/HYDROGUI_InputPanel.h @@ -23,12 +23,14 @@ #ifndef HYDROGUI_INPUTPANEL_H #define HYDROGUI_INPUTPANEL_H -#include "HYDROGUI.h" #include -class HYDROGUI_Module; class QFrame; class QPushButton; +class QLayout; +class QCloseEvent; + +class HYDROGUI_Module; /**\class HYDROGUI_Dialog *\brief The base class representing base input panel for all HYDROGUI panels @@ -38,12 +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 addSeparator(); - void setRowStretch(); + void addWidget( QWidget* theWidget, int theStretch = 0 ); + void addLayout( QLayout* theLayout ); + void addStretch(); HYDROGUI_Module* module() const; @@ -52,17 +54,23 @@ signals: void panelCancel(); protected slots: - void OnApply(); - void OnCancel(); - void OnHelp(); + 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