/* * Copyright (C) 2013 Canonical, Ltd. * * This program 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; version 3. * * This program 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 this program. If not, see . * * Authored by: Nick Dedekind */ #ifndef APPLICATION_ARGUMENTS_H #define APPLICATION_ARGUMENTS_H #include #include #include class ApplicationArguments : public QObject { Q_OBJECT public: ApplicationArguments(const QStringList& args) { if (args.contains(QLatin1String("-geometry")) && args.size() > args.indexOf(QLatin1String("-geometry")) + 1) { QStringList geometryArg = args.at(args.indexOf(QLatin1String("-geometry")) + 1).split('x'); if (geometryArg.size() == 2) { m_size.rwidth() = geometryArg.at(0).toInt(); m_size.rheight() = geometryArg.at(1).toInt(); } } } Q_INVOKABLE bool hasGeometry() const { return m_size.isValid(); } Q_INVOKABLE int width() const { return m_size.width(); } Q_INVOKABLE int height() const { return m_size.height(); } private: QSize m_size; }; #endif // APPLICATION_ARGUMENTS_H