// Websocket URL
// websocket: 'wss://jitsi.mydomain.ru/xmpp-websocket',
// The name of client node advertised in XEP-0115 'c' stanza
clientNode: 'http://jitsi.org/jitsimeet',
// The real JID of focus participant - can be overridden here
// Do not change username - FIXME: Make focus username configurable
// https://github.com/jitsi/jitsi-meet/issues/7376
// focusUserJid: 'focus@auth.jitsi.mydomain.ru',
// Enables / disables a data communication channel with the Videobridge.
// Values can be 'datachannel', 'websocket', true (treat it as
// 'datachannel'), undefined (treat it as 'datachannel') and false (don't
// open any channel).
// openBridgeChannel: true,
openBridgeChannel: 'websocket',
from PySide import QtCore
...
pushButton = QtGui.QPushButton()
pushButton.setText('Test')
def buttonTest():
print 'Test OK'
QtCore.QObject.connect(
pushButton,
QtCore.SIGNAL("clicked()"),
buttonTest
)