Salome HOME
Better management of errors.
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetEditor.h
index 049188026867a320f4b08caff602ebfb513dbe02..51d7eff6095781c08fcc254a43c4fcb298bdf3d6 100644 (file)
@@ -36,7 +36,8 @@ Q_OBJECT
   /// Destructor
   virtual ~ModuleBase_WidgetEditor();
 
-  /// Set focus to the first control of the current widget. The focus policy of the control is checked.
+  /// Set focus to the first control of the current widget.
+  /// The focus policy of the control is checked.
   /// If the widget has the NonFocus focus policy, it is skipped.
   /// \return the state whether the widget can accept the focus
   virtual bool focusTo();
@@ -47,6 +48,9 @@ Q_OBJECT
   /// \return true if the editor value is accepted
   bool showPopupEditor(const bool theSendSignals = true);
 
+  /// Set current cursor position
+  /// \param theX the X coordinate
+  /// \param theY the Y coordinate
   void setCursorPosition(const int theX, const int theY);
 
 private:
@@ -58,10 +62,10 @@ private:
 
  private:
    ///< the current widget feature
-   FeaturePtr myFeature;  
+   FeaturePtr myFeature;
 
    ///< the kinds of possible features
-   QStringList myFeatureKinds;  
+   QStringList myFeatureKinds;
 
    int myXPosition, myYPosition;
 };