mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-01 02:53:56 -07:00
remote deck loading finished
This commit is contained in:
parent
cf21528a69
commit
4fac0e5b5a
14 changed files with 220 additions and 184 deletions
24
cockatrice/src/dlg_load_remote_deck.h
Normal file
24
cockatrice/src/dlg_load_remote_deck.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef DLG_STARTGAME_H
|
||||
#define DLG_STARTGAME_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
class RemoteDeckList_TreeWidget;
|
||||
class QTreeWidgetItem;
|
||||
class Client;
|
||||
class QPushButton;
|
||||
|
||||
class DlgLoadRemoteDeck: public QDialog {
|
||||
Q_OBJECT
|
||||
private:
|
||||
Client *client;
|
||||
RemoteDeckList_TreeWidget *dirView;
|
||||
QPushButton *okButton, *cancelButton;
|
||||
private slots:
|
||||
void currentItemChanged(QTreeWidgetItem *current, QTreeWidgetItem *previous);
|
||||
public:
|
||||
DlgLoadRemoteDeck(Client *_client, QWidget *parent = 0);
|
||||
int getDeckId() const;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue