summaryrefslogtreecommitdiff
path: root/noncore/net/mailit/popclient.h
Unidiff
Diffstat (limited to 'noncore/net/mailit/popclient.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mailit/popclient.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/noncore/net/mailit/popclient.h b/noncore/net/mailit/popclient.h
new file mode 100644
index 0000000..10b71ab
--- a/dev/null
+++ b/noncore/net/mailit/popclient.h
@@ -0,0 +1,76 @@
1/**********************************************************************
2** Copyright (C) 2001 Trolltech AS. All rights reserved.
3**
4** This file is part of Qt Palmtop Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20#ifndef PopClient_H
21#define PopClient_H
22
23#include <stdio.h>
24#include <qsocket.h>
25#include <qstring.h>
26#include <qobject.h>
27#include <qtextstream.h>
28#include <qlist.h>
29#include "maillist.h"
30
31class PopClient: public QObject
32{
33 Q_OBJECT
34
35public:
36 PopClient();
37 ~PopClient();
38 void newConnection(QString target, int port);
39 void setAccount(QString popUser, QString popPasswd);
40 void setSynchronize(int lastCount);
41 void removeSynchronize();
42 void headersOnly(bool headers, int limit);
43 void setSelectedMails(MailList *list);
44
45signals:
46 void newMessage(const QString &, int, uint, bool);
47 void errorOccurred(int status);
48 void updateStatus(const QString &);
49 void mailTransfered(int);
50 void mailboxSize(int);
51 void currentMailSize(int);
52 void downloadedSize(int);
53
54public slots:
55 void errorHandling(int);
56
57protected slots:
58 void connectionEstablished();
59 void incomingData();
60
61private:
62 QSocket *socket;
63 QTextStream *stream;
64 enum transferStatus
65 {
66 Init, Pass, Stat, Mcnt, Read, List, Size, Retr, Acks,
67 Quit, Done, Ignore
68 };
69 int status, lastSync;
70 int messageCount, newMessages, mailSize, headerLimit;
71 bool receiving, synchronize, preview, selected;
72 QString popUserName, popPassword, message;
73 MailList *mailList;
74};
75
76#endif