kde-playground/kdepim/kmail/widgets/displaymessageformatactionmenu.cpp
2015-04-14 21:49:29 +00:00

98 lines
3.4 KiB
C++

/*
Copyright (c) 2014 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "displaymessageformatactionmenu.h"
#include <KLocalizedString>
#include <KAction>
#include <KMenu>
#include <KToggleAction>
#include <QDebug>
DisplayMessageFormatActionMenu::DisplayMessageFormatActionMenu(QObject *parent)
: KActionMenu(parent),
mDisplayMessageFormat(MessageViewer::Viewer::UseGlobalSetting)
{
setText(i18n("Message Default Format"));
KMenu *subMenu = new KMenu;
setMenu(subMenu);
QActionGroup *actionGroup = new QActionGroup(this);
KToggleAction *act = new KToggleAction(i18n("Prefer &HTML to Plain Text"), this);
act->setObjectName(QLatin1String("prefer-html-action"));
act->setData(MessageViewer::Viewer::Html);
actionGroup->addAction(act);
subMenu->addAction(act);
connect(act, SIGNAL(triggered(bool)), this, SLOT(slotChangeDisplayMessageFormat()));
act = new KToggleAction(i18n("Prefer &Plain Text to HTML"), this);
act->setData(MessageViewer::Viewer::Text);
act->setObjectName(QLatin1String("prefer-text-action"));
actionGroup->addAction(act);
subMenu->addAction(act);
connect(act, SIGNAL(triggered(bool)), this, SLOT(slotChangeDisplayMessageFormat()));
act = new KToggleAction(i18n("Use Global Setting"), this);
act->setObjectName(QLatin1String("use-global-setting-action"));
act->setData(MessageViewer::Viewer::UseGlobalSetting);
connect(act, SIGNAL(triggered(bool)), this, SLOT(slotChangeDisplayMessageFormat()));
actionGroup->addAction(act);
subMenu->addAction(act);
updateMenu();
}
DisplayMessageFormatActionMenu::~DisplayMessageFormatActionMenu()
{
}
void DisplayMessageFormatActionMenu::slotChangeDisplayMessageFormat()
{
if (sender()) {
KToggleAction *act = dynamic_cast<KToggleAction *>(sender());
if (act) {
MessageViewer::Viewer::DisplayFormatMessage format = static_cast<MessageViewer::Viewer::DisplayFormatMessage>(act->data().toInt());
emit changeDisplayMessageFormat(format);
}
}
}
MessageViewer::Viewer::DisplayFormatMessage DisplayMessageFormatActionMenu::displayMessageFormat() const
{
return mDisplayMessageFormat;
}
void DisplayMessageFormatActionMenu::setDisplayMessageFormat(MessageViewer::Viewer::DisplayFormatMessage displayMessageFormat)
{
if (mDisplayMessageFormat != displayMessageFormat) {
mDisplayMessageFormat = displayMessageFormat;
updateMenu();
}
}
void DisplayMessageFormatActionMenu::updateMenu()
{
Q_FOREACH (QAction *act, menu()->actions()) {
MessageViewer::Viewer::DisplayFormatMessage format = static_cast<MessageViewer::Viewer::DisplayFormatMessage>(act->data().toInt());
if (format == mDisplayMessageFormat) {
act->setChecked(true);
break;
}
}
}