Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
dlg_startup_card_check.h
Go to the documentation of this file.
1
6
7#ifndef DLG_STARTUP_CARD_CHECK_H
8#define DLG_STARTUP_CARD_CHECK_H
9
10#include <QButtonGroup>
11#include <QDialog>
12#include <QDialogButtonBox>
13#include <QLabel>
14#include <QRadioButton>
15#include <QVBoxLayout>
16
17class DlgStartupCardCheck : public QDialog
18{
19 Q_OBJECT
20public:
21 explicit DlgStartupCardCheck(QWidget *parent);
22
23 QVBoxLayout *layout;
25 QButtonGroup *group;
27 QDialogButtonBox *buttonBox;
28};
29
30#endif // DLG_STARTUP_CARD_CHECK_H
QVBoxLayout * layout
Definition dlg_startup_card_check.h:23
QButtonGroup * group
Definition dlg_startup_card_check.h:25
QRadioButton * dontRunBtn
Definition dlg_startup_card_check.h:26
QRadioButton * foregroundBtn
Definition dlg_startup_card_check.h:26
QRadioButton * backgroundAlwaysBtn
Definition dlg_startup_card_check.h:26
QRadioButton * dontPromptBtn
Definition dlg_startup_card_check.h:26
DlgStartupCardCheck(QWidget *parent)
Definition dlg_startup_card_check.cpp:7
QLabel * instructionLabel
Definition dlg_startup_card_check.h:24
QDialogButtonBox * buttonBox
Definition dlg_startup_card_check.h:27
QRadioButton * backgroundBtn
Definition dlg_startup_card_check.h:26