Salome HOME
correct merge BR_hydro_v1_0_3 on BR_quadtree
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operation.h
index 5388d34b5b95aea64561291efcbe5a3acf025ed0..44a77d875090dd480074c1a4d1835cd2ca30e223 100644 (file)
 
 class HYDROGUI_Module;
 class HYDROGUI_InputPanel;
+class HYDROGUI_Shape;
+
 class SUIT_SelectionMgr;
+class OCCViewer_ViewManager;
+
 class Handle_HYDROData_Document;
 class Handle_HYDROData_Object;
 
@@ -49,6 +53,9 @@ public:
   SUIT_SelectionMgr*                  selectionMgr() const;
   HYDROGUI_Module*                    module() const;
 
+  int                                 getPreviewZLayer() const;
+  virtual void                        updatePreviewZLayer( int theLayer );
+
 signals:
   void                                helpContextModule( const QString&,
                                                          const QString&,
@@ -58,12 +65,14 @@ protected:
   virtual void                        startOperation();
   virtual void                        abortOperation();
   virtual void                        commitOperation();
+  virtual void                        stopOperation();
   virtual void                        setDialogActive( const bool );
 
   virtual HYDROGUI_InputPanel*        createInputPanel() const;
   virtual void                        closeInputPanel();
 
-  virtual bool                        processApply( int& theUpdateFlags, QString& theErrorMsg );
+  virtual bool                        processApply( int& theUpdateFlags, QString& theErrorMsg,
+                                                    QStringList& theBrowseObjectsEntries );
   virtual void                        processCancel();
 
   void                                startDocOperation();
@@ -77,6 +86,8 @@ protected:
   void                                printErrorMessage( const QString& theErrorMsg );
   void                                setPrintErrorMessage( const bool theIsPrint );
 
+  void                                browseObjects( const QStringList& theBrowseObjectsEntries );
+
 protected slots:
 
   virtual void                        onApply();
@@ -89,12 +100,20 @@ protected:
   QString                             getHelpFile() const;
   QString                             getHelpContext() const;
 
+  virtual void                        setPreviewZLayer( int theLayer );
+  virtual HYDROGUI_Shape*             getPreviewShape() const;
+  OCCViewer_ViewManager*              getPreviewManager();
+  void                                setPreviewManager( OCCViewer_ViewManager* theManager );
+
 private:
 
   HYDROGUI_Module*                    myModule;
   HYDROGUI_InputPanel*                myPanel;
+  OCCViewer_ViewManager*              myPreviewManager;
   QString                             myName;
   bool                                myIsPrintErrorMessage;
+  bool                                myIsTransactionOpened;
+  int                                 myPreviewZLayer;
 };
 
 #endif