bring Qt3 library back. Some apps that are not in the KDE trunk are using it.
[platform/upstream/dbus.git] / qt3 / integrator.h
1 // -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2 /* integrator.h: integrates D-BUS into Qt event loop
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_INTEGRATOR_H
24 #define DBUS_QT_INTEGRATOR_H
25
26 #include <qobject.h>
27
28 #include <qintdict.h>
29 #include <qptrdict.h>
30
31 #include "dbus/dbus.h"
32
33 class QTimer;
34
35 namespace DBusQt
36 {
37   class Connection;
38
39   namespace Internal
40   {
41     struct Watch;
42
43     class Timeout : public QObject
44     {
45       Q_OBJECT
46     public:
47       Timeout( QObject *parent, DBusTimeout *t );
48     public:
49       void start();
50     signals:
51       void timeout( DBusTimeout* );
52     protected slots:
53       void slotTimeout();
54     private:
55       QTimer *m_timer;
56       DBusTimeout *m_timeout;
57     };
58
59     class Integrator : public QObject
60     {
61       Q_OBJECT
62     public:
63       Integrator( DBusConnection *connection, QObject *parent );
64       Integrator( DBusServer *server, QObject *parent );
65
66     signals:
67       void readReady();
68       void newConnection( Connection* );
69
70     protected slots:
71       void slotRead( int );
72       void slotWrite( int );
73       void slotTimeout( DBusTimeout *timeout );
74
75     public:
76       void addWatch( DBusWatch* );
77       void removeWatch( DBusWatch* );
78
79       void addTimeout( DBusTimeout* );
80       void removeTimeout( DBusTimeout* );
81
82       void handleConnection( DBusConnection* );
83     private:
84       QIntDict<Watch> m_watches;
85       QPtrDict<Timeout> m_timeouts;
86       DBusConnection *m_connection;
87       DBusServer *m_server;
88     };
89   }
90 }
91
92 #endif