summaryrefslogtreecommitdiff
path: root/noncore/net/mail/opiemail.h
blob: 7bcd81890d14ac646d0dfb21fa752dd7dbe89072 (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
#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