summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2018-11-22 09:54:45 +0100
committerAleks Kissinger <aleks0@gmail.com>2018-11-22 09:54:45 +0100
commitdd6ab70ee19210c83869e53ef6003f00df15bbbd (patch)
tree262fe35bbdd10ce0042d6bf162a7e01995fdabf2
parent644eca3d05377c8dcc74b42cf93d87dde9f9dce2 (diff)
minor
-rw-r--r--src/main.cpp12
-rw-r--r--src/tikzit.h1
2 files changed, 3 insertions, 10 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 99d23e9..7a282e6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -16,7 +16,6 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
-
/*!
* \file main.cpp
*
@@ -31,21 +30,17 @@
#include <QDebug>
#include <QScreen>
-// #ifdef Q_OS_WIN
-// #include <Windows.h>
-// #endif
-
int main(int argc, char *argv[])
{
// #ifdef Q_OS_WIN
// SetProcessDPIAware();
// #endif
-// QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
+ // QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
// dummy application for detecting DPI
QApplication *a0 = new QApplication(argc, argv);
-// qDebug() << "physical DPI" << QApplication::screens()[0]->physicalDotsPerInch();
+ // qDebug() << "physical DPI" << QApplication::screens()[0]->physicalDotsPerInch();
if (QApplication::screens()[0]->physicalDotsPerInch() >= 100) {
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
@@ -58,14 +53,11 @@ int main(int argc, char *argv[])
QApplication a(argc, argv);
a.setQuitOnLastWindowClosed(false);
-
-
tikzit = new Tikzit();
tikzit->init();
qDebug() << a.arguments().length();
-
if (a.arguments().length() > 1) {
tikzit->open(a.arguments()[1]);
}
diff --git a/src/tikzit.h b/src/tikzit.h
index d36a940..5fed22c 100644
--- a/src/tikzit.h
+++ b/src/tikzit.h
@@ -80,6 +80,7 @@
#define GRID_SEP 10
#define GRID_SEPF 10.0f
+
inline QPointF toScreen(QPointF src)
{ src.setY(-src.y()); src *= GLOBAL_SCALEF; return src; }