<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from rtf -->
<style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<font face="Calibri" size="2"><span style="font-size:11pt;">
<div>Hello</div>
<div> </div>
<div>I noticed a bug in paraview on parsing double values in QLineEdits, e.g. in pqDoubleEdit:</div>
<div> </div>
<div>double pqDoubleEdit::value()</div>
<div>{</div>
<div>  QString currentText = this->text();</div>
<div>  int currentPos = this->cursorPosition();</div>
<div>  QDoubleValidator dvalidator(NULL);</div>
<div>  QValidator::State state = dvalidator.validate(currentText, currentPos);</div>
<div>  if (state == QValidator::Acceptable || state == QValidator::Intermediate)</div>
<div>    {</div>
<div>    return currentText.toDouble();</div>
<div>    }</div>
<div>  return 0.0;</div>
<div>}</div>
<div> </div>
<div>The Problem is that QDoubleValidator uses the current locale. If the current locale is e.g. German that e.g. “0.1” is not allowed, only “0,1”. On the other side the QString function toDouble cannot parse it correctly, see documentation <a href="http://doc.qt.io/qt-5/qstring.html#toDouble"><font color="blue"><u>http://doc.qt.io/qt-5/qstring.html#toDouble</u></font></a>
, here the <a href="http://doc.qt.io/qt-5/qlocale.html#toDouble"><font color="blue"><u>http://doc.qt.io/qt-5/qlocale.html#toDouble</u></font></a> is recommended…. So all QLineEdit functions with toDouble must be replaced by </div>
<div>QLocale oL;</div>
<div>Double dValue = oL.toDouble( lineEdit->text())</div>
<div> </div>
<div>Nasty….Other solution would be to set the locale to English for whole paraview regardless to the system locale, but I don’t know if that is possible (also not very beautiful)…</div>
<div> </div>
<div>Best regards</div>
<div> </div>
<div> </div>
<div><b>------------------------------------------------------------------------------------</b></div>
<div><b>Gerald Lodron</b></div>
<div><font size="1"><span style="font-size:7.5pt;"> </span></font></div>
<div><font color="gray">Researcher of Machine Vision Applications Group</font></div>
<div><font color="gray">DIGITAL - Institute for Information and Communication Technologies</font></div>
<div> </div>
<div><font size="1" color="gray"><span style="font-size:7.5pt;">JOANNEUM RESEARCH Forschungsgesellschaft mbH</span></font></div>
<div><font size="1" color="gray"><span style="font-size:7.5pt;">Steyrergasse 17, 8010 Graz, AUSTRIA</span></font></div>
<div> </div>
<div><font size="1" color="gray"><span style="font-size:7.5pt;">phone:   +43-316-876-1751   </span></font></div>
<div><font size="1" color="gray"><span style="font-size:7.5pt;">general fax: +43-316-876-1751</span></font></div>
<div><font size="1" color="gray"><span style="font-size:7.5pt;">web: <a href="http://www.joanneum.at/digital"><u>http://www.joanneum.at/digital</u></a></span></font></div>
<div><font size="1" color="gray"><span style="font-size:7.5pt;">e-mail: <a href="mailto:gerald.lodron@joanneum.at"><font color="blue"><u>gerald.lodron@joanneum.at</u></font></a></span></font></div>
<div> </div>
<div> </div>
<div> </div>
</span></font>
</body>
</html>