-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWelcome.h
43 lines (34 loc) · 875 Bytes
/
Welcome.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef WELCOME_H
#define WELCOME_H
#include <QMainWindow>
#include <QPushButton>
QT_BEGIN_NAMESPACE
namespace Ui { class Welcome; }
QT_END_NAMESPACE
class Welcome : public QMainWindow
{
Q_OBJECT
public:
Welcome(QWidget *parent = nullptr);
~Welcome();
private slots:
void on_categories_currentRowChanged(int currentRow);
void startTask();
void openLinks();
void activateTheme();
void activateAccentColor();
void installApp();
void openLink();
void on_startUp_clicked(bool checked);
private:
Ui::Welcome *ui;
void checkMode();
void checkColors();
void setPlasmaTheme();
QWidget*createButton(QString name, QString icon_, QString checkInstall, QString install, QString remove);
void fillOfficePage();
void fillBrowserPage();
void fillClassPage();
void fillIAPage();
};
#endif // WELCOME_H