summaryrefslogtreecommitdiffstats
path: root/konquest/fleetdlg.h
blob: d7425207eb7201858365ac4cadc35f1aa9bb8ba6 (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 <tdelistview.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