Fix initial state of actions (and window title).
[kdepim.git] / knotes / knotesnetrecv.h
blobd4b5bebc738ccd81601395e3454999bb3a34ef63
1 /*******************************************************************
2 KNotes -- Notes for the KDE project
4 Copyright (c) 2003, Daniel Martin <daniel.martin@pirack.com>
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 In addition, as a special exception, the copyright holders give
21 permission to link the code of this program with any edition of
22 the Qt library by Trolltech AS, Norway (or with modified versions
23 of Qt that use the same license as Qt), and distribute linked
24 combinations including the two. You must obey the GNU General
25 Public License in all respects for all of the code used other than
26 Qt. If you modify this file, you may extend this exception to
27 your version of the file, but you are not obligated to do so. If
28 you do not wish to do so, delete this exception statement from
29 your version.
30 *******************************************************************/
32 #ifndef KNOTESNETRECV_H
33 #define KNOTESNETRECV_H
35 #include <QObject>
36 #include <QAbstractSocket>
38 class QTcpSocket;
39 class QTimer;
42 class KNotesNetworkReceiver
43 : public QObject
45 Q_OBJECT
46 public:
47 KNotesNetworkReceiver( QTcpSocket * );
48 ~KNotesNetworkReceiver();
50 signals:
51 void sigNoteReceived( const QString &, const QString & );
53 private slots:
54 void slotDataAvailable();
55 void slotReceptionTimeout();
56 void slotConnectionClosed();
57 void slotError( QAbstractSocket::SocketError );
59 private:
60 QTimer *m_timer; // to avoid memory and connection floods
62 QByteArray *m_buffer;
63 QTcpSocket *m_sock;
65 QString m_titleAddon;
68 #endif