Salome HOME
Merge Dev_2.1.0 with PythonAPI branch
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetExprEditor.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_WidgetExprEditor.cpp
5  *
6  *  Created on: Aug 28, 2014
7  *      Author: sbh
8  */
9
10 #include <ModuleBase_WidgetExprEditor.h>
11 #include <ModuleBase_Tools.h>
12
13 #include <ModelAPI_Data.h>
14 #include <ModelAPI_Object.h>
15 #include <ModelAPI_Validator.h>
16 #include <ModelAPI_ResultParameter.h>
17 #include <ModelAPI_AttributeString.h>
18 #include <ModelAPI_AttributeDouble.h>
19
20 #include <Config_WidgetAPI.h>
21
22 #include <QVBoxLayout>
23 #include <QLabel>
24 #include <QLineEdit>
25 #include <QObject>
26 #include <QString>
27 #include <QStringListModel>
28 #include <QCompleter>
29 #include <QSize>
30 #include <QShortcut>
31 #include <QScrollBar>
32 #include <QFontMetrics>
33 #include <QPainter>
34
35 #include <memory>
36 #include <string>
37
38 ExpressionEditor::ExpressionEditor(QWidget* theParent)
39 : QPlainTextEdit(theParent), myCompletedAndSelected(false), myIsModified(false)
40 {
41   myCompleter = new QCompleter(this);
42   myCompleter->setWidget(this);
43   myCompleter->setCompletionMode(QCompleter::PopupCompletion);
44
45   myCompleterModel = new QStringListModel(this);
46   myCompleter->setModel(myCompleterModel);
47   // Use sorted model to accelerate completion (QCompleter will use binary search)
48   myCompleter->setModelSorting(QCompleter::CaseInsensitivelySortedModel);
49   myCompleter->setCaseSensitivity(Qt::CaseInsensitive);
50
51   connect(myCompleter, SIGNAL(activated(const QString&)),
52           this,        SLOT(insertCompletion(const QString&)));
53   (void) new QShortcut(QKeySequence(tr("Ctrl+Space", "Complete")),
54                        this, SLOT(performCompletion()));
55
56   connect(this, SIGNAL(textChanged()), this, SLOT(onTextChanged()));
57
58   setTabChangesFocus(true);
59 }
60
61 ExpressionEditor::~ExpressionEditor()
62 {
63
64 }
65
66 void ExpressionEditor::setCompletionList(QStringList& theList)
67 {
68   theList.sort();
69   theList.removeDuplicates();
70   myCompleterModel->setStringList(theList);
71 }
72
73 void ExpressionEditor::insertCompletion(const QString& theCompletion, bool isSingleWord)
74 {
75   QTextCursor aCursor = textCursor();
76   int numberOfCharsToComplete = theCompletion.length() -
77       myCompleter->completionPrefix().length();
78   int insertionPosition = aCursor.position();
79   aCursor.insertText(theCompletion.right(numberOfCharsToComplete));
80   if (isSingleWord) {
81     aCursor.setPosition(insertionPosition);
82     aCursor.movePosition(QTextCursor::EndOfWord, QTextCursor::KeepAnchor);
83     myCompletedAndSelected = true;
84   }
85   setTextCursor(aCursor);
86 }
87
88 void ExpressionEditor::performCompletion()
89 {
90   QTextCursor aCursor = textCursor();
91   aCursor.select(QTextCursor::WordUnderCursor);
92   const QString aPrefix = aCursor.selectedText();
93   if (!aPrefix.isEmpty() && aPrefix.at(aPrefix.length() - 1).isLetter()) {
94     performCompletion(aPrefix);
95   }
96 }
97
98 void ExpressionEditor::performCompletion(const QString& theCompletionPrefix)
99 {
100   //populate model?
101   if (theCompletionPrefix != myCompleter->completionPrefix()) {
102     myCompleter->setCompletionPrefix(theCompletionPrefix);
103     myCompleter->popup()->setCurrentIndex(myCompleter->completionModel()->index(0, 0));
104   }
105   if (myCompleter->completionCount() == 1) {
106     insertCompletion(myCompleter->currentCompletion(), true);
107   } else {
108     QRect aRect = cursorRect();
109     aRect.setWidth(myCompleter->popup()->sizeHintForColumn(0)
110                   + myCompleter->popup()->verticalScrollBar()->sizeHint().width());
111     myCompleter->complete(aRect);
112   }
113 }
114
115 void ExpressionEditor::keyPressEvent(QKeyEvent* theEvent)
116 {
117   bool anIsModified = myIsModified;
118
119   if (myCompletedAndSelected && handledCompletedAndSelected(theEvent))
120     return;
121   myCompletedAndSelected = false;
122   if (myCompleter->popup()->isVisible()) {
123     switch (theEvent->key()) {
124       case Qt::Key_Up:
125       case Qt::Key_Down:
126       case Qt::Key_Escape:
127       case Qt::Key_Enter:
128       case Qt::Key_Return:
129         theEvent->ignore();
130       return;
131       default:
132         myCompleter->popup()->hide();
133         break;
134     }
135   }
136   else {
137     switch (theEvent->key()) {
138       case Qt::Key_Enter:
139       case Qt::Key_Return:
140         emit keyReleased(theEvent);
141         // do not react to the Enter key, the property panel processes it
142         return;
143       break;
144       default:
145         break;
146     }
147   }
148   QPlainTextEdit::keyPressEvent(theEvent);
149 }
150
151 bool ExpressionEditor::handledCompletedAndSelected(QKeyEvent* theEvent)
152 {
153   myCompletedAndSelected = false;
154   QTextCursor aCursor = textCursor();
155   switch (theEvent->key()) {
156     case Qt::Key_Enter:
157     case Qt::Key_Return: aCursor.clearSelection(); break;
158     case Qt::Key_Escape: aCursor.removeSelectedText(); break;
159     default: return false;
160   }
161   setTextCursor(aCursor);
162   theEvent->accept();
163   return true;
164 }
165
166 void ExpressionEditor::setPlaceHolderText( const QString& thePlaceHolderText )
167 {
168   myPlaceHolderText = thePlaceHolderText;
169 }
170
171 QString ExpressionEditor::placeHolderText() const
172 {
173   return myPlaceHolderText;
174 }
175
176 bool ExpressionEditor::isModified() const
177 {
178   return myIsModified;
179 }
180
181 void ExpressionEditor::clearModified()
182 {
183   myIsModified = false;
184 }
185
186 void ExpressionEditor::paintEvent( QPaintEvent* theEvent )
187 {
188   QPlainTextEdit::paintEvent( theEvent );
189
190   if( toPlainText().isEmpty() )
191   {
192     QPainter aPainter( viewport() );
193     QFontMetrics aFontMetrics = fontMetrics();
194
195     QPointF offset(contentOffset());
196     QRect r = rect();
197     int m = (int)document()->documentMargin();
198     QRect lineRect( r.x() + m + offset.x(), offset.y(),
199                     r.width() - 2*m, aFontMetrics.height() );
200
201     Qt::Alignment va = QStyle::visualAlignment( layoutDirection(), Qt::AlignLeft );
202     int minLB = qMax( 0, -aFontMetrics.minLeftBearing() );
203
204     QColor aColor = palette().text().color();
205     aColor.setAlpha( 128 );
206     QPen anOldpen = aPainter.pen();
207     aPainter.setPen( aColor );
208     lineRect.adjust(minLB, 0, 0, 0);
209     QString elidedText = aFontMetrics.elidedText( myPlaceHolderText, Qt::ElideRight, lineRect.width() );
210     aPainter.drawText( lineRect, va, elidedText );
211     aPainter.setPen( anOldpen );
212   }
213 }
214
215 void ExpressionEditor::onTextChanged()
216 {
217   myIsModified = true;
218   emit valueModified();
219 }
220
221
222 ModuleBase_WidgetExprEditor::ModuleBase_WidgetExprEditor( QWidget* theParent,
223                                                           const Config_WidgetAPI* theData,
224                                                           const std::string& theParentId,
225                                                           const std::string& thePlaceHolder )
226     : ModuleBase_ModelWidget(theParent, theData, theParentId)
227 {
228   QVBoxLayout* aMainLay = new QVBoxLayout(this);
229   ModuleBase_Tools::adjustMargins(aMainLay);
230
231   myResultLabel = new QLabel(this);
232   myResultLabel->setWordWrap(true);
233   QFontMetrics fm(myResultLabel->font());
234   myResultLabel->setMinimumHeight(fm.height() * 2); // set 2 line height as minimum
235   myResultLabel->setAlignment(Qt::AlignLeft|Qt::AlignBottom);
236   aMainLay->addWidget(myResultLabel);
237   myEditor = new ExpressionEditor(this);
238   myEditor->setMinimumHeight(20);
239   myEditor->setPlaceHolderText( QString::fromStdString( thePlaceHolder ) );
240   aMainLay->addWidget(myEditor);
241   this->setLayout(aMainLay);
242
243   connect(myEditor, SIGNAL(valueModified()), this, SIGNAL(valuesModified()));
244   connect(myEditor, SIGNAL(keyReleased(QKeyEvent*)), this, SIGNAL(keyReleased(QKeyEvent*)));
245 }
246
247 ModuleBase_WidgetExprEditor::~ModuleBase_WidgetExprEditor()
248 {
249 }
250
251 void ModuleBase_WidgetExprEditor::initializeValueByActivate()
252 {
253 }
254
255 bool ModuleBase_WidgetExprEditor::storeValueCustom() const
256 {
257   // A rare case when plugin was not loaded. 
258   if(!myFeature)
259     return false;
260   DataPtr aData = myFeature->data();
261   AttributeStringPtr aStringAttr = aData->string(attributeID());
262
263   QString aWidgetValue = myEditor->toPlainText();
264   aStringAttr->setValue(aWidgetValue.toStdString());
265   updateObject(myFeature);
266
267   // Try to get the value
268   QString aStateMsg;
269   std::string anErrorMessage = myFeature->string("ExpressionError")->value();
270   if (anErrorMessage.empty()) {
271     ResultParameterPtr aParam =
272       std::dynamic_pointer_cast<ModelAPI_ResultParameter>(myFeature->firstResult());
273     if(aParam.get()) {
274       AttributeDoublePtr aValueAttr =
275         aParam->data()->real(ModelAPI_ResultParameter::VALUE());
276       if (aValueAttr.get()) {
277         double aValue = aValueAttr->value();
278         aStateMsg = "Result: " + QString::number(aValue);
279       }
280     }
281   } else {
282     aStateMsg = "Error: " + QString::fromStdString(anErrorMessage);
283   }
284   myResultLabel->setText(aStateMsg);
285   return true;
286 }
287
288 bool ModuleBase_WidgetExprEditor::restoreValueCustom()
289 {
290   // A rare case when plugin was not loaded. 
291   if(!myFeature)
292     return false;
293   DataPtr aData = myFeature->data();
294   AttributeStringPtr aStringAttr = aData->string(attributeID());
295
296   bool isBlocked = myEditor->blockSignals(true);
297   QTextCursor aCursor = myEditor->textCursor();
298   int pos = aCursor.position();
299   std::string aRestoredStr = aStringAttr->value();
300   myEditor->setPlainText(QString::fromStdString(aRestoredStr));
301   aCursor.setPosition(pos);
302   myEditor->setTextCursor(aCursor);
303   myEditor->blockSignals(isBlocked);
304
305   return true;
306 }
307
308 QList<QWidget*> ModuleBase_WidgetExprEditor::getControls() const
309 {
310   QList<QWidget*> result;
311   result << myEditor;
312   return result;
313 }
314
315 bool ModuleBase_WidgetExprEditor::processEnter()
316 {
317   //bool isModified = myEditor->isModified();
318   bool isModified = getValueState() == ModifiedInPP;
319   if (isModified) {
320     emit valuesChanged();
321     //myEditor->clearModified();
322     myEditor->selectAll();
323   }
324   return isModified;
325 }
326
327 void ModuleBase_WidgetExprEditor::onTextChanged()
328 {
329   emit valuesChanged();
330 }