mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-08-01 16:37:44 -07:00
Tokens created through Ctrl + T use the pinned printing, if available. Tokens created through a related card menu use a token from the same set, if available. Took 2 hours 25 minutes Took 10 seconds Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
#ifndef DLG_CREATETOKEN_H
|
|
#define DLG_CREATETOKEN_H
|
|
|
|
#include <QDialog>
|
|
#include <QModelIndex>
|
|
|
|
class QLabel;
|
|
class QLineEdit;
|
|
class QComboBox;
|
|
class QCheckBox;
|
|
class QPushButton;
|
|
class QRadioButton;
|
|
class QCloseEvent;
|
|
class QTreeView;
|
|
class DeckList;
|
|
class CardDatabaseModel;
|
|
class TokenDisplayModel;
|
|
class CardInfoPictureWidget;
|
|
|
|
struct TokenInfo
|
|
{
|
|
QString name;
|
|
QString color;
|
|
QString pt;
|
|
QString annotation;
|
|
bool destroy = true;
|
|
bool faceDown = false;
|
|
QString providerId;
|
|
};
|
|
|
|
class DlgCreateToken : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DlgCreateToken(const QStringList &_predefinedTokens, QWidget *parent = nullptr);
|
|
TokenInfo getTokenInfo() const;
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent *event) override;
|
|
private slots:
|
|
void faceDownCheckBoxToggled(bool checked);
|
|
void tokenSelectionChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
|
void updateSearch(const QString &search);
|
|
void actChooseTokenFromAll(bool checked);
|
|
void actChooseTokenFromDeck(bool checked);
|
|
void actOk();
|
|
void actReject();
|
|
|
|
private:
|
|
CardDatabaseModel *cardDatabaseModel;
|
|
TokenDisplayModel *cardDatabaseDisplayModel;
|
|
QStringList predefinedTokens;
|
|
QLabel *nameLabel, *colorLabel, *ptLabel, *annotationLabel;
|
|
QComboBox *colorEdit;
|
|
QLineEdit *nameEdit, *ptEdit, *annotationEdit;
|
|
QCheckBox *destroyCheckBox;
|
|
QCheckBox *faceDownCheckBox;
|
|
QRadioButton *chooseTokenFromAllRadioButton, *chooseTokenFromDeckRadioButton;
|
|
CardInfoPictureWidget *pic;
|
|
QTreeView *chooseTokenView;
|
|
|
|
void updateSearchFieldWithoutUpdatingFilter(const QString &newValue) const;
|
|
};
|
|
|
|
#endif
|