mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 16:24:45 -07:00
configurable set priority for card pictures
This commit is contained in:
parent
e0d773e4e5
commit
fb03c5cdbb
10 changed files with 242 additions and 17 deletions
20
cockatrice/src/window_sets.h
Normal file
20
cockatrice/src/window_sets.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#ifndef WINDOW_SETS_H
|
||||
#define WINDOW_SETS_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
class SetsModel;
|
||||
class QTreeView;
|
||||
class CardDatabase;
|
||||
|
||||
class WndSets : public QMainWindow {
|
||||
Q_OBJECT
|
||||
private:
|
||||
SetsModel *model;
|
||||
QTreeView *view;
|
||||
public:
|
||||
WndSets(CardDatabase *_db, QWidget *parent = 0);
|
||||
~WndSets();
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue