/* This file is part of the KDE libraries * * Copyright (c) 2011 Aurélien Gâteau * * 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 "kmessagewidget.h" #ifdef ENABLE_KDE_SUPPORT #include #include #include #include #include #include #include #endif #include #include #include #include #include #include #include #include #include #include //--------------------------------------------------------------------- // KMessageWidgetPrivate //--------------------------------------------------------------------- #if 0 class KMessageWidgetPrivate { public: void init(KMessageWidget*); KMessageWidget* q; QFrame* content; QLabel* iconLabel; QLabel* textLabel; QToolButton* closeButton; QTimeLine* timeLine; KMessageWidget::MessageType messageType; bool wordWrap; QList buttons; QPixmap contentSnapShot; void createLayout(); void updateSnapShot(); void updateLayout(); void slotTimeLineChanged(qreal); void slotTimeLineFinished(); }; #endif void KMessageWidgetPrivate::init(KMessageWidget *q_ptr) { q = q_ptr; q->setSizePolicy(QSizePolicy::Minimum, 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); #ifdef ENABLE_KDE_SUPPORT KAction* closeAction = KStandardAction::close(q, SLOT(animatedHide()), q); #else QAction* closeAction = new QAction(q); closeAction->setIcon(QIcon::fromTheme("dialog-close")); QObject::connect(closeAction, SIGNAL(triggered()), q, SLOT(animatedHide())); #endif closeButton = new QToolButton(content); closeButton->setAutoRaise(true); closeButton->setDefaultAction(closeAction); q->setMessageType(KMessageWidget::Information); } void KMessageWidgetPrivate::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); button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); 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 KMessageWidgetPrivate::updateLayout() { if (content->layout()) { createLayout(); } } void KMessageWidgetPrivate::updateSnapShot() { contentSnapShot = QPixmap(content->size()); contentSnapShot.fill(Qt::transparent); content->render(&contentSnapShot, QPoint(), QRegion(), QWidget::DrawChildren); } void KMessageWidgetPrivate::slotTimeLineChanged(qreal value) { q->setFixedHeight(qMin(value * 2, qreal(1.0)) * content->height()); q->update(); } void KMessageWidgetPrivate::slotTimeLineFinished() { if (timeLine->direction() == QTimeLine::Forward) { // Show content->move(0, 0); } else { // Hide q->hide(); } } //--------------------------------------------------------------------- // KMessageWidget //--------------------------------------------------------------------- KMessageWidget::KMessageWidget(QWidget* parent) : QFrame(parent) , d(new KMessageWidgetPrivate) { d->init(this); } KMessageWidget::KMessageWidget(const QString& text, QWidget* parent) : QFrame(parent) , d(new KMessageWidgetPrivate) { d->init(this); setText(text); } KMessageWidget::~KMessageWidget() { delete d; } QString KMessageWidget::text() const { return d->textLabel->text(); } void KMessageWidget::setText(const QString& text) { d->textLabel->setText(text); updateGeometry(); } KMessageWidget::MessageType KMessageWidget::messageType() const { return d->messageType; } void KMessageWidget::setMessageType(KMessageWidget::MessageType type) { #ifdef ENABLE_KDE_SUPPORT d->messageType = type; KIcon icon; KColorScheme::BackgroundRole bgRole; KColorScheme::ForegroundRole fgRole; KColorScheme::ColorSet colorSet = KColorScheme::Window; switch (type) { case Positive: icon = KIcon("dialog-ok"); bgRole = KColorScheme::PositiveBackground; fgRole = KColorScheme::PositiveText; break; case Information: icon = KIcon("dialog-information"); bgRole = KColorScheme::NormalBackground; fgRole = KColorScheme::NormalText; colorSet = KColorScheme::Tooltip; break; case Warning: icon = KIcon("dialog-warning"); bgRole = KColorScheme::NeutralBackground; fgRole = KColorScheme::NeutralText; break; case Error: 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()) ); #else d->messageType = type; QIcon icon; QColor bgnd; QColor border; QColor text; // switch (type) { // case PositiveMessageType: // icon = QIcon::fromTheme("dialog-ok"); // bgRole = KColorScheme::PositiveBackground; // fgRole = KColorScheme::PositiveText; // break; // case InformationMessageType: // icon = QIcon::fromTheme("dialog-information"); // bgRole = KColorScheme::NormalBackground; // fgRole = KColorScheme::NormalText; // colorSet = KColorScheme::Tooltip; // break; // case WarningMessageType: // icon = QIcon::fromTheme("dialog-warning"); // bgRole = KColorScheme::NeutralBackground; // fgRole = KColorScheme::NeutralText; // break; // case ErrorMessageType: // icon = QIcon::fromTheme("dialog-error"); // bgRole = KColorScheme::NegativeBackground; // fgRole = KColorScheme::NegativeText; // break; // } border=Qt::red; bgnd=QColor(0xeb, 0xbb, 0xbb); text=Qt::black; // const int size = QIcon::fromThemeLoader::global()->currentSize(QIcon::fromThemeLoader::MainToolbar); d->iconLabel->setPixmap(QIcon::fromTheme("dialog-error").pixmap(22, 22)); // 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(bgnd.name()) .arg(border.name()) .arg(text.name()) ); #endif } QSize KMessageWidget::sizeHint() const { ensurePolished(); return d->content->sizeHint(); } QSize KMessageWidget::minimumSizeHint() const { ensurePolished(); return d->content->minimumSizeHint(); } bool KMessageWidget::event(QEvent* event) { if (event->type() == QEvent::Polish && !d->content->layout()) { d->createLayout(); } return QFrame::event(event); } void KMessageWidget::resizeEvent(QResizeEvent* event) { QFrame::resizeEvent(event); if (d->timeLine->state() == QTimeLine::NotRunning) { d->content->resize(size()); } } void KMessageWidget::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 KMessageWidget::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 KMessageWidget::wordWrap() const { return d->wordWrap; } void KMessageWidget::setWordWrap(bool wordWrap) { d->wordWrap = wordWrap; d->textLabel->setWordWrap(wordWrap); d->updateLayout(); } bool KMessageWidget::isCloseButtonVisible() const { return d->closeButton->isVisible(); } void KMessageWidget::setCloseButtonVisible(bool show) { d->closeButton->setVisible(show); } void KMessageWidget::addAction(QAction* action) { QFrame::addAction(action); d->updateLayout(); } void KMessageWidget::removeAction(QAction* action) { QFrame::removeAction(action); d->updateLayout(); } void KMessageWidget::animatedShow() { #ifdef ENABLE_KDE_SUPPORT if (!(KGlobalSettings::graphicEffectsLevel() & KGlobalSettings::SimpleAnimationEffects)) { show(); return; } #endif if (isVisible()) { 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 KMessageWidget::animatedHide() { #ifdef ENABLE_KDE_SUPPORT if (!(KGlobalSettings::graphicEffectsLevel() & KGlobalSettings::SimpleAnimationEffects)) { hide(); return; } #endif if (!isVisible()) { return; } d->content->move(0, -d->content->height()); d->updateSnapShot(); d->timeLine->setDirection(QTimeLine::Backward); if (d->timeLine->state() == QTimeLine::NotRunning) { d->timeLine->start(); } }