summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/mainwindow.h
blob: 1ed0559d0be2c34fc72bba18b91244bcae2b0b87 (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
29
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include "mainwindowbase.h"

#include <qstring.h> 

class IMAPHandler;
class IMAPResponseFETCH;

class MainWindow : public MainWindowBase
{
	Q_OBJECT

public:
	MainWindow(QWidget *parent = 0, const char *name = 0, WFlags fl = 0);

protected slots:
	void slotCompose( const QString& name, const QString& email );
	void slotComposeNoParams();
 	void slotSendQueued();
	void slotSearch();
	void slotConfigure();
	void mailClicked(IMAPResponseFETCH mail, IMAPHandler *handler);
	void appMessage(const QCString &msg, const QByteArray &data);

};

#endif