/* This file is part of Clementine. Copyright 2010, David Sansome 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 . */ #ifndef MAINWINDOW_H #define MAINWINDOW_H #include #include #include #include #include "config.h" #include "core/mac_startup.h" #include "engines/engine_fwd.h" #include "library/librarymodel.h" #include "playlist/playlistitem.h" #include "ui/settingsdialog.h" class About; class AddStreamDialog; class ArtistInfoView; class BackgroundStreams; class CommandlineOptions; class Database; class DeviceManager; class DeviceView; class EditTagDialog; class Equalizer; class ErrorDialog; class FileView; class GlobalShortcuts; class GroupByDialog; class Library; class LibraryViewContainer; class MultiLoadingIndicator; class OrganiseDialog; class OSD; class Player; class PlaylistBackend; class PlaylistManager; class QueueManager; class RadioItem; class RadioModel; class RadioViewContainer; class ScriptDialog; class ScriptManager; class Song; class SongInfoBase; class SongInfoView; class SystemTrayIcon; class TaskManager; class TranscodeDialog; class VisualisationContainer; class WiimotedevShortcuts; class Ui_MainWindow; class QSortFilterProxyModel; #ifdef HAVE_LIBLASTFM class AlbumCoverManager; #endif class MainWindow : public QMainWindow, public PlatformInterface { Q_OBJECT public: MainWindow(BackgroundThread* database, TaskManager* task_manager, PlaylistManager* playlists, RadioModel* radio_model, Player* player, SystemTrayIcon* tray_icon, OSD* osd, QWidget *parent = 0); ~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, }; void SetHiddenInTray(bool hidden); void CommandlineOptionsReceived(const CommandlineOptions& options); protected: void resizeEvent(QResizeEvent* event); void closeEvent(QCloseEvent* event); // PlatformInterface void Activate(); bool LoadUrl(const QString& url); private slots: void FilePathChanged(const QString& path); void MediaStopped(); void MediaPaused(); void MediaPlaying(); void TrackSkipped(PlaylistItemPtr item); void ForceShowOSD(const Song& song); void PlaylistRightClick(const QPoint& global_pos, const QModelIndex& index); void PlaylistCurrentChanged(const QModelIndex& current); void PlaylistViewSelectionModelChanged(); void PlaylistPlay(); void PlaylistStopAfter(); void PlaylistQueue(); void PlaylistRemoveCurrent(); void PlaylistEditFinished(const QModelIndex& index); void EditTracks(); void EditTagDialogAccepted(); void RenumberTracks(); void SelectionSetValue(); void EditValue(); void PlaylistUndoRedoChanged(QAction* undo, QAction* redo); void PlaylistCopyToLibrary(); void PlaylistMoveToLibrary(); void PlaylistCopyToDevice(); void PlaylistOrganiseSelected(bool copy); void PlaylistDelete(); void PlayIndex(const QModelIndex& index); void StopAfterCurrent(); void SongChanged(const Song& song); void VolumeChanged(int volume); void LoadLibraryItemToPlaylist(const QModelIndexList& indexes); void AddLibraryItemToPlaylist(const QModelIndexList& indexes); void AddLibraryItemToPlaylistEnqueue(const QModelIndexList& indexes); void LibraryItemDoubleClicked(const QModelIndex& index); void LoadFilesToPlaylist(const QList& urls); void AddFilesToPlaylist(const QList& urls); void FilesDoubleClicked(const QList& urls); void CopyFilesToLibrary(const QList& urls); void MoveFilesToLibrary(const QList& urls); void CopyFilesToDevice(const QList& urls); void LoadLibrarySongsToPlaylist(const SongList& songs); void AddLibrarySongsToPlaylist(const SongList& songs); void LibrarySongsDoubleClicked(const SongList& songs); void LoadDeviceSongsToPlaylist(const SongList& songs); void AddDeviceSongsToPlaylist(const SongList& songs); void DeviceSongsDoubleClicked(const SongList& songs); void VolumeWheelEvent(int delta); void ToggleShowHide(); void UpdateTrackPosition(); void RadioDoubleClick(const QModelIndex& index); void InsertRadioItem(RadioItem*, bool clear_first); void InsertRadioItems(const PlaylistItemList& items, bool clear_first); void LastFMButtonVisibilityChanged(bool value); #ifdef HAVE_LIBLASTFM void ScrobblingEnabledChanged(bool value); void Love(); #endif void TaskCountChanged(int count); void ShowLibraryConfig(); void ReloadSettings(); void ReloadAllSettings(); void SetHiddenInTray() { SetHiddenInTray(true); } void AddFile(); void AddFolder(); void AddStream(); void AddStreamAccepted(); void CommandlineOptionsReceived(const QByteArray& serialized_options); void CheckForUpdates(); void NowPlayingWidgetPositionChanged(bool above_status_bar); void SongSaveComplete(); #ifdef HAVE_LIBLASTFM void ShowCoverManager(); #endif void ShowAboutDialog(); void ShowTranscodeDialog(); void ShowErrorDialog(const QString& message); void ShowQueueManager(); void ShowVisualisations(); void EnsureSettingsDialogCreated(); void EnsureEditTagDialogCreated(); void OpenSettingsDialog(); void OpenSettingsDialogAtPage(SettingsDialog::Page page); void ShowSongInfoConfig(); void ShowScriptDialog(); void SaveGeometry(); void AddSongInfoGenerator(smart_playlists::GeneratorPtr gen); void DeleteFinished(const SongList& songs_with_errors); void Raise(); private: void AddFilesToPlaylist(bool clear_first, const QList& urls); void AddLibraryItemToPlaylist(bool clear_first, bool enqueue, const QModelIndexList& indexes); void AddLibrarySongsToPlaylist(bool clear_first, bool enqueue, const SongList& songs); void AddSmartPlaylistToPlaylist(bool clear_first, smart_playlists::GeneratorPtr gen); void AddDeviceSongsToPlaylist(bool clear_first, const SongList& songs); void AddUrls(bool play_now, const QList& urls); void ConnectInfoView(SongInfoBase* view); private: Ui_MainWindow* ui_; SystemTrayIcon* tray_icon_; OSD* osd_; boost::scoped_ptr edit_tag_dialog_; TaskManager* task_manager_; boost::scoped_ptr about_dialog_; BackgroundThread* database_; RadioModel* radio_model_; PlaylistBackend* playlist_backend_; PlaylistManager* playlists_; Player* player_; Library* library_; GlobalShortcuts* global_shortcuts_; DeviceManager* devices_; LibraryViewContainer* library_view_; FileView* file_view_; RadioViewContainer* radio_view_; DeviceView* device_view_; SongInfoView* song_info_view_; ArtistInfoView* artist_info_view_; boost::scoped_ptr settings_dialog_; boost::scoped_ptr add_stream_dialog_; #ifdef HAVE_LIBLASTFM boost::scoped_ptr cover_manager_; #endif boost::scoped_ptr equalizer_; boost::scoped_ptr transcode_dialog_; boost::scoped_ptr error_dialog_; boost::scoped_ptr organise_dialog_; boost::scoped_ptr queue_manager_; #ifdef ENABLE_VISUALISATIONS boost::scoped_ptr visualisation_; #endif #ifdef ENABLE_WIIMOTEDEV boost::scoped_ptr wiimotedev_shortcuts_; #endif ScriptManager* scripts_; boost::scoped_ptr script_dialog_; 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_queue_; QModelIndex playlist_menu_index_; QSortFilterProxyModel* library_sort_model_; QTimer* track_position_timer_; QSettings settings_; bool was_maximized_; bool autoclear_playlist_; BackgroundStreams* background_streams_; }; #endif // MAINWINDOW_H