mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40:49 +03:00
0023776: Redesign of MFC samples after V2d viewer removing
This commit is contained in:
@@ -14,7 +14,8 @@
|
||||
#include "Resource2d/RectangularGrid.h"
|
||||
#include "Resource2d/CircularGrid.h"
|
||||
|
||||
enum CurrentAction2d {
|
||||
enum CurrentAction2d
|
||||
{
|
||||
CurAction2d_Nothing,
|
||||
CurAction2d_DynamicZooming,
|
||||
CurAction2d_WindowZooming,
|
||||
@@ -23,110 +24,126 @@ enum CurrentAction2d {
|
||||
};
|
||||
|
||||
class AFX_EXT_CLASS OCC_2dView : public OCC_BaseView
|
||||
{
|
||||
DECLARE_DYNCREATE(OCC_2dView)
|
||||
public:
|
||||
OCC_2dView();
|
||||
virtual ~OCC_2dView();
|
||||
{
|
||||
DECLARE_DYNCREATE(OCC_2dView)
|
||||
|
||||
public:
|
||||
|
||||
OCC_2dView();
|
||||
|
||||
virtual ~OCC_2dView();
|
||||
|
||||
OCC_2dDoc* GetDocument();
|
||||
|
||||
Handle(V3d_View)& GetV2dView() { return myV2dView; }
|
||||
|
||||
void FitAll();
|
||||
|
||||
CDocument* GetDocument();
|
||||
Handle_V2d_View& GetV2dView() {return myV2dView;};
|
||||
void FitAll();
|
||||
// Overrides
|
||||
// ClassWizard generated virtual function overrides
|
||||
//{{AFX_VIRTUAL(OCC_2dView)
|
||||
public:
|
||||
virtual void OnDraw(CDC* pDC); // overridden to draw this view
|
||||
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
||||
protected:
|
||||
virtual void OnInitialUpdate(); // called first time after construct
|
||||
// ClassWizard generated virtual function overrides
|
||||
//{{AFX_VIRTUAL(OCC_2dView)
|
||||
public:
|
||||
virtual void OnDraw(CDC* pDC); // overridden to draw this view
|
||||
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
||||
protected:
|
||||
virtual void OnInitialUpdate(); // called first time after construct
|
||||
//}}AFX_VIRTUAL
|
||||
|
||||
#ifdef _DEBUG
|
||||
virtual void AssertValid() const;
|
||||
virtual void Dump(CDumpContext& dc) const;
|
||||
virtual void AssertValid() const;
|
||||
virtual void Dump(CDumpContext& dc) const;
|
||||
#endif
|
||||
|
||||
protected:
|
||||
|
||||
// Generated message map functions
|
||||
protected:
|
||||
//{{AFX_MSG(OCC_2dView)
|
||||
// NOTE - the ClassWizard will add and remove member functions here.
|
||||
// DO NOT EDIT what you see in these blocks of generated code !
|
||||
afx_msg void OnFileExportImage();
|
||||
afx_msg void OnBUTTONGridRectLines();
|
||||
afx_msg void OnBUTTONGridRectPoints();
|
||||
afx_msg void OnBUTTONGridCircLines();
|
||||
afx_msg void OnBUTTONGridCircPoints();
|
||||
afx_msg void OnBUTTONGridValues();
|
||||
afx_msg void OnUpdateBUTTONGridValues(CCmdUI* pCmdUI);
|
||||
afx_msg void OnBUTTONGridCancel();
|
||||
afx_msg void OnUpdateBUTTONGridCancel(CCmdUI* pCmdUI);
|
||||
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
|
||||
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
|
||||
afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
|
||||
afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
|
||||
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
|
||||
afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
|
||||
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
|
||||
afx_msg void OnSize(UINT nType, int cx, int cy);
|
||||
afx_msg void OnBUTTONFitAll();
|
||||
afx_msg void OnBUTTONGlobPanning();
|
||||
afx_msg void OnBUTTONPanning();
|
||||
afx_msg void OnBUTTONZoomProg();
|
||||
afx_msg void OnBUTTONZoomWin();
|
||||
afx_msg void OnUpdateBUTTON2DGlobPanning(CCmdUI* pCmdUI);
|
||||
afx_msg void OnUpdateBUTTON2DPanning(CCmdUI* pCmdUI);
|
||||
afx_msg void OnUpdateBUTTON2DZoomProg(CCmdUI* pCmdUI);
|
||||
afx_msg void OnUpdateBUTTON2DZoomWin(CCmdUI* pCmdUI);
|
||||
afx_msg void OnChangeBackground();
|
||||
//}}AFX_MSG
|
||||
DECLARE_MESSAGE_MAP()
|
||||
//{{AFX_MSG(OCC_2dView)
|
||||
// NOTE - the ClassWizard will add and remove member functions here.
|
||||
// DO NOT EDIT what you see in these blocks of generated code !
|
||||
afx_msg void OnFileExportImage();
|
||||
afx_msg void OnBUTTONGridRectLines();
|
||||
afx_msg void OnBUTTONGridRectPoints();
|
||||
afx_msg void OnBUTTONGridCircLines();
|
||||
afx_msg void OnBUTTONGridCircPoints();
|
||||
afx_msg void OnBUTTONGridValues();
|
||||
afx_msg void OnUpdateBUTTONGridValues(CCmdUI* pCmdUI);
|
||||
afx_msg void OnBUTTONGridCancel();
|
||||
afx_msg void OnUpdateBUTTONGridCancel(CCmdUI* pCmdUI);
|
||||
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
|
||||
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
|
||||
afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
|
||||
afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
|
||||
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
|
||||
afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
|
||||
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
|
||||
afx_msg void OnSize(UINT nType, int cx, int cy);
|
||||
afx_msg void OnBUTTONFitAll();
|
||||
afx_msg void OnBUTTONGlobPanning();
|
||||
afx_msg void OnBUTTONPanning();
|
||||
afx_msg void OnBUTTONZoomProg();
|
||||
afx_msg void OnBUTTONZoomWin();
|
||||
afx_msg void OnUpdateBUTTON2DGlobPanning(CCmdUI* pCmdUI);
|
||||
afx_msg void OnUpdateBUTTON2DPanning(CCmdUI* pCmdUI);
|
||||
afx_msg void OnUpdateBUTTON2DZoomProg(CCmdUI* pCmdUI);
|
||||
afx_msg void OnUpdateBUTTON2DZoomWin(CCmdUI* pCmdUI);
|
||||
afx_msg void OnChangeBackground();
|
||||
//}}AFX_MSG
|
||||
DECLARE_MESSAGE_MAP()
|
||||
|
||||
protected:
|
||||
CurrentAction2d myCurrentMode;
|
||||
Standard_Integer myXmin;
|
||||
Standard_Integer myYmin;
|
||||
Standard_Integer myXmax;
|
||||
Standard_Integer myYmax;
|
||||
Quantity_Factor myCurZoom;
|
||||
|
||||
enum LineStyle { Solid, Dot, ShortDash, LongDash, Default };
|
||||
CPen* m_Pen;
|
||||
virtual void DrawRectangle2D (const Standard_Integer MinX ,
|
||||
const Standard_Integer MinY ,
|
||||
const Standard_Integer MaxX ,
|
||||
const Standard_Integer MaxY ,
|
||||
const Standard_Boolean Draw ,
|
||||
const LineStyle aLineStyle = Default );
|
||||
CurrentAction2d myCurrentMode;
|
||||
Standard_Integer myXmin;
|
||||
Standard_Integer myYmin;
|
||||
Standard_Integer myXmax;
|
||||
Standard_Integer myYmax;
|
||||
Quantity_Factor myCurZoom;
|
||||
|
||||
virtual void DragEvent2D (const Standard_Integer x ,
|
||||
const Standard_Integer y ,
|
||||
const Standard_Integer TheState);
|
||||
virtual void InputEvent2D (const Standard_Integer x ,
|
||||
const Standard_Integer y );
|
||||
virtual void MoveEvent2D (const Standard_Integer x ,
|
||||
const Standard_Integer y );
|
||||
virtual void MultiMoveEvent2D (const Standard_Integer x ,
|
||||
const Standard_Integer y );
|
||||
virtual void MultiDragEvent2D (const Standard_Integer x ,
|
||||
const Standard_Integer y ,
|
||||
const Standard_Integer TheState);
|
||||
virtual void MultiInputEvent2D (const Standard_Integer x ,
|
||||
const Standard_Integer y );
|
||||
virtual void Popup2D (const Standard_Integer x ,
|
||||
const Standard_Integer y );
|
||||
enum LineStyle { Solid, Dot, ShortDash, LongDash, Default };
|
||||
|
||||
CPen* m_Pen;
|
||||
|
||||
virtual void DrawRectangle2D (const Standard_Integer MinX,
|
||||
const Standard_Integer MinY,
|
||||
const Standard_Integer MaxX,
|
||||
const Standard_Integer MaxY,
|
||||
const Standard_Boolean Draw,
|
||||
const LineStyle aLineStyle = Default);
|
||||
|
||||
virtual void DragEvent2D (const Standard_Integer x,
|
||||
const Standard_Integer y,
|
||||
const Standard_Integer TheState);
|
||||
|
||||
virtual void InputEvent2D (const Standard_Integer x,
|
||||
const Standard_Integer y);
|
||||
|
||||
virtual void MoveEvent2D (const Standard_Integer x,
|
||||
const Standard_Integer y);
|
||||
|
||||
virtual void MultiMoveEvent2D (const Standard_Integer x,
|
||||
const Standard_Integer y);
|
||||
|
||||
virtual void MultiDragEvent2D (const Standard_Integer x,
|
||||
const Standard_Integer y,
|
||||
const Standard_Integer TheState);
|
||||
|
||||
virtual void MultiInputEvent2D (const Standard_Integer x,
|
||||
const Standard_Integer y);
|
||||
|
||||
virtual void Popup2D (const Standard_Integer x,
|
||||
const Standard_Integer y);
|
||||
|
||||
protected:
|
||||
|
||||
CRectangularGrid TheRectangularGridDialog;
|
||||
CCircularGrid TheCircularGridDialog;
|
||||
Handle_V2d_View myV2dView;
|
||||
Handle_V3d_View myV2dView;
|
||||
};
|
||||
|
||||
#ifndef _DEBUG // debug version in 2DDisplayView.cpp
|
||||
inline CDocument* OCC_2dView::GetDocument()
|
||||
{ return m_pDocument; }
|
||||
inline OCC_2dDoc* OCC_2dView::GetDocument()
|
||||
{ return (OCC_2dDoc*)m_pDocument; }
|
||||
#endif
|
||||
|
||||
#endif // !defined(AFX_OCC_2dVIEW_H__2E048CC9_38F9_11D7_8611_0060B0EE281E__INCLUDED_)
|
||||
|
Reference in New Issue
Block a user