Use KMessageWidget to show errors - copy of KDE code taken for pre KDE4.7 and
Qt only builds.
This commit is contained in:
372
widgets/messagewidget.cpp
Normal file
372
widgets/messagewidget.cpp
Normal file
@@ -0,0 +1,372 @@
|
||||
/* This file is part of the KDE libraries
|
||||
*
|
||||
* Copyright (c) 2011 Aurélien Gâteau <agateau@kde.org>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
#include "MessageWidget.h"
|
||||
|
||||
#include <kaction.h>
|
||||
#include <kcolorscheme.h>
|
||||
#include <kdebug.h>
|
||||
#include <kglobalsettings.h>
|
||||
#include <kicon.h>
|
||||
#include <kiconloader.h>
|
||||
#include <kstandardaction.h>
|
||||
|
||||
#include <QEvent>
|
||||
#include <QGridLayout>
|
||||
#include <QHBoxLayout>
|
||||
#include <QLabel>
|
||||
#include <QPainter>
|
||||
#include <QShowEvent>
|
||||
#include <QTimeLine>
|
||||
#include <QToolButton>
|
||||
|
||||
//---------------------------------------------------------------------
|
||||
// MessageWidgetPrivate
|
||||
//---------------------------------------------------------------------
|
||||
class MessageWidgetPrivate
|
||||
{
|
||||
public:
|
||||
void init(MessageWidget*);
|
||||
|
||||
MessageWidget* q;
|
||||
QFrame* content;
|
||||
QLabel* iconLabel;
|
||||
QLabel* textLabel;
|
||||
QToolButton* closeButton;
|
||||
QTimeLine* timeLine;
|
||||
|
||||
MessageWidget::MessageType messageType;
|
||||
bool wordWrap;
|
||||
QList<QToolButton*> buttons;
|
||||
QPixmap contentSnapShot;
|
||||
|
||||
void createLayout();
|
||||
void updateSnapShot();
|
||||
void updateLayout();
|
||||
};
|
||||
|
||||
void MessageWidgetPrivate::init(MessageWidget *q_ptr)
|
||||
{
|
||||
q = q_ptr;
|
||||
|
||||
q->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
||||
|
||||
timeLine = new QTimeLine(500, q);
|
||||
QObject::connect(timeLine, SIGNAL(valueChanged(qreal)), q, SLOT(slotTimeLineChanged(qreal)));
|
||||
QObject::connect(timeLine, SIGNAL(finished()), q, SLOT(slotTimeLineFinished()));
|
||||
|
||||
content = new QFrame(q);
|
||||
content->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
||||
|
||||
wordWrap = false;
|
||||
|
||||
iconLabel = new QLabel(content);
|
||||
iconLabel->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
||||
|
||||
textLabel = new QLabel(content);
|
||||
textLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
||||
textLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
||||
|
||||
KAction* closeAction = KStandardAction::close(q, SLOT(animatedHide()), q);
|
||||
|
||||
closeButton = new QToolButton(content);
|
||||
closeButton->setAutoRaise(true);
|
||||
closeButton->setDefaultAction(closeAction);
|
||||
|
||||
q->setMessageType(MessageWidget::InformationMessageType);
|
||||
}
|
||||
|
||||
void MessageWidgetPrivate::createLayout()
|
||||
{
|
||||
delete content->layout();
|
||||
|
||||
content->resize(q->size());
|
||||
|
||||
qDeleteAll(buttons);
|
||||
buttons.clear();
|
||||
|
||||
Q_FOREACH(QAction* action, q->actions()) {
|
||||
QToolButton* button = new QToolButton(content);
|
||||
button->setDefaultAction(action);
|
||||
buttons.append(button);
|
||||
}
|
||||
|
||||
// Only set autoRaise on if there are no buttons, otherwise the close
|
||||
// button looks weird
|
||||
closeButton->setAutoRaise(buttons.isEmpty());
|
||||
|
||||
if (wordWrap) {
|
||||
QGridLayout* layout = new QGridLayout(content);
|
||||
layout->addWidget(iconLabel, 0, 0);
|
||||
layout->addWidget(textLabel, 0, 1);
|
||||
|
||||
QHBoxLayout* buttonLayout = new QHBoxLayout;
|
||||
buttonLayout->addStretch();
|
||||
Q_FOREACH(QToolButton* button, buttons) {
|
||||
// For some reason, calling show() is necessary here, but not in
|
||||
// wordwrap mode
|
||||
button->show();
|
||||
buttonLayout->addWidget(button);
|
||||
}
|
||||
buttonLayout->addWidget(closeButton);
|
||||
layout->addItem(buttonLayout, 1, 0, 1, 2);
|
||||
} else {
|
||||
QHBoxLayout* layout = new QHBoxLayout(content);
|
||||
layout->addWidget(iconLabel);
|
||||
layout->addWidget(textLabel);
|
||||
|
||||
Q_FOREACH(QToolButton* button, buttons) {
|
||||
layout->addWidget(button);
|
||||
}
|
||||
|
||||
layout->addWidget(closeButton);
|
||||
};
|
||||
|
||||
if (q->isVisible()) {
|
||||
q->setFixedHeight(content->sizeHint().height());
|
||||
}
|
||||
q->updateGeometry();
|
||||
}
|
||||
|
||||
void MessageWidgetPrivate::updateLayout()
|
||||
{
|
||||
if (content->layout()) {
|
||||
createLayout();
|
||||
}
|
||||
}
|
||||
|
||||
void MessageWidgetPrivate::updateSnapShot()
|
||||
{
|
||||
contentSnapShot = QPixmap(content->size());
|
||||
contentSnapShot.fill(Qt::transparent);
|
||||
content->render(&contentSnapShot, QPoint(), QRegion(), QWidget::DrawChildren);
|
||||
}
|
||||
|
||||
|
||||
//---------------------------------------------------------------------
|
||||
// MessageWidget
|
||||
//---------------------------------------------------------------------
|
||||
MessageWidget::MessageWidget(QWidget* parent)
|
||||
: QFrame(parent)
|
||||
, d(new MessageWidgetPrivate)
|
||||
{
|
||||
d->init(this);
|
||||
}
|
||||
|
||||
MessageWidget::MessageWidget(const QString& text, QWidget* parent)
|
||||
: QFrame(parent)
|
||||
, d(new MessageWidgetPrivate)
|
||||
{
|
||||
d->init(this);
|
||||
setText(text);
|
||||
}
|
||||
|
||||
MessageWidget::~MessageWidget()
|
||||
{
|
||||
delete d;
|
||||
}
|
||||
|
||||
QString MessageWidget::text() const
|
||||
{
|
||||
return d->textLabel->text();
|
||||
}
|
||||
|
||||
void MessageWidget::setText(const QString& text)
|
||||
{
|
||||
d->textLabel->setText(text);
|
||||
}
|
||||
|
||||
MessageWidget::MessageType MessageWidget::messageType() const
|
||||
{
|
||||
return d->messageType;
|
||||
}
|
||||
|
||||
void MessageWidget::setMessageType(MessageWidget::MessageType type)
|
||||
{
|
||||
d->messageType = type;
|
||||
KIcon icon;
|
||||
KColorScheme::BackgroundRole bgRole;
|
||||
KColorScheme::ForegroundRole fgRole;
|
||||
KColorScheme::ColorSet colorSet = KColorScheme::Window;
|
||||
switch (type) {
|
||||
case PositiveMessageType:
|
||||
icon = KIcon("dialog-ok");
|
||||
bgRole = KColorScheme::PositiveBackground;
|
||||
fgRole = KColorScheme::PositiveText;
|
||||
break;
|
||||
case InformationMessageType:
|
||||
icon = KIcon("dialog-information");
|
||||
bgRole = KColorScheme::NormalBackground;
|
||||
fgRole = KColorScheme::NormalText;
|
||||
colorSet = KColorScheme::Tooltip;
|
||||
break;
|
||||
case WarningMessageType:
|
||||
icon = KIcon("dialog-warning");
|
||||
bgRole = KColorScheme::NeutralBackground;
|
||||
fgRole = KColorScheme::NeutralText;
|
||||
break;
|
||||
case ErrorMessageType:
|
||||
icon = KIcon("dialog-error");
|
||||
bgRole = KColorScheme::NegativeBackground;
|
||||
fgRole = KColorScheme::NegativeText;
|
||||
break;
|
||||
}
|
||||
const int size = KIconLoader::global()->currentSize(KIconLoader::MainToolbar);
|
||||
d->iconLabel->setPixmap(icon.pixmap(size));
|
||||
|
||||
KColorScheme scheme(QPalette::Active, colorSet);
|
||||
QBrush bg = scheme.background(bgRole);
|
||||
QBrush border = scheme.foreground(fgRole);
|
||||
QBrush fg = scheme.foreground();
|
||||
d->content->setStyleSheet(
|
||||
QString(".QFrame {"
|
||||
"background-color: %1;"
|
||||
"border-radius: 5px;"
|
||||
"border: 1px solid %2;"
|
||||
"}"
|
||||
".QLabel { color: %3; }"
|
||||
)
|
||||
.arg(bg.color().name())
|
||||
.arg(border.color().name())
|
||||
.arg(fg.color().name())
|
||||
);
|
||||
}
|
||||
|
||||
bool MessageWidget::event(QEvent* event)
|
||||
{
|
||||
if (event->type() == QEvent::Polish && !d->content->layout()) {
|
||||
d->createLayout();
|
||||
}
|
||||
return QFrame::event(event);
|
||||
}
|
||||
|
||||
void MessageWidget::resizeEvent(QResizeEvent* event)
|
||||
{
|
||||
QFrame::resizeEvent(event);
|
||||
if (d->timeLine->state() == QTimeLine::NotRunning) {
|
||||
d->content->resize(size());
|
||||
}
|
||||
}
|
||||
|
||||
void MessageWidget::paintEvent(QPaintEvent* event)
|
||||
{
|
||||
QFrame::paintEvent(event);
|
||||
if (d->timeLine->state() == QTimeLine::Running) {
|
||||
QPainter painter(this);
|
||||
painter.setOpacity(d->timeLine->currentValue() * d->timeLine->currentValue());
|
||||
painter.drawPixmap(0, 0, d->contentSnapShot);
|
||||
}
|
||||
}
|
||||
|
||||
void MessageWidget::showEvent(QShowEvent* event)
|
||||
{
|
||||
QFrame::showEvent(event);
|
||||
if (!event->spontaneous()) {
|
||||
int wantedHeight = d->content->sizeHint().height();
|
||||
d->content->setGeometry(0, 0, width(), wantedHeight);
|
||||
setFixedHeight(wantedHeight);
|
||||
}
|
||||
}
|
||||
|
||||
bool MessageWidget::wordWrap() const
|
||||
{
|
||||
return d->wordWrap;
|
||||
}
|
||||
|
||||
void MessageWidget::setWordWrap(bool wordWrap)
|
||||
{
|
||||
d->wordWrap = wordWrap;
|
||||
d->textLabel->setWordWrap(wordWrap);
|
||||
d->updateLayout();
|
||||
}
|
||||
|
||||
bool MessageWidget::isCloseButtonVisible() const
|
||||
{
|
||||
return d->closeButton->isVisible();
|
||||
}
|
||||
|
||||
void MessageWidget::setCloseButtonVisible(bool show)
|
||||
{
|
||||
d->closeButton->setVisible(show);
|
||||
}
|
||||
|
||||
void MessageWidget::addAction(QAction* action)
|
||||
{
|
||||
QFrame::addAction(action);
|
||||
d->updateLayout();
|
||||
}
|
||||
|
||||
void MessageWidget::removeAction(QAction* action)
|
||||
{
|
||||
QFrame::removeAction(action);
|
||||
d->updateLayout();
|
||||
}
|
||||
|
||||
void MessageWidget::animatedShow()
|
||||
{
|
||||
if (!(KGlobalSettings::graphicEffectsLevel() & KGlobalSettings::SimpleAnimationEffects)) {
|
||||
show();
|
||||
return;
|
||||
}
|
||||
|
||||
QFrame::show();
|
||||
setFixedHeight(0);
|
||||
int wantedHeight = d->content->sizeHint().height();
|
||||
d->content->setGeometry(0, -wantedHeight, width(), wantedHeight);
|
||||
|
||||
d->updateSnapShot();
|
||||
|
||||
d->timeLine->setDirection(QTimeLine::Forward);
|
||||
if (d->timeLine->state() == QTimeLine::NotRunning) {
|
||||
d->timeLine->start();
|
||||
}
|
||||
}
|
||||
|
||||
void MessageWidget::slotTimeLineChanged(qreal value)
|
||||
{
|
||||
setFixedHeight(qMin(value * 2, 1.) * d->content->height());
|
||||
repaint();
|
||||
}
|
||||
|
||||
void MessageWidget::slotTimeLineFinished()
|
||||
{
|
||||
if (d->timeLine->direction() == QTimeLine::Forward) {
|
||||
// Show
|
||||
d->content->move(0, 0);
|
||||
} else {
|
||||
// Hide
|
||||
hide();
|
||||
}
|
||||
}
|
||||
|
||||
void MessageWidget::animatedHide()
|
||||
{
|
||||
if (!(KGlobalSettings::graphicEffectsLevel() & KGlobalSettings::SimpleAnimationEffects)) {
|
||||
hide();
|
||||
return;
|
||||
}
|
||||
|
||||
d->content->move(0, -d->content->height());
|
||||
d->updateSnapShot();
|
||||
|
||||
d->timeLine->setDirection(QTimeLine::Backward);
|
||||
if (d->timeLine->state() == QTimeLine::NotRunning) {
|
||||
d->timeLine->start();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user