3 Copyright (C) 2008 jlh (jlh at gmx dot ch)
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2 of the License, version 3 of
8 the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 The GNU General Public License version 2 is included with the source of
20 this program under the file name COPYING. You can also get a copy on
28 #include <QDBusConnection>
29 #include <QDBusAbstractAdaptor>
37 class Skype
: public QObject
{
40 friend class SkypeExport
;
43 QString
sendWithReply(const QString
&, int = 10000);
44 void send(const QString
&);
45 QString
getObject(const QString
&);
46 const QString
&getSkypeName() const { return skypeName
; }
49 void notify(const QString
&) const;
50 void connected(bool) const;
51 void connectionFailed(const QString
&) const;
54 void sendWithAsyncReply(const QString
&);
55 void doNotify(const QString
&);
58 void connectToSkype();
59 void methodCallback(const QDBusMessage
&);
60 void methodError(const QDBusError
&, const QDBusMessage
&);
61 void serviceOwnerChanged(const QString
&, const QString
&, const QString
&);
67 SkypeExport
*exported
;
74 Skype
&operator=(const Skype
&);
77 class SkypeExport
: public QDBusAbstractAdaptor
{
79 Q_CLASSINFO("D-Bus Interface", "com.Skype.API.Client")
84 Q_NOREPLY
void Notify(const QString
&);
91 SkypeExport(const SkypeExport
&);
92 SkypeExport
&operator=(const SkypeExport
&);