mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0031779: Visualization, AIS_ViewController - controller should handle selection schemes
Added AIS_ViewController::MouseSelectionSchemes() property defining map of selection schemes for mouse+modifier combinations. IsXOR flag has been replaced by AIS_SelectionScheme in interfaces. Rubber-band selection with Shift key pressed now applies XOR selection scheme in in Draw Harness. Command vselect has been extended to specify selection scheme by name.
This commit is contained in:
parent
329e5df986
commit
e3d4b87912
@ -14,6 +14,7 @@
|
|||||||
#ifndef _AIS_MouseGesture_HeaderFile
|
#ifndef _AIS_MouseGesture_HeaderFile
|
||||||
#define _AIS_MouseGesture_HeaderFile
|
#define _AIS_MouseGesture_HeaderFile
|
||||||
|
|
||||||
|
#include <AIS_SelectionScheme.hxx>
|
||||||
#include <NCollection_DataMap.hxx>
|
#include <NCollection_DataMap.hxx>
|
||||||
|
|
||||||
//! Mouse gesture - only one can be active at one moment.
|
//! Mouse gesture - only one can be active at one moment.
|
||||||
@ -37,5 +38,6 @@ enum AIS_MouseGesture
|
|||||||
|
|
||||||
//! Map defining mouse gestures.
|
//! Map defining mouse gestures.
|
||||||
typedef NCollection_DataMap<unsigned int, AIS_MouseGesture> AIS_MouseGestureMap;
|
typedef NCollection_DataMap<unsigned int, AIS_MouseGesture> AIS_MouseGestureMap;
|
||||||
|
typedef NCollection_DataMap<unsigned int, AIS_SelectionScheme> AIS_MouseSelectionSchemeMap;
|
||||||
|
|
||||||
#endif // _AIS_MouseGesture_HeaderFile
|
#endif // _AIS_MouseGesture_HeaderFile
|
||||||
|
@ -128,6 +128,12 @@ AIS_ViewController::AIS_ViewController()
|
|||||||
myMouseGestureMap.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_CTRL, AIS_MouseGesture_Zoom);
|
myMouseGestureMap.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_CTRL, AIS_MouseGesture_Zoom);
|
||||||
myMouseGestureMap.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_SHIFT, AIS_MouseGesture_Pan);
|
myMouseGestureMap.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_SHIFT, AIS_MouseGesture_Pan);
|
||||||
myMouseGestureMap.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_ALT, AIS_MouseGesture_SelectRectangle);
|
myMouseGestureMap.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_ALT, AIS_MouseGesture_SelectRectangle);
|
||||||
|
myMouseGestureMap.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_ALT | Aspect_VKeyFlags_SHIFT, AIS_MouseGesture_SelectRectangle);
|
||||||
|
|
||||||
|
myMouseSelectionSchemes.Bind (Aspect_VKeyMouse_LeftButton, AIS_SelectionScheme_Replace);
|
||||||
|
myMouseSelectionSchemes.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_ALT, AIS_SelectionScheme_Replace);
|
||||||
|
myMouseSelectionSchemes.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_SHIFT, AIS_SelectionScheme_XOR);
|
||||||
|
myMouseSelectionSchemes.Bind (Aspect_VKeyMouse_LeftButton | Aspect_VKeyFlags_ALT | Aspect_VKeyFlags_SHIFT, AIS_SelectionScheme_XOR);
|
||||||
|
|
||||||
myMouseGestureMap.Bind (Aspect_VKeyMouse_RightButton, AIS_MouseGesture_Zoom);
|
myMouseGestureMap.Bind (Aspect_VKeyMouse_RightButton, AIS_MouseGesture_Zoom);
|
||||||
myMouseGestureMap.Bind (Aspect_VKeyMouse_RightButton | Aspect_VKeyFlags_CTRL, AIS_MouseGesture_RotateOrbit);
|
myMouseGestureMap.Bind (Aspect_VKeyMouse_RightButton | Aspect_VKeyFlags_CTRL, AIS_MouseGesture_RotateOrbit);
|
||||||
@ -223,9 +229,9 @@ void AIS_ViewController::flushBuffers (const Handle(AIS_InteractiveContext)& ,
|
|||||||
|
|
||||||
{
|
{
|
||||||
myGL.Selection.Tool = myUI.Selection.Tool;
|
myGL.Selection.Tool = myUI.Selection.Tool;
|
||||||
myGL.Selection.IsXOR = myUI.Selection.IsXOR;
|
myGL.Selection.Scheme = myUI.Selection.Scheme;
|
||||||
myGL.Selection.Points = myUI.Selection.Points;
|
myGL.Selection.Points = myUI.Selection.Points;
|
||||||
myUI.Selection.IsXOR = false;
|
//myGL.Selection.Scheme = AIS_SelectionScheme_UNKNOWN; // no need
|
||||||
if (myUI.Selection.Tool == AIS_ViewSelectionTool_Picking)
|
if (myUI.Selection.Tool == AIS_ViewSelectionTool_Picking)
|
||||||
{
|
{
|
||||||
myUI.Selection.Points.Clear();
|
myUI.Selection.Points.Clear();
|
||||||
@ -472,7 +478,7 @@ void AIS_ViewController::UpdateViewOrientation (V3d_TypeOfOrientation theOrienta
|
|||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void AIS_ViewController::SelectInViewer (const Graphic3d_Vec2i& thePnt,
|
void AIS_ViewController::SelectInViewer (const Graphic3d_Vec2i& thePnt,
|
||||||
const bool theIsXOR)
|
const AIS_SelectionScheme theScheme)
|
||||||
{
|
{
|
||||||
if (myUI.Selection.Tool != AIS_ViewSelectionTool_Picking)
|
if (myUI.Selection.Tool != AIS_ViewSelectionTool_Picking)
|
||||||
{
|
{
|
||||||
@ -480,7 +486,7 @@ void AIS_ViewController::SelectInViewer (const Graphic3d_Vec2i& thePnt,
|
|||||||
myUI.Selection.Points.Clear();
|
myUI.Selection.Points.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
myUI.Selection.IsXOR = theIsXOR;
|
myUI.Selection.Scheme = theScheme;
|
||||||
myUI.Selection.Points.Append (thePnt);
|
myUI.Selection.Points.Append (thePnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -489,9 +495,9 @@ void AIS_ViewController::SelectInViewer (const Graphic3d_Vec2i& thePnt,
|
|||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void AIS_ViewController::SelectInViewer (const NCollection_Sequence<Graphic3d_Vec2i>& thePnts,
|
void AIS_ViewController::SelectInViewer (const NCollection_Sequence<Graphic3d_Vec2i>& thePnts,
|
||||||
const bool theIsXOR)
|
const AIS_SelectionScheme theScheme)
|
||||||
{
|
{
|
||||||
myUI.Selection.IsXOR = theIsXOR;
|
myUI.Selection.Scheme = theScheme;
|
||||||
myUI.Selection.Points = thePnts;
|
myUI.Selection.Points = thePnts;
|
||||||
myUI.Selection.ToApplyTool = true;
|
myUI.Selection.ToApplyTool = true;
|
||||||
if (thePnts.Length() == 1)
|
if (thePnts.Length() == 1)
|
||||||
@ -513,11 +519,9 @@ void AIS_ViewController::SelectInViewer (const NCollection_Sequence<Graphic3d_Ve
|
|||||||
// purpose :
|
// purpose :
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
void AIS_ViewController::UpdateRubberBand (const Graphic3d_Vec2i& thePntFrom,
|
void AIS_ViewController::UpdateRubberBand (const Graphic3d_Vec2i& thePntFrom,
|
||||||
const Graphic3d_Vec2i& thePntTo,
|
const Graphic3d_Vec2i& thePntTo)
|
||||||
const bool theIsXOR)
|
|
||||||
{
|
{
|
||||||
myUI.Selection.Tool = AIS_ViewSelectionTool_RubberBand;
|
myUI.Selection.Tool = AIS_ViewSelectionTool_RubberBand;
|
||||||
myUI.Selection.IsXOR = theIsXOR;
|
|
||||||
myUI.Selection.Points.Clear();
|
myUI.Selection.Points.Clear();
|
||||||
myUI.Selection.Points.Append (thePntFrom);
|
myUI.Selection.Points.Append (thePntFrom);
|
||||||
myUI.Selection.Points.Append (thePntTo);
|
myUI.Selection.Points.Append (thePntTo);
|
||||||
@ -613,9 +617,10 @@ bool AIS_ViewController::UpdateMouseClick (const Graphic3d_Vec2i& thePoint,
|
|||||||
bool theIsDoubleClick)
|
bool theIsDoubleClick)
|
||||||
{
|
{
|
||||||
(void )theIsDoubleClick;
|
(void )theIsDoubleClick;
|
||||||
if (theButton == Aspect_VKeyMouse_LeftButton)
|
AIS_SelectionScheme aScheme = AIS_SelectionScheme_UNKNOWN;
|
||||||
|
if (myMouseSelectionSchemes.Find (theButton | theModifiers, aScheme))
|
||||||
{
|
{
|
||||||
SelectInViewer (thePoint, (theModifiers & Aspect_VKeyFlags_SHIFT) != 0);
|
SelectInViewer (thePoint, aScheme);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
@ -713,6 +718,8 @@ bool AIS_ViewController::UpdateMouseButtons (const Graphic3d_Vec2i& thePoint,
|
|||||||
}
|
}
|
||||||
|
|
||||||
const AIS_MouseGesture aPrevGesture = myMouseActiveGesture;
|
const AIS_MouseGesture aPrevGesture = myMouseActiveGesture;
|
||||||
|
const Aspect_VKeyMouse aPrevButtons = myMousePressed;
|
||||||
|
const Aspect_VKeyFlags aPrevModifiers = myMouseModifiers;
|
||||||
myMouseModifiers = theModifiers;
|
myMouseModifiers = theModifiers;
|
||||||
myMousePressed = theButtons;
|
myMousePressed = theButtons;
|
||||||
if (theIsEmulated
|
if (theIsEmulated
|
||||||
@ -796,11 +803,14 @@ bool AIS_ViewController::UpdateMouseButtons (const Graphic3d_Vec2i& thePoint,
|
|||||||
|| aPrevGesture == AIS_MouseGesture_ZoomWindow)
|
|| aPrevGesture == AIS_MouseGesture_ZoomWindow)
|
||||||
{
|
{
|
||||||
myUI.Selection.ToApplyTool = true;
|
myUI.Selection.ToApplyTool = true;
|
||||||
|
myUI.Selection.Scheme = AIS_SelectionScheme_Replace;
|
||||||
|
myMouseSelectionSchemes.Find (aPrevButtons | aPrevModifiers, myUI.Selection.Scheme);
|
||||||
}
|
}
|
||||||
|
|
||||||
myUI.IsNewGesture = true;
|
myUI.IsNewGesture = true;
|
||||||
toUpdateView = true;
|
toUpdateView = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return toUpdateView;
|
return toUpdateView;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2755,7 +2765,7 @@ void AIS_ViewController::handleSelectionPick (const Handle(AIS_InteractiveContex
|
|||||||
ResetPreviousMoveTo();
|
ResetPreviousMoveTo();
|
||||||
}
|
}
|
||||||
|
|
||||||
theCtx->SelectDetected (myGL.Selection.IsXOR ? AIS_SelectionScheme_XOR : AIS_SelectionScheme_Replace);
|
theCtx->SelectDetected (myGL.Selection.Scheme);
|
||||||
|
|
||||||
// selection affects all Views
|
// selection affects all Views
|
||||||
theView->Viewer()->Invalidate();
|
theView->Viewer()->Invalidate();
|
||||||
@ -2859,8 +2869,8 @@ void AIS_ViewController::handleSelectionPoly (const Handle(AIS_InteractiveContex
|
|||||||
theCtx->MainSelector()->AllowOverlapDetection (aPnt1.y() != Min (aPnt1.y(), aPnt2.y()));
|
theCtx->MainSelector()->AllowOverlapDetection (aPnt1.y() != Min (aPnt1.y(), aPnt2.y()));
|
||||||
theCtx->SelectRectangle (Graphic3d_Vec2i (Min (aPnt1.x(), aPnt2.x()), Min (aPnt1.y(), aPnt2.y())),
|
theCtx->SelectRectangle (Graphic3d_Vec2i (Min (aPnt1.x(), aPnt2.x()), Min (aPnt1.y(), aPnt2.y())),
|
||||||
Graphic3d_Vec2i (Max (aPnt1.x(), aPnt2.x()), Max (aPnt1.y(), aPnt2.y())),
|
Graphic3d_Vec2i (Max (aPnt1.x(), aPnt2.x()), Max (aPnt1.y(), aPnt2.y())),
|
||||||
theView,
|
theView,
|
||||||
myGL.Selection.IsXOR ? AIS_SelectionScheme_XOR : AIS_SelectionScheme_Replace);
|
myGL.Selection.Scheme);
|
||||||
theCtx->MainSelector()->AllowOverlapDetection (false);
|
theCtx->MainSelector()->AllowOverlapDetection (false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2875,8 +2885,7 @@ void AIS_ViewController::handleSelectionPoly (const Handle(AIS_InteractiveContex
|
|||||||
aPolyIter.ChangeValue() = gp_Pnt2d (aNewPnt.x(), -aNewPnt.y());
|
aPolyIter.ChangeValue() = gp_Pnt2d (aNewPnt.x(), -aNewPnt.y());
|
||||||
}
|
}
|
||||||
|
|
||||||
theCtx->SelectPolygon (aPolyline, theView,
|
theCtx->SelectPolygon (aPolyline, theView, myGL.Selection.Scheme);
|
||||||
myGL.Selection.IsXOR ? AIS_SelectionScheme_XOR : AIS_SelectionScheme_Replace);
|
|
||||||
theCtx->MainSelector()->AllowOverlapDetection (false);
|
theCtx->MainSelector()->AllowOverlapDetection (false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -258,6 +258,12 @@ public: //! @name mouse input
|
|||||||
//! Return map defining mouse gestures.
|
//! Return map defining mouse gestures.
|
||||||
AIS_MouseGestureMap& ChangeMouseGestureMap() { return myMouseGestureMap; }
|
AIS_MouseGestureMap& ChangeMouseGestureMap() { return myMouseGestureMap; }
|
||||||
|
|
||||||
|
//! Return map defining mouse selection schemes.
|
||||||
|
const AIS_MouseSelectionSchemeMap& MouseSelectionSchemes() const { return myMouseSelectionSchemes; }
|
||||||
|
|
||||||
|
//! Return map defining mouse gestures.
|
||||||
|
AIS_MouseSelectionSchemeMap& ChangeMouseSelectionSchemes() { return myMouseSelectionSchemes; }
|
||||||
|
|
||||||
//! Return double click interval in seconds; 0.4 by default.
|
//! Return double click interval in seconds; 0.4 by default.
|
||||||
double MouseDoubleClickInterval() const { return myMouseDoubleClickInt; }
|
double MouseDoubleClickInterval() const { return myMouseDoubleClickInt; }
|
||||||
|
|
||||||
@ -267,25 +273,23 @@ public: //! @name mouse input
|
|||||||
//! Perform selection in 3D viewer.
|
//! Perform selection in 3D viewer.
|
||||||
//! This method is expected to be called from UI thread.
|
//! This method is expected to be called from UI thread.
|
||||||
//! @param thePnt picking point
|
//! @param thePnt picking point
|
||||||
//! @param theIsXOR XOR selection flag
|
//! @param theScheme selection scheme
|
||||||
Standard_EXPORT virtual void SelectInViewer (const Graphic3d_Vec2i& thePnt,
|
Standard_EXPORT virtual void SelectInViewer (const Graphic3d_Vec2i& thePnt,
|
||||||
const bool theIsXOR = false);
|
const AIS_SelectionScheme theScheme = AIS_SelectionScheme_Replace);
|
||||||
|
|
||||||
//! Perform selection in 3D viewer.
|
//! Perform selection in 3D viewer.
|
||||||
//! This method is expected to be called from UI thread.
|
//! This method is expected to be called from UI thread.
|
||||||
//! @param thePnts picking point
|
//! @param thePnts picking point
|
||||||
//! @param theIsXOR XOR selection flag
|
//! @param theScheme selection scheme
|
||||||
Standard_EXPORT virtual void SelectInViewer (const NCollection_Sequence<Graphic3d_Vec2i>& thePnts,
|
Standard_EXPORT virtual void SelectInViewer (const NCollection_Sequence<Graphic3d_Vec2i>& thePnts,
|
||||||
const bool theIsXOR = false);
|
const AIS_SelectionScheme theScheme = AIS_SelectionScheme_Replace);
|
||||||
|
|
||||||
//! Update rectangle selection tool.
|
//! Update rectangle selection tool.
|
||||||
//! This method is expected to be called from UI thread.
|
//! This method is expected to be called from UI thread.
|
||||||
//! @param thePntFrom rectangle first corner
|
//! @param thePntFrom rectangle first corner
|
||||||
//! @param thePntTo rectangle another corner
|
//! @param thePntTo rectangle another corner
|
||||||
//! @param theIsXOR XOR selection flag
|
|
||||||
Standard_EXPORT virtual void UpdateRubberBand (const Graphic3d_Vec2i& thePntFrom,
|
Standard_EXPORT virtual void UpdateRubberBand (const Graphic3d_Vec2i& thePntFrom,
|
||||||
const Graphic3d_Vec2i& thePntTo,
|
const Graphic3d_Vec2i& thePntTo);
|
||||||
const bool theIsXOR = false);
|
|
||||||
|
|
||||||
//! Update polygonal selection tool.
|
//! Update polygonal selection tool.
|
||||||
//! This method is expected to be called from UI thread.
|
//! This method is expected to be called from UI thread.
|
||||||
@ -772,6 +776,8 @@ protected: //! @name mouse input variables
|
|||||||
|
|
||||||
AIS_MouseGestureMap myMouseGestureMap; //!< map defining mouse gestures
|
AIS_MouseGestureMap myMouseGestureMap; //!< map defining mouse gestures
|
||||||
AIS_MouseGesture myMouseActiveGesture; //!< initiated mouse gesture (by pressing mouse button)
|
AIS_MouseGesture myMouseActiveGesture; //!< initiated mouse gesture (by pressing mouse button)
|
||||||
|
AIS_MouseSelectionSchemeMap
|
||||||
|
myMouseSelectionSchemes; //!< map defining selection schemes bound to mouse + modifiers
|
||||||
Standard_Boolean myMouseActiveIdleRotation; //!< flag indicating view idle rotation state
|
Standard_Boolean myMouseActiveIdleRotation; //!< flag indicating view idle rotation state
|
||||||
Graphic3d_Vec2i myMousePositionLast; //!< last mouse position
|
Graphic3d_Vec2i myMousePositionLast; //!< last mouse position
|
||||||
Graphic3d_Vec2i myMousePressPoint; //!< mouse position where active gesture was been initiated
|
Graphic3d_Vec2i myMousePressPoint; //!< mouse position where active gesture was been initiated
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#include <Aspect_ScrollDelta.hxx>
|
#include <Aspect_ScrollDelta.hxx>
|
||||||
|
|
||||||
|
#include <AIS_SelectionScheme.hxx>
|
||||||
#include <Graphic3d_Vec2.hxx>
|
#include <Graphic3d_Vec2.hxx>
|
||||||
#include <NCollection_Sequence.hxx>
|
#include <NCollection_Sequence.hxx>
|
||||||
#include <V3d_TypeOfOrientation.hxx>
|
#include <V3d_TypeOfOrientation.hxx>
|
||||||
@ -65,12 +66,12 @@ public:
|
|||||||
struct _selection
|
struct _selection
|
||||||
{
|
{
|
||||||
AIS_ViewSelectionTool Tool; //!< perform selection
|
AIS_ViewSelectionTool Tool; //!< perform selection
|
||||||
bool IsXOR; //!< perform shift selection
|
AIS_SelectionScheme Scheme; //!< selection scheme
|
||||||
NCollection_Sequence<Graphic3d_Vec2i>
|
NCollection_Sequence<Graphic3d_Vec2i>
|
||||||
Points; //!< the points for selection
|
Points; //!< the points for selection
|
||||||
bool ToApplyTool; //!< apply rubber-band selection tool
|
bool ToApplyTool; //!< apply rubber-band selection tool
|
||||||
|
|
||||||
_selection() : Tool (AIS_ViewSelectionTool_Picking), IsXOR (false), ToApplyTool (false) {}
|
_selection() : Tool (AIS_ViewSelectionTool_Picking), Scheme (AIS_SelectionScheme_UNKNOWN), ToApplyTool (false) {}
|
||||||
} Selection;
|
} Selection;
|
||||||
|
|
||||||
struct _panningParams
|
struct _panningParams
|
||||||
|
@ -7603,6 +7603,23 @@ static Standard_Integer VSelect (Draw_Interpretor& ,
|
|||||||
++anArgIter;
|
++anArgIter;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (anArg == "-replace")
|
||||||
|
{
|
||||||
|
aSelScheme = AIS_SelectionScheme_Replace;
|
||||||
|
}
|
||||||
|
else if (anArg == "-xor"
|
||||||
|
|| anArg == "-shift")
|
||||||
|
{
|
||||||
|
aSelScheme = AIS_SelectionScheme_XOR;
|
||||||
|
}
|
||||||
|
else if (anArg == "-add")
|
||||||
|
{
|
||||||
|
aSelScheme = AIS_SelectionScheme_Add;
|
||||||
|
}
|
||||||
|
else if (anArg == "-remove")
|
||||||
|
{
|
||||||
|
aSelScheme = AIS_SelectionScheme_Remove;
|
||||||
|
}
|
||||||
else if (anArgIter + 1 < theNbArgs
|
else if (anArgIter + 1 < theNbArgs
|
||||||
&& anArg.IsIntegerValue()
|
&& anArg.IsIntegerValue()
|
||||||
&& TCollection_AsciiString (theArgVec[anArgIter + 1]).IsIntegerValue())
|
&& TCollection_AsciiString (theArgVec[anArgIter + 1]).IsIntegerValue())
|
||||||
@ -7648,11 +7665,12 @@ static Standard_Integer VSelect (Draw_Interpretor& ,
|
|||||||
{
|
{
|
||||||
std::swap (aPnts.ChangeFirst(), aPnts.ChangeLast());
|
std::swap (aPnts.ChangeFirst(), aPnts.ChangeLast());
|
||||||
}
|
}
|
||||||
aCurrentEventManager->SelectInViewer (aPnts, aSelScheme == AIS_SelectionScheme_XOR);
|
|
||||||
|
aCurrentEventManager->SelectInViewer (aPnts, aSelScheme);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
aCurrentEventManager->SelectInViewer (aPnts, aSelScheme == AIS_SelectionScheme_XOR);
|
aCurrentEventManager->SelectInViewer (aPnts, aSelScheme);
|
||||||
}
|
}
|
||||||
aCurrentEventManager->FlushViewEvents (aCtx, ViewerTest::CurrentView(), true);
|
aCurrentEventManager->FlushViewEvents (aCtx, ViewerTest::CurrentView(), true);
|
||||||
return 0;
|
return 0;
|
||||||
@ -15096,7 +15114,7 @@ void ViewerTest::ViewerCommands(Draw_Interpretor& theCommands)
|
|||||||
"\n\t\t: When -closeOnEscape is specified, view will be closed on pressing Escape.",
|
"\n\t\t: When -closeOnEscape is specified, view will be closed on pressing Escape.",
|
||||||
__FILE__, VDiffImage, group);
|
__FILE__, VDiffImage, group);
|
||||||
theCommands.Add ("vselect",
|
theCommands.Add ("vselect",
|
||||||
"vselect x1 y1 [x2 y2 [x3 y3 ... xn yn]] [-allowoverlap 0|1] [shift_selection = 0|1]\n"
|
"vselect x1 y1 [x2 y2 [x3 y3 ... xn yn]] [-allowoverlap 0|1] [-replace|-xor|-add|-remove]\n"
|
||||||
"- emulates different types of selection:\n"
|
"- emulates different types of selection:\n"
|
||||||
"- 1) single click selection\n"
|
"- 1) single click selection\n"
|
||||||
"- 2) selection with rectangle having corners at pixel positions (x1,y1) and (x2,y2)\n"
|
"- 2) selection with rectangle having corners at pixel positions (x1,y1) and (x2,y2)\n"
|
||||||
@ -15105,7 +15123,7 @@ void ViewerTest::ViewerCommands(Draw_Interpretor& theCommands)
|
|||||||
" If the flag is set to 1, both sensitives that were included completely and overlapped partially by defined \n"
|
" If the flag is set to 1, both sensitives that were included completely and overlapped partially by defined \n"
|
||||||
" rectangle or polygon will be detected, otherwise algorithm will chose only fully included sensitives.\n"
|
" rectangle or polygon will be detected, otherwise algorithm will chose only fully included sensitives.\n"
|
||||||
" Default behavior is to detect only full inclusion. (partial inclusion - overlap - is not allowed by default)\n"
|
" Default behavior is to detect only full inclusion. (partial inclusion - overlap - is not allowed by default)\n"
|
||||||
"- 5) any of these selections with shift button pressed",
|
"- 5) selection scheme replace, xor, add or remove (replace by default)",
|
||||||
__FILE__, VSelect, group);
|
__FILE__, VSelect, group);
|
||||||
theCommands.Add ("vmoveto",
|
theCommands.Add ("vmoveto",
|
||||||
"vmoveto [x y] [-reset]"
|
"vmoveto [x y] [-reset]"
|
||||||
|
@ -25,8 +25,7 @@ checkcolor $x_coord $y_coord 0 0 0.36
|
|||||||
vselmode m 8 1
|
vselmode m 8 1
|
||||||
puts "\nSelection of elements is activated"
|
puts "\nSelection of elements is activated"
|
||||||
|
|
||||||
vselect $x_coord $y_coord 1
|
vselect $x_coord $y_coord -xor
|
||||||
###vselect $x_coord $y_coord 1
|
|
||||||
|
|
||||||
meshhidesel m
|
meshhidesel m
|
||||||
puts "\nSelected element is hidden"
|
puts "\nSelected element is hidden"
|
||||||
|
@ -12,7 +12,7 @@ vaxo
|
|||||||
vdisplay -dispMode 1 b1 b2
|
vdisplay -dispMode 1 b1 b2
|
||||||
vfit
|
vfit
|
||||||
vselprops selHighlight -dispMode -1
|
vselprops selHighlight -dispMode -1
|
||||||
vselect 0 0 400 400 1
|
vselect 0 0 400 400 -xor
|
||||||
if { [vreadpixel 50 300 rgb name] != "GRAY73" } { puts "Error: b1 should be selected."}
|
if { [vreadpixel 50 300 rgb name] != "GRAY73" } { puts "Error: b1 should be selected."}
|
||||||
if { [vreadpixel 300 200 rgb name] != "GRAY73" } { puts "Error: b2 should be selected."}
|
if { [vreadpixel 300 200 rgb name] != "GRAY73" } { puts "Error: b2 should be selected."}
|
||||||
vselect 200 200
|
vselect 200 200
|
||||||
|
@ -16,14 +16,14 @@ vfit
|
|||||||
vselmode 2 1
|
vselmode 2 1
|
||||||
vselect 0 0
|
vselect 0 0
|
||||||
vselect 58 300
|
vselect 58 300
|
||||||
vselect 300 200 300 60 400 60 407 150 1
|
vselect 300 200 300 60 400 60 407 150 -xor
|
||||||
|
|
||||||
set NbSelected1 [vnbselected]
|
set NbSelected1 [vnbselected]
|
||||||
if { ${NbSelected1} != 13 } {
|
if { ${NbSelected1} != 13 } {
|
||||||
puts "Error : Polygonal shift selection doesn't work properly"
|
puts "Error : Polygonal shift selection doesn't work properly"
|
||||||
}
|
}
|
||||||
|
|
||||||
vselect 350 120 1
|
vselect 350 120 -xor
|
||||||
|
|
||||||
set NbSelected1 [vnbselected]
|
set NbSelected1 [vnbselected]
|
||||||
if { ${NbSelected1} != 12 } {
|
if { ${NbSelected1} != 12 } {
|
||||||
|
@ -21,7 +21,7 @@ vselmode b 2 1
|
|||||||
#select the first edge
|
#select the first edge
|
||||||
vselect 232 368
|
vselect 232 368
|
||||||
#select the second edge
|
#select the second edge
|
||||||
vselect 165 278 1
|
vselect 165 278 -xor
|
||||||
vmoveto 0 0
|
vmoveto 0 0
|
||||||
vdump ${anImage1}
|
vdump ${anImage1}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ vselmode b 2 1
|
|||||||
#select the first edge
|
#select the first edge
|
||||||
vselect 232 368
|
vselect 232 368
|
||||||
#select the second edge
|
#select the second edge
|
||||||
vselect 165 278 1
|
vselect 165 278 -xor
|
||||||
vmoveto 0 0
|
vmoveto 0 0
|
||||||
|
|
||||||
#enable 'highlight selected' mode
|
#enable 'highlight selected' mode
|
||||||
|
@ -21,7 +21,7 @@ vfit
|
|||||||
#select the first shape
|
#select the first shape
|
||||||
vselect 70 230
|
vselect 70 230
|
||||||
#select the second shape
|
#select the second shape
|
||||||
vselect 200 358 1
|
vselect 200 358 -xor
|
||||||
vmoveto 0 0
|
vmoveto 0 0
|
||||||
vdump ${anImage1}
|
vdump ${anImage1}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ vfit
|
|||||||
#select the first shape
|
#select the first shape
|
||||||
vselect 70 230
|
vselect 70 230
|
||||||
#select the second shape
|
#select the second shape
|
||||||
vselect 200 358 1
|
vselect 200 358 -xor
|
||||||
vmoveto 0 0
|
vmoveto 0 0
|
||||||
|
|
||||||
#enable 'highlight selected' mode
|
#enable 'highlight selected' mode
|
||||||
|
@ -39,8 +39,8 @@ vselect 0 0
|
|||||||
|
|
||||||
vselmode b3 4 1
|
vselmode b3 4 1
|
||||||
|
|
||||||
vselect 75 230 235 320 -allowoverlap 0 1
|
vselect 75 230 235 320 -allowoverlap 0 -xor
|
||||||
vselect 350 150 380 170 1
|
vselect 350 150 380 170 -xor
|
||||||
vnbselected
|
vnbselected
|
||||||
set aNbSelected3 [vnbselected]
|
set aNbSelected3 [vnbselected]
|
||||||
if {$aNbSelected3 != 4} {
|
if {$aNbSelected3 != 4} {
|
||||||
@ -49,8 +49,8 @@ if {$aNbSelected3 != 4} {
|
|||||||
|
|
||||||
vselect 0 0
|
vselect 0 0
|
||||||
|
|
||||||
vselect 75 230 235 320 -allowoverlap 1 1
|
vselect 75 230 235 320 -allowoverlap 1 -xor
|
||||||
vselect 350 150 380 170 -allowOverlap 1 1
|
vselect 350 150 380 170 -allowOverlap 1 -xor
|
||||||
vnbselected
|
vnbselected
|
||||||
set aNbSelected4 [vnbselected]
|
set aNbSelected4 [vnbselected]
|
||||||
if {$aNbSelected4 != 13} {
|
if {$aNbSelected4 != 13} {
|
||||||
|
@ -25,7 +25,7 @@ vselect 0 0
|
|||||||
vfit
|
vfit
|
||||||
|
|
||||||
vselect 29 104
|
vselect 29 104
|
||||||
vselect 204 2 1
|
vselect 204 2 -xor
|
||||||
vfit -selected
|
vfit -selected
|
||||||
checkcolor 29 104 0 0 0
|
checkcolor 29 104 0 0 0
|
||||||
checkcolor 2 317 0.8 0.8 0.8
|
checkcolor 2 317 0.8 0.8 0.8
|
||||||
|
@ -21,8 +21,8 @@ vaspects b1 b2 -setWidth 3
|
|||||||
|
|
||||||
vselmode 2 1
|
vselmode 2 1
|
||||||
# try to select b1 and b2
|
# try to select b1 and b2
|
||||||
vselect 305 322 1
|
vselect 305 322 -xor
|
||||||
vselect 103 322 1
|
vselect 103 322 -xor
|
||||||
# check that both boxes were not selected with default tolerance value
|
# check that both boxes were not selected with default tolerance value
|
||||||
set aNbSelected [vnbselected]
|
set aNbSelected [vnbselected]
|
||||||
if {$aNbSelected != "0"} {
|
if {$aNbSelected != "0"} {
|
||||||
@ -43,7 +43,7 @@ if {$aNbSelected != "1"} {
|
|||||||
puts "ERROR: b1 was not selected"
|
puts "ERROR: b1 was not selected"
|
||||||
}
|
}
|
||||||
# try to select b2
|
# try to select b2
|
||||||
vselect 103 322 1
|
vselect 103 322 -xor
|
||||||
# check that increase of tolerance for b1 doesn't influence
|
# check that increase of tolerance for b1 doesn't influence
|
||||||
# on b2
|
# on b2
|
||||||
set aNbSelected [vnbselected]
|
set aNbSelected [vnbselected]
|
||||||
|
@ -33,7 +33,7 @@ if {$aSize != 3 || [string compare $aItem1 "Locally selected sub-shapes within b
|
|||||||
vdisplay b2
|
vdisplay b2
|
||||||
vfit
|
vfit
|
||||||
|
|
||||||
vselect 350 120 1
|
vselect 350 120 -xor
|
||||||
set anInfo [split [vstate *] "\n"]
|
set anInfo [split [vstate *] "\n"]
|
||||||
set aItem1 [string trim [lindex $anInfo 1] ]
|
set aItem1 [string trim [lindex $anInfo 1] ]
|
||||||
set aItem2 [string trim [lindex $anInfo 2] ]
|
set aItem2 [string trim [lindex $anInfo 2] ]
|
||||||
|
@ -21,14 +21,14 @@ set y2 120
|
|||||||
|
|
||||||
vselect 0 0
|
vselect 0 0
|
||||||
vselect ${x1} ${y1}
|
vselect ${x1} ${y1}
|
||||||
vselect ${x2} ${y2} 1
|
vselect ${x2} ${y2} -xor
|
||||||
|
|
||||||
set NbSelected1 [vnbselected]
|
set NbSelected1 [vnbselected]
|
||||||
if { ${NbSelected1} != 2 } {
|
if { ${NbSelected1} != 2 } {
|
||||||
puts "Error : (case 1)"
|
puts "Error : (case 1)"
|
||||||
}
|
}
|
||||||
|
|
||||||
vselect ${x2} ${y2} 1
|
vselect ${x2} ${y2} -xor
|
||||||
|
|
||||||
set NbSelected1 [vnbselected]
|
set NbSelected1 [vnbselected]
|
||||||
if { ${NbSelected1} != 1 } {
|
if { ${NbSelected1} != 1 } {
|
||||||
|
@ -25,9 +25,9 @@ if {$aColor != "CHOCOLATE3" && abs($aTrsp - 1.0) < 0.1} {
|
|||||||
|
|
||||||
vdump $imagedir/${casename}_dyn.png
|
vdump $imagedir/${casename}_dyn.png
|
||||||
|
|
||||||
vselect 50 200 1
|
vselect 50 200 -xor
|
||||||
vselect 200 200 1
|
vselect 200 200 -xor
|
||||||
vselect 350 200 1
|
vselect 350 200 -xor
|
||||||
|
|
||||||
if {[vreadpixel 350 200 name rgba] != "RED2 1" || [vreadpixel 350 200 name rgba] == [vreadpixel 200 200 name rgba]} {
|
if {[vreadpixel 350 200 name rgba] != "RED2 1" || [vreadpixel 350 200 name rgba] == [vreadpixel 200 200 name rgba]} {
|
||||||
puts "ERROR: selection highlight of 3rd box is displayed with wrong color!"
|
puts "ERROR: selection highlight of 3rd box is displayed with wrong color!"
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
vclear
|
vclear
|
||||||
meshfromstl m [locate_data_file b.stl]
|
meshfromstl m [locate_data_file b.stl]
|
||||||
vselmode m 8 1
|
vselmode m 8 1
|
||||||
vselect 150 100 1
|
vselect 150 100 -xor
|
||||||
vselect 200 200 1
|
vselect 200 200 -xor
|
||||||
vselect 250 250 1
|
vselect 250 250 -xor
|
||||||
vselect 200 100 1
|
vselect 200 100 -xor
|
||||||
vselect 250 100 1
|
vselect 250 100 -xor
|
||||||
meshhidesel m
|
meshhidesel m
|
||||||
vrotate -0.9 0 0
|
vrotate -0.9 0 0
|
||||||
vdump $::imagedir/${::casename}.png
|
vdump $::imagedir/${::casename}.png
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
vclear
|
vclear
|
||||||
meshfromstl m [locate_data_file b.stl]
|
meshfromstl m [locate_data_file b.stl]
|
||||||
vselmode m 8 1
|
vselmode m 8 1
|
||||||
vselect 150 100 1
|
vselect 150 100 -xor
|
||||||
vselect 200 200 1
|
vselect 200 200 -xor
|
||||||
vselect 250 250 1
|
vselect 250 250 -xor
|
||||||
vselect 200 100 1
|
vselect 200 100 -xor
|
||||||
vselect 250 100 1
|
vselect 250 100 -xor
|
||||||
meshshowsel m
|
meshshowsel m
|
||||||
vdump $::imagedir/${::casename}.png
|
vdump $::imagedir/${::casename}.png
|
||||||
|
@ -3,7 +3,7 @@ mesh3delem m
|
|||||||
vrotate 1.5 0 0
|
vrotate 1.5 0 0
|
||||||
vrotate 0 0.5 0
|
vrotate 0 0.5 0
|
||||||
vselmode m 16 1
|
vselmode m 16 1
|
||||||
vselect 200 200 1
|
vselect 200 200 -xor
|
||||||
vselect 200 300 1
|
vselect 200 300 -xor
|
||||||
meshhidesel m
|
meshhidesel m
|
||||||
vdump $::imagedir/${::casename}.png
|
vdump $::imagedir/${::casename}.png
|
||||||
|
@ -3,7 +3,7 @@ mesh3delem m
|
|||||||
vrotate 1.5 0 0
|
vrotate 1.5 0 0
|
||||||
vrotate 0 0.5 0
|
vrotate 0 0.5 0
|
||||||
vselmode m 16 1
|
vselmode m 16 1
|
||||||
vselect 200 200 1
|
vselect 200 200 -xor
|
||||||
vselect 200 300 1
|
vselect 200 300 -xor
|
||||||
meshshowsel m
|
meshshowsel m
|
||||||
vdump $::imagedir/${::casename}.png
|
vdump $::imagedir/${::casename}.png
|
||||||
|
Loading…
x
Reference in New Issue
Block a user