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 bce771d6d6 worked on 3D viz
scaling, moving by finger
some fixes / improvement
2018-02-06 17:35:10 +01:00

46 lines
661 B
C++

#include "fixC11.h"
#include "MainController.h"
#include <QApplication>
//#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();
}