bring Qt3 library back. Some apps that are not in the KDE trunk are using it.
[platform/upstream/dbus.git] / qt3 / server.h
1 // -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2 /* server.h: Qt wrapper for DBusServer
3  *
4  * Copyright (C) 2003  Zack Rusin <zack@kde.org>
5  *
6  * Licensed under the Academic Free License version 2.1
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23 #ifndef DBUS_QT_SERVER_H
24 #define DBUS_QT_SERVER_H
25
26 #include <qobject.h>
27
28 #include "dbus/dbus.h"
29
30 namespace DBusQt
31 {
32   class Connection;
33   class Server : public QObject
34   {
35     Q_OBJECT
36   public:
37     Server( const QString& addr = QString::null, QObject *parent=0 );
38     ~Server();
39
40     bool isConnected() const;
41     QString address() const;
42
43   public slots:
44     void listen( const QString& addr );
45     void disconnect();
46   signals:
47     void newConnection( Connection* );
48
49   private:
50     void init( const QString& addr );
51   private:
52     struct Private;
53     Private *d;
54   };
55 }
56
57 #endif