/* This file is part of Clementine. Copyright 2010-2011, David Sansome Copyright 2012, 2014, John Maguire Copyright 2014, Krzysztof Sobiecki 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 . */ #include "icecastfilterwidget.h" #include #include #include #include "icecastmodel.h" #include "ui/iconloader.h" #include "ui_icecastfilterwidget.h" const char* IcecastFilterWidget::kSettingsGroup = "Icecast"; IcecastFilterWidget::IcecastFilterWidget(QWidget* parent) : QWidget(parent), ui_(new Ui_IcecastFilterWidget), menu_(new QMenu(tr("Display options"), this)) { ui_->setupUi(this); // Icons ui_->options->setIcon(IconLoader::Load("configure", IconLoader::Base)); // 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_); } void IcecastFilterWidget::AddAction(QActionGroup* group, QAction* action, IcecastModel::SortMode mode) { group->addAction(action); connect(action, &QAction::triggered, [this, mode]() { SortModeChanged(mode); }); } 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(ui_->filter, 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); }