1 // Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #ifndef STDMESHERSGUI_PropagationHelperWdg_H
20 #define STDMESHERSGUI_PropagationHelperWdg_H
22 #include "SMESH_StdMeshersGUI.hxx"
29 class StdMeshersGUI_SubShapeSelectorWdg;
36 * \brief A widget showing a list of propagation chains of EDGEs.
37 * Selecting a chain shows its EDGEs in a viewer with all EDGEs equally oriented,
38 * 'Reverse' button reverses the EDGEs of a selected chain. 'Add' button adds
39 * EDGEs to a list of reversed EDGEs of StdMeshersGUI_SubShapeSelectorWdg
41 class STDMESHERSGUI_EXPORT StdMeshersGUI_PropagationHelperWdg : public QWidget
46 StdMeshersGUI_PropagationHelperWdg( StdMeshersGUI_SubShapeSelectorWdg* subSelectWdg,
49 ~StdMeshersGUI_PropagationHelperWdg();
55 void onShowGeometry(bool toShow);
56 void onListSelectionChanged();
59 void updateList(bool enable);
64 std::vector< int > * getSelectedChain();
66 StdMeshersGUI_SubShapeSelectorWdg* mySubSelectWdg;
67 vtkRenderer* myRenderer;
69 GEOM_Actor* myModelActor;
71 QListWidget* myListWidget;
72 QPushButton* myAddButton;
73 QPushButton* myReverseButton;
74 QCheckBox* myShowGeomChkBox;
75 QGroupBox* myChainBox;
77 std::vector< std::vector<int> > myChains;