mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Some warnings were removed from MFC samples All warnings of sample projects with warning level 4 were fixed on VC9 Warnings level increased to -W4 in projects of MFC samples; sample ReadMe files added to documentation Changes in Viewer2dDoc.cpp and OcafDoc.cpp were restored. Minor corrections in documentation
72 lines
2.2 KiB
C++
Executable File
72 lines
2.2 KiB
C++
Executable File
#ifndef _Sample2D_Markers_HeaderFile
|
|
#define _Sample2D_Markers_HeaderFile
|
|
|
|
#include <Standard_Macro.hxx>
|
|
#include <Standard_DefineHandle.hxx>
|
|
#include <Graphic3d_Array1OfVertex.hxx>
|
|
#include <Graphic3d_ArrayOfPoints.hxx>
|
|
DEFINE_STANDARD_HANDLE(Sample2D_Markers,AIS_InteractiveObject)
|
|
class Sample2D_Markers : public AIS_InteractiveObject {
|
|
|
|
enum Sample2D_CurrentTypeOfMarker {
|
|
Sample2D_CTOM_Generic,
|
|
Sample2D_CTOM_Polyline,
|
|
Sample2D_CTOM_Circle,
|
|
Sample2D_CTOM_Ellips
|
|
} ;
|
|
|
|
public:
|
|
|
|
// Generic marker
|
|
Standard_EXPORT Sample2D_Markers (const Quantity_Length theXPosition ,
|
|
const Quantity_Length theYPosition ,
|
|
const Aspect_TypeOfMarker theMarkerType,
|
|
const Quantity_Color theColor,
|
|
const Standard_Real theScaleOrId=5.0);
|
|
|
|
// Polyline marker
|
|
Standard_EXPORT Sample2D_Markers (const Quantity_Length theXPosition ,
|
|
const Quantity_Length theYPosition ,
|
|
const Handle(Graphic3d_ArrayOfPoints)& theArrayOfPoints,
|
|
const Aspect_TypeOfMarker theMarkerType,
|
|
const Quantity_Color theColor,
|
|
const Standard_Real theScaleOrId=2.0);
|
|
|
|
|
|
DEFINE_STANDARD_RTTI(Sample2D_Markers)
|
|
|
|
private:
|
|
|
|
virtual void Compute (const Handle(PrsMgr_PresentationManager3d)& /*aPresentationManager*/,
|
|
const Handle(Prs3d_Presentation)& /*aPresentation*/,
|
|
const Standard_Integer /*aMode*/);
|
|
|
|
virtual void ComputeSelection (const Handle(SelectMgr_Selection)& /*aSelection*/,
|
|
const Standard_Integer /*aMode*/) {}
|
|
|
|
|
|
Standard_EXPORT virtual void SetContext(const Handle(AIS_InteractiveContext)& /*theContext*/) {}
|
|
|
|
|
|
|
|
Sample2D_CurrentTypeOfMarker myCurrentTypeOfMarker;
|
|
Quantity_Length myXPosition ;
|
|
Quantity_Length myYPosition ;
|
|
Aspect_TypeOfMarker myMarkerType;
|
|
Quantity_Color myColor;
|
|
Quantity_Length myWidth ;
|
|
Quantity_Length myHeight ;
|
|
Standard_Real myIndex ;//myScaleOrId
|
|
// specific polyline marker
|
|
Handle(Graphic3d_ArrayOfPoints) myArrayOfPoints;
|
|
};
|
|
|
|
|
|
|
|
// other inCurve functions and methods (like "C++: function call" methods)
|
|
//
|
|
|
|
|
|
|
|
#endif
|