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.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/noncore/net/mailit/popclient.h b/noncore/net/mailit/popclient.h
deleted file mode 100644
index 6774ceb..0000000
--- a/noncore/net/mailit/popclient.h
+++ b/dev/null
@@ -1,77 +0,0 @@
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(const QString &target, int port);
39 void setAccount(const QString &popUser, const 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, const QString & Msg );
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 void errorHandlingWithMsg(int, const QString & );
57
58protected slots:
59 void connectionEstablished();
60 void incomingData();
61
62private:
63 QSocket *socket;
64 QTextStream *stream;
65 enum transferStatus
66 {
67 Init, Pass, Stat, Mcnt, Read, List, Size, Retr, Acks,
68 Quit, Done, Ignore
69 };
70 int status, lastSync;
71 int messageCount, newMessages, mailSize, headerLimit;
72 bool receiving, synchronize, preview, selected;
73 QString popUserName, popPassword, message;
74 MailList *mailList;
75};
76
77#endif