1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
// File: ViewerTest_EventManager.cxx
// Created: Thu Aug 27 14:20:19 1998
// Author: Robert COUBLANC
// <rob@robox.paris1.matra-dtv.fr>
#include <ViewerTest_EventManager.ixx>
#include <AIS_InteractiveContext.hxx>
#include <NIS_View.hxx>
//=======================================================================
//function : ViewerTest_EventManager
//purpose :
//=======================================================================
ViewerTest_EventManager::ViewerTest_EventManager
(const Handle(V3d_View)& aView,
const Handle(AIS_InteractiveContext)& Ctx)
: myCtx (Ctx),
myView (aView),
myX (-1),
myY (-1)
{}
//=======================================================================
//function : MoveTo
//purpose :
//=======================================================================
void ViewerTest_EventManager::MoveTo(const Standard_Integer XPix,
const Standard_Integer YPix)
{
if(!myCtx.IsNull() && !myView.IsNull())
myCtx->MoveTo(XPix,YPix,myView);
myX = XPix;
myY = YPix;
const Handle(NIS_View) aView = Handle(NIS_View)::DownCast(myView);
if (!aView.IsNull())
aView->DynamicHilight (XPix, YPix);
}
//=======================================================================
//function : Select
//purpose :
//=======================================================================
void ViewerTest_EventManager::Select(const Standard_Integer XPMin,
const Standard_Integer YPMin,
const Standard_Integer XPMax,
const Standard_Integer YPMax)
{
#define IS_FULL_INCLUSION Standard_True
if(!myCtx.IsNull() && !myView.IsNull())
myCtx->Select(XPMin,YPMin,XPMax,YPMax,myView);
const Handle(NIS_View) aView = Handle(NIS_View)::DownCast(myView);
if (!aView.IsNull())
aView->Select(XPMin,YPMin,XPMax,YPMax, Standard_False, IS_FULL_INCLUSION);
}
//=======================================================================
//function : ShiftSelect
//purpose :
//=======================================================================
void ViewerTest_EventManager::ShiftSelect(const Standard_Integer XPMin,
const Standard_Integer YPMin,
const Standard_Integer XPMax,
const Standard_Integer YPMax)
{
if(!myCtx.IsNull() && !myView.IsNull())
myCtx->AIS_InteractiveContext::ShiftSelect(XPMin,YPMin,XPMax,YPMax,myView,
Standard_True);
const Handle(NIS_View) aView = Handle(NIS_View)::DownCast(myView);
if (!aView.IsNull())
aView->Select(XPMin,YPMin,XPMax,YPMax, Standard_True, IS_FULL_INCLUSION);
}
//=======================================================================
//function : Select
//purpose :
//=======================================================================
void ViewerTest_EventManager::Select()
{
if (!myCtx.IsNull() && !myView.IsNull())
myCtx->Select();
const Handle(NIS_View) aView = Handle(NIS_View)::DownCast(myView);
if (!aView.IsNull())
aView->Select(myX, myY);
}
//=======================================================================
//function : ShiftSelect
//purpose :
//=======================================================================
void ViewerTest_EventManager::ShiftSelect()
{
if(!myCtx.IsNull() && !myView.IsNull())
myCtx->ShiftSelect(Standard_True);
const Handle(NIS_View) aView = Handle(NIS_View)::DownCast(myView);
if (!aView.IsNull())
aView->Select(myX, myY, Standard_True);
}
|