X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetEditor.h;h=063dd2b2b33d56ddf980e940fadcb8662f0ecb55;hb=29dfb8a802f61cacf5f57fb79c62badee00ebcdf;hp=8f494b366decf324104319c0fbc82f85658b219c;hpb=a6d1e8be5db1d94fdee39c412b8393d74bfcca2f;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetEditor.h b/src/ModuleBase/ModuleBase_WidgetEditor.h index 8f494b366..063dd2b2b 100644 --- a/src/ModuleBase/ModuleBase_WidgetEditor.h +++ b/src/ModuleBase/ModuleBase_WidgetEditor.h @@ -43,11 +43,15 @@ Q_OBJECT /// \return the state whether the widget can accept the focus virtual bool focusTo(); - /// Shous popup window under cursor for data editing - void showPopupEditor(); + /// Shous popup window under cursor for data editing + /// \param theSendSignals a flag whether the signals should be sent or the value + /// is to be applyed directly + void showPopupEditor(const bool theSendSignals = true); -protected slots: - void onKeyReleased(QKeyEvent* theEvent); + void setCursorPosition(const int theX, const int theY); + +//protected slots: + //void onEnterPressed(); private: void editedValue(double& outValue, QString& outText); @@ -59,7 +63,9 @@ private: ///< the kinds of possible features QStringList myFeatureKinds; - bool myIsKeyReleasedEmitted; + //bool myIsEnterPressedEmitted; + + int myXPosition, myYPosition; }; #endif