You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.6 KiB
58 lines
1.6 KiB
#include "gamestatsimpl.h"
|
|
#include "dealer.h"
|
|
#include "version.h"
|
|
|
|
#include <tqcombobox.h>
|
|
#include <tqlabel.h>
|
|
|
|
#include <kapplication.h>
|
|
#include <tdeconfig.h>
|
|
#include <klocale.h>
|
|
|
|
GameStatsImpl::GameStatsImpl(TQWidget* aParent, const char* aname)
|
|
: GameStats(aParent, aname)
|
|
{
|
|
TQStringList list;
|
|
TQValueList<DealerInfo*>::ConstIterator it;
|
|
for (it = DealerInfoList::self()->games().begin();
|
|
it != DealerInfoList::self()->games().end(); ++it)
|
|
{
|
|
// while we develop, it may happen that some lower
|
|
// indices do not exist
|
|
uint index = (*it)->gameindex;
|
|
for (uint i = 0; i <= index; i++)
|
|
if (list.count() <= i)
|
|
list.append("unknown");
|
|
list[index] = i18n((*it)->name);
|
|
list[index].replace('&',"");
|
|
}
|
|
GameType->insertStringList(list);
|
|
showGameType(0);
|
|
}
|
|
|
|
void GameStatsImpl::showGameType(int id)
|
|
{
|
|
GameType->setCurrentItem(id);
|
|
setGameType(id);
|
|
}
|
|
|
|
void GameStatsImpl::setGameType(int id)
|
|
{
|
|
// Trick to reset string to original value
|
|
languageChange();
|
|
TDEConfig *config = kapp->config();
|
|
TDEConfigGroupSaver kcs(config, scores_group);
|
|
unsigned int t = config->readUnsignedNumEntry(TQString("total%1").arg(id),0);
|
|
Played->setText(Played->text().arg(t));
|
|
unsigned int w = config->readUnsignedNumEntry(TQString("won%1").arg(id),0);
|
|
Won->setText(Won->text().arg(w));
|
|
if (t)
|
|
WonPerc->setText(WonPerc->text().arg(w*100/t));
|
|
else
|
|
WonPerc->setText(WonPerc->text().arg(0));
|
|
WinStreak->setText(
|
|
WinStreak->text().arg(config->readUnsignedNumEntry(TQString("maxwinstreak%1").arg(id),0)));
|
|
LooseStreak->setText(
|
|
LooseStreak->text().arg(config->readUnsignedNumEntry(TQString("maxloosestreak%1").arg(id),0)));
|
|
}
|