-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
35 lines (28 loc) · 912 Bytes
/
main.cpp
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
#include "mainframe.h"
#include "appinit.h"
#include "centralwidget.h"
// #include <QApplication>
#include <qtsingleapplication.h>
#include <QMessageBox>
#include <QFile>
int main(int argc, char *argv[])
{
QtSingleApplication a("QMusicPlayer", argc, argv);
// QApplication a(argc, argv);
if(a.isRunning())
{
// MainFrame::showMessageBoxInfo("该程序正在运行中!");//无法使用,原因暂时未知。
QMessageBox::warning(NULL, "提示", "该程序正在运行中!");
return EXIT_SUCCESS;
}
QFile qssFile(":/stylesheets/res/stylesheets/silvery.css");
qssFile.open(QIODevice::ReadOnly);
QString qss = qssFile.readAll();
qApp->setStyleSheet(qss);
AppInit::Instance()->start();
MainFrame w;
CentralWidget* centralWidget = new CentralWidget;
w.setCentralWidget(centralWidget);
w.show();
return a.exec();
}