Salome HOME
Use ModelWidgets for filters 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_WidgetSelectionFilter;
68
69 class ModuleBase_FilterItem : public QWidget
70 {
71   Q_OBJECT
72 public:
73   ModuleBase_FilterItem(const std::string& theFilter, ModuleBase_WidgetSelectionFilter* theParent);
74
75   std::string filter() const { return myFilterID; }
76
77 signals:
78   void deleteItem(ModuleBase_FilterItem* theItem);
79   void reversedItem(ModuleBase_FilterItem* theItem);
80
81 private slots:
82   void onReverse(bool theCheck);
83   void onDelete();
84
85 private:
86   void addItemRow(QWidget* theParent);
87
88   std::string myFilterID;
89   FiltersFeaturePtr mySelection;
90   QToolButton* myRevBtn;
91 };
92
93 class ModuleBase_WidgetSelectionFilter : public ModuleBase_ModelWidget
94 {
95   Q_OBJECT
96 public:
97   ModuleBase_WidgetSelectionFilter(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
98     const Config_WidgetAPI* theData);
99
100   ~ModuleBase_WidgetSelectionFilter();
101
102   /// Returns list of widget controls
103   /// \return a control list
104   virtual QList<QWidget*> getControls() const;
105
106   /// It is called when user press Ok or OkPlus buttons in the parent property panel
107   /// By default this slot does nothing
108   virtual void onFeatureAccepted();
109
110   ModuleBase_IWorkshop* workshop() const { return myWorkshop; }
111
112   QWidget* filtersWidget() const { return myFiltersWgt; }
113
114 protected:
115   /// Saves the internal parameters to the given feature (not ussed for this widget)
116   /// \return True in success
117   virtual bool storeValueCustom() { return true; }
118
119   /// Restore value from attribute data to the widget's control (not ussed for this widget)
120   virtual bool restoreValueCustom() { return true; }
121
122 private slots:
123   void onAddFilter(int);
124   void onDeleteItem(ModuleBase_FilterItem* theItem);
125   void onReverseItem(ModuleBase_FilterItem* theItem);
126   void onSelect();
127   void onShowOnly(bool theErase);
128
129 private:
130   void updateSelectBtn();
131   void updateNumberSelected();
132   void clearCurrentSelection(bool toUpdate = false);
133   void updatePreview(const TopoDS_Shape& theShape);
134
135 private:
136   ModuleBase_IWorkshop* myWorkshop;
137
138   QWidget* myFiltersWgt;
139   QVBoxLayout* myFiltersLayout;
140
141   QComboBox* myFiltersCombo;
142   QPushButton* mySelectBtn;
143   QLabel* myNbLbl;
144   QCheckBox* myShowBtn;
145
146   int mySelectionType;
147   std::list<std::string> myFilters;
148   std::list<std::string> myUseFilters;
149
150   QList<ModuleBase_ViewerPrsPtr> myValues;
151   Handle(AIS_Shape) myPreview;
152
153   AIS_ListOfInteractive myListIO;
154
155   FeaturePtr mySelectorFeature;
156   std::string mySelectorAttribute;
157 };
158
159
160 #endif