mirror of
https://github.com/clementine-player/Clementine
synced 2025-02-03 12:47:31 +01:00
110 lines
3.4 KiB
C++
110 lines
3.4 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 "icecastmodel.h"
|
|
#include "icecastfilterwidget.h"
|
|
#include "ui_icecastfilterwidget.h"
|
|
#include "ui/iconloader.h"
|
|
#include "widgets/maclineedit.h"
|
|
|
|
#include <QMenu>
|
|
#include <QSettings>
|
|
#include <QSignalMapper>
|
|
|
|
const char* IcecastFilterWidget::kSettingsGroup = "Icecast";
|
|
|
|
IcecastFilterWidget::IcecastFilterWidget(QWidget *parent)
|
|
: QWidget(parent),
|
|
ui_(new Ui_IcecastFilterWidget),
|
|
menu_(new QMenu(tr("Display options"), this)),
|
|
sort_mode_mapper_(new QSignalMapper(this))
|
|
{
|
|
ui_->setupUi(this);
|
|
|
|
// Icons
|
|
ui_->options->setIcon(IconLoader::Load("configure"));
|
|
|
|
// Options actions
|
|
QActionGroup* group = new QActionGroup(this);
|
|
AddAction(group, ui_->action_sort_genre_popularity, IcecastModel::SortMode_GenreByPopularity);
|
|
AddAction(group, ui_->action_sort_genre_alphabetically, IcecastModel::SortMode_GenreAlphabetical);
|
|
AddAction(group, ui_->action_sort_station, IcecastModel::SortMode_StationAlphabetical);
|
|
|
|
// Options menu
|
|
menu_->setIcon(ui_->options->icon());
|
|
menu_->addActions(group->actions());
|
|
ui_->options->setMenu(menu_);
|
|
|
|
connect(sort_mode_mapper_, SIGNAL(mapped(int)), SLOT(SortModeChanged(int)));
|
|
|
|
#ifdef Q_OS_DARWIN
|
|
delete ui_->filter;
|
|
MacLineEdit* lineedit = new MacLineEdit(this);
|
|
ui_->horizontalLayout->insertWidget(1, lineedit);
|
|
filter_ = lineedit;
|
|
#else
|
|
filter_ = ui_->filter;
|
|
#endif
|
|
}
|
|
|
|
void IcecastFilterWidget::AddAction(
|
|
QActionGroup* group, QAction* action, IcecastModel::SortMode mode) {
|
|
group->addAction(action);
|
|
sort_mode_mapper_->setMapping(action, mode);
|
|
connect(action, SIGNAL(triggered()), sort_mode_mapper_, SLOT(map()));
|
|
}
|
|
|
|
IcecastFilterWidget::~IcecastFilterWidget() {
|
|
delete ui_;
|
|
}
|
|
|
|
void IcecastFilterWidget::FocusOnFilter(QKeyEvent *event) {
|
|
ui_->filter->setFocus(Qt::OtherFocusReason);
|
|
QApplication::sendEvent(ui_->filter, event);
|
|
}
|
|
|
|
void IcecastFilterWidget::SetIcecastModel(IcecastModel* model) {
|
|
model_ = model;
|
|
connect(filter_->widget(), SIGNAL(textChanged(QString)),
|
|
model_, SLOT(SetFilterText(QString)));
|
|
|
|
// Load settings
|
|
QSettings s;
|
|
s.beginGroup(kSettingsGroup);
|
|
switch (s.value("sort_by", IcecastModel::SortMode_GenreByPopularity).toInt()) {
|
|
case IcecastModel::SortMode_GenreByPopularity:
|
|
ui_->action_sort_genre_popularity->trigger();
|
|
break;
|
|
|
|
case IcecastModel::SortMode_GenreAlphabetical:
|
|
ui_->action_sort_genre_alphabetically->trigger();
|
|
break;
|
|
|
|
case IcecastModel::SortMode_StationAlphabetical:
|
|
ui_->action_sort_station->trigger();
|
|
break;
|
|
}
|
|
}
|
|
|
|
void IcecastFilterWidget::SortModeChanged(int mode) {
|
|
model_->SetSortMode(IcecastModel::SortMode(mode));
|
|
|
|
QSettings s;
|
|
s.beginGroup(kSettingsGroup);
|
|
s.setValue("sort_by", mode);
|
|
}
|