blob: a82ebfa9a88abd4234ae2b523698ab0185e45e35 (
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 *parent, 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 *parent, AttackFleetList *fleets );
private:
void init();
AttackFleetList *fleetList;
TQListView *fleetTable;
};
#endif
|