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