Unity 8
UnityCommandLineParser.h
1 /*
2  * Copyright (C) 2015 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 
17 #ifndef UNITY_COMMAND_LINE_PARSER_H
18 #define UNITY_COMMAND_LINE_PARSER_H
19 
20 #include <QCommandLineParser>
21 #include <QSize>
22 #include <QString>
23 
24 class UnityCommandLineParser {
25 public:
26  UnityCommandLineParser(const QCoreApplication &app);
27 
28  QSize windowGeometry() const { return m_windowGeometry; }
29  bool hasTestability() const { return m_hasTestability; }
30  bool hasFrameless() const { return m_hasFrameless; }
31  bool hasMouseToTouch() const { return m_hasMouseToTouch; }
32  bool hasFullscreen() const { return m_hasFullscreen; }
33  QString deviceName() const { return m_deviceName; }
34  QString mode() const { return m_mode; }
35 private:
36 
37  int parsePixelsValue(const QString &str);
38  static float getenvFloat(const char* name, float defaultValue);
39  void resolveMode(QCommandLineParser &parser, QCommandLineOption &modeOption);
40 
41  float m_gridUnit;
42 
43  QSize m_windowGeometry;
44  bool m_hasTestability;
45  bool m_hasFrameless;
46  bool m_hasMouseToTouch;
47  bool m_hasFullscreen;
48  QString m_deviceName;
49  QString m_mode;
50 };
51 
52 #endif // UNITY_COMMAND_LINE_PARSER_H