Salome HOME
refs #430: incorrect coordinates in dump polyline
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.h
index 3321f56d11df239cc6ccaf041394e97d977b4563..da05247f69536ec344f5cd11a8a6e55268bf2952 100644 (file)
@@ -28,6 +28,7 @@
 class QFrame;
 class QPushButton;
 class QLayout;
+class QCloseEvent;
 
 class HYDROGUI_Module;
 
@@ -39,10 +40,10 @@ 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();
 
@@ -51,6 +52,7 @@ public:
 signals:
   void panelApply();
   void panelCancel();
+  void panelHelp();
 
 protected slots:
   void onApply();
@@ -59,14 +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;
 };
 
 #endif