summaryrefslogtreecommitdiff
path: root/noncore/net/mail/composemail.h
Unidiff
Diffstat (limited to 'noncore/net/mail/composemail.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/composemail.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/net/mail/composemail.h b/noncore/net/mail/composemail.h
index c7ae22a..196a471 100644
--- a/noncore/net/mail/composemail.h
+++ b/noncore/net/mail/composemail.h
@@ -26,37 +26,40 @@ protected:
26 26
27 27
28class ComposeMail : public ComposeMailUI 28class ComposeMail : public ComposeMailUI
29{ 29{
30 Q_OBJECT 30 Q_OBJECT
31 31
32public: 32public:
33 ComposeMail( Settings *s, QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags flags = 0 ); 33 ComposeMail( Settings *s, QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags flags = 0 );
34 34
35public slots: 35public slots:
36 void slotAdjustColumns(); 36 void slotAdjustColumns();
37 37
38
38protected slots: 39protected slots:
39 void accept(); 40 void accept();
40 41
41private slots: 42private slots:
42 void fillValues( int current ); 43 void fillValues( int current );
43 void pickAddress( QLineEdit *line ); 44 void pickAddress( QLineEdit *line );
44 void pickAddressTo(); 45 void pickAddressTo();
45 void pickAddressCC(); 46 void pickAddressCC();
46 void pickAddressBCC(); 47 void pickAddressBCC();
47 void pickAddressReply(); 48 void pickAddressReply();
48 void addAttachment(); 49 void addAttachment();
49 void removeAttachment(); 50 void removeAttachment();
50 51
52
53
51private: 54private:
52 Settings *settings; 55 Settings *settings;
53 QList<SMTPaccount> smtpAccounts; 56 QList<SMTPaccount> smtpAccounts;
54 57
55}; 58};
56 59
57class AttachViewItem : public QListViewItem 60class AttachViewItem : public QListViewItem
58{ 61{
59 public: 62 public:
60 AttachViewItem( QListView *parent, Attachment *att ); 63 AttachViewItem( QListView *parent, Attachment *att );
61 Attachment *getAttachment() { return attachment; } 64 Attachment *getAttachment() { return attachment; }
62 65