Version: 9.16.0
SVTK_SelectionEvent.h
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, OPEN CASCADE
2//
3// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5//
6// This library is free software; you can redistribute it and/or
7// modify it under the terms of the GNU Lesser General Public
8// License as published by the Free Software Foundation; either
9// version 2.1 of the License, or (at your option) any later version.
10//
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// Lesser General Public License for more details.
15//
16// You should have received a copy of the GNU Lesser General Public
17// License along with this library; if not, write to the Free Software
18// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19//
20// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21//
22
23// SALOME SALOMEGUI : implementation of desktop and GUI kernel
24// File : SVTK_SelectionEvent.h
25// Author :
26
27#ifndef SVTK_SELECTIONEVENT_H
28#define SVTK_SELECTIONEVENT_H
29
30#include "SVTK_Selection.h"
31#include <QPoint>
32#include <QVector>
33
35
41{
44 int myX;
45 int myY;
46 int myLastX;
47 int myLastY;
50 QVector<QPoint> myPolygonPoints;
51 bool myIsCtrl;
52 bool myIsShift;
55};
56
57#endif
Selection_Mode
Definition: SALOME_Selection.h:27
The structure is used for passing all infromation necessary for claculation of the selection.
Definition: SVTK_SelectionEvent.h:41
bool myIsRectangle
A flag to define is it necessary provide rectangle selection for current Selection_Mode.
Definition: SVTK_SelectionEvent.h:48
bool myIsPolygon
A flag to define is it necessary provide polygonal selection for current Selection_Mode.
Definition: SVTK_SelectionEvent.h:49
int myRepeatCount
Number of repetion of the key pressing.
Definition: SVTK_SelectionEvent.h:54
int myLastX
Last X position of the mouse before starting any complex operation (like rectangle selection)
Definition: SVTK_SelectionEvent.h:46
int myX
Current X position of the mouse.
Definition: SVTK_SelectionEvent.h:44
int myY
Current Y position of the mouse.
Definition: SVTK_SelectionEvent.h:45
QVector< QPoint > myPolygonPoints
Vector of points for polygonal selection.
Definition: SVTK_SelectionEvent.h:50
bool myIsCtrl
Is Ctrl key are pressed.
Definition: SVTK_SelectionEvent.h:51
int myLastY
Last Y position of the mouse before starting any complex operation.
Definition: SVTK_SelectionEvent.h:47
bool myIsShift
Is Shift key are pressed.
Definition: SVTK_SelectionEvent.h:52
Selection_Mode mySelectionMode
Through usage of the parameter any new type of selection can be introduced.
Definition: SVTK_SelectionEvent.h:43
int myKeyCode
Code of the pressed key.
Definition: SVTK_SelectionEvent.h:53