mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
CMake scripts are corrected to do perform search of libs and dlls of third-party libraries even for static builds of OCCT. Treatment of errors in this case is relaxed: not found DLLs are reported as warnings, and not found libs as warning for static build, and continuable error for shared build. Code of samples is corrected to allow building with OCCT linked statically. Implementation of main application class is corrected to ensure that initialization is done after all global objects are created. Note however that samples still fails to start for unclear reason (creation of MFC frame window fails).
49 lines
1.3 KiB
C++
Executable File
49 lines
1.3 KiB
C++
Executable File
// OCC_BaseView.h: interface for the OCC_BaseView class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_OCC_BASEVIEW_H__2E048CCA_38F9_11D7_8611_0060B0EE281E__INCLUDED_)
|
|
#define AFX_OCC_BASEVIEW_H__2E048CCA_38F9_11D7_8611_0060B0EE281E__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include <stdafx.h>
|
|
|
|
#include "OCC_BaseDoc.h"
|
|
#include "AIS_RubberBand.hxx"
|
|
|
|
class Standard_EXPORT OCC_BaseView : public CView
|
|
{
|
|
|
|
public:
|
|
|
|
OCC_BaseView();
|
|
virtual ~OCC_BaseView();
|
|
|
|
OCC_BaseDoc* GetDocument();
|
|
|
|
protected:
|
|
|
|
virtual void drawRectangle (const Standard_Integer theMinX,
|
|
const Standard_Integer theMinY,
|
|
const Standard_Integer theMaxX,
|
|
const Standard_Integer theMaxY,
|
|
const Handle(AIS_InteractiveContext)& theContext,
|
|
const Standard_Boolean toDraw = Standard_True);
|
|
|
|
|
|
protected:
|
|
|
|
Standard_Real myCurZoom;
|
|
Standard_Integer myXmin;
|
|
Standard_Integer myYmin;
|
|
Standard_Integer myXmax;
|
|
Standard_Integer myYmax;
|
|
|
|
Handle(AIS_RubberBand) myRect; //!< Rubber rectangle for selection
|
|
};
|
|
|
|
#endif // !defined(AFX_OCC_BASEVIEW_H__2E048CCA_38F9_11D7_8611_0060B0EE281E__INCLUDED_)
|