Salome HOME
Selector implementation for OCC viewer.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.h
index 319086fe7ccbf27bd53a8ae86d655e9c66320ae3..9d16ad0f225682be2e4ae113ef9a843ec161133a 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 HYDROGUI_Module;
 
 /**\class HYDROGUI_Dialog
  *\brief The base class representing base input panel for all HYDROGUI panels
@@ -41,9 +42,9 @@ public:
   HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QString& theTitle );
   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,9 +53,12 @@ signals:
   void panelCancel();
 
 protected slots:
-  void OnApply();
-  void OnCancel();
-  void OnHelp();
+  void onApply();
+  void onCancel();
+  void onHelp();
+
+protected:
+  QFrame*         mainFrame() const;
 
 private:
   HYDROGUI_Module* myModule;