summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/mainwindowbase.h
blob: cf23f4f08a001002f428cdc5f4209f3e5a94b798 (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
30
31
32
33
34
35
#ifndef MAINWINDOWBASE_H
#define MAINWINDOWBASE_H

#include <qmainwindow.h>

class ServerConnection;
class QProgressBar;
class FolderWidget;
class MailTable;
class QToolBar;
class QAction;
class QLabel;

class MainWindowBase : public QMainWindow
{
	Q_OBJECT

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

protected slots:
	void slotFoldersToggled(bool toggled);

protected:
	ServerConnection *serverConnection;
	QProgressBar *statusProgress;
	FolderWidget *folderView;
	MailTable *mailView;
	QToolBar *toolbar;
	QAction *compose, *folders, *findmails, *configure, *stop;
	QLabel *statusLabel;

};

#endif