2016-03-18 14:21:45 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
2016-04-18 13:02:34 +00:00
|
|
|
#include <QCommonStyle>
|
2016-03-18 14:21:45 +00:00
|
|
|
#include "style.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
2016-04-18 13:02:34 +00:00
|
|
|
// QCommonStyle *style = new QCommonStyle;
|
|
|
|
// a.setStyle(style);
|
|
|
|
|
|
|
|
// a.setStyle(&Style::instance());
|
|
|
|
|
2016-03-18 14:21:45 +00:00
|
|
|
MainWindow w;
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|