Salome HOME
22573: [CEA 1154] Regression on a blsurf mesh (crash on test_periodicity_LR_ONLY.py)
[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 class QCheckBox;
34 class QGroupBox;
35
36 /*!
37  * \brief A widget showing a list of propagation chains of EDGEs.
38  * Selecting a chain shows its EDGEs in a viewer with all EDGEs equally oriented,
39  * 'Reverse' button reverses the EDGEs of a selected chain. 'Add' button adds
40  *  EDGEs to a list of reversed EDGEs of StdMeshersGUI_SubShapeSelectorWdg
41  */
42 class STDMESHERSGUI_EXPORT StdMeshersGUI_PropagationHelperWdg : public QWidget
43 {
44   Q_OBJECT
45
46  public:
47   StdMeshersGUI_PropagationHelperWdg( StdMeshersGUI_SubShapeSelectorWdg* subSelectWdg,
48                                       QWidget* parent = 0,
49                                       bool show = true);
50   ~StdMeshersGUI_PropagationHelperWdg();
51
52   void                           Clear();
53
54  private slots:
55
56   void                           onShowGeometry(bool toShow);
57   void                           onListSelectionChanged();
58   void                           onAdd(); 
59   void                           onReverse(); 
60   void                           updateList(bool enable);
61
62  private:
63
64   bool                           buildChains();
65   std::vector< int > *           getSelectedChain();
66
67   StdMeshersGUI_SubShapeSelectorWdg* mySubSelectWdg;
68   vtkRenderer*                       myRenderer;
69   GEOM_Actor*                        myActor;
70   GEOM_Actor*                        myModelActor;
71
72   QListWidget*                       myListWidget;
73   QPushButton*                       myAddButton;
74   QPushButton*                       myReverseButton;
75   QCheckBox*                         myShowGeomChkBox;
76   QGroupBox*                         myChainBox;
77
78   std::vector< std::vector<int> >    myChains;
79 };
80
81 #endif