Salome HOME
HYDROGUI_Wizard has been refactored and now uses QStackedWidget instead of QWizard.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operation.h
index 2f983751fbdf4ea08f7acf1e879ac48e1293e7b4..5bce481fe919790f66e62c27722201598e02c520 100644 (file)
@@ -50,11 +50,19 @@ protected:
   virtual void startOperation();
   virtual void abortOperation();
   virtual void commitOperation();
+  virtual void setDialogActive( const bool );
 
-  virtual HYDROGUI_InputPanel* createInputPanel() const = 0;
+  virtual HYDROGUI_InputPanel* createInputPanel() const;
+  virtual void closeInputPanel();
+
+  virtual bool processApply( int& theUpdateFlags, QString& theErrorMsg );
+  virtual void processCancel();
+
+  void startDocOperation();
+  void abortDocOperation();
+  void commitDocOperation();
 
   Handle_HYDROData_Document doc() const;
-  Handle_HYDROData_Object FindObjectByName( const QString& theName, int theKind ) const;
 
 protected slots:
   virtual void onApply();