Salome HOME
This file is given from DESCARTES project
[modules/gui.git] / src / GLViewer / GLViewer_Defs.h
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_Defs.h
23 // Created:   March, 2005
24
25 #ifndef GLVIEWER_DEFS_H
26 #define GLVIEWER_DEFS_H
27
28 #include <qmap.h>
29 #include <qvaluelist.h>
30
31 class GLViewer_Object;
32 //Selection staus 
33 enum SelectionChangeStatus
34 {
35     SCS_Invalid,
36     SCS_Local,
37     SCS_Global
38 };
39
40 //! Fit Selection Rectangle
41 static const int      SELECTION_RECT_GAP = 50;
42
43 //! Display Text Format of Objects
44 enum DisplayTextFormat
45 {
46   DTF_TEXTURE          = 0,
47   DTF_TEXTURE_SCALABLE = 1,
48   DTF_BITMAP           = 2
49 };
50
51 enum SelectionStatus
52 {
53     SS_Invalid,
54     SS_LocalChanged,
55     SS_GlobalChanged,
56     SS_NoChanged
57 };
58
59 typedef QMap<GLViewer_Object*,int> ObjectMap;
60 typedef QValueList<GLViewer_Object*> ObjList;
61
62 #define SEGMENTS   32
63 #define PI         3.14159265359
64 #define STEP       ( float )( 2 * PI / SEGMENTS )
65
66 #endif// GLVIEWER_DEFS_H