diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-04-30 02:19:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-04-30 02:19:10 +0300 |
commit | 7b8493a8a977032b502e6df00b89f6b1a813b78b (patch) | |
tree | 6bd3a37411707724960ead54ccb7a7ea36586249 /src/gui/windows/mailviewwindow.cpp | |
parent | 780731dbb1d104f3f91eede326fa7dce75b0d6f3 (diff) | |
download | plus-7b8493a8a977032b502e6df00b89f6b1a813b78b.tar.gz plus-7b8493a8a977032b502e6df00b89f6b1a813b78b.tar.bz2 plus-7b8493a8a977032b502e6df00b89f6b1a813b78b.tar.xz plus-7b8493a8a977032b502e6df00b89f6b1a813b78b.zip |
In mail view window add buttons for open previous and next message.
Diffstat (limited to 'src/gui/windows/mailviewwindow.cpp')
-rw-r--r-- | src/gui/windows/mailviewwindow.cpp | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/src/gui/windows/mailviewwindow.cpp b/src/gui/windows/mailviewwindow.cpp index 3caf7dc53..8dce1228b 100644 --- a/src/gui/windows/mailviewwindow.cpp +++ b/src/gui/windows/mailviewwindow.cpp @@ -26,7 +26,7 @@ #include "gui/mailmessage.h" -#include "gui/windows/setupwindow.h" +#include "gui/windows/mailwindow.h" #include "gui/widgets/button.h" #include "gui/widgets/containerplacer.h" @@ -59,6 +59,8 @@ MailViewWindow::MailViewWindow(const MailMessage *const message) : mGetAttachButton(nullptr), // TRANSLATORS: mail view window button mCloseButton(new Button(this, _("Close"), "close", this)), + mPrevButton(new Button(this, "<", "prev", this)), + mNextButton(new Button(this, ">", "next", this)), // TRANSLATORS: mail view window label mTimeLabel(new Label(this, strprintf("%s %s", _("Time:"), message->strTime.c_str()))), @@ -119,9 +121,14 @@ MailViewWindow::MailViewWindow(const MailMessage *const message) : if (message->money || message->itemId) { mGetAttachButton = new Button(this, _("Get attach"), "attach", this); - placer(0, n, mGetAttachButton); + placer(0, n++, mGetAttachButton); } - placer(2, n, mCloseButton); + ContainerPlacer placer2; + placer2 = getPlacer(0, n); + + placer2(0, 0, mPrevButton); + placer2(1, 0, mNextButton); + placer2(2, 0, mCloseButton); loadWindowState(); enableVisibleSound(true); @@ -151,4 +158,14 @@ void MailViewWindow::action(const ActionEvent &event) if (mGetAttachButton) mailHandler->getAttach(mMessage->id); } + else if (eventId == "next") + { + if (mMessage) + mailWindow->viewNext(mMessage->id); + } + else if (eventId == "prev") + { + if (mMessage) + mailWindow->viewPrev(mMessage->id); + } } |