/* 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 SETTINGSDIALOG_H #define SETTINGSDIALOG_H #include #include #include "config.h" #include "widgets/osd.h" class QAbstractButton; class QScrollArea; class QTreeWidgetItem; class Appearance; class BackgroundStreams; class GlobalSearch; class GlobalShortcuts; class LibraryDirectoryModel; class SettingsPage; class SongInfoView; class Ui_SettingsDialog; class GstEngine; class SettingsItemDelegate : public QStyledItemDelegate { public: SettingsItemDelegate(QObject* parent); QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const; void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const; }; class SettingsCategory; class SettingsDialog : public QDialog { Q_OBJECT public: SettingsDialog(Application* app, BackgroundStreams* streams, QWidget* parent = nullptr); ~SettingsDialog(); enum Page { // General Page_Playback, Page_Behaviour, Page_Library, Page_SongMetadata, Page_BackgroundStreams, Page_Proxy, Page_Transcoding, Page_NetworkRemote, Page_Wiimotedev, // User interface Page_SongInformation, Page_GlobalShortcuts, Page_GlobalSearch, Page_Appearance, Page_Notifications, // Internet services Page_InternetShow, Page_Lastfm, Page_Spotify, Page_Magnatune, Page_DigitallyImported, Page_Subsonic, Page_Podcasts, Page_GoogleDrive, Page_Dropbox, Page_Skydrive, Page_Box, Page_Seafile, Page_AmazonCloudDrive, Page_RadioBrowser, }; enum Role { Role_IsSeparator = Qt::UserRole }; void SetGlobalShortcutManager(GlobalShortcuts* manager) { manager_ = manager; } void SetSongInfoView(SongInfoView* view) { song_info_view_ = view; } bool is_loading_settings() const { return loading_settings_; } Application* app() const { return app_; } LibraryDirectoryModel* library_directory_model() const { return model_; } GlobalShortcuts* global_shortcuts_manager() const { return manager_; } const GstEngine* gst_engine() const { return gst_engine_; } SongInfoView* song_info_view() const { return song_info_view_; } BackgroundStreams* background_streams() const { return streams_; } GlobalSearch* global_search() const { return global_search_; } Appearance* appearance() const { return appearance_; } void OpenAtPage(Page page); // QDialog void accept(); void reject(); // QWidget void showEvent(QShowEvent* e); signals: void NotificationPreview(OSD::Behaviour, QString, QString); void SetWiimotedevInterfaceActived(bool); private slots: void CurrentItemChanged(QTreeWidgetItem* item); void DialogButtonClicked(QAbstractButton* button); private: struct PageData { QTreeWidgetItem* item_; QScrollArea* scroll_area_; SettingsPage* page_; }; void AddCategory(SettingsCategory* category); private: friend class SettingsCategory; void AddPageToStack(Page id, SettingsPage* page, QTreeWidgetItem* item); private: Application* app_; LibraryDirectoryModel* model_; GlobalShortcuts* manager_; const GstEngine* gst_engine_; SongInfoView* song_info_view_; BackgroundStreams* streams_; GlobalSearch* global_search_; Appearance* appearance_; Ui_SettingsDialog* ui_; bool loading_settings_; QMap pages_; }; #endif // SETTINGSDIALOG_H