]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_WidgetSelectionFilter.h
Salome HOME
Update of GUI
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetSelectionFilter.h
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
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 ModuleBase_WidgetSelectionFilter_H
21 #define ModuleBase_WidgetSelectionFilter_H
22
23 #include "ModuleBase.h"
24 #include "ModuleBase_ModelWidget.h"
25 #include "ModuleBase_ViewerPrs.h"
26
27 #include <ModelAPI_Filter.h>
28
29 #include <SelectMgr_IndexedMapOfOwner.hxx>
30 #include <AIS_Shape.hxx>
31 #include <AIS_ListOfInteractive.hxx>
32
33 #include <QWidget>
34 #include <QList>
35
36 class QLabel;
37 class QComboBox;
38 class QGroupBox;
39 class QToolButton;
40 class QVBoxLayout;
41 class QPushButton;
42 class QCheckBox;
43
44 class ModuleBase_IWorkshop;
45
46 class MODULEBASE_EXPORT ModuleBase_FilterStarter: public QWidget
47 {
48   Q_OBJECT
49 public:
50   ModuleBase_FilterStarter(const std::string& theFeature, QWidget* theParent,
51     ModuleBase_IWorkshop* theWorkshop);
52
53   ~ModuleBase_FilterStarter() {}
54
55 private slots:
56   void onFiltersLaunch();
57
58 private:
59   std::string myFeatureName;
60   ModuleBase_IWorkshop* myWorkshop;
61
62   QLabel* myFilterLbl;
63   QLabel* myModifyLbl;
64 };
65
66
67 class ModuleBase_FilterItem : public QWidget
68 {
69   Q_OBJECT
70 public:
71   ModuleBase_FilterItem(const std::string& theFilter, FeaturePtr theSelection, QWidget* theParent);
72
73   std::string filter() const { return myFilterID; }
74
75 signals:
76   void deleteItem(ModuleBase_FilterItem* theItem);
77
78   private slots:
79   void onReverse(bool theCheck);
80   void onDelete();
81
82 private:
83   std::string myFilterID;
84   FiltersFeaturePtr mySelection;
85   QToolButton* myRevBtn;
86 };
87
88 class ModuleBase_WidgetSelectionFilter : public ModuleBase_ModelWidget
89 {
90   Q_OBJECT
91 public:
92   ModuleBase_WidgetSelectionFilter(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
93     const Config_WidgetAPI* theData);
94
95   ~ModuleBase_WidgetSelectionFilter();
96
97   /// Returns list of widget controls
98   /// \return a control list
99   virtual QList<QWidget*> getControls() const;
100
101   /// It is called when user press Ok or OkPlus buttons in the parent property panel
102   /// By default this slot does nothing
103   virtual void onFeatureAccepted();
104
105 protected:
106   /// Saves the internal parameters to the given feature (not ussed for this widget)
107   /// \return True in success
108   virtual bool storeValueCustom() { return true; }
109
110   /// Restore value from attribute data to the widget's control (not ussed for this widget)
111   virtual bool restoreValueCustom() { return true; }
112
113 private slots:
114   void onAddFilter(int);
115   void onDeleteItem(ModuleBase_FilterItem* theItem);
116   void onSelect();
117   void onShowOnly(bool theErase);
118
119 private:
120   void updateSelectBtn();
121   void updateNumberSelected();
122   void clearCurrentSelection(bool toUpdate = false);
123   void updatePreview(const TopoDS_Shape& theShape);
124
125 private:
126   ModuleBase_IWorkshop* myWorkshop;
127
128   QWidget* myFiltersWgt;
129   QVBoxLayout* myFiltersLayout;
130
131   QComboBox* myFiltersCombo;
132   QPushButton* mySelectBtn;
133   QLabel* myNbLbl;
134   QCheckBox* myShowBtn;
135
136   int mySelectionType;
137   std::list<std::string> myFilters;
138   std::list<std::string> myUseFilters;
139
140   QList<ModuleBase_ViewerPrsPtr> myValues;
141   Handle(AIS_Shape) myPreview;
142
143   AIS_ListOfInteractive myListIO;
144
145   FeaturePtr mySelectorFeature;
146   std::string mySelectorAttribute;
147 };
148
149
150 #endif