Salome HOME
c3a0b7ae1d958b442f55ae55a025ab93feb52a5a
[modules/geom.git] / src / EntityGUI / EntityGUI_FieldDlg.h
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  GEOM GEOMGUI : GUI for Geometry component
24 //  File   : EntityGUI_FieldDlg.h
25
26 #ifndef EntityGUI_FieldDlg_H
27 #define EntityGUI_FieldDlg_H
28
29 #include <GEOMBase_Skeleton.h>
30
31 #include <TopAbs_ShapeEnum.hxx>
32 #include <TColStd_DataMapOfIntegerInteger.hxx>
33 #include <TColStd_IndexedMapOfInteger.hxx>
34 #include <TopTools_IndexedMapOfShape.hxx>
35
36 #include <QMap>
37 #include <QSet>
38 #include <QVector>
39 #include <QTableWidget>
40
41 class QGroupBox;
42 class QLineEdit;
43 class QPushButton;
44 class QComboBox;
45 class SalomeApp_IntSpinBox;
46
47 //=================================================================================
48 // class    : EntityGUI_FieldDlg
49 // purpose  :
50 //=================================================================================
51 class EntityGUI_FieldDlg : public GEOMBase_Skeleton
52 {
53   Q_OBJECT
54
55   class StepTable;
56   class IntSpinItem;
57   class DoubleSpinItem;
58   class CheckItem;
59   class Delegate;
60
61 public:
62
63   EntityGUI_FieldDlg (GeometryGUI* theGeometryGUI,
64                       GEOM::GEOM_Field_ptr theField, int stepID=0,
65                       QWidget* parent=0,
66                       bool modal=false, Qt::WindowFlags fl=0);
67   ~EntityGUI_FieldDlg();
68
69 protected:
70   // redefined from GEOMBase_Helper
71   virtual GEOM::GEOM_IOperations_ptr  createOperation();
72   virtual bool                        isValid (QString&);
73   virtual bool                        execute ();
74
75 private slots:
76   void                                ClickOnOk();
77   bool                                ClickOnApply();
78   void                                ActivateThisDialog();
79   void                                SelectionIntoArgument();
80   void                                SetEditCurrentArgument();
81
82   void                                onPrevStep();
83   void                                onNextStep();
84   void                                onAddStep();
85   void                                onRmStep();
86   void                                onStampChange();
87   void                                onDimChange();
88   void                                onTypeChange();
89   void                                onNbCompsChange();
90   void                                showCurStep();
91   void                                highlightSubShapes();
92
93 private:
94   void                                Init();
95   void                                enterEvent (QEvent*);
96   void                                activateSelection();
97
98   TopAbs_ShapeEnum                    getShapeType(int* dim=0) const;
99   int                                 getDim() const;
100   int                                 getDataType() const;
101   int                                 getCurStepID() const;
102   int                                 getNbComps() const;
103   void                                updateShapeIDs();
104   void                                updateDims(int curDim=-1);
105   int                                 getSelectedSubshapes (TColStd_IndexedMapOfInteger& map);
106
107 private:
108
109   bool                                myIsCreation;
110   GEOM::GEOM_Field_var                myField;
111   GEOM::GEOM_Object_var               myShape;
112   QVector< int >                      myShapeIDs;
113   TopTools_IndexedMapOfShape          myShapeMap;
114
115   int                                 myCurStepID;
116   StepTable*                          myCurStepTable;
117   QMap< int, StepTable* >             myStepTables;
118   QSet< int >                         myRemovedSteps;
119
120   int                                 myDmMode;
121   bool                                myIsHiddenMain;
122
123   QPushButton*                        myShapeSelBtn;
124   QLineEdit*                          myShapeName;
125   QComboBox*                          myTypeCombo;
126   QComboBox*                          myDimCombo;
127   QPushButton*                        myPrevStepBtn;
128   QPushButton*                        myNextStepBtn;
129   QPushButton*                        myRmStepBtn;
130
131   SalomeApp_IntSpinBox*               myNbCompsSpin;
132   QWidget*                            mySwitchTableWdg;
133   QComboBox*                          myStepsCombo;
134   SalomeApp_IntSpinBox*               myStampSpin;
135
136 };
137
138 /*
139   Class       : EntityGUI_FieldDlg::StepTable
140   Description : Table widget
141 */
142
143 class EntityGUI_FieldDlg::StepTable : public QTableWidget
144 {
145   Q_OBJECT
146
147   int                      myDataType;
148   int                      myStepID;
149   int                      myStamp;
150   GEOM::GEOM_FieldStep_var myStep;
151   bool                     myIsChanged;
152
153   QTableWidgetItem * newDefaultItem();
154 public:
155   StepTable( int stepID, int dataType, int nbRows, int nbColumns,
156              QString shapeName, QStringList headers,
157              GEOM::GEOM_FieldStep_ptr stepVar, QWidget* = 0 );
158   virtual ~StepTable();
159
160   QSize                    minimumSizeHint() const;
161
162   void                     setEditable( bool, int, int );
163   bool                     isEditable( int, int ) const;
164
165   void                     setReadOnly( bool );
166   bool                     isReadOnly() const;
167
168   void                     insertRows( int, int = 1 );
169   QString                  text( int, int );
170
171   QList<int>               selectedRows();
172   void                     selectRows(const QList<int>& rows);
173
174   void                     setDim( int nbRows, QString shapeName, bool setDefault=true );
175   void                     setNbComps( int nbComps );
176   void                     setDataType( int dataType );
177   void                     setStamp( int stamp ) { myStamp = stamp; }
178   int                      getStamp() { return myStamp; }
179   int                      getStepID() { return myStepID; }
180   QStringList              getHeaders();
181   void                     setHeaders(const QStringList& headers);
182   GEOM::GEOM_FieldStep_var getStep() { return myStep; }
183   void                     setValues(GEOM::GEOM_FieldStep_var& step);
184 public slots:
185   void                     setIsChanged() { myIsChanged = true; }
186 };
187
188 #endif