Salome HOME
Exlude the user input during process events by application (Bug #325).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.h
index 7c3c829b404e9c5e45d9c110b74bb235700cf8a0..da05247f69536ec344f5cd11a8a6e55268bf2952 100644 (file)
@@ -28,7 +28,7 @@
 class QFrame;
 class QPushButton;
 class QLayout;
-class QStackedLayout;
+class QCloseEvent;
 
 class HYDROGUI_Module;
 
@@ -40,20 +40,19 @@ 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:
   void panelApply();
   void panelCancel();
+  void panelHelp();
 
 protected slots:
   void onApply();
@@ -62,15 +61,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;
-  QStackedLayout* myStackedLayout;
 };
 
 #endif