Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / XGUI / XGUI_ViewPort.h
index cd79d564eb9ac39830d2b60a6fd2581d307e7a21..5d73031a1605825dceac5624a8f84ba057fd6f1a 100644 (file)
@@ -1,4 +1,3 @@
-
 #ifndef XGUI_ViewPort_H
 #define XGUI_ViewPort_H
 
 
 class XGUI_ViewWindow;
 
-class XGUI_ViewPort : public QWidget
+class XGUI_ViewPort: public QWidget
 {
-    Q_OBJECT
+Q_OBJECT
 public:
-    XGUI_ViewPort(XGUI_ViewWindow* theParent, 
-                  const Handle(V3d_Viewer)& theViewer, 
-                  V3d_TypeOfView theType = V3d_ORTHOGRAPHIC);
-    ~XGUI_ViewPort();
-
-    virtual QPaintEngine* paintEngine() const { return 0; }
-
-    QImage dumpView(QRect theRect = QRect(), bool toUpdate = true);
+  XGUI_ViewPort(XGUI_ViewWindow* theParent, const Handle(V3d_Viewer)& theViewer,
+                V3d_TypeOfView theType = V3d_ORTHOGRAPHIC);
+  ~XGUI_ViewPort();
+
+  virtual QPaintEngine* paintEngine() const
+  {
+    return 0;
+  }
+
+  QImage dumpView(QRect theRect = QRect(), bool toUpdate = true);
+
+  Handle(V3d_View) getView() const
+  {
+    return activeView();
+  }
+
+  void startRotation(int x, int y, int theRotationPointType, const gp_Pnt& theSelectedPoint);
+  void rotate(int, int, int, const gp_Pnt&);
+  void endRotation();
+
+  // TRANSFORMATIONS
+  void pan(int dx, int dy);
+  void setCenter(int x, int y);
+  void fitRect(const QRect& rect);
+  void startZoomAtPoint(int x, int y);
+  void zoom(int x0, int y0, int x, int y);
+    void fitAll(bool theKeepScale = false, bool theWithZ = true, bool theUpd = true);
+
+  void setAdvancedZoomingEnabled(const bool theState)
+  {
+    myIsAdvancedZoomingEnabled = theState;
+  }
+  bool isAdvancedZoomingEnabled() const
+  {
+    return myIsAdvancedZoomingEnabled;
+  }
+
+  XGUI_ViewBackground background() const
+  {
+    return myBackground;
+  }
+
+  void setBackground(const XGUI_ViewBackground& bgData);
+
+  void syncronizeWith( const XGUI_ViewPort* ref );
 
-    Handle(V3d_View) getView() const { return activeView(); }
+signals:
+  void vpChangeBackground(const XGUI_ViewBackground&);
+  void vpClosed();
+  void vpMapped();
+  void vpTransformed();
+  void vpUpdated();
 
-    void startRotation( int x, int y, int theRotationPointType, const gp_Pnt& theSelectedPoint );
-    void rotate( int, int, int, const gp_Pnt& );
-    void endRotation();
+protected:
+  virtual void paintEvent(QPaintEvent*);
+  virtual void resizeEvent(QResizeEvent*);
 
-    // TRANSFORMATIONS
-    void pan( int dx, int dy );
-    void setCenter( int x, int y );
-    void fitRect( const QRect& rect );
-    void startZoomAtPoint( int x, int y );
-    void zoom( int x0, int y0, int x, int y );
+private:
+  Handle(V3d_View) activeView() const
+  {
+    return myActiveView;
+  }
 
-    void setAdvancedZoomingEnabled( const bool theState ) { myIsAdvancedZoomingEnabled = theState; }
-    bool isAdvancedZoomingEnabled() const { return myIsAdvancedZoomingEnabled; }
+  bool mapView(const Handle(V3d_View)& theView);
+  bool setWindow(const Handle(V3d_View)& theView);
+  bool mapped(const Handle(V3d_View)& theView) const;
+  void updateBackground();
+  void attachWindow(const Handle(V3d_View)& theView, const Handle(Aspect_Window)& theWnd);
 
-    XGUI_ViewBackground background() const { return myBackground; }
-    void setBackground( const XGUI_ViewBackground& bgData );
+  Handle(V3d_View) myOrthoView;Handle(V3d_View) myPerspView;Handle(V3d_View) myActiveView;
 
-signals:
-    void vpChangeBackground( const XGUI_ViewBackground& );
-    void vpClosed();
-    void vpMapped();
-    void vpTransformed( );
-    void vpUpdated();
+  Handle(Aspect_Window) myWindow;
 
-protected:
-    virtual void          paintEvent( QPaintEvent* );
-    virtual void          resizeEvent( QResizeEvent* );
+  bool myPaintersRedrawing;
+  bool myIsAdvancedZoomingEnabled;
 
+  double myScale;
 
-private:
-    Handle(V3d_View)      activeView() const { return myActiveView; }
-
-    bool mapView( const Handle(V3d_View)& theView);
-    bool setWindow( const Handle(V3d_View)& theView);
-    bool mapped( const Handle(V3d_View)& theView) const;
-    void updateBackground();
-    void attachWindow( const Handle(V3d_View)& theView, const Handle(Aspect_Window)& theWnd);
-
-
-    Handle(V3d_View) myOrthoView;
-    Handle(V3d_View) myPerspView;
-    Handle(V3d_View) myActiveView;
-
-    Handle(Aspect_Window) myWindow;
-  
-    bool myPaintersRedrawing;
-    bool myIsAdvancedZoomingEnabled;
-  
-    double myScale;
-  
-    XGUI_ViewBackground myBackground;
-    int                 myBgImgHeight;
-    int                 myBgImgWidth;
+  XGUI_ViewBackground myBackground;
+  int myBgImgHeight;
+  int myBgImgWidth;
 };
 
-
-#endif
\ No newline at end of file
+#endif