1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#include <tqlayout.h>
#include <kapplication.h>
#include <klocale.h>
#include <kpushbutton.h>
#include <kstdguiitem.h>
#include "scoredlg.h"
ScoreDlgListViewItem::ScoreDlgListViewItem(TQListView *parent, TQString s1, TQString s2, TQString s3, TQString s4, TQString s5, TQString s6) : TQListViewItem(parent, s1, s2, s3, s4, s5, s6)
{
}
int ScoreDlgListViewItem::compare(TQListViewItem *i, int col, bool) const
{
if (col == 0)
{
if (text(col) > i -> text(col)) return 1;
else if (text(col) < i -> text(col)) return -1;
else return 0;
}
else
{
if (text(col).toInt() > i -> text(col).toInt()) return 1;
else if (text(col).toInt() < i -> text(col).toInt()) return -1;
else return compare(i, 0, true);
}
}
ScoreDlg::ScoreDlg( TQWidget *parent, const TQString& title, PlayerList *players )
: TQDialog(parent, "ScoreDlg", true ), plrList(players)
{
setCaption( kapp->makeStdCaption(title) );
scoreTable = new KListView( this, 0 );
scoreTable->addColumn(i18n("Player"));
scoreTable->addColumn(i18n("Ships Built"));
scoreTable->addColumn(i18n("Planets Conquered"));
scoreTable->addColumn(i18n("Fleets Launched"));
scoreTable->addColumn(i18n("Fleets Destroyed"));
scoreTable->addColumn(i18n("Ships Destroyed"));
scoreTable->setMinimumSize( scoreTable->sizeHint() );
KPushButton *okButton = new KPushButton( KStdGuiItem::ok(), this );
okButton->setMinimumSize( okButton->sizeHint() );
okButton->setDefault(true);
TQVBoxLayout *tqlayout1 = new TQVBoxLayout( this );
TQHBoxLayout *tqlayout2 = new TQHBoxLayout;
tqlayout1->addWidget( scoreTable, 1 );
tqlayout1->addLayout( tqlayout2 );
tqlayout2->addStretch( 2 );
tqlayout2->addWidget( okButton );
tqlayout2->addStretch( 2 );
connect( okButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(accept()) );
init();
resize( 580, 140 );
}
void
ScoreDlg::init()
{
Player *curPlayer;
PlayerListIterator itr( *plrList );
for( ;(curPlayer = itr()); )
new ScoreDlgListViewItem(scoreTable,
curPlayer->getName(),
TQString("%1").arg(curPlayer->getShipsBuilt()),
TQString("%1").arg(curPlayer->getPlanetsConquered()),
TQString("%1").arg(curPlayer->getFleetsLaunched()),
TQString("%1").arg(curPlayer->getEnemyFleetsDestroyed()),
TQString("%1").arg(curPlayer->getEnemyShipsDestroyed()));
}
|