Clementine-audio-player-Mac.../src/ui/mainwindow.h

350 lines
9.3 KiB
C
Raw Normal View History

/* 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/>.
*/
2009-12-24 20:16:07 +01:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <boost/scoped_ptr.hpp>
2009-12-24 20:16:07 +01:00
#include <QMainWindow>
#include <QSettings>
2009-12-24 20:16:07 +01:00
#include <QSystemTrayIcon>
#include "config.h"
2010-06-14 15:27:45 +02:00
#include "core/mac_startup.h"
#include "engines/engine_fwd.h"
#include "library/librarymodel.h"
#include "playlist/playlistitem.h"
2010-08-27 17:42:58 +02:00
#include "ui/settingsdialog.h"
2009-12-24 20:16:07 +01:00
2010-02-03 21:45:32 +01:00
class About;
class AddStreamDialog;
class AlbumCoverManager;
class ArtistInfoView;
class ArtLoader;
class BackgroundStreams;
class CommandlineOptions;
2011-07-23 20:34:41 +02:00
class CoverProviders;
class Database;
class DeviceManager;
class DeviceView;
class EditTagDialog;
class Equalizer;
class ErrorDialog;
class FileView;
class GlobalSearch;
class GlobalShortcuts;
class GroupByDialog;
class Library;
class LibraryViewContainer;
class MimeData;
class MultiLoadingIndicator;
class OrganiseDialog;
class OSD;
class Player;
class PlaylistBackend;
class PlaylistManager;
2010-07-11 17:37:40 +02:00
class QueueManager;
class InternetItem;
class InternetModel;
class InternetViewContainer;
class Remote;
class Song;
class SongInfoBase;
class SongInfoView;
class SystemTrayIcon;
class TagFetcher;
class TagReaderClient;
class TaskManager;
class TrackSelectionDialog;
class TranscodeDialog;
class VisualisationContainer;
2010-08-25 15:51:30 +02:00
class WiimotedevShortcuts;
class Windows7ThumbBar;
class Ui_MainWindow;
2009-12-24 20:16:07 +01:00
class QSortFilterProxyModel;
2010-06-14 15:27:45 +02:00
class MainWindow : public QMainWindow, public PlatformInterface {
2009-12-24 20:16:07 +01:00
Q_OBJECT
public:
MainWindow(BackgroundThread<Database>* database,
TaskManager* task_manager,
PlaylistManager* playlists,
InternetModel* internet_model,
Player* player,
SystemTrayIcon* tray_icon,
OSD* osd,
ArtLoader* art_loader,
2011-07-23 20:34:41 +02:00
CoverProviders* cover_providers,
GlobalSearch* global_search,
TagReaderClient* tag_reader_client,
QWidget *parent = 0);
2009-12-24 20:16:07 +01:00
~MainWindow();
static const char* kSettingsGroup;
static const char* kMusicFilterSpec;
static const char* kAllFilesFilterSpec;
// Don't change the values
enum StartupBehaviour {
Startup_Remember = 1,
Startup_AlwaysShow = 2,
Startup_AlwaysHide = 3,
};
// Don't change the values
enum AddBehaviour {
AddBehaviour_Append = 1,
AddBehaviour_Enqueue = 2,
AddBehaviour_Load = 3,
AddBehaviour_OpenInNew = 4
};
// Don't change the values
enum PlayBehaviour {
PlayBehaviour_Never = 1,
PlayBehaviour_IfStopped = 2,
PlayBehaviour_Always = 3,
};
2009-12-24 20:16:07 +01:00
void SetHiddenInTray(bool hidden);
void CommandlineOptionsReceived(const CommandlineOptions& options);
2009-12-24 20:16:07 +01:00
protected:
void resizeEvent(QResizeEvent* event);
void closeEvent(QCloseEvent* event);
#ifdef Q_OS_WIN32
bool winEvent(MSG* message, long* result);
#endif
2010-06-15 23:56:33 +02:00
// PlatformInterface
2010-06-14 15:27:45 +02:00
void Activate();
2010-06-15 23:56:33 +02:00
bool LoadUrl(const QString& url);
2009-12-24 20:16:07 +01:00
private slots:
void FilePathChanged(const QString& path);
2009-12-24 20:16:07 +01:00
void MediaStopped();
void MediaPaused();
void MediaPlaying();
void TrackSkipped(PlaylistItemPtr item);
void ForceShowOSD(const Song& song, const bool toggle);
2009-12-24 20:16:07 +01:00
2010-01-15 17:22:19 +01:00
void PlaylistRightClick(const QPoint& global_pos, const QModelIndex& index);
void PlaylistCurrentChanged(const QModelIndex& current);
void PlaylistViewSelectionModelChanged();
2010-01-15 17:22:19 +01:00
void PlaylistPlay();
void PlaylistStopAfter();
2010-07-11 17:37:40 +02:00
void PlaylistQueue();
void PlaylistRemoveCurrent();
void PlaylistEditFinished(const QModelIndex& index);
2010-01-16 17:12:47 +01:00
void EditTracks();
void EditTagDialogAccepted();
void RenumberTracks();
void SelectionSetValue();
void EditValue();
void AutoCompleteTags();
void AutoCompleteTagsAccepted();
void PlaylistUndoRedoChanged(QAction* undo, QAction* redo);
2010-01-15 17:22:19 +01:00
void PlaylistCopyToLibrary();
void PlaylistMoveToLibrary();
void PlaylistCopyToDevice();
void PlaylistOrganiseSelected(bool copy);
void PlaylistDelete();
void PlaylistOpenInBrowser();
void ChangeLibraryQueryMode(QAction* action);
2009-12-24 20:16:07 +01:00
void PlayIndex(const QModelIndex& index);
void StopAfterCurrent();
void SongChanged(const Song& song);
void VolumeChanged(int volume);
void CopyFilesToLibrary(const QList<QUrl>& urls);
void MoveFilesToLibrary(const QList<QUrl>& urls);
2010-09-18 11:54:33 +02:00
void CopyFilesToDevice(const QList<QUrl>& urls);
void AddToPlaylist(QMimeData* data);
void AddToPlaylist(QAction* action);
2009-12-24 20:16:07 +01:00
void VolumeWheelEvent(int delta);
void ToggleShowHide();
2009-12-24 20:16:07 +01:00
void Seeked(qlonglong microseconds);
2009-12-29 20:57:33 +01:00
void UpdateTrackPosition();
//Handle visibility of LastFM icons
void LastFMButtonVisibilityChanged(bool value);
void ScrobbleButtonVisibilityChanged(bool value);
void SetToggleScrobblingIcon(bool value);
#ifdef HAVE_LIBLASTFM
void ScrobblingEnabledChanged(bool value);
2009-12-29 21:48:50 +01:00
void Love();
void ScrobbledRadioStream();
#endif
2009-12-29 21:48:50 +01:00
void TaskCountChanged(int count);
void ShowLibraryConfig();
void ReloadSettings();
2011-01-02 15:50:17 +01:00
void ReloadAllSettings();
void RefreshStyleSheet();
void SetHiddenInTray() { SetHiddenInTray(true); }
void AddFile();
void AddFolder();
void AddStream();
void AddStreamAccepted();
void AddCDTracks();
void CommandlineOptionsReceived(const QByteArray& serialized_options);
void CheckForUpdates();
void NowPlayingWidgetPositionChanged(bool above_status_bar);
void SongSaveComplete();
2010-08-27 17:42:58 +02:00
void ShowCoverManager();
#ifdef HAVE_LIBLASTFM
void ScrobblerStatus(int value);
#endif
2010-08-27 17:42:58 +02:00
void ShowAboutDialog();
void ShowTranscodeDialog();
void ShowErrorDialog(const QString& message);
void ShowQueueManager();
void ShowVisualisations();
2010-08-27 17:42:58 +02:00
void EnsureSettingsDialogCreated();
void EnsureEditTagDialogCreated();
void OpenSettingsDialog();
void OpenSettingsDialogAtPage(SettingsDialog::Page page);
void ShowSongInfoConfig();
2010-08-27 17:42:58 +02:00
2009-12-24 20:16:07 +01:00
void SaveGeometry();
void AddSongInfoGenerator(smart_playlists::GeneratorPtr gen);
void DeleteFinished(const SongList& songs_with_errors);
void Raise();
void Exit();
void HandleNotificationPreview(OSD::Behaviour type, QString line1, QString line2);
private:
void ConnectInfoView(SongInfoBase* view);
void ApplyAddBehaviour(AddBehaviour b, MimeData* data) const;
void ApplyPlayBehaviour(PlayBehaviour b, MimeData* data) const;
void CheckFullRescanRevisions();
//creates the icon by painting the full one depending on the current position
QPixmap CreateOverlayedIcon(int position, int scrobble_point);
2009-12-24 20:16:07 +01:00
private:
Ui_MainWindow* ui_;
Windows7ThumbBar* thumbbar_;
2010-08-27 17:42:58 +02:00
2009-12-29 20:57:33 +01:00
SystemTrayIcon* tray_icon_;
2010-01-08 15:52:05 +01:00
OSD* osd_;
boost::scoped_ptr<EditTagDialog> edit_tag_dialog_;
TaskManager* task_manager_;
boost::scoped_ptr<About> about_dialog_;
2009-12-24 20:16:07 +01:00
BackgroundThread<Database>* database_;
2011-07-23 20:34:41 +02:00
CoverProviders* cover_providers_;
InternetModel* internet_model_;
PlaylistBackend* playlist_backend_;
PlaylistManager* playlists_;
2009-12-24 20:16:07 +01:00
Player* player_;
Library* library_;
GlobalShortcuts* global_shortcuts_;
GlobalSearch* global_search_;
TagReaderClient* tag_reader_client_;
Remote* remote_;
2009-12-24 20:16:07 +01:00
DeviceManager* devices_;
LibraryViewContainer* library_view_;
FileView* file_view_;
InternetViewContainer* internet_view_;
DeviceView* device_view_;
SongInfoView* song_info_view_;
ArtistInfoView* artist_info_view_;
boost::scoped_ptr<SettingsDialog> settings_dialog_;
boost::scoped_ptr<AddStreamDialog> add_stream_dialog_;
2010-04-14 23:58:51 +02:00
boost::scoped_ptr<AlbumCoverManager> cover_manager_;
boost::scoped_ptr<Equalizer> equalizer_;
boost::scoped_ptr<TranscodeDialog> transcode_dialog_;
boost::scoped_ptr<ErrorDialog> error_dialog_;
boost::scoped_ptr<OrganiseDialog> organise_dialog_;
2010-07-11 17:37:40 +02:00
boost::scoped_ptr<QueueManager> queue_manager_;
boost::scoped_ptr<TagFetcher> tag_fetcher_;
boost::scoped_ptr<TrackSelectionDialog> track_selection_dialog_;
PlaylistItemList autocomplete_tag_items_;
#ifdef ENABLE_VISUALISATIONS
boost::scoped_ptr<VisualisationContainer> visualisation_;
#endif
2010-02-03 19:32:48 +01:00
#ifdef HAVE_WIIMOTEDEV
boost::scoped_ptr<WiimotedevShortcuts> wiimotedev_shortcuts_;
#endif
QAction* library_show_all_;
QAction* library_show_duplicates_;
QAction* library_show_untagged_;
2010-01-15 17:22:19 +01:00
QMenu* playlist_menu_;
QAction* playlist_play_pause_;
QAction* playlist_stop_after_;
QAction* playlist_undoredo_;
QAction* playlist_organise_;
QAction* playlist_copy_to_library_;
QAction* playlist_move_to_library_;
QAction* playlist_copy_to_device_;
QAction* playlist_delete_;
QAction* playlist_open_in_browser_;
2010-07-11 17:37:40 +02:00
QAction* playlist_queue_;
QAction* playlist_add_to_another_;
QList<QAction*> playlistitem_actions_;
2010-01-15 17:22:19 +01:00
QModelIndex playlist_menu_index_;
2009-12-24 20:16:07 +01:00
QSortFilterProxyModel* library_sort_model_;
2009-12-29 20:57:33 +01:00
QTimer* track_position_timer_;
QSettings settings_;
bool was_maximized_;
AddBehaviour doubleclick_addmode_;
PlayBehaviour doubleclick_playmode_;
PlayBehaviour menu_playmode_;
BackgroundStreams* background_streams_;
2009-12-24 20:16:07 +01:00
};
#endif // MAINWINDOW_H