-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaboutdialog.cpp
More file actions
22 lines (19 loc) · 835 Bytes
/
Copy pathaboutdialog.cpp
File metadata and controls
22 lines (19 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "aboutdialog.h"
AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent)
{
// Window
setWindowTitle("更换API源");
setFixedSize(QSize(450,150));
setWindowFlag(Qt::Dialog);
// Init UI
mainLay = new QVBoxLayout(this);
QTextBrowser *brower = new QTextBrowser;
mainLay->addWidget(brower);
brower->setHtml("<p>该项目由Skykey开发,Github项目地址为</p>"
"<a href=\"https://github.com/skykeyjoker/Netease_Cloud_Fastplay\">Netease_Cloud_Fastplay</a>"
"<p>特别鸣谢:</p>"
"<a href=\"https://github.com/ZainCheung/netease-cloud-api\">网易云音乐升级API</a>"
"<br>"
"<a href=\"https://github.com/bricke/Qt-AES\">AES加密</a>");
brower->setOpenExternalLinks(true);
}