Salome HOME
Fix for the bug #255: VTK viewer is not updated after modification of objects.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.h
index 319086fe7ccbf27bd53a8ae86d655e9c66320ae3..da05247f69536ec344f5cd11a8a6e55268bf2952 100644 (file)
 #ifndef HYDROGUI_INPUTPANEL_H
 #define HYDROGUI_INPUTPANEL_H
 
-#include "HYDROGUI.h"
 #include <QDockWidget>
 
-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,31 +40,38 @@ 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;
 
 signals:
   void panelApply();
   void panelCancel();
+  void panelHelp();
 
 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