Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / GLViewer / GLViewer_Selector.cxx
1 //  Copyright (C) 2005 OPEN CASCADE
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 //  Author : OPEN CASCADE
20 //
21
22 // File:      GLViewer_Selector.cxx
23 // Created:   November, 2004
24
25 //#include <GLViewerAfx.h>
26 #include "GLViewer_Selector.h"
27
28 #include "GLViewer_Viewer.h"
29
30 int GLViewer_Selector::apppendKey = Qt::ShiftButton;
31
32 /*!
33     Constructor
34 */
35 GLViewer_Selector::GLViewer_Selector( GLViewer_Viewer* viewer )
36 : QObject( 0 ),
37 myViewer( viewer ),
38 myLocked( false ),
39 myMinRectSize( 1, 1 )
40 {
41 }
42
43 /*!
44     Destructor
45 */
46 GLViewer_Selector::~GLViewer_Selector()
47 {
48 }
49
50 /*!
51     Sets the min size of rectangle to treat it as a rectangle for multiple
52     selection( sensitivity ). If a rectangle size is less than that min size,
53     the right-bottom point of the rectangle will be used for single selection.
54     The default min size is ( 1,1 ). [ public ]
55 */
56 void GLViewer_Selector::setMinRectSize( const QSize& minSize )
57 {
58     myMinRectSize = minSize;
59 }
60
61 /*!
62     Locks / unlocks the selector. If locked, nothing can be selected
63     regadless of the selection mode. [ public ]
64 */
65 void GLViewer_Selector::lock( bool locked )
66 {
67     myLocked = locked;
68 }