Salome HOME
Issue #2948: Synchronize selection for filters controls
[modules/shaper.git] / src / ModuleBase / ModuleBase_Dialog.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_Dialog_H
21 #define ModuleBase_Dialog_H
22
23 #include "ModuleBase.h"
24 #include <ModelAPI_Feature.h>
25
26 #include <QDialog>
27 #include <string>
28
29
30 class ModuleBase_IWorkshop;
31 class ModuleBase_ModelWidget;
32 class QDialogButtonBox;
33
34
35 /**
36  * \ingroup GUI
37  * A dialog box which is used for modal dialog box feature interface
38  */
39 class ModuleBase_Dialog : public QDialog
40 {
41   Q_OBJECT
42 public:
43   /// Constructor
44   /// \param theParent a workshop object instance
45   /// \param theId an Id of a feature
46   /// \param theDescription an XML description of the feature
47   ModuleBase_Dialog(ModuleBase_IWorkshop* theParent, const QString& theId,
48                     const std::string& theDescription);
49
50   /// Redefinition of virtual method
51   virtual void accept();
52
53 protected:
54   /// Redefinition of virtual method
55   virtual void showEvent(QShowEvent* theEvent);
56
57 private:
58   /// Initialising of the widget
59   void initializeWidget(ModuleBase_ModelWidget* theWidget);
60
61   /// Id of the feature
62   QString myId;
63
64   /// XML description of the feature
65   std::string myDescription;
66
67   /// An instance of workshop object
68   ModuleBase_IWorkshop* myWorkshop;
69
70   /// The feature instance
71   FeaturePtr myFeature;
72
73   /// List of created widgets
74   QList<ModuleBase_ModelWidget*> myWidgets;
75
76   /// Pointer on active widget
77   ModuleBase_ModelWidget* myActiveWidget;
78
79   /// Buttons of the dialog
80   QDialogButtonBox* myButtonsBox;
81 };
82
83 #endif