summaryrefslogtreecommitdiffstats
path: root/konquest/fleetdlg.h
blob: 7937f69e818c956dd0f3884b76d7c1df41004a73 (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 QListViewItem
{
	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