67 lines
2.0 KiB
C++
67 lines
2.0 KiB
C++
/* This file is part of Clementine.
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
Clementine 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.
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "organiseerrordialog.h"
|
|
#include "ui_organiseerrordialog.h"
|
|
|
|
OrganiseErrorDialog::OrganiseErrorDialog(QWidget *parent)
|
|
: QDialog(parent),
|
|
ui_(new Ui_OrganiseErrorDialog)
|
|
{
|
|
ui_->setupUi(this);
|
|
|
|
const int icon_size = style()->pixelMetric(QStyle::PM_MessageBoxIconSize, 0, this);
|
|
QIcon icon = style()->standardIcon(QStyle::SP_MessageBoxCritical, 0, this);
|
|
|
|
ui_->icon->setPixmap(icon.pixmap(icon_size));
|
|
}
|
|
|
|
OrganiseErrorDialog::~OrganiseErrorDialog() {
|
|
delete ui_;
|
|
}
|
|
|
|
void OrganiseErrorDialog::Show(
|
|
OperationType type, const SongList& songs_with_errors) {
|
|
QStringList files;
|
|
foreach (const Song& song, songs_with_errors) {
|
|
files << song.filename();
|
|
}
|
|
Show(type, files);
|
|
}
|
|
|
|
void OrganiseErrorDialog::Show(
|
|
OperationType type, const QStringList& files_with_errors) {
|
|
QStringList sorted_files = files_with_errors;
|
|
qStableSort(sorted_files);
|
|
|
|
switch (type) {
|
|
case Type_Copy:
|
|
setWindowTitle(tr("Error copying songs"));
|
|
ui_->label->setText(tr("There were problems copying some songs. The following files could not be copied:"));
|
|
break;
|
|
|
|
case Type_Delete:
|
|
setWindowTitle(tr("Error deleting songs"));
|
|
ui_->label->setText(tr("There were problems deleting some songs. The following files could not be deleted:"));
|
|
break;
|
|
}
|
|
|
|
ui_->list->addItems(sorted_files);
|
|
|
|
show();
|
|
}
|