summaryrefslogtreecommitdiffstats
path: root/tools/qmldebugger/standalone/qmldebugger.h
blob: 1c20087baec3d51c3ea4d2b07d2d847c41e855b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef QMLDEBUGGER_H
#define QMLDEBUGGER_H

#include <private/qmldebugclient_p.h>
#include <QtNetwork/qtcpsocket.h>
#include <QtGui/qwidget.h>

class QLabel;
class QLineEdit;
class QSpinBox;
class QPushButton;
class QTabWidget;

class EnginePane;

class QmlDebugger : public QWidget
{
    Q_OBJECT
public:
    QmlDebugger(QWidget * = 0);

    void setHost(const QString &host);
    void setPort(quint16 port);
    void showEngineTab();

public slots:
    void connectToHost();
    void disconnectFromHost();

private slots:
    void connectionStateChanged();
    void connectionError(QAbstractSocket::SocketError socketError);

private:
    QmlDebugConnection client;

    QLabel *m_connectionState;
    QLineEdit *m_host;
    QSpinBox *m_port;
    QPushButton *m_connectButton;
    QPushButton *m_disconnectButton;

    EnginePane *m_enginePane;
    QTabWidget *m_tabs;
};

#endif