aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/debugger/qv8debugservice_p.h
diff options
context:
space:
mode:
authorAurindam Jana <aurindam.jana@digia.com>2013-09-10 16:57:45 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-19 21:40:49 +0200
commit353a068c7716a34eb90d1441893f4c4a5b28f9de (patch)
tree1c7cbaa262b10ae5dc14d9e8ab3f7a4732217bb2 /src/qml/debugger/qv8debugservice_p.h
parent0b901ddda7936bb535125beaccc5fb9ee12617cb (diff)
QmlDebugging: Replace QV8DebugService with QV4DebugService
Change-Id: Ic8c99e3984d9ef6d122f7d8834df97eeb1f1fda3 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Diffstat (limited to 'src/qml/debugger/qv8debugservice_p.h')
-rw-r--r--src/qml/debugger/qv8debugservice_p.h107
1 files changed, 0 insertions, 107 deletions
diff --git a/src/qml/debugger/qv8debugservice_p.h b/src/qml/debugger/qv8debugservice_p.h
deleted file mode 100644
index 7acb2909ad..0000000000
--- a/src/qml/debugger/qv8debugservice_p.h
+++ /dev/null
@@ -1,107 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtQml module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef QV8DEBUGSERVICE_P_H
-#define QV8DEBUGSERVICE_P_H
-
-//
-// W A R N I N G
-// -------------
-//
-// This file is not part of the Qt API. It exists purely as an
-// implementation detail. This header file may change from version to
-// version without notice, or even be removed.
-//
-// We mean it.
-//
-
-#include "qqmldebugservice_p.h"
-#ifdef Q_OS_WINCE
-# ifdef DebugBreak
-# undef DebugBreak
-# endif
-#endif
-#include <private/qv8debug_p.h>
-
-QT_BEGIN_NAMESPACE
-
-
-class QV8Engine;
-class QV8DebugServicePrivate;
-
-class QV8DebugService : public QQmlDebugService
-{
- Q_OBJECT
-public:
- QV8DebugService(QObject *parent = 0);
- ~QV8DebugService();
-
- static QV8DebugService *instance();
- static void addEngine(const QV8Engine *engine);
- static void removeEngine(const QV8Engine *engine);
-
- void debugMessageHandler(const QString &message);
-
- void signalEmitted(const QString &signal);
-
-public Q_SLOTS:
- void processDebugMessages();
-
-private Q_SLOTS:
- void scheduledDebugBreak(bool schedule);
- void sendDebugMessage(const QString &message);
- void init();
-
-protected:
- void stateChanged(State newState);
- void messageReceived(const QByteArray &);
-
-private:
- void setEngine(const QV8Engine *engine);
-
-private:
- Q_DISABLE_COPY(QV8DebugService)
- Q_DECLARE_PRIVATE(QV8DebugService)
-};
-
-QT_END_NAMESPACE
-
-#endif // QV8DEBUGSERVICE_P_H