Salome HOME
Merge from V6_5_BR 05/06/2012
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshInfo.h
1 // Copyright (C) 2007-2012  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 //  File   : SMESHGUI_MeshInfo.h
23 //  Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
24
25 #ifndef SMESHGUI_MESHINFO_H
26 #define SMESHGUI_MESHINFO_H
27
28 #include "SMESH_SMESHGUI.hxx"
29 #include <SALOME_InteractiveObject.hxx>
30
31 #include <QFrame>
32 #include <QDialog>
33 #include <QList>
34 #include <QMap>
35 #include <QSet>
36 #include <QTreeWidget>
37 #include <QVector>
38
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(SMESH_Mesh)
41 #include CORBA_SERVER_HEADER(SMESH_Group)
42
43 class QButtonGroup;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QTabWidget;
48 class QTextBrowser;
49 class SMESH_Actor;
50 class SMDS_MeshNode;
51 class SMDS_MeshElement;
52
53 class SMESHGUI_EXPORT SMESHGUI_MeshInfo : public QFrame
54 {
55   Q_OBJECT;
56   
57   enum {
58     iName,
59     iObject,
60     iNodesStart,
61     iNodes,
62     iNodesEnd,
63     iElementsStart = iNodesEnd, 
64     iElements,
65     i0DStart,
66     i0D,
67     i0DEnd,
68     i1DStart       = i0DEnd,
69     i1D,
70     i1DEnd,
71     i2DStart       = i1DEnd,
72     i2D,
73     i2DTriangles,
74     i2DQuadrangles,
75     i2DPolygons,
76     i2DEnd,
77     i3DStart       = i2DEnd,
78     i3D,
79     i3DTetrahedrons,
80     i3DHexahedrons,
81     i3DPyramids,
82     i3DPrisms,
83     i3DHexaPrisms,
84     i3DPolyhedrons,
85     i3DEnd,
86     iElementsEnd   = i3DEnd
87   };
88
89   enum {
90     iSingle = 1,
91     iTotal  = iSingle,
92     iLinear,
93     iQuadratic
94   };
95
96   typedef QList<QWidget*> wlist;
97   typedef QVector<wlist>  iwlist;
98
99 public:
100   SMESHGUI_MeshInfo( QWidget* = 0 );
101   ~SMESHGUI_MeshInfo();
102
103   void     showInfo( SMESH::SMESH_IDSource_ptr );
104   void     clear();
105
106 private:
107   enum { Bold = 0x01, Italic = 0x02 };
108
109   QLabel*  createField();
110   QWidget* createLine();
111   void     setFontAttributes( QWidget*, int, bool = true );
112   void     setFieldsVisible( int, int, bool );
113
114 private slots:
115   void loadMesh();
116
117 private:
118   iwlist       myWidgets;
119   QPushButton* myLoadBtn;
120 };
121
122 class SMESHGUI_EXPORT SMESHGUI_ElemInfo : public QWidget
123 {
124   Q_OBJECT;
125
126 public:
127   SMESHGUI_ElemInfo( QWidget* = 0 );
128   ~SMESHGUI_ElemInfo();
129
130   void         setSource( SMESH_Actor* );
131   void         showInfo( long, bool );
132   void         showInfo( QSet<long>, bool );
133   void         clear();
134
135 protected:
136   struct XYZ
137   {
138     double myX, myY, myZ;
139     XYZ() { myX = myY = myZ = 0.0; }
140     void add( double x, double y, double z ) { myX += x; myY += y; myZ += z; }
141     void divide( double a ) { if ( a != 0.) { myX /= a; myY /= a; myZ /= a; } }
142     double x() const  { return myX; }
143     double y() const  { return myY; }
144     double z() const  { return myZ; }
145   };
146   typedef QMap< int, QList<int> > Connectivity;
147
148   QWidget*     frame() const;
149   SMESH_Actor* actor() const;
150   bool         isElements() const;
151
152   virtual void information( const QList<long>& ) = 0;
153   virtual void clearInternal();
154
155   Connectivity nodeConnectivity( const SMDS_MeshNode* );
156   QString      formatConnectivity( Connectivity, int );
157   XYZ          gravityCenter( const SMDS_MeshElement* );
158
159 private slots:
160   void         showPrevious();
161   void         showNext();
162   void         updateControls();
163
164 private:
165   SMESH_Actor*     myActor;
166   QList<long>      myIDs;
167   int              myIsElement;
168   QWidget*         myFrame;
169   QWidget*         myExtra;
170   QLabel*          myCurrent;
171   QPushButton*     myPrev;
172   QPushButton*     myNext;
173   int              myIndex;
174 };
175
176 class SMESHGUI_EXPORT SMESHGUI_SimpleElemInfo : public SMESHGUI_ElemInfo
177 {
178 public:
179   SMESHGUI_SimpleElemInfo( QWidget* = 0 );
180
181 protected:
182   void          information( const QList<long>& );
183   void          clearInternal();
184
185 private:
186   QTextBrowser* myInfo;
187 };
188
189 class SMESHGUI_EXPORT SMESHGUI_TreeElemInfo : public SMESHGUI_ElemInfo
190 {
191   class ItemDelegate;
192
193   enum { Bold = 0x01, All = 0x80 };
194
195 public:
196   SMESHGUI_TreeElemInfo( QWidget* = 0 );
197
198 protected:
199   void             information( const QList<long>& );
200   void             clearInternal();
201
202 private:
203   QTreeWidgetItem* createItem( QTreeWidgetItem* = 0, int = 0 );
204   
205 private:
206   QTreeWidget*     myInfo;
207 };
208
209 class GrpComputor: public QObject
210 {
211   Q_OBJECT;
212
213 public:
214   GrpComputor( SMESH::SMESH_GroupBase_ptr, QTreeWidgetItem*, QObject* );
215   QTreeWidgetItem* getItem() { return myItem; }
216
217 public slots:
218   void compute();
219
220 private:
221   SMESH::SMESH_GroupBase_var myGroup;
222   QTreeWidgetItem*           myItem;
223 };
224
225 class SMESHGUI_EXPORT SMESHGUI_AddInfo : public QTreeWidget
226 {
227   Q_OBJECT;
228
229   enum { Bold = 0x01, All = 0x80 };
230
231 public:
232   SMESHGUI_AddInfo( QWidget* = 0 );
233   ~SMESHGUI_AddInfo();
234
235   void             showInfo( SMESH::SMESH_IDSource_ptr );
236   //  void             clear();
237 private slots:
238   void             changeLoadToCompute();
239
240 private:
241   QTreeWidgetItem* createItem( QTreeWidgetItem* = 0, int = 0 );
242   void             meshInfo( SMESH::SMESH_Mesh_ptr, QTreeWidgetItem* );
243   void             subMeshInfo( SMESH::SMESH_subMesh_ptr, QTreeWidgetItem* );
244   void             groupInfo( SMESH::SMESH_GroupBase_ptr, QTreeWidgetItem* );
245
246 private:
247   QList<GrpComputor*> myComputors;
248 };
249
250 class SMESHGUI_EXPORT SMESHGUI_MeshInfoDlg : public QDialog
251
252   Q_OBJECT;
253
254   enum { NodeMode, ElemMode };
255
256 public:
257   //! Information type
258   enum { 
259     BaseInfo,  //!< base mesh information
260     ElemInfo,  //!< mesh element information
261     AddInfo    //!< additional information
262   };
263
264   SMESHGUI_MeshInfoDlg( QWidget* = 0, int = BaseInfo );
265   ~SMESHGUI_MeshInfoDlg();
266
267   void showInfo( const Handle(SALOME_InteractiveObject)& );
268   void reject();
269
270 protected:
271   void keyPressEvent( QKeyEvent* );
272   void enterEvent( QEvent* );
273
274 private slots:
275   void help();
276   void updateSelection();
277   void updateInfo();
278   void activate();
279   void deactivate();
280   void modeChanged();
281   void idChanged();
282
283 private:
284   QTabWidget*        myTabWidget;
285   SMESHGUI_MeshInfo* myBaseInfo;
286   QButtonGroup*      myMode;
287   QLineEdit*         myID;
288   SMESHGUI_ElemInfo* myElemInfo;   
289   SMESHGUI_AddInfo*  myAddInfo;
290   SMESH_Actor*       myActor;
291 };
292
293 #endif // SMESHGUI_MESHINFO_H