Salome HOME
Adding Naming DS for Placement operation.
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetEditor.h
index 4585bdbbc110d2cb72aa4ee69083d1bd92d975f1..ded82628957ee54451f83046cd567772af409561 100644 (file)
@@ -20,13 +20,14 @@ class QLineEdit;
  */
 class MODULEBASE_EXPORT ModuleBase_WidgetEditor : public ModuleBase_WidgetDoubleValue
 {
-  Q_OBJECT
-public:
+Q_OBJECT
+ public:
   /// Constructor
   /// \theParent the parent object
   /// \theParent the parent object
   /// \theData the widget configuation. The attribute of the model widget is obtained from
-  ModuleBase_WidgetEditor(QWidget* theParent, const Config_WidgetAPI* theData);
+  ModuleBase_WidgetEditor(QWidget* theParent, const Config_WidgetAPI* theData,
+                          const std::string& theParentId);
   /// Constructor
   /// \theParent the parent object
   /// \theParent the parent object
@@ -46,9 +47,13 @@ public:
   /// \param theAttribute the feature attribute
   static void editFeatureValue(FeaturePtr theFeature, const std::string theAttribute);
 
-private:
-  FeaturePtr myFeature; ///< the current widget feature
-  QStringList myFeatureKinds; ///< the kinds of possible features
+ private slots:
+   /// Shous popup window under cursor for data editing
+   void showPopupEditor();
+
+ private:
+  FeaturePtr myFeature;  ///< the current widget feature
+  QStringList myFeatureKinds;  ///< the kinds of possible features
 };
 
 #endif