OSDN Git Service

f89238c99fe32929de9360a442aec03909cab01d
[qt-creator-jp/qt-creator-jp.git] / src / plugins / debugger / qml / qmladapter.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 (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef DEBGUGGER_QMLADAPTER_H
35 #define DEBGUGGER_QMLADAPTER_H
36
37 #include "debugger_global.h"
38 #include "qmldebuggerclient.h"
39
40 #include <QtCore/QObject>
41 #include <QtCore/QScopedPointer>
42 #include <QtNetwork/QAbstractSocket>
43
44 namespace QmlJsDebugClient {
45 class QDeclarativeEngineDebug;
46 class QDeclarativeDebugConnection;
47 }
48
49 namespace Debugger {
50
51 class DebuggerEngine;
52
53 namespace Internal {
54 class QmlDebuggerClient;
55 class QmlAdapterPrivate;
56 } // namespace Internal
57
58 class DEBUGGER_EXPORT QmlAdapter : public QObject
59 {
60     Q_OBJECT
61 public:
62     explicit QmlAdapter(DebuggerEngine *engine, QObject *parent = 0);
63     virtual ~QmlAdapter();
64
65     void beginConnection();
66     void closeConnection();
67
68     bool isConnected() const;
69
70     QmlJsDebugClient::QDeclarativeDebugConnection *connection() const;
71
72     bool disableJsDebugging(bool block);
73
74 public slots:
75     void logServiceStatusChange(const QString &service, QDeclarativeDebugClient::Status newStatus);    
76     void logServiceActivity(const QString &service, const QString &logMessage);
77
78 signals:
79     void connected();
80     void disconnected();
81     void connectionStartupFailed();
82     void connectionError(QAbstractSocket::SocketError socketError);
83     void serviceConnectionError(const QString serviceName);
84
85 private slots:
86     void sendMessage(const QByteArray &msg);
87     void connectionErrorOccurred(QAbstractSocket::SocketError socketError);
88     void clientStatusChanged(QDeclarativeDebugClient::Status status);
89     void connectionStateChanged();
90     void pollInferior();
91
92 private:
93     void connectToViewer();
94     void createDebuggerClient();
95     void showConnectionStatusMessage(const QString &message);
96     void showConnectionErrorMessage(const QString &message);
97     void flushSendBuffer();
98
99 private:
100     QScopedPointer<Internal::QmlAdapterPrivate> d;
101 };
102
103 } // namespace Debugger
104
105 #endif // DEBGUGGER_QMLADAPTER_H