Basic scrollArea work, win32 sound controlpanel shortcut
This commit is contained in:
parent
40bee90610
commit
a373c706ac
12 changed files with 159 additions and 13 deletions
|
|
@ -10,6 +10,7 @@
|
|||
#include <QLocalSocket>
|
||||
#include <QLocalServer>
|
||||
#include <QString>
|
||||
#include <QFile>
|
||||
//#include "contclasses.h"
|
||||
#include "qtclasses.h"
|
||||
#include "global.h"
|
||||
|
|
@ -55,9 +56,16 @@ int main (int argc, char* argv[]) {
|
|||
//INIT FRONT
|
||||
QScopedPointer<QApplication> app(createApplication(argc, argv));
|
||||
MainWindow window = MainWindow();
|
||||
//window.setEndpointHandlers(ephs);
|
||||
|
||||
QApplication::setQuitOnLastWindowClosed(false);
|
||||
app->setStyle("windowsvista");
|
||||
/*
|
||||
* QFile styleFile(":/assets/style.qss");
|
||||
* styleFile.open(QFile::ReadOnly);
|
||||
* QString styleSheet { QLatin1String(styleFile.readAll()) };
|
||||
*/
|
||||
|
||||
//app->setStyleSheet(styleSheet);
|
||||
//window.setMinimumSize(100, 100);
|
||||
window.show();
|
||||
return app->exec();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue