summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/mainwindowbase.h
blob: d8faebac1e98cfd524266b48e2f1c8715c6e1c0b (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
36
37
38
39
#ifndef MAINWINDOWBASE_H
#define MAINWINDOWBASE_H

#include <qmainwindow.h>

class ServerConnection;
class QProgressBar;
class FolderWidget;
class QPEToolBar;
class QPEMenuBar;
class QPopupMenu;
class MailTable;
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;
	QPEToolBar *toolbar;
 	QPEMenuBar *menubar;
  QPopupMenu *mailmenu, *servermenu;
	MailTable *mailView;
	QAction *compose, *sendQueue, *folders, *findmails, *configure, *stop;
	QLabel *statusLabel;

};

#endif