Salome HOME
This file is given from DESCARTES project
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
18 //
19 //  Author : OPEN CASCADE
20 //
21
22 // File:      GLViewer_Selector.cxx
23 // Created:   November, 2004
24
25 /****************************************************************************
26 **  Class:   GLViewer_Selector
27 **  Descr:   Base class for object selection in QAD-based application
28 **  Module:  GLViewer
29 **  Created: UI team, 22.09.00
30 *****************************************************************************/
31
32 //#include <GLViewerAfx.h>
33 #include "GLViewer_Selector.h"
34
35 #include "GLViewer_Viewer.h"
36
37 int GLViewer_Selector::apppendKey = Qt::ShiftButton;
38
39 /*!
40     Constructor
41 */
42 GLViewer_Selector::GLViewer_Selector( GLViewer_Viewer* viewer )
43 : QObject( 0 ),
44 myViewer( viewer ),
45 myLocked( false ),
46 myMinRectSize( 1, 1 )
47 {
48 }
49
50 /*!
51     Destructor
52 */
53 GLViewer_Selector::~GLViewer_Selector()
54 {
55 }
56
57 /*!
58     Sets the min size of rectangle to treat it as a rectangle for multiple
59     selection( sensitivity ). If a rectangle size is less than that min size,
60     the right-bottom point of the rectangle will be used for single selection.
61     The default min size is ( 1,1 ). [ public ]
62 */
63 void GLViewer_Selector::setMinRectSize( const QSize& minSize )
64 {
65     myMinRectSize = minSize;
66 }
67
68 /*!
69     Locks / unlocks the selector. If locked, nothing can be selected
70     regadless of the selection mode. [ public ]
71 */
72 void GLViewer_Selector::lock( bool locked )
73 {
74     myLocked = locked;
75 }