|
|
@ -60,11 +60,11 @@ JingleSessionManager manage the JingleSession pointers. Do not delete it in user
|
|
|
|
|
|
|
|
|
|
|
|
* JingleSessionManager(JabberAccount *)
|
|
|
|
* JingleSessionManager(JabberAccount *)
|
|
|
|
|
|
|
|
|
|
|
|
* public Q_SLOTS:
|
|
|
|
* public slots:
|
|
|
|
* JingleSession *createSession(const TQString &sessionType, const JidList &peers);
|
|
|
|
* JingleSession *createSession(const TQString &sessionType, const JidList &peers);
|
|
|
|
* void removeSession(JingleSession *);
|
|
|
|
* void removeSession(JingleSession *);
|
|
|
|
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
signals:
|
|
|
|
* void incomingSession(const TQString &sessionType, JingleSession *session);
|
|
|
|
* void incomingSession(const TQString &sessionType, JingleSession *session);
|
|
|
|
|
|
|
|
|
|
|
|
JingleSession
|
|
|
|
JingleSession
|
|
|
@ -89,10 +89,10 @@ Base class for Jingle session. A session is a
|
|
|
|
// Return Session XML namespace
|
|
|
|
// Return Session XML namespace
|
|
|
|
* virtual TQString sessionType() = 0;
|
|
|
|
* virtual TQString sessionType() = 0;
|
|
|
|
|
|
|
|
|
|
|
|
protected Q_SLOTS:
|
|
|
|
protected slots:
|
|
|
|
void sendStanza(const TQString &stanza) { account()->client->send(stanza);
|
|
|
|
void sendStanza(const TQString &stanza) { account()->client->send(stanza);
|
|
|
|
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
signals:
|
|
|
|
void accepted();
|
|
|
|
void accepted();
|
|
|
|
void declined();
|
|
|
|
void declined();
|
|
|
|
void terminated();
|
|
|
|
void terminated();
|
|
|
@ -105,7 +105,7 @@ Hold the PhoneSessionClient object.
|
|
|
|
connect(account()->client(),TQ_SIGNAL(xmlIncoming(const TQString&)),TQ_SLOT(receiveStanza(const TQString&)));
|
|
|
|
connect(account()->client(),TQ_SIGNAL(xmlIncoming(const TQString&)),TQ_SLOT(receiveStanza(const TQString&)));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
private slots:
|
|
|
|
void receiveStanza(const TQString &stanza);
|
|
|
|
void receiveStanza(const TQString &stanza);
|
|
|
|
|
|
|
|
|
|
|
|
VoiceConversationDialog
|
|
|
|
VoiceConversationDialog
|
|
|
|