~diegosarmentero/unity8/app-preview

« back to all changes in this revision

Viewing changes to ApplicationArguments.h

  • Committer: Diego Sarmentero
  • Date: 2013-07-22 23:43:12 UTC
  • mfrom: (121.2.6 unity8)
  • Revision ID: diego.sarmentero@gmail.com-20130722234312-a6uvi5pk4n7os96b
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Nick Dedekind <nick.dedekind@canonical.com>
 
17
 */
 
18
 
 
19
 
 
20
#ifndef APPLICATION_ARGUMENTS_H
 
21
#define APPLICATION_ARGUMENTS_H
 
22
 
 
23
#include <QObject>
 
24
#include <QSize>
 
25
#include <QStringList>
 
26
 
 
27
class ApplicationArguments : public QObject
 
28
{
 
29
    Q_OBJECT
 
30
public:
 
31
    ApplicationArguments(const QStringList& args) {
 
32
        if (args.contains(QLatin1String("-geometry")) && args.size() > args.indexOf(QLatin1String("-geometry")) + 1) {
 
33
            QStringList geometryArg = args.at(args.indexOf(QLatin1String("-geometry")) + 1).split('x');
 
34
            if (geometryArg.size() == 2) {
 
35
                m_size.rwidth() = geometryArg.at(0).toInt();
 
36
                m_size.rheight() = geometryArg.at(1).toInt();
 
37
            }
 
38
        }
 
39
    }
 
40
 
 
41
    Q_INVOKABLE bool hasGeometry() const { return m_size.isValid(); }
 
42
    Q_INVOKABLE int width() const { return m_size.width(); }
 
43
    Q_INVOKABLE int height() const { return m_size.height(); }
 
44
 
 
45
private:
 
46
  QSize m_size;
 
47
};
 
48
 
 
49
#endif // APPLICATION_ARGUMENTS_H