- Use QLocale to print integration results on GraphView.
- Hide mouse cursor in GraphView.
- Align "Anyanka" text in About window properly.
- Bump version to 0.1d.
const int GlobalInfo::APP_VERSION_MAJ(0);
const int GlobalInfo::APP_VERSION_MIN(1);
-const QString GlobalInfo::APP_VERSION_REV("c");
+const QString GlobalInfo::APP_VERSION_REV("d");
<widget class="QLabel" name="ql_appName">
<property name="geometry">
<rect>
- <x>115</x>
+ <x>8</x>
<y>13</y>
- <width>121</width>
+ <width>345</width>
<height>41</height>
</rect>
</property>
<property name="text">
<string>Anyanka</string>
</property>
+ <property name="alignment">
+ <set>Qt::AlignCenter</set>
+ </property>
</widget>
<widget class="QLabel" name="ql_version">
<property name="geometry">
QLabel(parent)
{
setMouseTracking(true);
+ setCursor(Qt::BlankCursor);
}
void GraphView::leaveEvent(QEvent *)
void SignalView::onUpdateCurrentValues(double x, double y)
{
- ui->qle_xValue->setText(QString::number(x));
- ui->qle_yValue->setText(QString::number(y));
+ QLocale l = QLocale::system();
+ ui->qle_xValue->setText(l.toString(x));
+ ui->qle_yValue->setText(l.toString(y));
}
void SignalView::onRemoveCurrentValues()
int fromX, toX;
double fromY, toY;
bool valley;
+ QLocale l;
if (peak->toIdx() < m_fromIdx || peak->fromIdx() > m_toIdx) /* Peak is not in view X-wise, skip it */
return;
qDebug() << "Slope P" << peak->baselineSlope() << "Slope M" << (toY-fromY)/(toX-fromX);
qDebug("---");*/
- const QString peakTime = QString::number(peak->peakTime(), 'f', 4);
- const QString peakArea = QString("A: ") + QString::number(peak->auc(), 'f', 4);
+ l = QLocale::system();
+ const QString peakTime = l.toString(peak->peakTime(), 'f', 4);
+ const QString peakArea = QString("A: ") + l.toString(peak->auc(), 'f', 4);
if (peak->type() == IntegratedPeak::Type::PEAK)
valley = false;
else