]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Issue #288: Label can not accept focus
authorvsv <vitaly.smetannikov@opencascade.com>
Thu, 4 Dec 2014 13:40:02 +0000 (16:40 +0300)
committervsv <vitaly.smetannikov@opencascade.com>
Thu, 4 Dec 2014 13:40:02 +0000 (16:40 +0300)
src/ModuleBase/ModuleBase_WidgetLabel.h
src/XGUI/XGUI_Displayer.h

index f7511396ba8d1271c652be626ebd5f4b999133bf..81c7be59239fa714ae81ed2c170a6eb335392a55 100644 (file)
@@ -33,6 +33,9 @@ Q_OBJECT
 
   QWidget* getControl() const;
 
+  /// This control doesn't accept focus
+  virtual bool focusTo() { return false; }
+
 private:
   QLabel* myLabel;
 };
index d4167f5bacc0d1b0625f06be5b39ed978564c76c..f0227a67b7d0dd81f6f9da079ea3760ec3bcf76e 100644 (file)
@@ -140,7 +140,7 @@ class XGUI_EXPORT XGUI_Displayer
   void setDisplayMode(ObjectPtr theObject, DisplayMode theMode, bool toUpdate = true);
 
   /// Returns current display mode for the given object.
-  /// If object is not displayed then returns NoMode.
+  /// If object is not dis played then returns NoMode.
   DisplayMode displayMode(ObjectPtr theObject) const;