summaryrefslogtreecommitdiff
path: root/noncore/net/mail/opiemail.h
blob: dcab47c5cefe1215e3105184184c0ad7ee90b1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef OPIEMAIL_H
#define OPIEMAIL_H

#include "mainwindow.h"
#include "settings.h"

class OpieMail : public MainWindow
{
    Q_OBJECT

public:
    OpieMail( QWidget *parent = 0, const char *name = 0, WFlags flags = 0 );

 static QString appName() { return QString::fromLatin1("opiemail"); }

protected slots:
    void slotComposeMail();
    void slotSendQueued();
    void slotSearchMails();
    void slotEditSettings();
    void slotEditAccounts();
    
private:
    Settings *settings;

};

#endif