OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / share / qtcreator / qml / qmljsdebugger / include / qt_private / qdeclarativedebughelper_p.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 QDECLARATIVEDEBUGHELPER_P_H
33 #define QDECLARATIVEDEBUGHELPER_P_H
34
35 #include "../qmljsdebugger_global.h"
36 #include <QtCore/qglobal.h>
37
38 QT_BEGIN_HEADER
39
40 QT_BEGIN_NAMESPACE
41
42 class QScriptEngine;
43 class QDeclarativeEngine;
44
45 // Helper methods to access private API through a stable interface
46 // This is used in the qmljsdebugger library of QtCreator.
47 class QMLJSDEBUGGER_EXTERN QDeclarativeDebugHelper
48 {
49 public:
50     static QScriptEngine *getScriptEngine(QDeclarativeEngine *engine);
51     static void setAnimationSlowDownFactor(qreal factor);
52
53     // Enables remote debugging functionality
54     // Only use this for debugging in a safe environment!
55     static void enableDebugging();
56 };
57
58 QT_END_NAMESPACE
59
60 QT_END_HEADER
61
62 #endif // QDECLARATIVEDEBUGHELPER_P_H