summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/composerbase.h
authorconber <conber>2002-06-15 16:05:38 (UTC)
committer conber <conber>2002-06-15 16:05:38 (UTC)
commitf2f238ad06ce87e644bf56d0c6950a2aeae35ed4 (patch) (side-by-side diff)
tree82a465db09f4fa05a7af710492fe6c953f4a8e0f /noncore/unsupported/mail2/composerbase.h
parent3e9adfcfcc674ad9b329fcb17880ea24789dbcde (diff)
downloadopie-f2f238ad06ce87e644bf56d0c6950a2aeae35ed4.zip
opie-f2f238ad06ce87e644bf56d0c6950a2aeae35ed4.tar.gz
opie-f2f238ad06ce87e644bf56d0c6950a2aeae35ed4.tar.bz2
changed QToolBar to QPEToolBar
Diffstat (limited to 'noncore/unsupported/mail2/composerbase.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mail2/composerbase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/unsupported/mail2/composerbase.h b/noncore/unsupported/mail2/composerbase.h
index e5fab67..75b77f4 100644
--- a/noncore/unsupported/mail2/composerbase.h
+++ b/noncore/unsupported/mail2/composerbase.h
@@ -1,23 +1,23 @@
#ifndef COMPOSERBASE_H
#define COMPOSERBASE_H
#include <qmainwindow.h>
class QMultiLineEdit;
class ListViewPlus;
class QPopupMenu;
+class QPEToolBar;
class QComboBox;
class QLineEdit;
-class QToolBar;
class QAction;
class QLabel;
class ComposerBase : public QMainWindow
{
Q_OBJECT
public:
ComposerBase(QWidget *parent = 0, const char *name = 0, WFlags fl = 0);
protected:
static const int POPUP_FROM_FROM = 0;
@@ -29,27 +29,27 @@ protected:
static const int POPUP_SUBJ_PRIORITY = 1;
static const int POPUP_PRIO_LOW = 0;
static const int POPUP_PRIO_NORMAL = 1;
static const int POPUP_PRIO_HIGH = 2;
static const int POPUP_ATTACH_RENAME = 0;
static const int POPUP_ATTACH_DESC = 1;
static const int POPUP_ATTACH_REMOVE = 2;
QMultiLineEdit *message;
ListViewPlus *attachView;
QMainWindow *attachWindow;
QPopupMenu *attachPopup;
+ QPEToolBar *toolbar, *attachToolbar;
QComboBox *fromBox, *from, *receiversBox, *subjectBox, *priority;
QLineEdit *replyto, *to, *cc, *bcc, *subject;
- QToolBar *toolbar, *attachToolbar;
QAction *sendmail, *attachfile, *addressbook, *abort, *addattach, *delattach;
QLabel *fromLabel, *status;
protected slots:
void slotAttachfileChanged(bool toggled);
void slotFromMenuChanged(int id);
void slotReceiverMenuChanged(int id);
void slotSubjectMenuChanged(int id);
};
#endif