/***************************************************************************
* Copyright (C) 2009-2021 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program 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 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include <QPushButton>
#include <QHBoxLayout>
#include <QLabel>
#include <QTreeView>
#include <QMessageBox>
#include <QMenu>
#include <QSettings>
#include <QInputDialog>
#include <QGridLayout>
#include <qmmp/soundcore.h>
#include <qmmp/decoder.h>
#include <qmmp/metadatamanager.h>
#include <qmmp/effect.h>
#include <qmmpui/general.h>
#include <qmmpui/playlistparser.h>
#include <qmmpui/playlistformat.h>
#include <qmmpui/filedialog.h>
#include <qmmpui/playlistmodel.h>
#include <qmmpui/mediaplayer.h>
#include <qmmpui/uihelper.h>
#include <qmmpui/configdialog.h>
#include <qmmpui/qmmpuisettings.h>
#include "qsuitabbar.h"
#include "toolbareditor.h"
#include "actionmanager.h"
#include "qsuivisualization.h"
#include "visualmenu.h"
#include "listwidget.h"
#include "positionslider.h"
#include "mainwindow.h"
#include "qsuisettings.h"
#include "hotkeyeditor.h"
#include "filesystembrowser.h"
#include "aboutqsuidialog.h"
#include "keyboardmanager.h"
#include "coverwidget.h"
#include "playlistbrowser.h"
#include "volumeslider.h"
#include "qsuitabwidget.h"
#include "qsuiquicksearch.h"
#include "qsuiwaveformseekbar.h"
#include "qsuistatusbar.h"
#include "dockwidgetlist.h"
#include "equalizer.h"
#define KEY_OFFSET 10000
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
{
m_ui.setupUi(this);
m_titleFormatter.setPattern("%if(%p,%p - %t,%t)");
//qmmp objects
m_player = MediaPlayer::instance();
connect(m_player, SIGNAL(playbackFinished()), SLOT(restoreWindowTitle()));
m_core = SoundCore::instance();
m_pl_manager = PlayListManager::instance();
m_uiHelper = UiHelper::instance();
m_ui_settings = QmmpUiSettings::instance();
connect(m_uiHelper, SIGNAL(toggleVisibilityCalled()), SLOT(toggleVisibility()));
connect(m_uiHelper, SIGNAL(showMainWindowCalled()), SLOT(showAndRaise()));
m_visMenu = new VisualMenu(this); //visual menu
m_ui.actionVisualization->setMenu(m_visMenu);
m_pl_menu = new QMenu(this); //playlist menu
new ActionManager(this); //action manager
createWidgets(); //widgets
//status
connect(m_core, SIGNAL(elapsedChanged(qint64)), SLOT(updatePosition(qint64)));
connect(m_core, SIGNAL(stateChanged(Qmmp::State)), SLOT(showState(Qmmp::State)));
connect(m_core, SIGNAL(trackInfoChanged()), SLOT(showMetaData()));
//keyboard manager
m_key_manager = new KeyboardManager(this);
//create tabs
for(PlayListModel *model : m_pl_manager->playLists())
{
if(m_pl_manager->currentPlayList() != model)
m_tabWidget->addTab(model->name());
else
m_tabWidget->addTab("[" + model->name() + "]");
connect(model, SIGNAL(nameChanged(QString)), SLOT(updateTabs()));
}
m_tabWidget->setCurrentIndex(m_pl_manager->selectedPlayListIndex());
m_key_manager->setListWidget(m_listWidget);
m_positionSlider = new PositionSlider(this);
m_positionSlider->setFocusPolicy(Qt::NoFocus);
m_positionSlider->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
//prepare visualization
Visual::initialize(this, m_visMenu, SLOT(updateActions()));
//playlist manager
connect(m_positionSlider, SIGNAL(sliderReleased()), SLOT(seek()));
connect(m_pl_manager, SIGNAL(currentPlayListChanged(PlayListModel*,PlayListModel*)),
SLOT(onCurrentPlayListChanged(PlayListModel*,PlayListModel*)));
connect(m_pl_manager, SIGNAL(selectedPlayListChanged(PlayListModel*,PlayListModel*)),
SLOT(updateTabs()));
connect(m_pl_manager, SIGNAL(playListRemoved(int)), SLOT(removeTab(int)));
connect(m_pl_manager, SIGNAL(playListAdded(int)), SLOT(addTab(int)));
connect(m_pl_manager, SIGNAL(selectedPlayListChanged(PlayListModel*,PlayListModel*)),
m_listWidget, SLOT(setModel(PlayListModel*,PlayListModel*)));
connect(m_pl_manager->currentPlayList(), SIGNAL(listChanged(int)), SLOT(onListChanged(int)));
connect(m_tabWidget,SIGNAL(currentChanged(int)), m_pl_manager, SLOT(selectPlayList(int)));
connect(m_tabWidget, SIGNAL(tabCloseRequested(int)), m_pl_manager, SLOT(removePlayList(int)));
connect(m_tabWidget, SIGNAL(tabMoved(int,int)), m_pl_manager, SLOT(move(int,int)));
connect(m_tabWidget, SIGNAL(createPlayListRequested()), m_pl_manager, SLOT(createPlayList()));
m_tabWidget->setContextMenuPolicy(Qt::CustomContextMenu);
connect(m_tabWidget, SIGNAL(customContextMenuRequested(QPoint)), SLOT(showTabMenu(QPoint)));
m_tab_menu = new QMenu(m_tabWidget);
//status bar
m_statusBar = new QSUiStatusBar(this);
m_ui.statusbar->addPermanentWidget(m_statusBar, 1);
m_ui.statusbar->setStyleSheet("QStatusBar::item { border: 0px solid black; };");
//volume
m_volumeSlider = new VolumeSlider(this);
m_volumeSlider->setFocusPolicy(Qt::NoFocus);
m_volumeSlider->setFixedWidth(100);
m_volumeSlider->setRange(0,100);
SET_ACTION(ActionManager::VOL_MUTE, m_core, SLOT(setMuted(bool)));
connect(m_volumeSlider, SIGNAL(sliderMoved(int)), m_core, SLOT(setVolume(int)));
connect(m_core, SIGNAL(volumeChanged(int)), m_volumeSlider, SLOT(setValue(int)));
connect(m_core, SIGNAL(volumeChanged(int)), SLOT(updateVolumeIcon()));
connect(m_core, SIGNAL(mutedChanged(bool)), SLOT(updateVolumeIcon()));
connect(m_core, SIGNAL(mutedChanged(bool)), ACTION(ActionManager::VOL_MUTE), SLOT(setChecked(bool)));
m_volumeSlider->setValue(m_core->volume());
updateVolumeIcon();
//quick search
m_quickSearch = new QSUiQuickSearch(m_listWidget, this);
m_quickSearch->setMaximumWidth(250);
//visualization
m_analyzer = new QSUIVisualization(this);
m_ui.analyzerDockWidget->setWidget(m_analyzer);
Visual::add(m_analyzer);
//waveform seek bar
m_seekBar = new QSUiWaveformSeekBar(this);
m_ui.waveformSeekBarDockWidget->setWidget(m_seekBar);
//filesystem browser
m_ui.fileSystemDockWidget->setWidget(new FileSystemBrowser(this));
//cover
m_ui.coverDockWidget->setWidget(new CoverWidget(this));
//playlists
m_ui.playlistsDockWidget->setWidget(new PlayListBrowser(m_pl_manager, this));
//dock widgets (plugins)
m_dockWidgetList = new DockWidgetList(this);
//other
createActions();
readSettings();
restoreWindowTitle();
}
MainWindow::~MainWindow()
{
}
void MainWindow::addDir()
{
m_uiHelper->addDirectory(this);
}
void MainWindow::addFiles()
{
m_uiHelper->addFiles(this);
}
void MainWindow::playFiles()
{
m_uiHelper->playFiles(this);
}
void MainWindow::record(bool enabled)
{
EffectFactory *fileWriterFactory = Effect::findFactory("filewriter");
if(fileWriterFactory)
Effect::setEnabled(fileWriterFactory, enabled);
}
void MainWindow::addUrl()
{
m_uiHelper->addUrl(this);
}
void MainWindow::updatePosition(qint64 pos)
{
m_positionSlider->setMaximum(m_core->duration()/1000);
if(!m_positionSlider->isSliderDown())
m_positionSlider->setValue(pos/1000);
}
void MainWindow::seek()
{
m_core->seek(m_positionSlider->value()*1000);
}
void MainWindow::showState(Qmmp::State state)
{
if(state != Qmmp::Playing)
{
ACTION(ActionManager::PLAY_PAUSE)->setIcon(QIcon::fromTheme("media-playback-start"));
}
switch((int) state)
{
case Qmmp::Playing:
{
m_analyzer->setCover(MetaDataManager::instance()->getCover(m_core->path()));
CoverWidget *cw = qobject_cast<CoverWidget *>(m_ui.coverDockWidget->widget());
cw->setCover(MetaDataManager::instance()->getCover(m_core->path()));
ACTION(ActionManager::PLAY_PAUSE)->setIcon(QIcon::fromTheme("media-playback-pause"));
break;
}
case Qmmp::Paused:
break;
case Qmmp::Stopped:
m_positionSlider->setValue(0);
m_analyzer->clearCover();
qobject_cast<CoverWidget *>(m_ui.coverDockWidget->widget())->clearCover();
break;
default:
;
}
}
void MainWindow::updateTabs()
{
for(int i = 0; i < m_pl_manager->count(); ++i)
{
PlayListModel *model = m_pl_manager->playListAt(i);
if(model == m_pl_manager->currentPlayList())
m_tabWidget->setTabText(i, "[" + model->name() + "]");
else
m_tabWidget->setTabText(i, model->name());
}
m_tabWidget->setCurrentIndex(m_pl_manager->selectedPlayListIndex());
}
void MainWindow::removePlaylist()
{
m_pl_manager->removePlayList(m_pl_manager->selectedPlayList());
}
void MainWindow::removePlaylistWithIndex(int index)
{
m_pl_manager->removePlayList(m_pl_manager->playListAt(index));
}
void MainWindow::addTab(int index)
{
m_tabWidget->insertTab(index, m_pl_manager->playListAt(index)->name());
connect(m_pl_manager->playListAt(index), SIGNAL(nameChanged(QString)), SLOT(updateTabs()));
updateTabs();
}
void MainWindow::removeTab(int index)
{
m_tabWidget->removeTab(index);
updateTabs();
}
void MainWindow::renameTab()
{
bool ok = false;
QString name = QInputDialog::getText (this,
tr("Rename Playlist"), tr("Playlist name:"),
QLineEdit::Normal,
m_pl_manager->selectedPlayList()->name(), &ok);
if(ok)
m_pl_manager->selectedPlayList()->setName(name);
}
void MainWindow::aboutUi()
{
AboutQSUIDialog dialog(this);
dialog.exec();
}
void MainWindow::about()
{
m_uiHelper->about(this);
}
void MainWindow::toggleVisibility()
{
if(isHidden() || isMinimized())
showAndRaise();
else
hide();
}
void MainWindow::showAndRaise()
{
show();
if(m_wasMaximized)
showMaximized();
else
showNormal();
raise();
activateWindow();
}
void MainWindow::showSettings()
{
ConfigDialog *confDialog = new ConfigDialog(this);
QSUiSettings *simpleSettings = new QSUiSettings(this);
confDialog->addPage(tr("Appearance"), simpleSettings, QIcon(":/qsui/qsui_settings.png"));
confDialog->addPage(tr("Shortcuts"), new HotkeyEditor(this), QIcon(":/qsui/qsui_shortcuts.png"));
confDialog->exec();
simpleSettings->writeSettings();
confDialog->deleteLater();
readSettings();
ActionManager::instance()->saveActions();
m_analyzer->readSettings();
m_seekBar->readSettings();
}
void MainWindow::showAppMenu()
{
QAction *action = qobject_cast<QAction *>(sender());
if(!action)
return;
QPoint menuPos = pos();
for(QWidget *w : action->associatedWidgets())
{
QToolButton *toolButton = qobject_cast<QToolButton *>(w);
if(toolButton && toolButton->parentWidget())
{
menuPos = toolButton->parentWidget()->mapToGlobal(toolButton->geometry().bottomLeft());
break;
}
}
QMenu *appMenu = new QMenu(this);
appMenu->setAttribute(Qt::WA_DeleteOnClose, true);
appMenu->addActions(menuBar()->actions());
appMenu->popup(menuPos);
}
void MainWindow::updateVolumeIcon()
{
int maxVol = m_core->volume();
QString iconName = "audio-volume-high";
if(maxVol == 0 || m_core->isMuted())
iconName = "audio-volume-muted";
else if(maxVol < 30)
iconName = "audio-volume-low";
else if(maxVol < 60)
iconName = "audio-volume-medium";
ACTION(ActionManager::VOL_MUTE)->setIcon(QIcon::fromTheme(iconName, QIcon(QString(":/qsui/") + iconName + ".png")));
}
void MainWindow::jumpTo()
{
m_uiHelper->jumpToTrack(this);
}
void MainWindow::playPause()
{
if (m_core->state() == Qmmp::Playing)
m_core->pause();
else
m_player->play();
}
void MainWindow::closeEvent(QCloseEvent *)
{
if(!m_hideOnClose || !m_uiHelper->visibilityControl())
m_uiHelper->exit();
}
void MainWindow::hideEvent(QHideEvent *)
{
writeSettings();
m_wasMaximized = isMaximized();
}
QMenu *MainWindow::createPopupMenu()
{
QMenu *menu = QMainWindow::createPopupMenu();
menu->addSeparator();
QAction *menuBarAction = menu->addAction(tr("Menu Bar"));
menuBarAction->setCheckable(true);
menuBarAction->setChecked(menuBar()->isVisible());
connect(menuBarAction, &QAction::toggled, menuBar(), &QMenuBar::setVisible);
return menu;
}
void MainWindow::createWidgets()
{
m_tabWidget = new QSUiTabWidget(this);
m_listWidget = m_tabWidget->listWidget();
m_listWidget->setMenu(m_pl_menu);
setCentralWidget(m_tabWidget);
//'new playlist' button
m_addListButton = new QToolButton(m_tabWidget);
m_addListButton->setText("+");
m_addListButton->setToolButtonStyle(Qt::ToolButtonIconOnly);
m_addListButton->setAutoRaise(true);
m_addListButton->setIcon(QIcon::fromTheme("list-add"));
m_addListButton->setToolTip(tr("Add new playlist"));
connect(m_addListButton, SIGNAL(clicked()), m_pl_manager, SLOT(createPlayList()));
//playlist menu button
m_tabListMenuButton = new QToolButton(m_tabWidget);
m_tabListMenuButton->setToolButtonStyle(Qt::ToolButtonIconOnly);
m_tabListMenuButton->setAutoRaise(true);
m_tabListMenuButton->setToolTip(tr("Show all tabs"));
m_tabListMenuButton->setArrowType(Qt::DownArrow);
m_tabListMenuButton->setStyleSheet("QToolButton::menu-indicator { image: none; }");
m_tabListMenuButton->setPopupMode(QToolButton::InstantPopup);
m_tabListMenuButton->setMenu(m_tabWidget->menu());
}
void MainWindow::createActions()
{
//prepare checkable actions
ACTION(ActionManager::REPEAT_ALL)->setChecked(m_ui_settings->isRepeatableList());
ACTION(ActionManager::REPEAT_TRACK)->setChecked(m_ui_settings->isRepeatableTrack());
ACTION(ActionManager::SHUFFLE)->setChecked(m_ui_settings->isShuffle());
ACTION(ActionManager::NO_PL_ADVANCE)->setChecked(m_ui_settings->isNoPlayListAdvance());
ACTION(ActionManager::TRANSIT_BETWEEN_PLAYLISTS)->setChecked(m_ui_settings->isPlayListTransitionEnabled());
connect(m_ui_settings, SIGNAL(repeatableListChanged(bool)),
ACTION(ActionManager::REPEAT_ALL), SLOT(setChecked(bool)));
connect(m_ui_settings, SIGNAL (repeatableTrackChanged(bool)),
ACTION(ActionManager::REPEAT_TRACK), SLOT(setChecked(bool)));
connect(m_ui_settings, SIGNAL (noPlayListAdvanceChanged(bool)),
ACTION(ActionManager::NO_PL_ADVANCE), SLOT(setChecked(bool)));
connect(m_ui_settings, SIGNAL(shuffleChanged(bool)),
ACTION(ActionManager::SHUFFLE), SLOT(setChecked(bool)));
connect(m_ui_settings, SIGNAL(playListTransitionChanged(bool)),
ACTION(ActionManager::TRANSIT_BETWEEN_PLAYLISTS), SLOT(setChecked(bool)));
//register external actions
ActionManager::instance()->registerAction(ActionManager::UI_ANALYZER,
m_ui.analyzerDockWidget->toggleViewAction(),
"analyzer", "");
ActionManager::instance()->registerAction(ActionManager::UI_FILEBROWSER,
m_ui.fileSystemDockWidget->toggleViewAction(),
"file_browser", tr("Ctrl+0"));
ActionManager::instance()->registerAction(ActionManager::UI_COVER,
m_ui.coverDockWidget->toggleViewAction(),
"cover", "");
ActionManager::instance()->registerAction(ActionManager::UI_PLAYLIST_BROWSER,
m_ui.playlistsDockWidget->toggleViewAction(),
"playlist_browser", tr("P"));
ActionManager::instance()->registerAction(ActionManager::UI_WAVEFORM_SEEKBAR,
m_ui.waveformSeekBarDockWidget->toggleViewAction(),
"waveform_seekbar", "");
ActionManager::instance()->registerWidget(ActionManager::UI_POS_SLIDER, m_positionSlider,
tr("Position"), "position_slider");
ActionManager::instance()->registerWidget(ActionManager::UI_VOL_SLIDER, m_volumeSlider,
tr("Volume"), "volume_slider");
ActionManager::instance()->registerWidget(ActionManager::UI_QUICK_SEARCH, m_quickSearch,
tr("Quick Search"), "quick_search");
//playback
SET_ACTION(ActionManager::PREVIOUS, m_player, SLOT(previous()));
SET_ACTION(ActionManager::PLAY, m_player, SLOT(play()));
SET_ACTION(ActionManager::PAUSE, m_core, SLOT(pause()));
SET_ACTION(ActionManager::STOP, m_player, SLOT(stop()));
SET_ACTION(ActionManager::NEXT, m_player, SLOT(next()));
SET_ACTION(ActionManager::EJECT, this, SLOT(playFiles()));
SET_ACTION(ActionManager::RECORD, this, SLOT(record(bool)));
//file menu
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_ADD_FILE, this, SLOT(addFiles())));
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_ADD_DIRECTORY, this, SLOT(addDir())));
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_ADD_URL, this, SLOT(addUrl())));
QAction *sep = m_ui.menuFile->addSeparator();
UiHelper::instance()->registerMenu(UiHelper::ADD_MENU, m_ui.menuFile, false, sep);
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_NEW, m_pl_manager, SLOT(createPlayList())));
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_CLOSE, this, SLOT(removePlaylist())));
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_RENAME, this, SLOT(renameTab())));
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_SELECT_NEXT, m_pl_manager,
SLOT(selectNextPlayList())));
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_SELECT_PREVIOUS, m_pl_manager,
SLOT(selectPreviousPlayList())));
m_ui.menuFile->addSeparator();
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_LOAD, this, SLOT(loadPlayList())));
m_ui.menuFile->addAction(SET_ACTION(ActionManager::PL_SAVE, this, SLOT(savePlayList())));
m_ui.menuFile->addSeparator();
m_ui.menuFile->addAction(SET_ACTION(ActionManager::QUIT, m_uiHelper, SLOT(exit())));
//edit menu
m_ui.menuEdit->addAction(SET_ACTION(ActionManager::PL_SELECT_ALL, m_pl_manager, SLOT(selectAll())));
m_ui.menuEdit->addSeparator();
m_ui.menuEdit->addAction(SET_ACTION(ActionManager::PL_REMOVE_SELECTED, m_listWidget,
SLOT(removeSelected())));
m_ui.menuEdit->addAction(SET_ACTION(ActionManager::PL_REMOVE_UNSELECTED, m_listWidget,
SLOT(removeUnselected())));
m_ui.menuEdit->addAction(SET_ACTION(ActionManager::PL_REMOVE_ALL, m_listWidget, SLOT(clear())));
m_ui.menuEdit->addAction(SET_ACTION(ActionManager::PL_REMOVE_INVALID, m_pl_manager,
SLOT(removeInvalidTracks())));
m_ui.menuEdit->addAction(SET_ACTION(ActionManager::PL_REMOVE_DUPLICATES, m_pl_manager,
SLOT(removeDuplicates())));
m_ui.menuEdit->addAction(SET_ACTION(ActionManager::PL_REFRESH, m_pl_manager,
SLOT(refresh())));
m_ui.menuEdit->addSeparator();
//view menu
m_ui.menuView->addAction(SET_ACTION(ActionManager::WM_ALLWAYS_ON_TOP, this, SLOT(readSettings())));
m_ui.menuView->addSeparator();
m_ui.menuView->addAction(m_ui.analyzerDockWidget->toggleViewAction());
m_ui.menuView->addAction(m_ui.waveformSeekBarDockWidget->toggleViewAction());
m_ui.menuView->addAction(m_ui.fileSystemDockWidget->toggleViewAction());
m_ui.menuView->addAction(m_ui.coverDockWidget->toggleViewAction());
m_ui.menuView->addAction(m_ui.playlistsDockWidget->toggleViewAction());
QAction *separator = m_ui.menuView->addSeparator();
m_dockWidgetList->registerMenu(m_ui.menuView, separator);
m_ui.menuView->addAction(SET_ACTION(ActionManager::UI_SHOW_TABS, m_tabWidget->tabBar(), SLOT(setVisible(bool))));
m_ui.menuView->addAction(SET_ACTION(ActionManager::UI_SHOW_TITLEBARS, this, SLOT(setTitleBarsVisible(bool))));
m_ui.menuView->addAction(ACTION(ActionManager::PL_SHOW_HEADER));
m_ui.menuView->addSeparator();
m_ui.menuView->addAction(SET_ACTION(ActionManager::UI_BLOCK_TOOLBARS, this, SLOT(setToolBarsBlocked(bool))));
m_ui.menuView->addAction(tr("Edit Toolbars"), this, SLOT(editToolBar()));
QMenu *sort_mode_menu = new QMenu (tr("Sort List"), this);
sort_mode_menu->setIcon(QIcon::fromTheme("view-sort-ascending"));
QAction *titleAct = sort_mode_menu->addAction(tr ("By Title"));
connect(titleAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::TITLE); } );
QAction *albumAct = sort_mode_menu->addAction(tr ("By Album"));
connect(albumAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::ALBUM); } );
QAction *artistAct = sort_mode_menu->addAction(tr ("By Artist"));
connect(artistAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::ARTIST); } );
QAction *albumArtistAct = sort_mode_menu->addAction(tr ("By Album Artist"));
connect(albumArtistAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::ALBUMARTIST); } );
QAction *nameAct = sort_mode_menu->addAction(tr ("By Filename"));
connect(nameAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::FILENAME); } );
QAction *pathnameAct = sort_mode_menu->addAction(tr ("By Path + Filename"));
connect(pathnameAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::PATH_AND_FILENAME); } );
QAction *dateAct = sort_mode_menu->addAction(tr ("By Date"));
connect(dateAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::DATE); } );
QAction *trackAct = sort_mode_menu->addAction(tr("By Track Number"));
connect(trackAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::TRACK); } );
QAction *discAct = sort_mode_menu->addAction(tr("By Disc Number"));
connect(discAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::DISCNUMBER); } );
QAction *fileCreationDateAct = sort_mode_menu->addAction(tr("By File Creation Date"));
connect(fileCreationDateAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::FILE_CREATION_DATE); } );
QAction *fileModificationDateAct = sort_mode_menu->addAction(tr("By File Modification Date"));
connect(fileModificationDateAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::FILE_MODIFICATION_DATE); } );
QAction *groupAct = sort_mode_menu->addAction(tr("By Group"));
connect(groupAct, &QAction::triggered, [this]{ m_pl_manager->sort(PlayListModel::GROUP); } );
m_ui.menuEdit->addMenu (sort_mode_menu);
sort_mode_menu = new QMenu (tr("Sort Selection"), this);
sort_mode_menu->setIcon(QIcon::fromTheme("view-sort-ascending"));
titleAct = sort_mode_menu->addAction(tr ("By Title"));
connect(titleAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::TITLE); });
albumAct = sort_mode_menu->addAction(tr ("By Album"));
connect(albumAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::ALBUM); });
artistAct = sort_mode_menu->addAction(tr ("By Artist"));
connect(artistAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::ARTIST); });
albumArtistAct = sort_mode_menu->addAction(tr ("By Album Artist"));
connect(albumArtistAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::ALBUMARTIST); });
nameAct = sort_mode_menu->addAction(tr ("By Filename"));
connect(nameAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::FILENAME); });
pathnameAct = sort_mode_menu->addAction(tr ("By Path + Filename"));
connect(pathnameAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::PATH_AND_FILENAME); });
dateAct = sort_mode_menu->addAction(tr ("By Date"));
connect(dateAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::DATE); });
trackAct = sort_mode_menu->addAction(tr ("By Track Number"));
connect(trackAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::TRACK); });
discAct = sort_mode_menu->addAction(tr("By Disc Number"));
connect(discAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::DISCNUMBER); });
fileCreationDateAct = sort_mode_menu->addAction(tr("By File Creation Date"));
connect(fileCreationDateAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::FILE_CREATION_DATE); });
fileModificationDateAct = sort_mode_menu->addAction(tr("By File Modification Date"));
connect(fileModificationDateAct, &QAction::triggered, [this]{ m_pl_manager->sortSelection(PlayListModel::FILE_MODIFICATION_DATE ); });
m_ui.menuEdit->addMenu (sort_mode_menu);
m_ui.menuEdit->addSeparator();
m_ui.menuEdit->addAction(QIcon::fromTheme("media-playlist-shuffle"), tr("Randomize List"),
m_pl_manager, SLOT(randomizeList()));
m_ui.menuEdit->addAction(QIcon::fromTheme("view-sort-descending"), tr("Reverse List"),
m_pl_manager, SLOT(reverseList()));
m_ui.menuEdit->addAction(SET_ACTION(ActionManager::PL_GROUP_TRACKS, m_ui_settings, SLOT(setGroupsEnabled(bool))));
ACTION(ActionManager::PL_GROUP_TRACKS)->setChecked(m_ui_settings->isGroupsEnabled());
m_ui.menuEdit->addSeparator();
m_ui.menuEdit->addAction(SET_ACTION(ActionManager::SETTINGS, this, SLOT(showSettings())));
//playback menu
m_ui.menuPlayback->addAction(ACTION(ActionManager::PLAY));
m_ui.menuPlayback->addAction(ACTION(ActionManager::STOP));
m_ui.menuPlayback->addAction(ACTION(ActionManager::PAUSE));
m_ui.menuPlayback->addAction(ACTION(ActionManager::NEXT));
m_ui.menuPlayback->addAction(ACTION(ActionManager::PREVIOUS));
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::PLAY_PAUSE,this,SLOT(playPause())));
m_ui.menuPlayback->addSeparator();
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::JUMP, this, SLOT(jumpTo())));
m_ui.menuPlayback->addSeparator();
m_ui.menuPlayback->addAction(ACTION(ActionManager::PL_ENQUEUE));
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::CLEAR_QUEUE, m_pl_manager, SLOT(clearQueue())));
m_ui.menuPlayback->addSeparator();
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::REPEAT_ALL, m_ui_settings,
SLOT(setRepeatableList(bool))));
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::REPEAT_TRACK, m_ui_settings,
SLOT(setRepeatableTrack(bool))));
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::SHUFFLE, m_ui_settings,
SLOT(setShuffle(bool))));
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::NO_PL_ADVANCE, m_ui_settings,
SLOT(setNoPlayListAdvance(bool))));
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::TRANSIT_BETWEEN_PLAYLISTS, m_ui_settings,
SLOT(setPlayListTransitionEnabled(bool))));
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::STOP_AFTER_SELECTED, m_pl_manager,
SLOT(stopAfterSelected())));
m_ui.menuPlayback->addSeparator();
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::VOL_ENC, m_core, SLOT(volumeUp())));
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::VOL_DEC, m_core, SLOT(volumeDown())));
m_ui.menuPlayback->addAction(SET_ACTION(ActionManager::VOL_MUTE, m_core, SLOT(setMuted(bool))));
connect(m_core, SIGNAL(mutedChanged(bool)), ACTION(ActionManager::VOL_MUTE), SLOT(setChecked(bool)));
//help menu
m_ui.menuHelp->addAction(SET_ACTION(ActionManager::ABOUT_UI, this, SLOT(aboutUi())));
m_ui.menuHelp->addAction(SET_ACTION(ActionManager::ABOUT, this, SLOT(about())));
m_ui.menuHelp->addAction(SET_ACTION(ActionManager::ABOUT_QT, qApp, SLOT(aboutQt())));
//playlist menu
m_pl_menu->addAction(SET_ACTION(ActionManager::PL_SHOW_INFO, m_pl_manager, SLOT(showDetails())));
m_pl_menu->addSeparator();
m_pl_menu->addAction(ACTION(ActionManager::PL_REMOVE_SELECTED));
m_pl_menu->addAction(ACTION(ActionManager::PL_REMOVE_ALL));
m_pl_menu->addAction(ACTION(ActionManager::PL_REMOVE_UNSELECTED));
m_pl_menu->addMenu(UiHelper::instance()->createMenu(UiHelper::PLAYLIST_MENU,
tr("Actions"), true, this));
m_pl_menu->addSeparator();
m_pl_menu->addAction(SET_ACTION(ActionManager::PL_ENQUEUE, m_pl_manager, SLOT(addToQueue())));
//tools menu
m_ui.menuTools->addAction(SET_ACTION(ActionManager::EQUALIZER, this, SLOT(showEqualizer())));
m_uiHelper->registerMenu(UiHelper::TOOLS_MENU, m_ui.menuTools, false, ACTION(ActionManager::EQUALIZER));
//tab menu
m_tab_menu->addAction(ACTION(ActionManager::PL_LOAD));
m_tab_menu->addAction(ACTION(ActionManager::PL_SAVE));
m_tab_menu->addSeparator();
m_tab_menu->addAction(ACTION(ActionManager::PL_RENAME));
m_tab_menu->addAction(ACTION(ActionManager::PL_CLOSE));
//seeking
QAction* forward = new QAction(this);
forward->setShortcut(QKeySequence(Qt::Key_Right));
connect(forward,SIGNAL(triggered(bool)),this,SLOT(forward()));
QAction* backward = new QAction(this);
backward->setShortcut(QKeySequence(Qt::Key_Left));
connect(backward,SIGNAL(triggered(bool)),this,SLOT(backward()));
//application menu
SET_ACTION(ActionManager::APPLICATION_MENU, this, SLOT(showAppMenu()));
addActions(QList<QAction*>() << forward << backward);
addActions(ActionManager::instance()->actions());
addActions(m_key_manager->actions());
}
void MainWindow::readSettings()
{
QSettings settings(Qmmp::configFile(), QSettings::IniFormat);
settings.beginGroup("Simple");
m_titleFormatter.setPattern(settings.value("window_title_format","%if(%p,%p - %t,%t)").toString());
//update toolbars
const QList<ActionManager::ToolBarInfo> toolBarInfoList = ActionManager::instance()->readToolBarSettings();
QList<QToolBar *> toolBars = findChildren<QToolBar*>();
//clear toolbars to avoid conflicts
for(QToolBar *toolBar : qAsConst(toolBars))
toolBar->clear();
for(const ActionManager::ToolBarInfo &info : qAsConst(toolBarInfoList))
{
bool found = false;
QList<QToolBar *>::iterator it = toolBars.begin();
while(it != toolBars.end())
{
if((*it)->property("uid").toString() == info.uid)
{
found = true;
ActionManager::instance()->updateToolBar(*it, info);
toolBars.erase(it);
break;
}
++it;
}
if(!found)
{
addToolBar(ActionManager::instance()->createToolBar(info, this));
}
}
for(QToolBar *toolBar : qAsConst(toolBars))
toolBar->deleteLater();
toolBars.clear();
setToolBarsBlocked(ACTION(ActionManager::UI_BLOCK_TOOLBARS)->isChecked());
if(m_update)
{
m_listWidget->readSettings();
qobject_cast<FileSystemBrowser *> (m_ui.fileSystemDockWidget->widget())->readSettings();
if(ACTION(ActionManager::WM_ALLWAYS_ON_TOP)->isChecked())
setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
else
setWindowFlags(windowFlags() & ~Qt::WindowStaysOnTopHint);
if(m_core->state() == Qmmp::Playing || m_core->state() == Qmmp::Paused)
showMetaData();
m_tabWidget->readSettings();
show();
}
else
{
restoreGeometry(settings.value("mw_geometry").toByteArray());
menuBar()->setVisible(settings.value("show_menubar", true).toBool());
QByteArray wstate = settings.value("mw_state").toByteArray();
if(wstate.isEmpty())
{
m_ui.fileSystemDockWidget->hide();
m_ui.coverDockWidget->hide();
m_ui.playlistsDockWidget->hide();
m_ui.waveformSeekBarDockWidget->hide();
}
else
restoreState(settings.value("mw_state").toByteArray());
if(settings.value("always_on_top", false).toBool())
{
ACTION(ActionManager::WM_ALLWAYS_ON_TOP)->setChecked(true);
setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
}
show();
qApp->processEvents();
if(settings.value("start_hidden").toBool())
hide();
bool state = settings.value("show_titlebars", true).toBool();
ACTION(ActionManager::UI_SHOW_TITLEBARS)->setChecked(state);
setTitleBarsVisible(state);
state = settings.value("show_tabs", true).toBool();
ACTION(ActionManager::UI_SHOW_TABS)->setChecked(state);
m_tabWidget->setTabsVisible(state);
state = settings.value("block_toolbars", false).toBool();
ACTION(ActionManager::UI_BLOCK_TOOLBARS)->setChecked(state);
setToolBarsBlocked(state);
m_update = true;
}
m_hideOnClose = settings.value("hide_on_close", false).toBool();
if(settings.value("pl_show_new_pl_button", false).toBool())
{
m_tabWidget->setCornerWidget(m_addListButton, Qt::TopLeftCorner);
m_addListButton->setIconSize(QSize(16, 16));
m_addListButton->setVisible(true);
}
else
{
m_addListButton->setVisible(false);
m_tabWidget->setCornerWidget(nullptr, Qt::TopLeftCorner);
}
if(settings.value("pl_show_tab_list_menu", false).toBool())
{
m_tabWidget->setCornerWidget(m_tabListMenuButton, Qt::TopRightCorner);
m_tabListMenuButton->setIconSize(QSize(16, 16));
m_tabListMenuButton->setVisible(true);
}
else
{
m_tabListMenuButton->setVisible(false);
m_tabWidget->setCornerWidget(nullptr, Qt::TopRightCorner);
}
settings.endGroup();
addActions(m_uiHelper->actions(UiHelper::TOOLS_MENU));
addActions(m_uiHelper->actions(UiHelper::PLAYLIST_MENU));
//record action
EffectFactory *fileWriterFactory = Effect::findFactory("filewriter");
if(fileWriterFactory)
{
ACTION(ActionManager::RECORD)->setEnabled(true);
ACTION(ActionManager::RECORD)->setChecked(Effect::isEnabled(fileWriterFactory));
}
else
{
ACTION(ActionManager::RECORD)->setEnabled(false);
ACTION(ActionManager::RECORD)->setChecked(false);
}
}
void MainWindow::showTabMenu(const QPoint &pos)
{
int index = m_tabWidget->tabBar()->tabAt(m_tabWidget->tabBar()->mapFromParent(pos));
if(index == -1)
{
QMenu *menu = createPopupMenu();
menu->setAttribute(Qt::WA_DeleteOnClose, true);
menu->popup(m_tabWidget->mapToGlobal(pos));
}
else
{
m_pl_manager->selectPlayList(index);
m_tab_menu->popup(m_tabWidget->mapToGlobal(pos));
}
}
void MainWindow::writeSettings()
{
QSettings settings (Qmmp::configFile(), QSettings::IniFormat);
settings.setValue("Simple/mw_geometry", saveGeometry());
settings.setValue("Simple/mw_state", saveState());
settings.setValue("Simple/always_on_top", ACTION(ActionManager::WM_ALLWAYS_ON_TOP)->isChecked());
settings.setValue("Simple/show_analyzer", ACTION(ActionManager::UI_ANALYZER)->isChecked());
settings.setValue("Simple/show_tabs", ACTION(ActionManager::UI_SHOW_TABS)->isChecked());
settings.setValue("Simple/show_titlebars", ACTION(ActionManager::UI_SHOW_TITLEBARS)->isChecked());
settings.setValue("Simple/block_toolbars", ACTION(ActionManager::UI_BLOCK_TOOLBARS)->isChecked());
settings.setValue("Simple/show_menubar", menuBar()->isVisible());
}
void MainWindow::savePlayList()
{
m_uiHelper->savePlayList(this);
}
void MainWindow::loadPlayList()
{
m_uiHelper->loadPlayList(this);
}
void MainWindow::showEqualizer()
{
Equalizer equalizer(this);
equalizer.exec();
}
void MainWindow::forward()
{
m_core->seek(m_core->elapsed() + KEY_OFFSET);
}
void MainWindow::backward()
{
m_core->seek(qMax(qint64(0), m_core->elapsed() - KEY_OFFSET));
}
void MainWindow::showMetaData()
{
PlayListModel *model = m_pl_manager->currentPlayList();
PlayListTrack *track = model->currentTrack();
if(track && track->path() == m_core->trackInfo().path())
{
setWindowTitle(m_titleFormatter.format(track));
}
}
void MainWindow::setTitleBarsVisible(bool visible)
{
m_dockWidgetList->setTitleBarsVisible(visible);
QList<QDockWidget *> widgetList = {
m_ui.analyzerDockWidget,
m_ui.fileSystemDockWidget,
m_ui.coverDockWidget,
m_ui.playlistsDockWidget,
m_ui.waveformSeekBarDockWidget
};
if(qApp->platformName() == QLatin1String("wayland"))
{
for(QDockWidget *w : qAsConst(widgetList))
w->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable);
}
if(visible)
{
for(QDockWidget *w : qAsConst(widgetList))
{
QWidget *widget = w->titleBarWidget();
if(widget)
{
w->setTitleBarWidget(nullptr);
delete widget;
}
}
}
else
{
for(QDockWidget *w : qAsConst(widgetList))
{
if(!w->titleBarWidget())
w->setTitleBarWidget(new QWidget());
}
}
}
void MainWindow::setToolBarsBlocked(bool blocked)
{
for(QToolBar *t : findChildren<QToolBar *>())
{
t->setMovable(!blocked);
}
}
void MainWindow::editToolBar()
{
ToolBarEditor *e = new ToolBarEditor(this);
if(e->exec() == QDialog::Accepted)
{
readSettings();
}
e->deleteLater();
}
void MainWindow::restoreWindowTitle()
{
setWindowTitle(tr("Qmmp"));
}
void MainWindow::onListChanged(int flags)
{
if(flags & PlayListModel::STRUCTURE)
m_statusBar->updatePlayListStatus();
}
void MainWindow::onCurrentPlayListChanged(PlayListModel *current, PlayListModel *previous)
{
updateTabs();
m_statusBar->updatePlayListStatus();
connect(current, SIGNAL(listChanged(int)), SLOT(onListChanged(int)));
if(previous)
disconnect(current, SIGNAL(listChanged(int)), this, SLOT(onListChanged(int)));
}