Salome HOME
SALOME mode correction for dimension constraints editor.
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetLineEdit.cpp
index 1f1dbd5349d34d63f97060c31ba924cdd8075f1d..7f7e187b8319149030c1d77e65de0b407dfec026 100644 (file)
 #include <QLineEdit>
 #include <QObject>
 #include <QString>
+#include <QPainter>
+#include <QResizeEvent>
 
 #include <memory>
 #include <string>
 
+/**
+* Customization of Line edit control
+*/
+class CustomLineEdit : public QLineEdit
+{
+public:
+  /// Constructor
+  /// \param theParent a parent widget
+  /// \param thePlaceHolder a string which is shown when text is empty
+  CustomLineEdit( QWidget* theParent, const QString& thePlaceHolder )
+    : QLineEdit( theParent ), myPlaceHolder( thePlaceHolder )
+  {
+  }
+
+  virtual ~CustomLineEdit()
+  {
+  }
+
+  /// Redefiniotion of virtual method
+  /// \param theEvent a paint event
+  virtual void paintEvent( QPaintEvent* theEvent )
+  {
+    QLineEdit::paintEvent( theEvent );
+    if( text().isEmpty() && !myPlaceHolder.isEmpty() )
+    {
+      QPainter aPainter( this );
+      QRect aRect = rect();
+      int aHorMargin = 5;
+      aRect.adjust( aHorMargin, 0, 0, 0 );
+
+      QColor aColor = palette().text().color();
+      aColor.setAlpha( 128 );
+      QPen anOldpen = aPainter.pen();
+      aPainter.setPen( aColor );
+      QFontMetrics aFontMetrics = fontMetrics();
+      QString elidedText = aFontMetrics.elidedText( myPlaceHolder, Qt::ElideRight, aRect.width() );
+      aPainter.drawText( aRect, Qt::AlignLeft | Qt::AlignVCenter, elidedText );
+      aPainter.setPen( anOldpen );
+    }
+  }
+
+private:
+  QString myPlaceHolder;
+};
+
 ModuleBase_WidgetLineEdit::ModuleBase_WidgetLineEdit(QWidget* theParent,
                                                      const Config_WidgetAPI* theData,
-                                                     const std::string& theParentId)
+                                                     const std::string& theParentId,
+                                                     const std::string& thePlaceHolder )
     : ModuleBase_ModelWidget(theParent, theData, theParentId)
 {
   QFormLayout* aMainLay = new QFormLayout(this);
@@ -39,12 +87,19 @@ ModuleBase_WidgetLineEdit::ModuleBase_WidgetLineEdit(QWidget* theParent,
   if (!aLabelIcon.isEmpty())
     aLabel->setPixmap(QPixmap(aLabelIcon));
 
-  myLineEdit = new QLineEdit(this);
+  myLineEdit = new CustomLineEdit( this, QString::fromStdString( thePlaceHolder ) );
+  // Here we do not use the Qt's standard method setPlaceHolderText() since it
+  // draws the place holder only if there is no focus on widget;
+  // we would like to see the place holder in the case of empty text
+  // even if the widget is focused.
+  // The corresponding patch appears in Qt only since version 5.x
+
   myLineEdit->setMinimumHeight(20);
+
   aMainLay->addRow(aLabel, myLineEdit);
   this->setLayout(aMainLay);
 
-  connect(myLineEdit, SIGNAL(textChanged(const QString&)), this, SLOT(onTextChanged()));
+  connect(myLineEdit, SIGNAL(textChanged(const QString&)), this, SIGNAL(valuesModified()));
 }
 
 ModuleBase_WidgetLineEdit::~ModuleBase_WidgetLineEdit()
@@ -64,7 +119,7 @@ bool ModuleBase_WidgetLineEdit::storeValueCustom() const
   return true;
 }
 
-bool ModuleBase_WidgetLineEdit::restoreValue()
+bool ModuleBase_WidgetLineEdit::restoreValueCustom()
 {
   // A rare case when plugin was not loaded. 
   if(!myFeature)
@@ -86,7 +141,12 @@ QList<QWidget*> ModuleBase_WidgetLineEdit::getControls() const
   return result;
 }
 
-void ModuleBase_WidgetLineEdit::onTextChanged()
+bool ModuleBase_WidgetLineEdit::processEnter()
 {
-  storeValue();
+  bool isModified = getValueState() == ModifiedInPP;
+  if (isModified) {
+    emit valuesChanged();
+    myLineEdit->selectAll();
+  }
+  return isModified;
 }