Show buttons only when more than one tip is available

Task-number: QTCREATORBUG-3160
Reviewed-by: con
This commit is contained in:
Daniel Molkentin
2010-11-30 13:26:14 +01:00
committed by con
parent 03369da502
commit e0084d9ef0

View File

@@ -140,8 +140,8 @@ GettingStartedWelcomePageWidget::GettingStartedWelcomePageWidget(QWidget *parent
const QString featureRssFile = Core::ICore::instance()->resourcePath()+QLatin1String("/rss/featured.rss");
emit startRssFetching(QUrl::fromLocalFile(featureRssFile));
ui->nextFeatureBtn->setEnabled(false);
ui->prevFeatureBtn->setEnabled(false);
ui->nextFeatureBtn->hide();
ui->prevFeatureBtn->hide();
connect(ui->nextFeatureBtn, SIGNAL(clicked()), this, SLOT(slotNextFeature()));
connect(ui->prevFeatureBtn, SIGNAL(clicked()), this, SLOT(slotPrevFeature()));
}
@@ -525,8 +525,10 @@ QStringList GettingStartedWelcomePageWidget::tipsOfTheDay()
void GettingStartedWelcomePageWidget::addToFeatures(const RssItem &feature)
{
m_featuredItems.append(feature);
ui->nextFeatureBtn->setEnabled(true);
ui->prevFeatureBtn->setEnabled(true);
if (m_featuredItems.count() > 1) {
ui->nextFeatureBtn->show();
ui->prevFeatureBtn->show();
}
}
void GettingStartedWelcomePageWidget::showFeature(int feature)