Salome HOME
IMP 22264: EDF 2648 GEOM: Propagate edges automatic orientation
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_PropagationHelperWdg.h
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, 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, 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 #ifndef STDMESHERSGUI_PropagationHelperWdg_H
21 #define STDMESHERSGUI_PropagationHelperWdg_H
22
23 #include "SMESH_StdMeshersGUI.hxx"
24
25 #include <QWidget>
26 #include <vector>
27
28 class QPushButton;
29 class QListWidget;
30 class StdMeshersGUI_SubShapeSelectorWdg;
31 class vtkRenderer;
32 class GEOM_Actor;
33
34 /*!
35  * \brief A widget showing a list of propagation chains of EDGEs.
36  * Selecting a chain shows its EDGEs in a viewer with all EDGEs equally oriented,
37  * 'Reverse' button reverses the EDGEs of a selected chain. 'Add' button adds
38  *  EDGEs to a list of reversed EDGEs of StdMeshersGUI_SubShapeSelectorWdg
39  */
40 class STDMESHERSGUI_EXPORT StdMeshersGUI_PropagationHelperWdg : public QWidget
41 {
42   Q_OBJECT
43
44  public:
45   StdMeshersGUI_PropagationHelperWdg( StdMeshersGUI_SubShapeSelectorWdg* subSelectWdg,
46                                       QWidget* parent = 0 );
47   ~StdMeshersGUI_PropagationHelperWdg();
48
49  private slots:
50
51   void                           onShowGeometry(bool toShow);
52   void                           onListSelectionChanged();
53   void                           onAdd(); 
54   void                           onReverse(); 
55   void                           updateList(bool enable);
56
57  private:
58
59   bool                           buildChains();
60   std::vector< int > *           getSelectedChain();
61
62   StdMeshersGUI_SubShapeSelectorWdg* mySubSelectWdg;
63   vtkRenderer*                       myRenderer;
64   GEOM_Actor*                        myActor;
65   GEOM_Actor*                        myModelActor;
66
67   QListWidget*                   myListWidget;
68   QPushButton*                   myAddButton;
69   QPushButton*                   myReverseButton;
70
71   std::vector< std::vector<int> >    myChains;
72 };
73
74 #endif