summaryrefslogtreecommitdiff
path: root/noncore/net/mail/viewmailbase.cpp
Unidiff
Diffstat (limited to 'noncore/net/mail/viewmailbase.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/viewmailbase.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/net/mail/viewmailbase.cpp b/noncore/net/mail/viewmailbase.cpp
index 0c7f671..e69617d 100644
--- a/noncore/net/mail/viewmailbase.cpp
+++ b/noncore/net/mail/viewmailbase.cpp
@@ -22,48 +22,53 @@ ViewMailBase::ViewMailBase(QWidget *parent, const char *name, WFlags fl)
22 menubar = new QMenuBar( toolbar ); 22 menubar = new QMenuBar( toolbar );
23 mailmenu = new QPopupMenu( menubar ); 23 mailmenu = new QPopupMenu( menubar );
24 menubar->insertItem( tr( "Mail" ), mailmenu ); 24 menubar->insertItem( tr( "Mail" ), mailmenu );
25 25
26 toolbar->setHorizontalStretchable(true); 26 toolbar->setHorizontalStretchable(true);
27 addToolBar(toolbar); 27 addToolBar(toolbar);
28 28
29 QLabel *spacer = new QLabel(toolbar); 29 QLabel *spacer = new QLabel(toolbar);
30 spacer->setBackgroundMode(QWidget::PaletteButton); 30 spacer->setBackgroundMode(QWidget::PaletteButton);
31 toolbar->setStretchableWidget(spacer); 31 toolbar->setStretchableWidget(spacer);
32 32
33 reply = new QAction(tr("Reply"), QIconSet(Resource::loadPixmap("mail/reply")), 0, 0, this); 33 reply = new QAction(tr("Reply"), QIconSet(Resource::loadPixmap("mail/reply")), 0, 0, this);
34 reply->addTo(toolbar); 34 reply->addTo(toolbar);
35 reply->addTo(mailmenu); 35 reply->addTo(mailmenu);
36 36
37 forward = new QAction(tr("Forward"), QIconSet(Resource::loadPixmap("mail/forward")), 0, 0, this); 37 forward = new QAction(tr("Forward"), QIconSet(Resource::loadPixmap("mail/forward")), 0, 0, this);
38 forward->addTo(toolbar); 38 forward->addTo(toolbar);
39 forward->addTo(mailmenu); 39 forward->addTo(mailmenu);
40 40
41 attachbutton = new QAction(tr("Attachments"), QIconSet(Resource::loadPixmap("mail/attach")), 0, 0, this, 0, true); 41 attachbutton = new QAction(tr("Attachments"), QIconSet(Resource::loadPixmap("mail/attach")), 0, 0, this, 0, true);
42 attachbutton->addTo(toolbar); 42 attachbutton->addTo(toolbar);
43 attachbutton->addTo(mailmenu); 43 attachbutton->addTo(mailmenu);
44 connect(attachbutton, SIGNAL(toggled(bool)), SLOT(slotChangeAttachview(bool))); 44 connect(attachbutton, SIGNAL(toggled(bool)), SLOT(slotChangeAttachview(bool)));
45 45
46
47 showHtml = new QAction( tr( "Show Html" ), QIconSet( Resource::loadPixmap( "mail/attach" ) ), 0, 0, this, 0, true );
48 showHtml->addTo( toolbar );
49 showHtml->addTo( mailmenu );
50
46 deleteMail = new QAction(tr("Delete Mail"), QIconSet(Resource::loadPixmap("mail/delete")), 0, 0, this); 51 deleteMail = new QAction(tr("Delete Mail"), QIconSet(Resource::loadPixmap("mail/delete")), 0, 0, this);
47 deleteMail->addTo(toolbar); 52 deleteMail->addTo(toolbar);
48 deleteMail->addTo(mailmenu); 53 deleteMail->addTo(mailmenu);
49 54
50 QVBox *view = new QVBox(this); 55 QVBox *view = new QVBox(this);
51 setCentralWidget(view); 56 setCentralWidget(view);
52 57
53 attachments = new QListView(view); 58 attachments = new QListView(view);
54 attachments->setMinimumHeight(90); 59 attachments->setMinimumHeight(90);
55 attachments->setMaximumHeight(90); 60 attachments->setMaximumHeight(90);
56 attachments->setAllColumnsShowFocus(true); 61 attachments->setAllColumnsShowFocus(true);
57 attachments->addColumn("Mime Type", 60); 62 attachments->addColumn("Mime Type", 60);
58 attachments->addColumn(tr("Description"), 100); 63 attachments->addColumn(tr("Description"), 100);
59 attachments->addColumn(tr("Filename"), 80); 64 attachments->addColumn(tr("Filename"), 80);
60 attachments->addColumn(tr("Size"), 80); 65 attachments->addColumn(tr("Size"), 80);
61 attachments->setSorting(-1); 66 attachments->setSorting(-1);
62 attachments->hide(); 67 attachments->hide();
63 68
64 browser = new QTextBrowser(view); 69 browser = new QTextBrowser(view);
65 70
66 //openDiag = new OpenDiag(view); 71 //openDiag = new OpenDiag(view);
67 //openDiag->hide(); 72 //openDiag->hide();
68 73
69} 74}