GUI: Add 'portability' warnings to statistics-dialog.

This commit is contained in:
Kimmo Varis 2010-12-27 11:17:17 +02:00
parent f150f1ba05
commit 2cd4fbfeb2
2 changed files with 441 additions and 418 deletions

View File

@ -283,6 +283,24 @@
</layout>
</item>
<item row="3" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_8">
<item>
<widget class="QLabel" name="label_6">
<property name="text">
<string>Portability warnings:</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="mLblPortability">
<property name="text">
<string>TextLabel</string>
</property>
</widget>
</item>
</layout>
</item>
<item row="4" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_4">
<item>
<widget class="QLabel" name="label_4">
@ -300,7 +318,7 @@
</item>
</layout>
</item>
<item row="4" column="0">
<item row="5" column="0">
<layout class="QHBoxLayout" name="horizontalLayout_6">
<item>
<widget class="QLabel" name="label_5">

View File

@ -113,8 +113,9 @@ void StatsDialog::copyToClipboard()
"\tErrors:\t%8\n"
"\tWarnings:\t%9\n"
"\tStyle warnings:\t%10\n"
"\tPerformance warnings:\t%11\n"
"\tInformation messages:\t%12\n"
"\tPortability warnings:\t%11\n"
"\tPerformance warnings:\t%12\n"
"\tInformation messages:\t%13\n"
)
.arg(mUI.mProject->text())
.arg(mUI.mPaths->text())
@ -126,6 +127,7 @@ void StatsDialog::copyToClipboard()
.arg(mStatistics->GetCount(SHOW_ERRORS))
.arg(mStatistics->GetCount(SHOW_WARNINGS))
.arg(mStatistics->GetCount(SHOW_STYLE))
.arg(mStatistics->GetCount(SHOW_PORTABILITY))
.arg(mStatistics->GetCount(SHOW_PERFORMANCE))
.arg(mStatistics->GetCount(SHOW_INFORMATION));
@ -148,8 +150,9 @@ void StatsDialog::copyToClipboard()
" <tr><th>Errors:</th><td>%8</td></tr>\n"
" <tr><th>Warnings:</th><td>%9</td></tr>\n"
" <tr><th>Style warnings:</th><td>%10</td></tr>\n"
" <tr><th>Performance warnings:</th><td>%11</td></tr>\n"
" <tr><th>Information messages:</th><td>%12</td></tr>\n"
" <tr><th>Portability warnings:</th><td>%11</td></tr>\n"
" <tr><th>Performance warnings:</th><td>%12</td></tr>\n"
" <tr><th>Information messages:</th><td>%13</td></tr>\n"
"</table>\n"
)
.arg(mUI.mProject->text())
@ -162,6 +165,7 @@ void StatsDialog::copyToClipboard()
.arg(mStatistics->GetCount(SHOW_ERRORS))
.arg(mStatistics->GetCount(SHOW_WARNINGS))
.arg(mStatistics->GetCount(SHOW_STYLE))
.arg(mStatistics->GetCount(SHOW_PORTABILITY))
.arg(mStatistics->GetCount(SHOW_PERFORMANCE))
.arg(mStatistics->GetCount(SHOW_INFORMATION));
@ -178,6 +182,7 @@ void StatsDialog::setStatistics(const CheckStatistics *stats)
mUI.mLblErrors->setText(QString("%1").arg(stats->GetCount(SHOW_ERRORS)));
mUI.mLblWarnings->setText(QString("%1").arg(stats->GetCount(SHOW_WARNINGS)));
mUI.mLblStyle->setText(QString("%1").arg(stats->GetCount(SHOW_STYLE)));
mUI.mLblPortability->setText(QString("%1").arg(stats->GetCount(SHOW_PORTABILITY)));
mUI.mLblPerformance->setText(QString("%1").arg(stats->GetCount(SHOW_PERFORMANCE)));
mUI.mLblInformation->setText(QString("%1").arg(stats->GetCount(SHOW_INFORMATION)));
}