font tweaks

This commit is contained in:
doitux
2010-09-05 12:26:36 +00:00
parent c580417b7d
commit 01a89f850e
2 changed files with 9 additions and 5 deletions
@@ -69,8 +69,8 @@ gameLobbyDialogImpl::gameLobbyDialogImpl(startWindowImpl *parent, ConfigFile *c)
autoStartTimerOverlay = new QLabel(scrollArea_gameInfos); autoStartTimerOverlay = new QLabel(scrollArea_gameInfos);
autoStartTimerOverlay->hide(); autoStartTimerOverlay->hide();
autoStartTimerOverlay->setWordWrap(TRUE); autoStartTimerOverlay->setWordWrap(TRUE);
autoStartTimerOverlay->setMaximumWidth(180); autoStartTimerOverlay->setMaximumWidth(190);
autoStartTimerOverlay->setMinimumWidth(180); autoStartTimerOverlay->setMinimumWidth(190);
autoStartTimerOverlay->setTextFormat(Qt::RichText); autoStartTimerOverlay->setTextFormat(Qt::RichText);
autoStartTimerOverlay->setAlignment(Qt::AlignCenter); autoStartTimerOverlay->setAlignment(Qt::AlignCenter);
autoStartTimerOverlay->setAutoFillBackground(TRUE); autoStartTimerOverlay->setAutoFillBackground(TRUE);
@@ -1549,8 +1549,10 @@ void gameLobbyDialogImpl::showAutoStartTimer()
{ {
autoStartTimerOverlay->show(); autoStartTimerOverlay->show();
autoStartTimerOverlay->setGeometry(((scrollArea_gameInfos->geometry().width()-180)/2), ((scrollArea_gameInfos->geometry().height()-50)/2), 180, 50); autoStartTimerOverlay->setGeometry(((scrollArea_gameInfos->geometry().width()-190)/2), ((scrollArea_gameInfos->geometry().height()-50)/2), 190, 50);
autoStartTimerOverlay->setText(tr("The game will start in<br><b>%1</b> seconds.").arg(6));
QString string(tr("The game will start in<br><b>%1</b> seconds.").arg(6));
autoStartTimerOverlay->setText("<span style='font-size:9pt;'>"+string+"</span>");
autoStartTimerCounter = 6; autoStartTimerCounter = 6;
autoStartTimer->start(1000); autoStartTimer->start(1000);
@@ -1560,7 +1562,8 @@ void gameLobbyDialogImpl::updateAutoStartTimer()
{ {
--autoStartTimerCounter; --autoStartTimerCounter;
if(autoStartTimerCounter) { if(autoStartTimerCounter) {
autoStartTimerOverlay->setText(tr("The game will start in<br><b>%1</b> seconds.").arg(autoStartTimerCounter)); QString string(tr("The game will start in<br><b>%1</b> seconds.").arg(autoStartTimerCounter));
autoStartTimerOverlay->setText("<span style='font-size:9pt;'>"+string+"</span>");
} }
else { else {
autoStartTimer->stop(); autoStartTimer->stop();
@@ -171,6 +171,7 @@ startWindowImpl::startWindowImpl(ConfigFile *c)
if(!checkForFirstStartAfterUpdated().isEmpty()) { if(!checkForFirstStartAfterUpdated().isEmpty()) {
qDebug() << checkForFirstStartAfterUpdated(); qDebug() << checkForFirstStartAfterUpdated();
} }
} }
startWindowImpl::~startWindowImpl() startWindowImpl::~startWindowImpl()