/*===================================================================== QGroundControl Open Source Ground Control Station (c) 2009, 2015 QGROUNDCONTROL PROJECT This file is part of the QGROUNDCONTROL project QGROUNDCONTROL is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. QGROUNDCONTROL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with QGROUNDCONTROL. If not, see . ======================================================================*/ /// @file /// @author Gus Grubba #include "ScreenTools.h" #include "MainWindow.h" #include #include const double ScreenTools::_defaultFontPointSize = 12; ScreenTools::ScreenTools() { connect(MainWindow::instance(), &MainWindow::repaintCanvas, this, &ScreenTools::_updateCanvas); connect(MainWindow::instance(), &MainWindow::pixelSizeChanged, this, &ScreenTools::_updatePixelSize); connect(MainWindow::instance(), &MainWindow::fontSizeChanged, this, &ScreenTools::_updateFontSize); } qreal ScreenTools::adjustFontPointSize(qreal pointSize) { return adjustFontPointSize_s(pointSize); } qreal ScreenTools::adjustFontPointSize_s(qreal pointSize) { return pointSize * MainWindow::fontPointFactor(); } qreal ScreenTools::adjustPixelSize(qreal pixelSize) { return adjustPixelSize_s(pixelSize); } qreal ScreenTools::adjustPixelSize_s(qreal pixelSize) { return pixelSize * MainWindow::pixelSizeFactor(); } void ScreenTools::increasePixelSize() { MainWindow::instance()->setPixelSizeFactor(MainWindow::pixelSizeFactor() + 0.025); } void ScreenTools::decreasePixelSize() { MainWindow::instance()->setPixelSizeFactor(MainWindow::pixelSizeFactor() - 0.025); } void ScreenTools::increaseFontSize() { MainWindow::instance()->setFontSizeFactor(MainWindow::fontPointFactor() + 0.025); } void ScreenTools::decreaseFontSize() { MainWindow::instance()->setFontSizeFactor(MainWindow::fontPointFactor() - 0.025); } void ScreenTools::_updateCanvas() { emit repaintRequestedChanged(); } void ScreenTools::_updatePixelSize() { emit pixelSizeFactorChanged(); } void ScreenTools::_updateFontSize() { emit fontPointFactorChanged(); emit defaultFontPointSizeChanged(); } double ScreenTools::fontPointFactor() { return MainWindow::fontPointFactor(); } double ScreenTools::pixelSizeFactor() { return MainWindow::pixelSizeFactor(); } double ScreenTools::defaultFontPointSize(void) { return _defaultFontPointSize * MainWindow::fontPointFactor(); }