mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-03 20:13:56 -07:00
initial commit
This commit is contained in:
commit
a11f93df4d
99 changed files with 7493 additions and 0 deletions
26
cockatrice/src/dlg_startgame.h
Normal file
26
cockatrice/src/dlg_startgame.h
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#ifndef DLG_STARTGAME_H
|
||||
#define DLG_STARTGAME_H
|
||||
|
||||
#include <QDialog>
|
||||
#include "decklistmodel.h"
|
||||
|
||||
class QTreeView;
|
||||
class QPushButton;
|
||||
class CardDatabase;
|
||||
|
||||
class DlgStartGame: public QDialog {
|
||||
Q_OBJECT
|
||||
public:
|
||||
DlgStartGame(CardDatabase *_db, QWidget *parent = 0);
|
||||
QStringList getDeckList() const;
|
||||
private slots:
|
||||
void actLoad();
|
||||
private:
|
||||
CardDatabase *db;
|
||||
QTreeView *tableView;
|
||||
DeckListModel *tableModel;
|
||||
|
||||
QPushButton *loadButton, *okButton;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue