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