mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-30 18:43:55 -07:00
initial commit of local server code
This commit is contained in:
parent
cbfbc542e7
commit
7921b5f82d
35 changed files with 143 additions and 365 deletions
|
|
@ -4,7 +4,7 @@
|
|||
#include "tab.h"
|
||||
#include "protocol.h"
|
||||
|
||||
class Client;
|
||||
class AbstractClient;
|
||||
class QTreeView;
|
||||
class QFileSystemModel;
|
||||
class QSortFilterProxyModel;
|
||||
|
|
@ -18,7 +18,7 @@ class RemoteDeckList_TreeWidget;
|
|||
class TabDeckStorage : public Tab {
|
||||
Q_OBJECT
|
||||
private:
|
||||
Client *client;
|
||||
AbstractClient *client;
|
||||
QTreeView *localDirView;
|
||||
QFileSystemModel *localDirModel;
|
||||
QSortFilterProxyModel *sortFilter;
|
||||
|
|
@ -45,7 +45,7 @@ private slots:
|
|||
void actDelete();
|
||||
void deleteFinished(ResponseCode resp);
|
||||
public:
|
||||
TabDeckStorage(Client *_client);
|
||||
TabDeckStorage(AbstractClient *_client);
|
||||
void retranslateUi();
|
||||
QString getTabText() const { return tr("Deck storage"); }
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue