This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IndoorMap/main.cpp
2018-07-11 12:29:32 +02:00

48 lines
718 B
C++

#include "fixC11.h"
#include "MainController.h"
#include <QApplication>
//#include <experimental/filesystem>
#include <iostream>
//#include "exp.h"
//#include "ray.h"
int main(int argc, char *argv[]) {
//exp();
//ray();
QApplication a(argc, argv);
//a.setAttribute(Qt::AA_SynthesizeMouseForUnhandledTouchEvents, false); // touch-events are NOT translated to mouse events!
QString str = R"(
QDockWidget {
font-weight: bold;
}
QDockWidget::title {
/* text-align: left;
background: #ccc;
padding: 1px; */
font-weight: bold;
}
/* QDockWidget::title:hover {
background: #bbb;
}*/
)";
a.setStyleSheet(str);
MainController mc;
mc.show();
return a.exec();
}