Salome HOME
Merge branch 'V9_2_2_BR'
[plugins/hybridplugin.git] / src / GUI / HYBRIDPluginGUI_Enums.h
1 // Copyright (C) 2007-2019  CEA/DEN, EDF 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, or (at your option) any later version.
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
20 //  HYBRIDPlugin GUI: GUI for plugged-in mesher HYBRIDPlugin
21 //  File   : HYBRIDPluginGUI_Enums.h
22 //  Author : Gilles DAVID (Euriware)
23 //  Module : HYBRIDPlugin
24 //
25 #ifndef HYBRIDPLUGINGUI_Enums_HeaderFile
26 #define HYBRIDPLUGINGUI_Enums_HeaderFile
27
28 // tabs
29 enum {
30   STD_TAB = 0,
31   ADV_TAB,
32   FACE_SEL_LAYERS_TAB,
33   FACE_SEL_IMPRINTING_TAB,
34   FACE_SEL_SNAPPING_TAB,
35   ENF_MESH_TAB
36 };
37
38 // Enforced vertices array columns
39 enum {
40   ENF_VER_NAME_COLUMN = 0,
41   ENF_VER_X_COLUMN,
42   ENF_VER_Y_COLUMN,
43   ENF_VER_Z_COLUMN,
44   ENF_VER_SIZE_COLUMN,
45   ENF_VER_ENTRY_COLUMN,
46   ENF_VER_COMPOUND_COLUMN,
47   ENF_VER_GROUP_COLUMN,
48   ENF_VER_NB_COLUMNS
49 };
50
51 // Enforced meshes array columns
52 enum {
53   ENF_MESH_NAME_COLUMN = 0,
54   ENF_MESH_ENTRY_COLUMN,
55   ENF_MESH_CONSTRAINT_COLUMN,
56   ENF_MESH_GROUP_COLUMN,
57   ENF_MESH_NB_COLUMNS
58 };
59
60 // Enforced vertices widget inputs
61 enum {
62   ENF_VER_WARNING = 0,
63   ENF_VER_VERTEX = 0,
64   ENF_VER_X_COORD,
65   ENF_VER_Y_COORD,
66   ENF_VER_Z_COORD,
67   ENF_VER_SIZE,
68   ENF_VER_GROUP,
69   ENF_VER_BTN,
70   ENF_VER_NB_LINES
71 };
72
73 // Enforced meshes widget inputs
74 enum {
75   ENF_MESH_WARNING = 0,
76   ENF_MESH_MESH = 0,
77   ENF_MESH_CONSTRAINT,
78   ENF_MESH_GROUP,
79   ENF_MESH_BTN,
80   ENF_MESH_NB_LINES
81 };
82
83
84 #endif