mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
130 lines
3.2 KiB
C++
130 lines
3.2 KiB
C++
// vim: set tabstop=4 shiftwidth=4 expandtab:
|
|
/*
|
|
Gwenview: an image viewer
|
|
Copyright 2008 Aurélien Gâteau <agateau@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
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, Cambridge, MA 02110-1301, USA.
|
|
|
|
*/
|
|
// Self
|
|
#include "moc_messageviewadapter.cpp"
|
|
|
|
// Qt
|
|
#include <QGraphicsProxyWidget>
|
|
|
|
// KDE
|
|
#include <KDebug>
|
|
#include <KLocale>
|
|
|
|
// Local
|
|
#include <lib/document/document.h>
|
|
#include <ui_messageview.h>
|
|
|
|
namespace Gwenview
|
|
{
|
|
|
|
struct MessageViewAdapterPrivate : Ui_MessageView
|
|
{
|
|
Document::Ptr mDocument;
|
|
};
|
|
|
|
MessageViewAdapter::MessageViewAdapter()
|
|
: d(new MessageViewAdapterPrivate)
|
|
{
|
|
QWidget* widget = new QWidget;
|
|
widget->installEventFilter(this);
|
|
d->setupUi(widget);
|
|
d->mMessageWidget->setCloseButtonVisible(false);
|
|
d->mMessageWidget->setWordWrap(true);
|
|
|
|
setInfoMessage(i18n("No document selected"));
|
|
|
|
widget->setAutoFillBackground(true);
|
|
widget->setBackgroundRole(QPalette::Base);
|
|
widget->setForegroundRole(QPalette::Text);
|
|
|
|
QGraphicsProxyWidget* proxy = new QGraphicsProxyWidget;
|
|
proxy->setWidget(widget);
|
|
setWidget(proxy);
|
|
}
|
|
|
|
MessageViewAdapter::~MessageViewAdapter()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
void MessageViewAdapter::setErrorMessage(const QString& main, const QString& detail)
|
|
{
|
|
if (main.isEmpty()) {
|
|
d->mMessageWidget->hide();
|
|
return;
|
|
}
|
|
d->mMessageWidget->show();
|
|
d->mMessageWidget->setMessageType(KMessageWidget::Error);
|
|
QString message;
|
|
if (detail.isEmpty()) {
|
|
message = main;
|
|
} else {
|
|
message = QString("<b>%1</b><br>%2").arg(main).arg(detail);
|
|
}
|
|
d->mMessageWidget->setText(message);
|
|
}
|
|
|
|
void MessageViewAdapter::setInfoMessage(const QString& message)
|
|
{
|
|
if (message.isEmpty()) {
|
|
d->mMessageWidget->hide();
|
|
return;
|
|
}
|
|
d->mMessageWidget->show();
|
|
d->mMessageWidget->setMessageType(KMessageWidget::Information);
|
|
d->mMessageWidget->setText(message);
|
|
}
|
|
|
|
Document::Ptr MessageViewAdapter::document() const
|
|
{
|
|
return d->mDocument;
|
|
}
|
|
|
|
void MessageViewAdapter::setDocument(Document::Ptr doc)
|
|
{
|
|
d->mDocument = doc;
|
|
}
|
|
|
|
bool MessageViewAdapter::eventFilter(QObject*, QEvent* ev)
|
|
{
|
|
if (ev->type() == QEvent::KeyPress) {
|
|
QKeyEvent* event = static_cast<QKeyEvent*>(ev);
|
|
if (event->modifiers() != Qt::NoModifier) {
|
|
return false;
|
|
}
|
|
|
|
switch (event->key()) {
|
|
case Qt::Key_Left:
|
|
case Qt::Key_Up:
|
|
previousImageRequested();
|
|
break;
|
|
case Qt::Key_Right:
|
|
case Qt::Key_Down:
|
|
nextImageRequested();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
} // namespace
|