Cockatrice 2026-09-01-Development-3.1.0-beta.10
A virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
welcome_page.h
Go to the documentation of this file.
1#ifndef WELCOME_PAGE_H
2#define WELCOME_PAGE_H
3
5
6class QComboBox;
7class QLabel;
8
10{
11 Q_OBJECT
12
13public:
14 explicit WelcomePage(QWidget *parent = nullptr);
15
16 QString stepTitle() const override;
17 void retranslateUi() override;
18
19private slots:
20 void languageChanged(int index);
21
22private:
23 QLabel *bodyLabel;
25 QComboBox *langCombo;
26};
27
28#endif // WELCOME_PAGE_H
FirstRunWizardPage(QWidget *parent=nullptr)
Definition first_run_wizard_page.h:18
QString stepTitle() const override
Definition welcome_page.cpp:67
QLabel * languageLabel
Definition welcome_page.h:24
WelcomePage(QWidget *parent=nullptr)
Definition welcome_page.cpp:16
QLabel * bodyLabel
Definition welcome_page.h:23
void languageChanged(int index)
Definition welcome_page.cpp:57
QComboBox * langCombo
Definition welcome_page.h:25
void retranslateUi() override
Definition welcome_page.cpp:72