blob: a823cf0c43cb511720a0819df6fd53f1c06994de (
plain)
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
|
#ifndef FLEETDLG_H
#define FLEETDLG_H
#include <klistview.h>
#include <tqdialog.h>
#include "gamecore.h"
class FleetDlgListViewItem : public TQListViewItem
{
public:
FleetDlgListViewItem(TQListView *tqparent, TQString s1, TQString s2, TQString s3, TQString s4, TQString s5);
int compare(TQListViewItem *i, int col, bool) const;
};
class FleetDlg : public TQDialog {
public:
FleetDlg( TQWidget *tqparent, AttackFleetList *fleets );
private:
void init();
AttackFleetList *fleetList;
TQListView *fleetTable;
};
#endif
|