strawberry-audio-player-win.../src/dialogs/errordialog.cpp

93 lines
2.1 KiB
C++
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2010, David Sansome <me@davidsansome.com>
*
* Strawberry 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 3 of the License, or
* (at your option) any later version.
*
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
2018-08-09 18:39:44 +02:00
*
2018-02-27 18:06:05 +01:00
*/
#include "config.h"
2024-04-23 17:15:42 +02:00
#include <utility>
#include <QWidget>
#include <QString>
#include <QIcon>
#include <QPalette>
#include <QPixmap>
#include <QStyle>
#include <QLabel>
#include <QTextEdit>
#include <QCloseEvent>
2018-02-27 18:06:05 +01:00
#include "errordialog.h"
#include "ui_errordialog.h"
ErrorDialog::ErrorDialog(QWidget *parent)
2021-07-11 07:40:57 +02:00
: QDialog(parent),
ui_(new Ui_ErrorDialog) {
2018-02-27 18:06:05 +01:00
ui_->setupUi(this);
QIcon warning_icon(style()->standardIcon(QStyle::SP_MessageBoxWarning));
QPixmap warning_pixmap(warning_icon.pixmap(48));
QPalette messages_palette(ui_->messages->palette());
messages_palette.setColor(QPalette::Base, messages_palette.color(QPalette::Window));
2018-02-27 18:06:05 +01:00
ui_->messages->setPalette(messages_palette);
ui_->icon->setPixmap(warning_pixmap);
}
ErrorDialog::~ErrorDialog() {
delete ui_;
}
void ErrorDialog::ShowMessage(const QString &message) {
2021-01-26 16:48:04 +01:00
if (message.isEmpty()) return;
2018-02-27 18:06:05 +01:00
current_messages_ << message;
UpdateContent();
show();
raise();
activateWindow();
}
void ErrorDialog::closeEvent(QCloseEvent *e) {
2018-02-27 18:06:05 +01:00
current_messages_.clear();
UpdateContent();
QDialog::closeEvent(e);
2018-02-27 18:06:05 +01:00
}
void ErrorDialog::UpdateContent() {
QString html;
2024-04-23 17:15:42 +02:00
for (const QString &message : std::as_const(current_messages_)) {
2021-08-23 21:21:08 +02:00
if (!html.isEmpty()) {
2024-04-09 23:20:26 +02:00
html += QLatin1String("<hr/>");
2021-08-23 21:21:08 +02:00
}
2018-02-27 18:06:05 +01:00
html += message.toHtmlEscaped();
}
ui_->messages->setHtml(html);
}