QmlJS Live Preview: Added color box to toolbar

This commit is contained in:
Lasse Holmstedt
2010-07-26 12:47:55 +02:00
parent c7a8d93765
commit fb681918c6
15 changed files with 208 additions and 0 deletions

View File

@@ -80,6 +80,8 @@ bool ClientProxy::connectToViewer(const QString &host, quint16 port)
SIGNAL(animationSpeedChanged(qreal)), this, SIGNAL(animationSpeedChanged(qreal)));
disconnect(m_designClient,
SIGNAL(designModeBehaviorChanged(bool)), this, SIGNAL(designModeBehaviorChanged(bool)));
disconnect(m_designClient,
SIGNAL(selectedColorChanged(QColor)), this, SIGNAL(selectedColorChanged(QColor)));
emit aboutToDisconnect();
@@ -224,6 +226,7 @@ void ClientProxy::connectionStateChanged()
connect(m_designClient,
SIGNAL(designModeBehaviorChanged(bool)), SIGNAL(designModeBehaviorChanged(bool)));
connect(m_designClient, SIGNAL(reloaded()), this, SIGNAL(serverReloaded()));
connect(m_designClient, SIGNAL(selectedColorChanged(QColor)), SIGNAL(selectedColorChanged(QColor)));
}
(void) new DebuggerClient(m_conn);