ce8bbad26c
- This originally showed up as fonts rendering differently on X11 than Wayland. (#230) - Setting font size in points should be device and back end independent, however the same exact font face and size, on the same machine, sometimes results in different font metrics between the xcb and wayland Qt back ends. - Setting font size in pixels, assuming a virtual DPI of 96 pixels/inch, results in consistent font metrics and rendering between these back ends. Furthermore, this virtual DPI works for either on-screen or hi-res printer QPainter contexts. - This virtual DPI seems to work correctly with some limited testing with Windows and MacOS. - Add rendering tests to build-tests CI script.
140 lines
3.8 KiB
C++
140 lines
3.8 KiB
C++
/* main.cpp
|
|
*
|
|
* Copyright (C) 2013-2016 Jaye Evins <evins@snaught.com>
|
|
*
|
|
* This file is part of gLabels-qt.
|
|
*
|
|
* gLabels-qt 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.
|
|
*
|
|
* gLabels-qt 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 gLabels-qt. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "MainWindow.h"
|
|
|
|
#include "model/FileUtil.h"
|
|
#include "model/Db.h"
|
|
#include "model/Model.h"
|
|
#include "model/Version.h"
|
|
#include "model/XmlLabelParser.h"
|
|
|
|
#include "barcode/Backends.h"
|
|
#include "merge/Factory.h"
|
|
|
|
#include <QApplication>
|
|
#include <QCommandLineParser>
|
|
#include <QDebug>
|
|
#include <QIcon>
|
|
#include <QLibraryInfo>
|
|
#include <QLocale>
|
|
#include <QTextStream>
|
|
#include <QTranslator>
|
|
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
QApplication app( argc, argv );
|
|
|
|
QCoreApplication::setOrganizationName( glabels::model::Version::ORGANIZATION_NAME );
|
|
QCoreApplication::setOrganizationDomain( glabels::model::Version::ORGANIZATION_DOMAIN );
|
|
QCoreApplication::setApplicationName( glabels::model::Version::APPLICATION_NAME );
|
|
QCoreApplication::setApplicationVersion( glabels::model::Version::LONG_STRING );
|
|
QApplication::setDesktopFileName( glabels::model::Version::DESKTOP_FILE_NAME );
|
|
|
|
QIcon::setThemeName( "glabels-flat" );
|
|
|
|
//
|
|
// Setup translators
|
|
//
|
|
QLocale locale = QLocale::system();
|
|
QString qtTranslationsDir = QLibraryInfo::path( QLibraryInfo::TranslationsPath );
|
|
QString myTranslationsDir = glabels::model::FileUtil::translationsDir().canonicalPath();
|
|
|
|
QTranslator qtTranslator;
|
|
if ( qtTranslator.load( locale, "qt", "_", qtTranslationsDir ) )
|
|
{
|
|
app.installTranslator(&qtTranslator);
|
|
}
|
|
|
|
QTranslator glabelsTranslator;
|
|
if ( glabelsTranslator.load( locale, "glabels", "_", myTranslationsDir ) )
|
|
{
|
|
app.installTranslator(&glabelsTranslator);
|
|
}
|
|
|
|
QTranslator templatesTranslator;
|
|
if ( templatesTranslator.load( locale, "templates", "_", myTranslationsDir ) )
|
|
{
|
|
app.installTranslator(&templatesTranslator);
|
|
}
|
|
|
|
|
|
//
|
|
// Parse command line
|
|
//
|
|
QCommandLineParser parser;
|
|
parser.setApplicationDescription( QCoreApplication::translate( "main", "gLabels Label Designer" ) );
|
|
parser.addHelpOption();
|
|
parser.addVersionOption();
|
|
parser.addOption( { { "V", "Version" }, QCoreApplication::translate( "main", "More detailed version information." ) } );
|
|
parser.addPositionalArgument( "files",
|
|
QCoreApplication::translate( "main", "gLabels project files to open, optionally." ),
|
|
"[files...]" );
|
|
parser.process( app );
|
|
|
|
// Handle verbose version option
|
|
if ( parser.isSet( "Version" ) )
|
|
{
|
|
QTextStream(stdout) << glabels::model::Version::details() << Qt::endl;
|
|
return 0;
|
|
}
|
|
|
|
|
|
//
|
|
// Initialize subsystems
|
|
//
|
|
glabels::model::Settings::init();
|
|
glabels::model::Db::init();
|
|
glabels::merge::Factory::init();
|
|
glabels::barcode::Backends::init();
|
|
|
|
|
|
//
|
|
// Open each file in its own main window
|
|
//
|
|
bool openedFiles = false;
|
|
foreach ( QString filename, parser.positionalArguments() )
|
|
{
|
|
glabels::model::Model *model = glabels::model::XmlLabelParser::readFile( filename );
|
|
if ( model )
|
|
{
|
|
model->setFileName( filename );
|
|
auto *newWindow = new glabels::MainWindow();
|
|
newWindow->setModel( model );
|
|
newWindow->show();
|
|
openedFiles = true;
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// Launch main window
|
|
//
|
|
if ( !openedFiles )
|
|
{
|
|
auto *mainWindow = new glabels::MainWindow();
|
|
mainWindow->show();
|
|
}
|
|
|
|
|
|
return app.exec();
|
|
}
|