2018-03-10 06:57:14 +00:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QDesktopWidget>
|
2018-03-11 03:18:24 +00:00
|
|
|
#include <QStyleFactory>
|
2018-03-18 08:46:53 +00:00
|
|
|
#include <QFontDatabase>
|
2018-04-07 08:44:39 +00:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QtGlobal>
|
2018-10-04 12:51:01 +00:00
|
|
|
#include <QSurfaceFormat>
|
2019-03-17 06:23:39 +00:00
|
|
|
#include <QSettings>
|
2018-10-25 00:19:38 +00:00
|
|
|
#include "documentwindow.h"
|
2018-04-07 08:44:39 +00:00
|
|
|
#include "theme.h"
|
2018-04-26 02:23:22 +00:00
|
|
|
#include "version.h"
|
2019-03-17 06:23:39 +00:00
|
|
|
#include "remoteioserver.h"
|
2018-04-07 08:44:39 +00:00
|
|
|
|
2018-03-10 06:57:14 +00:00
|
|
|
int main(int argc, char ** argv)
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
2018-03-11 03:18:24 +00:00
|
|
|
|
2018-10-04 12:51:01 +00:00
|
|
|
QSurfaceFormat format = QSurfaceFormat::defaultFormat();
|
|
|
|
format.setProfile(QSurfaceFormat::OpenGLContextProfile::CompatibilityProfile);
|
|
|
|
QSurfaceFormat::setDefaultFormat(format);
|
|
|
|
|
2018-03-11 03:18:24 +00:00
|
|
|
// QuantumCD/Qt 5 Dark Fusion Palette
|
|
|
|
// https://gist.github.com/QuantumCD/6245215
|
|
|
|
qApp->setStyle(QStyleFactory::create("Fusion"));
|
|
|
|
QPalette darkPalette;
|
2018-04-09 03:39:04 +00:00
|
|
|
darkPalette.setColor(QPalette::Window, Theme::black);
|
|
|
|
darkPalette.setColor(QPalette::WindowText, Theme::white);
|
2018-03-11 03:18:24 +00:00
|
|
|
darkPalette.setColor(QPalette::Base, QColor(25,25,25));
|
|
|
|
darkPalette.setColor(QPalette::AlternateBase, QColor(53,53,53));
|
2019-01-07 13:03:42 +00:00
|
|
|
//darkPalette.setColor(QPalette::ToolTipBase, Theme::white);
|
|
|
|
//darkPalette.setColor(QPalette::ToolTipText, Theme::white);
|
2018-04-09 03:39:04 +00:00
|
|
|
darkPalette.setColor(QPalette::Text, Theme::white);
|
2018-04-09 14:24:30 +00:00
|
|
|
darkPalette.setColor(QPalette::Disabled, QPalette::Text, Theme::black);
|
2018-03-11 03:18:24 +00:00
|
|
|
darkPalette.setColor(QPalette::Button, QColor(53,53,53));
|
2018-04-09 03:39:04 +00:00
|
|
|
darkPalette.setColor(QPalette::ButtonText, Theme::white);
|
|
|
|
darkPalette.setColor(QPalette::BrightText, Theme::red);
|
2018-03-11 03:18:24 +00:00
|
|
|
darkPalette.setColor(QPalette::Link, QColor(42, 130, 218));
|
2018-09-06 15:04:59 +00:00
|
|
|
darkPalette.setColor(QPalette::Highlight, Theme::red);
|
2018-04-09 03:39:04 +00:00
|
|
|
darkPalette.setColor(QPalette::HighlightedText, Theme::black);
|
2018-03-11 03:18:24 +00:00
|
|
|
qApp->setPalette(darkPalette);
|
2019-01-07 13:03:42 +00:00
|
|
|
//qApp->setStyleSheet("QToolTip { color: #ffffff; background-color: #fc6621; border: 1px solid white; }");
|
2018-03-11 03:18:24 +00:00
|
|
|
|
2018-04-26 02:23:22 +00:00
|
|
|
QCoreApplication::setApplicationName(APP_NAME);
|
2019-03-17 06:23:39 +00:00
|
|
|
QCoreApplication::setOrganizationName(APP_COMPANY);
|
|
|
|
QCoreApplication::setOrganizationDomain(APP_HOMEPAGE_URL);
|
2018-03-13 12:49:24 +00:00
|
|
|
|
2018-03-20 03:31:05 +00:00
|
|
|
QFont font;
|
|
|
|
font.setWeight(QFont::Light);
|
2018-12-01 22:54:04 +00:00
|
|
|
//font.setPixelSize(11);
|
2018-03-26 12:41:46 +00:00
|
|
|
font.setBold(false);
|
2018-03-20 03:31:05 +00:00
|
|
|
QApplication::setFont(font);
|
2018-03-18 08:46:53 +00:00
|
|
|
|
2018-12-02 12:32:34 +00:00
|
|
|
Theme::initAwsomeBaseSizes();
|
|
|
|
|
2018-11-05 15:47:21 +00:00
|
|
|
DocumentWindow::createDocumentWindow();
|
2018-04-10 07:59:20 +00:00
|
|
|
|
2019-03-22 14:33:17 +00:00
|
|
|
bool remoteIoEnabled = false;
|
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
|
|
if ('-' == argv[i][0] && 0 == strcmp(argv[i], "-remoteio")) {
|
|
|
|
remoteIoEnabled = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (remoteIoEnabled) {
|
|
|
|
qDebug() << "Remote IO enabled";
|
|
|
|
new RemoteIoServer(53309);
|
2019-03-17 06:23:39 +00:00
|
|
|
}
|
|
|
|
|
2018-03-10 06:57:14 +00:00
|
|
|
return app.exec();
|
|
|
|
}
|