OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / qt-maemo / maemoqemusettings.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (info@qt.nokia.com)
8 **
9 ** GNU Lesser General Public License Usage
10 **
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
14 ** Please review the following information to ensure the GNU Lesser General
15 ** Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** Other Usage
23 **
24 ** Alternatively, this file may be used in accordance with the terms and
25 ** conditions contained in a signed written agreement between you and Nokia.
26 **
27 ** If you have questions regarding the use of this file, please contact
28 ** Nokia at qt-info@nokia.com.
29 **
30 **************************************************************************/
31
32 #ifndef MAEMOQEMUSETTINGS_H
33 #define MAEMOQEMUSETTINGS_H
34
35 namespace Qt4ProjectManager {
36 namespace Internal {
37
38 class MaemoQemuSettings
39 {
40 public:
41     enum OpenGlMode { HardwareAcceleration, SoftwareRendering, AutoDetect };
42
43     static OpenGlMode openGlMode();
44     static void setOpenGlMode(OpenGlMode openGlMode);
45
46 private:
47     MaemoQemuSettings();
48
49     static bool m_initialized;
50     static OpenGlMode m_openGlMode;
51 };
52
53 } // namespace Internal
54 } // namespace Qt4ProjectManager
55
56 #endif // MAEMOQEMUSETTINGS_H