Unity 8
ApplicationArguments.h
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  // Not exposed to the app as setSize isn't invokable
32  void setSize(int width, int height) {
33  m_size.rwidth() = width;
34  m_size.rheight() = height;
35  }
36 
37  Q_INVOKABLE bool hasGeometry() const { return m_size.isValid(); }
38  Q_INVOKABLE int width() const { return m_size.width(); }
39  Q_INVOKABLE int height() const { return m_size.height(); }
40 
41 private:
42  QSize m_size;
43 };
44 
45 #endif // APPLICATION_ARGUMENTS_H