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
k-a-z-u c4b07dcee6 added objects
minor changes
2018-04-03 16:13:44 +02:00

48 lines
716 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();
}