You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
542 B
30 lines
542 B
#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
|