mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-25 08:03:54 -07:00
* Add the option to background the oracle wizard, add an option to automatically launch oracle wizard in background every X days since last launch. * Mocks and a typo. * Lint. * Lint? * qOverload the spinBox. * Change to a prompt instead. * An Label. * Update window_main.cpp --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de> Co-authored-by: Zach H <zahalpern+github@gmail.com>
24 lines
574 B
C++
24 lines
574 B
C++
#ifndef DLG_STARTUP_CARD_CHECK_H
|
|
#define DLG_STARTUP_CARD_CHECK_H
|
|
|
|
#include <QButtonGroup>
|
|
#include <QDialog>
|
|
#include <QDialogButtonBox>
|
|
#include <QLabel>
|
|
#include <QRadioButton>
|
|
#include <QVBoxLayout>
|
|
|
|
class DlgStartupCardCheck : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DlgStartupCardCheck(QWidget *parent);
|
|
|
|
QVBoxLayout *layout;
|
|
QLabel *instructionLabel;
|
|
QButtonGroup *group;
|
|
QRadioButton *foregroundBtn, *backgroundBtn, *backgroundAlwaysBtn, *dontPromptBtn, *dontRunBtn;
|
|
QDialogButtonBox *buttonBox;
|
|
};
|
|
|
|
#endif // DLG_STARTUP_CARD_CHECK_H
|