forked from hurley25/xylms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetWidget.h
More file actions
43 lines (34 loc) · 920 Bytes
/
Copy pathSetWidget.h
File metadata and controls
43 lines (34 loc) · 920 Bytes
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
// =====================================================================================
//
// Filename: SetWidget.h
//
// Description: 系统设置选项卡控件
//
// Version: 1.0
// Created: 2013年03月21日 16时10分51秒
// Revision: none
// Compiler: g++
//
// Author: Hurley (LiuHuan), liuhuan1992@gmail.com
// Company: Class 1107 of Computer Science and Technology
//
// =====================================================================================
#ifndef SETWIDGET_H_
#define SETWIDGET_H_
#include <QWidget>
#include "ui_SetWidget.h"
class SetWidget : public QWidget, public Ui::SetWidget
{
Q_OBJECT
public:
SetWidget();
public slots:
void changeUserViewYear();
void changeUserPermission(int index);
void exportToExcel();
void deleteScore();
void ChangeWelcomeInfo();
void changePass();
private:
};
#endif // SETWIDGET_H_