Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
dlg_convert_deck_to_cod_format.h
Go to the documentation of this file.
1
7
8#ifndef DIALOG_CONVERT_DECK_TO_COD_FORMAT_H
9#define DIALOG_CONVERT_DECK_TO_COD_FORMAT_H
10
11#include <QCheckBox>
12#include <QDialog>
13#include <QDialogButtonBox>
14#include <QLabel>
15#include <QVBoxLayout>
16
17class DialogConvertDeckToCodFormat : public QDialog
18{
19 Q_OBJECT
20
21public:
22 explicit DialogConvertDeckToCodFormat(QWidget *parent);
23 void retranslateUi();
24
25 [[nodiscard]] bool dontAskAgain() const;
26
27private:
28 QVBoxLayout *layout;
29 QLabel *label;
31 QDialogButtonBox *buttonBox;
32
33 Q_DISABLE_COPY(DialogConvertDeckToCodFormat)
34};
35
36#endif // DIALOG_CONVERT_DECK_TO_COD_FORMAT_H
void retranslateUi()
Definition dlg_convert_deck_to_cod_format.cpp:28
QLabel * label
Definition dlg_convert_deck_to_cod_format.h:29
DialogConvertDeckToCodFormat(QWidget *parent)
Definition dlg_convert_deck_to_cod_format.cpp:8
QCheckBox * dontAskAgainCheckbox
Definition dlg_convert_deck_to_cod_format.h:30
bool dontAskAgain() const
Definition dlg_convert_deck_to_cod_format.cpp:37
QVBoxLayout * layout
Definition dlg_convert_deck_to_cod_format.h:28
QDialogButtonBox * buttonBox
Definition dlg_convert_deck_to_cod_format.h:31