GUI: prevent findbar from taking significant amount of space
[trojita.git] / src / Gui / MessageHeadersWidget.cpp
blobddb0e411bccffc4906a370da38adea637a56f67d
1 /* Copyright (C) 2006 - 2016 Jan Kundrát <jkt@kde.org>
3 This file is part of the Trojita Qt IMAP e-mail client,
4 http://trojita.flaska.net/
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of
9 the License or (at your option) version 3 or any later version
10 accepted by the membership of KDE e.V. (or its successor approved
11 by the membership of KDE e.V.), which shall act as a proxy
12 defined in Section 14 of version 3 of the license.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "Gui/MessageHeadersWidget.h"
24 #include <QAction>
25 #include <QModelIndex>
26 #include <QVBoxLayout>
27 #include <QWebView>
28 #include "Gui/FindBar.h"
29 #include "Imap/Model/ItemRoles.h"
30 #include "Imap/Model/MailboxTree.h"
31 #include "Imap/Network/MsgPartNetAccessManager.h"
32 #include "UiUtils/IconLoader.h"
34 namespace Gui {
36 MessageHeadersWidget::MessageHeadersWidget(QWidget *parent, const QModelIndex &messageIndex)
37 : QWidget(parent)
38 , FindBarMixin(this)
39 , m_widget(new QWebView(this))
42 setWindowIcon(UiUtils::loadIcon(QStringLiteral("text-x-hex")));
43 //: Translators: %1 is the UID of a message (a number) and %2 is the name of a mailbox.
44 setWindowTitle(tr("Message headers of UID %1 in %2").arg(
45 QString::number(messageIndex.data(Imap::Mailbox::RoleMessageUid).toUInt()),
46 messageIndex.parent().parent().data(Imap::Mailbox::RoleMailboxName).toString()
47 ));
48 Q_ASSERT(messageIndex.isValid());
50 auto netAccess = new Imap::Network::MsgPartNetAccessManager(this);
51 netAccess->setModelMessage(messageIndex);
52 m_widget->page()->setNetworkAccessManager(netAccess);
53 m_widget->setUrl(QUrl(QStringLiteral("trojita-imap://msg/HEADER")));
55 auto find = new QAction(UiUtils::loadIcon(QStringLiteral("edit-find")), tr("Search..."), this);
56 find->setShortcut(tr("Ctrl+F"));
57 connect(find, &QAction::triggered, this, [this]() {
58 searchRequestedBy(m_widget);
59 });
60 addAction(find);
62 auto layout = new QVBoxLayout(this);
63 layout->setContentsMargins(0, 0, 0, 0);
64 layout->addWidget(m_widget, 1);
65 layout->addWidget(m_findBar);
66 setLayout(layout);