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
root e5e19779d5 worked on android port
opengl1 -> es
2018-01-31 17:15:11 +01:00

42 lines
541 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);
QString str = R"(
QDockWidget {
border: 1px solid #000;
}
QDockWidget::title {
text-align: left; /* align the text to the left */
background: #ccc;
padding: 1px;
}
QDockWidget::title:hover {
background: #bbb;
}
)";
a.setStyleSheet(str);
MainController mc;
mc.show();
return a.exec();
}