]> SALOME platform Git repositories - modules/gui.git/blob - src/LightApp/LightApp_GLSelector.h
Salome HOME
b6360160497bc134a4a0d9b0d68b7ee3567e4f66
[modules/gui.git] / src / LightApp / LightApp_GLSelector.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
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 #ifndef LIGHTAPP_GLSELECTOR_H
20 #define LIGHTAPP_GLSELECTOR_H
21
22 #include "LightApp.h"
23
24 #include <SUIT_Selector.h>
25
26 #include <GLViewer_Viewer2d.h>
27
28 #include <string>
29 #include <GLViewer_Object.h>
30
31 class LightApp_DataObject;
32
33 /*!
34   \class LightApp_GLSelector
35   Custom selector to get/set selection from GL viewer
36 */
37 class LIGHTAPP_EXPORT LightApp_GLSelector : public SUIT_Selector
38 {
39   Q_OBJECT
40
41 public:
42   LightApp_GLSelector( GLViewer_Viewer2d*, SUIT_SelectionMgr* );
43   virtual ~LightApp_GLSelector();
44
45   GLViewer_Viewer2d* viewer() const;
46
47   virtual QString type() const { return GLViewer_Viewer2d::Type(); }
48
49 private slots:
50   void                onSelectionChanged();
51
52 protected:
53   virtual void        getSelection( SUIT_DataOwnerPtrList& ) const;
54   virtual void        setSelection( const SUIT_DataOwnerPtrList& );
55
56 private:
57   GLViewer_Viewer2d*  myViewer;
58 };
59
60
61 #endif