Salome HOME
Fix for the bug #42: point C is not activated, but point C is shown in preview in...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.h
index 24603ea42393a7f0054fcbb20654a1cac6c5ea60..00c2c7109656185ac21be5a3ae62ea5a065b6ad3 100644 (file)
@@ -27,6 +27,8 @@
 
 class QFrame;
 class QPushButton;
+class QLayout;
+class QCloseEvent;
 
 class HYDROGUI_Module;
 
@@ -38,13 +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 addWidget( QWidget* theWidget, const int theRow, const int theColumn );
-  void addSeparator();
-  void setRowStretch();
+  void addWidget( QWidget* theWidget, int theStretch = 0 );
+  void addLayout( QLayout* theLayout );
+  void addStretch();
 
   HYDROGUI_Module* module() const;
 
@@ -53,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