第一阶段初稿+修复部分内容
This commit is contained in:
31
OfficeAssistant_msvc/settingsscreen.h
Normal file
31
OfficeAssistant_msvc/settingsscreen.h
Normal file
@ -0,0 +1,31 @@
|
||||
#pragma once
|
||||
|
||||
#include <QWidget>
|
||||
#include <QHBoxLayout>
|
||||
#include <QVboxLayout>
|
||||
#include <QPushButton>
|
||||
#include <QLabel>
|
||||
#include "ui_settingsscreen.h"
|
||||
#include "switchbutton.h"
|
||||
|
||||
|
||||
class SettingsScreen : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
SettingsScreen(QWidget *parent = Q_NULLPTR);
|
||||
~SettingsScreen();
|
||||
|
||||
private:
|
||||
Ui::SettingsScreen ui;
|
||||
QLabel *autoStart_label;
|
||||
QLabel *addDesktopLink_label;
|
||||
QPushButton *addDesktopLink;
|
||||
SwitchButton *autoStart;
|
||||
QHBoxLayout *layout;
|
||||
QVBoxLayout *left;
|
||||
QLabel *information;
|
||||
private slots:
|
||||
void createShortCut();
|
||||
};
|
Reference in New Issue
Block a user