Refactoring
This commit is contained in:
75
src/constants/appearancesettings.h
Normal file
75
src/constants/appearancesettings.h
Normal file
@@ -0,0 +1,75 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef APPEARANCESETTINGS_H
|
||||
#define APPEARANCESETTINGS_H
|
||||
|
||||
namespace AppearanceSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Appearance";
|
||||
|
||||
constexpr char kStyle[] = "style";
|
||||
constexpr char kSystemThemeIcons[] = "system_icons";
|
||||
|
||||
constexpr char kBackgroundImageType[] = "background_image_type";
|
||||
constexpr char kBackgroundImageFilename[] = "background_image_file";
|
||||
constexpr char kBackgroundImagePosition[] = "background_image_position";
|
||||
constexpr char kBackgroundImageStretch[] = "background_image_stretch";
|
||||
constexpr char kBackgroundImageDoNotCut[] = "background_image_do_not_cut";
|
||||
constexpr char kBackgroundImageKeepAspectRatio[] = "background_image_keep_aspect_ratio";
|
||||
constexpr char kBackgroundImageMaxSize[] = "background_image_max_size";
|
||||
|
||||
constexpr char kBlurRadius[] = "blur_radius";
|
||||
constexpr char kOpacityLevel[] = "opacity_level";
|
||||
|
||||
constexpr int kDefaultBlurRadius = 0;
|
||||
constexpr int kDefaultOpacityLevel = 40;
|
||||
|
||||
constexpr char kTabBarSystemColor[] = "tab_system_color";
|
||||
constexpr char kTabBarGradient[] = "tab_gradient";
|
||||
constexpr char kTabBarColor[] = "tab_color";
|
||||
|
||||
constexpr char kIconSizeTabbarSmallMode[] = "icon_size_tabbar_small_mode";
|
||||
constexpr char kIconSizeTabbarLargeMode[] = "icon_size_tabbar_large_mode";
|
||||
constexpr char kIconSizePlayControlButtons[] = "icon_size_play_control_buttons";
|
||||
constexpr char kIconSizePlaylistButtons[] = "icon_size_playlist_buttons";
|
||||
constexpr char kIconSizeLeftPanelButtons[] = "icon_size_left_panel_buttons";
|
||||
constexpr char kIconSizeConfigureButtons[] = "icon_size_configure_buttons";
|
||||
|
||||
constexpr char kPlaylistPlayingSongColor[] = "playlist_playing_song_color";
|
||||
|
||||
enum class BackgroundImageType {
|
||||
Default,
|
||||
None,
|
||||
Custom,
|
||||
Album,
|
||||
Strawbs
|
||||
};
|
||||
|
||||
enum class BackgroundImagePosition {
|
||||
UpperLeft = 1,
|
||||
UpperRight = 2,
|
||||
Middle = 3,
|
||||
BottomLeft = 4,
|
||||
BottomRight = 5
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // APPEARANCESETTINGS_H
|
||||
64
src/constants/backendsettings.h
Normal file
64
src/constants/backendsettings.h
Normal file
@@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef BACKENDSETTINGS_H
|
||||
#define BACKENDSETTINGS_H
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
namespace BackendSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Backend";
|
||||
|
||||
constexpr char kEngine[] = "Engine";
|
||||
constexpr char kOutput[] = "Output";
|
||||
constexpr char kDevice[] = "Device";
|
||||
constexpr char kALSAPlugin[] = "alsaplugin";
|
||||
constexpr char kExclusiveMode[] = "exclusive_mode";
|
||||
constexpr char kVolumeControl[] = "volume_control";
|
||||
constexpr char kChannelsEnabled[] = "channels_enabled";
|
||||
constexpr char kChannels[] = "channels";
|
||||
constexpr char kBS2B[] = "bs2b";
|
||||
constexpr char kHTTP2[] = "http2";
|
||||
constexpr char kStrictSSL[] = "strict_ssl";
|
||||
constexpr char kBufferDuration[] = "bufferduration";
|
||||
constexpr char kBufferLowWatermark[] = "bufferlowwatermark";
|
||||
constexpr char kBufferHighWatermark[] = "bufferhighwatermark";
|
||||
constexpr char kRgEnabled[] = "rgenabled";
|
||||
constexpr char kRgMode[] = "rgmode";
|
||||
constexpr char kRgPreamp[] = "rgpreamp";
|
||||
constexpr char kRgFallbackGain[] = "rgfallbackgain";
|
||||
constexpr char kRgCompression[] = "rgcompression";
|
||||
constexpr char kEBUR128LoudnessNormalization[] = "ebur128_loudness_normalization";
|
||||
constexpr char kEBUR128TargetLevelLUFS[] = "ebur128_target_level_lufs";
|
||||
constexpr char kFadeoutEnabled[] = "FadeoutEnabled";
|
||||
constexpr char kCrossfadeEnabled[] = "CrossfadeEnabled";
|
||||
constexpr char kAutoCrossfadeEnabled[] = "AutoCrossfadeEnabled";
|
||||
constexpr char kNoCrossfadeSameAlbum[] = "NoCrossfadeSameAlbum";
|
||||
constexpr char kFadeoutPauseEnabled[] = "FadeoutPauseEnabled";
|
||||
constexpr char kFadeoutDuration[] = "FadeoutDuration";
|
||||
constexpr char kFadeoutPauseDuration[] = "FadeoutPauseDuration";
|
||||
|
||||
constexpr qint64 kDefaultBufferDuration = 4000;
|
||||
constexpr double kDefaultBufferLowWatermark = 0.33;
|
||||
constexpr double kDefaultBufferHighWatermark = 0.99;
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // BACKENDSETTINGS_H
|
||||
76
src/constants/behavioursettings.h
Normal file
76
src/constants/behavioursettings.h
Normal file
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef BEHAVIOURSETTINGS_H
|
||||
#define BEHAVIOURSETTINGS_H
|
||||
|
||||
namespace BehaviourSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Behaviour";
|
||||
|
||||
enum class StartupBehaviour {
|
||||
Remember = 1,
|
||||
Show = 2,
|
||||
Hide = 3,
|
||||
ShowMaximized = 4,
|
||||
ShowMinimized = 5
|
||||
};
|
||||
|
||||
enum class PlayBehaviour {
|
||||
Never = 1,
|
||||
IfStopped = 2,
|
||||
Always = 3
|
||||
};
|
||||
|
||||
enum class PreviousBehaviour {
|
||||
DontRestart = 1,
|
||||
Restart = 2
|
||||
};
|
||||
|
||||
enum class AddBehaviour {
|
||||
Append = 1,
|
||||
Enqueue = 2,
|
||||
Load = 3,
|
||||
OpenInNew = 4
|
||||
};
|
||||
|
||||
enum class PlaylistAddBehaviour {
|
||||
Play = 1,
|
||||
Enqueue = 2
|
||||
};
|
||||
|
||||
constexpr char kKeepRunning[] = "keeprunning";
|
||||
constexpr char kShowTrayIcon[] = "showtrayicon";
|
||||
constexpr char kTrayIconProgress[] = "trayicon_progress";
|
||||
constexpr char kTaskbarProgress[] = "taskbar_progress";
|
||||
constexpr char kResumePlayback[] = "resumeplayback";
|
||||
constexpr char kPlayingWidget[] = "playing_widget";
|
||||
constexpr char kStartupBehaviour[] = "startupbehaviour";
|
||||
constexpr char kLanguage[] = "language";
|
||||
constexpr char kMenuPlayMode[] = "menu_playmode";
|
||||
constexpr char kMenuPreviousMode[] = "menu_previousmode";
|
||||
constexpr char kDoubleClickAddMode[] = "doubleclick_addmode";
|
||||
constexpr char kDoubleClickPlayMode[] = "doubleclick_playmode";
|
||||
constexpr char kDoubleClickPlaylistAddMode[] = "doubleclick_playlist_addmode";
|
||||
constexpr char kSeekStepSec[] = "seek_step_sec";
|
||||
constexpr char kVolumeIncrement[] = "volume_increment";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // BEHAVIOURSETTINGS_H
|
||||
62
src/constants/collectionsettings.h
Normal file
62
src/constants/collectionsettings.h
Normal file
@@ -0,0 +1,62 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef COLLECTIONSETTINGS_H
|
||||
#define COLLECTIONSETTINGS_H
|
||||
|
||||
namespace CollectionSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Collection";
|
||||
|
||||
constexpr char kAutoOpen[] = "auto_open";
|
||||
constexpr char kShowDividers[] = "show_dividers";
|
||||
constexpr char kPrettyCovers[] = "pretty_covers";
|
||||
constexpr char kVariousArtists[] = "various_artists";
|
||||
constexpr char kSortSkipsArticles[] = "sort_skips_articles";
|
||||
constexpr char kStartupScan[] = "startup_scan";
|
||||
constexpr char kMonitor[] = "monitor";
|
||||
constexpr char kSongTracking[] = "song_tracking";
|
||||
constexpr char kSongENUR128LoudnessAnalysis[] = "song_ebur128_loudness_analysis";
|
||||
constexpr char kMarkSongsUnavailable[] = "mark_songs_unavailable";
|
||||
constexpr char kExpireUnavailableSongs[] = "expire_unavailable_songs";
|
||||
constexpr char kCoverArtPatterns[] = "cover_art_patterns";
|
||||
constexpr char kSettingsCacheSize[] = "cache_size";
|
||||
constexpr char kSettingsCacheSizeUnit[] = "cache_size_unit";
|
||||
constexpr char kSettingsDiskCacheEnable[] = "disk_cache_enable";
|
||||
constexpr char kSettingsDiskCacheSize[] = "disk_cache_size";
|
||||
constexpr char kSettingsDiskCacheSizeUnit[] = "disk_cache_size_unit";
|
||||
constexpr int kSettingsCacheSizeDefault = 160;
|
||||
constexpr int kSettingsDiskCacheSizeDefault = 360;
|
||||
constexpr char kSavePlayCounts[] = "save_playcounts";
|
||||
constexpr char kSaveRatings[] = "save_ratings";
|
||||
constexpr char kOverwritePlaycount[] = "overwrite_playcount";
|
||||
constexpr char kOverwriteRating[] = "overwrite_rating";
|
||||
constexpr char kDeleteFiles[] = "delete_files";
|
||||
constexpr char kLastPath[] = "last_path";
|
||||
|
||||
enum class CacheSizeUnit {
|
||||
KB,
|
||||
MB,
|
||||
GB,
|
||||
TB
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // COLLECTIONSETTINGS_H
|
||||
48
src/constants/contextsettings.h
Normal file
48
src/constants/contextsettings.h
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CONTEXTSETTINGS_H
|
||||
#define CONTEXTSETTINGS_H
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
namespace ContextSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Context";
|
||||
|
||||
constexpr char kAlbum[] = "AlbumEnable";
|
||||
constexpr char kTechnicalData[] = "TechnicalDataEnable";
|
||||
constexpr char kSongLyrics[] = "SongLyricsEnable";
|
||||
constexpr char kSearchCover[] = "SearchCoverEnable";
|
||||
constexpr char kSearchLyrics[] = "SearchLyricsEnable";
|
||||
|
||||
constexpr char kFontHeadline[] = "font_headline";
|
||||
constexpr char kFontNormal[] = "font_normal";
|
||||
constexpr char kFontSizeHeadline[] = "font_size_headline";
|
||||
constexpr char kFontSizeNormal[] = "font_size_normal";
|
||||
|
||||
constexpr char kSettingsTitleFmt[] = "TitleFmt";
|
||||
constexpr char kSettingsSummaryFmt[] = "SummaryFmt";
|
||||
|
||||
constexpr char kDefaultFontFamily[] = "Noto Sans";
|
||||
constexpr qreal kDefaultFontSizeHeadline = 11;
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // CONTEXTSETTINGS_H
|
||||
37
src/constants/coverssettings.h
Normal file
37
src/constants/coverssettings.h
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef COVERSSETTINGS_H
|
||||
#define COVERSSETTINGS_H
|
||||
|
||||
namespace CoversSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Covers";
|
||||
constexpr char kProviders[] = "providers";
|
||||
constexpr char kTypes[] = "types";
|
||||
constexpr char kSaveType[] = "save_type";
|
||||
constexpr char kSaveFilename[] = "save_filename";
|
||||
constexpr char kSavePattern[] = "save_pattern";
|
||||
constexpr char kSaveOverwrite[] = "save_overwrite";
|
||||
constexpr char kSaveLowercase[] = "save_lowercase";
|
||||
constexpr char kSaveReplaceSpaces[] = "save_replace_spaces";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // COVERSSETTINGS_H
|
||||
39
src/constants/filefilterconstants.h
Normal file
39
src/constants/filefilterconstants.h
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef FILEFILTERCONSTANTS_H
|
||||
#define FILEFILTERCONSTANTS_H
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
constexpr char kAllFilesFilterSpec[] = QT_TRANSLATE_NOOP("FileFilter", "All Files (*)");
|
||||
|
||||
constexpr char kFileFilter[] =
|
||||
"*.wav *.flac *.wv *.ogg *.oga *.opus *.spx *.ape *.mpc "
|
||||
"*.mp2 *.mp3 *.m4a *.mp4 *.aac *.asf *.asx *.wma "
|
||||
"*.aif *.aiff *.mka *.tta *.dsf *.dsd "
|
||||
"*.cue *.m3u *.m3u8 *.pls *.xspf *.asxini "
|
||||
"*.ac3 *.dts "
|
||||
"*.mod *.s3m *.xm *.it"
|
||||
"*.spc *.vgm";
|
||||
|
||||
constexpr char kLoadImageFileFilter[] = QT_TRANSLATE_NOOP("FileFilter", "Images (*.png *.jpg *.jpeg *.bmp *.gif *.xpm *.pbm *.pgm *.ppm *.xbm)");
|
||||
constexpr char kSaveImageFileFilter[] = QT_TRANSLATE_NOOP("FileFilter", "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)");
|
||||
|
||||
#endif // FILEFILTERCONSTANTS_H
|
||||
31
src/constants/filenameconstants.h
Normal file
31
src/constants/filenameconstants.h
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2023, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef FILENAMECONSTANTS_H
|
||||
#define FILENAMECONSTANTS_H
|
||||
|
||||
#include "includes/arraysize.h"
|
||||
|
||||
constexpr char kProblematicCharactersRegex[] = "[:?*\"<>|]";
|
||||
constexpr char kInvalidFatCharactersRegex[] = "[^a-zA-Z0-9!#\\$%&'()\\-@\\^_`{}~/. ]";
|
||||
constexpr char kInvalidDirCharactersRegex[] = "[/\\\\]";
|
||||
constexpr char kInvalidPrefixCharacters[] = ".";
|
||||
constexpr int kInvalidPrefixCharactersCount = arraysize(kInvalidPrefixCharacters) - 1;
|
||||
|
||||
#endif // FILENAMECONSTANTS_H
|
||||
33
src/constants/globalshortcutssettings.h
Normal file
33
src/constants/globalshortcutssettings.h
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef GLOBALSHORTCUTSSETTINGS_H
|
||||
#define GLOBALSHORTCUTSSETTINGS_H
|
||||
|
||||
namespace GlobalShortcutsSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "GlobalShortcuts";
|
||||
constexpr char kUseKDE[] = "use_kde";
|
||||
constexpr char kUseGnome[] = "use_gnome";
|
||||
constexpr char kUseMate[] = "use_mate";
|
||||
constexpr char kUseX11[] = "use_x11";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // GLOBALSHORTCUTSSETTINGS_H
|
||||
30
src/constants/lyricssettings.h
Normal file
30
src/constants/lyricssettings.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef LYRICSSETTINGS_H
|
||||
#define LYRICSSETTINGS_H
|
||||
|
||||
namespace LyricsSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Lyrics";
|
||||
constexpr char kProviders[] = "providers";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // LYRICSSETTINGS_H
|
||||
37
src/constants/mainwindowsettings.h
Normal file
37
src/constants/mainwindowsettings.h
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef MAINWINDOWSETTINGS_H
|
||||
#define MAINWINDOWSETTINGS_H
|
||||
|
||||
namespace MainWindowSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "MainWindow";
|
||||
constexpr char kSearchForCoverAuto[] = "search_for_cover_auto";
|
||||
constexpr char kShowSidebar[] = "show_sidebar";
|
||||
constexpr char kMaximized[] = "maximized";
|
||||
constexpr char kMinimized[] = "minimized";
|
||||
constexpr char kHidden[] = "hidden";
|
||||
constexpr char kGeometry[] = "geometry";
|
||||
constexpr char kSplitterState[] = "splitter_state";
|
||||
constexpr char kDoNotShowSponsorMessage[] = "do_not_show_sponsor_message";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // MAINWINDOWSETTINGS_H
|
||||
43
src/constants/moodbarsettings.h
Normal file
43
src/constants/moodbarsettings.h
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef MOODBARSETTINGS_H
|
||||
#define MOODBARSETTINGS_H
|
||||
|
||||
namespace MoodbarSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Moodbar";
|
||||
|
||||
enum class Style {
|
||||
Normal = 0,
|
||||
Angry,
|
||||
Frozen,
|
||||
Happy,
|
||||
SystemPalette,
|
||||
StyleCount
|
||||
};
|
||||
|
||||
constexpr char kEnabled[] = "enabled";
|
||||
constexpr char kShow[] = "show";
|
||||
constexpr char kStyle[] = "style";
|
||||
constexpr char kSave[] = "save";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // MOODBARSETTINGS_H
|
||||
37
src/constants/networkproxysettings.h
Normal file
37
src/constants/networkproxysettings.h
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef NETWORKPROXYSETTINGS_H
|
||||
#define NETWORKPROXYSETTINGS_H
|
||||
|
||||
namespace NetworkProxySettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "NetworkProxy";
|
||||
|
||||
constexpr char kType[] = "type";
|
||||
constexpr char kHostname[] = "hostname";
|
||||
constexpr char kPort[] = "port";
|
||||
constexpr char kUseAuthentication[] = "use_authentication";
|
||||
constexpr char kUsername[] = "username";
|
||||
constexpr char kPassword[] = "password";
|
||||
constexpr char kEngine[] = "engine";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // NETWORKPROXYSETTINGS_H
|
||||
68
src/constants/notificationssettings.h
Normal file
68
src/constants/notificationssettings.h
Normal file
@@ -0,0 +1,68 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef NOTIFICATIONSSETTINGS_H
|
||||
#define NOTIFICATIONSSETTINGS_H
|
||||
|
||||
#include <QRgb>
|
||||
|
||||
namespace OSDSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "OSD";
|
||||
|
||||
constexpr char kType[] = "Behaviour";
|
||||
|
||||
enum class Type {
|
||||
Disabled = 0,
|
||||
Native,
|
||||
TrayPopup,
|
||||
Pretty
|
||||
};
|
||||
|
||||
constexpr char kTimeout[] = "Timeout";
|
||||
constexpr char kShowOnVolumeChange[] = "ShowOnVolumeChange";
|
||||
constexpr char kShowOnPlayModeChange[] = "ShowOnPlayModeChange";
|
||||
constexpr char kShowOnPausePlayback[] = "ShowOnPausePlayback";
|
||||
constexpr char kShowOnResumePlayback[] = "ShowOnResumePlayback";
|
||||
constexpr char kShowArt[] = "ShowArt";
|
||||
constexpr char kCustomTextEnabled[] = "CustomTextEnabled";
|
||||
constexpr char kCustomText1[] = "CustomText1";
|
||||
constexpr char kCustomText2[] = "CustomText2";
|
||||
|
||||
} // namespace
|
||||
|
||||
namespace OSDPrettySettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "OSDPretty";
|
||||
|
||||
constexpr char kForegroundColor[] = "foreground_color";
|
||||
constexpr char kBackgroundColor[] = "background_color";
|
||||
constexpr char kBackgroundOpacity[] = "background_opacity";
|
||||
constexpr char kPopupScreen[] = "popup_screen";
|
||||
constexpr char kPopupPos[] = "popup_pos";
|
||||
constexpr char kFont[] = "font";
|
||||
constexpr char kDisableDuration[] = "disable_duration";
|
||||
constexpr char kFading[] = "fading";
|
||||
|
||||
constexpr QRgb kPresetBlue = qRgb(102, 150, 227);
|
||||
constexpr QRgb kPresetRed = qRgb(202, 22, 16);
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // NOTIFICATIONSSETTINGS_H
|
||||
70
src/constants/playlistsettings.h
Normal file
70
src/constants/playlistsettings.h
Normal file
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef PLAYLISTSETTINGS_H
|
||||
#define PLAYLISTSETTINGS_H
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
namespace PlaylistSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Playlist";
|
||||
|
||||
enum class PathType {
|
||||
Automatic = 0, // Automatically select path type
|
||||
Absolute, // Always use absolute paths
|
||||
Relative, // Always use relative paths
|
||||
Ask_User // Only used in preferences: to ask user which of the previous values he wants to use.
|
||||
};
|
||||
|
||||
constexpr char kAlternatingRowColors[] = "alternating_row_colors";
|
||||
constexpr char kShowBars[] = "show_bars";
|
||||
constexpr char kGlowEffect[] = "glow_effect";
|
||||
constexpr char kWarnClosePlaylist[] = "warn_close_playlist";
|
||||
constexpr char kContinueOnError[] = "continue_on_error";
|
||||
constexpr char kGreyoutSongsStartup[] = "greyout_songs_startup";
|
||||
constexpr char kGreyoutSongsPlay[] = "greyout_songs_play";
|
||||
constexpr char kSelectTrack[] = "select_track";
|
||||
constexpr char kShowToolbar[] = "show_toolbar";
|
||||
constexpr char kPlaylistClear[] = "playlist_clear";
|
||||
constexpr char kAutoSort[] = "auto_sort";
|
||||
|
||||
constexpr char kPathType[] = "path_type";
|
||||
|
||||
constexpr char kEditMetadataInline[] = "editmetadatainline";
|
||||
constexpr char kWriteMetadata[] = "write_metadata";
|
||||
constexpr char kDeleteFiles[] = "delete_files";
|
||||
|
||||
constexpr char kStateVersion[] = "state_version";
|
||||
constexpr char kState[] = "state";
|
||||
constexpr char kColumnAlignments[] = "column_alignments";
|
||||
constexpr char kRatingLocked[] = "rating_locked";
|
||||
|
||||
constexpr char kLastSaveFilter[] = "last_save_filter";
|
||||
constexpr char kLastSavePath[] = "last_save_path";
|
||||
constexpr char kLastSaveExtension[] = "last_save_extension";
|
||||
|
||||
constexpr char kLastSaveAllPath[] = "last_save_all_path";
|
||||
constexpr char kLastSaveAllExtension[] = "last_save_all_extension";
|
||||
|
||||
} // namespace
|
||||
|
||||
Q_DECLARE_METATYPE(PlaylistSettings::PathType)
|
||||
|
||||
#endif // PLAYLISTSETTINGS_H
|
||||
47
src/constants/qobuzsettings.h
Normal file
47
src/constants/qobuzsettings.h
Normal file
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef QOBUZSETTINGS_H
|
||||
#define QOBUZSETTINGS_H
|
||||
|
||||
namespace QobuzSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Qobuz";
|
||||
|
||||
constexpr char kEnabled[] = "enabled";
|
||||
constexpr char kAppId[] = "app_id";
|
||||
constexpr char kAppSecret[] = "app_secret";
|
||||
constexpr char kUsername[] = "username";
|
||||
constexpr char kPassword[] = "password";
|
||||
constexpr char kFormat[] = "format";
|
||||
constexpr char kSearchDelay[] = "searchdelay";
|
||||
constexpr char kArtistsSearchLimit[] = "artistssearchlimit";
|
||||
constexpr char kAlbumsSearchLimit[] = "albumssearchlimit";
|
||||
constexpr char kSongsSearchLimit[] = "songssearchlimit";
|
||||
constexpr char kBase64Secret[] = "base64secret";
|
||||
constexpr char kDownloadAlbumCovers[] = "downloadalbumcovers";
|
||||
|
||||
constexpr char kUserId[] = "user_id";
|
||||
constexpr char kCredentialsId[] = "credentials_id";
|
||||
constexpr char kDeviceId[] = "device_id";
|
||||
constexpr char kUserAuthToken[] = "user_auth_token";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // QOBUZSETTINGS_H
|
||||
40
src/constants/scrobblersettings.h
Normal file
40
src/constants/scrobblersettings.h
Normal file
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SCROBBLERSETTINGS_H
|
||||
#define SCROBBLERSETTINGS_H
|
||||
|
||||
namespace ScrobblerSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Scrobbler";
|
||||
|
||||
constexpr char kEnabled[] = "enabled";
|
||||
constexpr char kScrobbleButton[] = "scrobble_button";
|
||||
constexpr char kLoveButton[] = "love_button";
|
||||
constexpr char kOffline[] = "offline";
|
||||
constexpr char kSubmit[] = "submit";
|
||||
constexpr char kAlbumArtist[] = "albumartist";
|
||||
constexpr char kShowErrorDialog[] = "show_error_dialog";
|
||||
constexpr char kStripRemastered[] = "strip_remastered";
|
||||
constexpr char kSources[] = "sources";
|
||||
constexpr char kUserToken[] = "user_token";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // SCROBBLERSETTINGS_H
|
||||
42
src/constants/spotifysettings.h
Normal file
42
src/constants/spotifysettings.h
Normal file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SPOTIFYSETTINGS_H
|
||||
#define SPOTIFYSETTINGS_H
|
||||
|
||||
namespace SpotifySettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Spotify";
|
||||
|
||||
constexpr char kEnabled[] = "enabled";
|
||||
constexpr char kSearchDelay[] = "searchdelay";
|
||||
constexpr char kArtistsSearchLimit[] = "artistssearchlimit";
|
||||
constexpr char kAlbumsSearchLimit[] = "albumssearchlimit";
|
||||
constexpr char kSongsSearchLimit[] = "songssearchlimit";
|
||||
constexpr char kFetchAlbums[] = "fetchalbums";
|
||||
constexpr char kDownloadAlbumCovers[] = "downloadalbumcovers";
|
||||
|
||||
constexpr char kAccessToken[] = "access_token";
|
||||
constexpr char kRefreshToken[] = "refresh_token";
|
||||
constexpr char kExpiresIn[] = "expires_in";
|
||||
constexpr char kLoginTime[] = "login_time";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // SPOTIFYSETTINGS_H
|
||||
45
src/constants/subsonicsettings.h
Normal file
45
src/constants/subsonicsettings.h
Normal file
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef SUBSONICETTINGS_H
|
||||
#define SUBSONICETTINGS_H
|
||||
|
||||
namespace SubsonicSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Subsonic";
|
||||
|
||||
enum class AuthMethod {
|
||||
Hex,
|
||||
MD5
|
||||
};
|
||||
|
||||
constexpr char kEnabled[] = "enabled";
|
||||
constexpr char kUrl[] = "url";
|
||||
constexpr char kUsername[] = "username";
|
||||
constexpr char kPassword[] = "password";
|
||||
constexpr char kHTTP2[] = "http2";
|
||||
constexpr char kVerifyCertificate[] = "verifycertificate";
|
||||
constexpr char kDownloadAlbumCovers[] = "downloadalbumcovers";
|
||||
constexpr char kServerSideScrobbling[] = "serversidescrobbling";
|
||||
constexpr char kAuthMethod[] = "authmethod";
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // SUBSONICETTINGS_H
|
||||
52
src/constants/tidalsettings.h
Normal file
52
src/constants/tidalsettings.h
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TIDALSETTINGS_H
|
||||
#define TIDALSETTINGS_H
|
||||
|
||||
namespace TidalSettings {
|
||||
|
||||
constexpr char kSettingsGroup[] = "Tidal";
|
||||
|
||||
constexpr char kEnabled[] = "enabled";
|
||||
constexpr char kOAuth[] = "oauth";
|
||||
constexpr char kClientId[] = "client_id";
|
||||
constexpr char kApiToken[] = "api_token";
|
||||
constexpr char kUsername[] = "username";
|
||||
constexpr char kPassword[] = "password";
|
||||
constexpr char kQuality[] = "quality";
|
||||
constexpr char kSearchDelay[] = "searchdelay";
|
||||
constexpr char kArtistsSearchLimit[] = "artistssearchlimit";
|
||||
constexpr char kAlbumsSearchLimit[] = "albumssearchlimit";
|
||||
constexpr char kSongsSearchLimit[] = "songssearchlimit";
|
||||
constexpr char kFetchAlbums[] = "fetchalbums";
|
||||
constexpr char kDownloadAlbumCovers[] = "downloadalbumcovers";
|
||||
constexpr char kCoverSize[] = "coversize";
|
||||
constexpr char kStreamUrl[] = "streamurl";
|
||||
constexpr char kAlbumExplicit[] = "album_explicit";
|
||||
|
||||
enum class StreamUrlMethod {
|
||||
StreamUrl,
|
||||
UrlPostPaywall,
|
||||
PlaybackInfoPostPaywall
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // TIDALSETTINGS_H
|
||||
34
src/constants/timeconstants.h
Normal file
34
src/constants/timeconstants.h
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TIMECONSTANTS_H
|
||||
#define TIMECONSTANTS_H
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
constexpr qint64 kMsecPerSec = 1000LL;
|
||||
constexpr qint64 kUsecPerMsec = 1000LL;
|
||||
constexpr qint64 kUsecPerSec = 1000000LL;
|
||||
constexpr qint64 kNsecPerUsec = 1000LL;
|
||||
constexpr qint64 kNsecPerMsec = 1000000LL;
|
||||
constexpr qint64 kNsecPerSec = 1000000000LL;
|
||||
|
||||
constexpr qint64 kSecsPerDay = 24 * 60 * 60;
|
||||
|
||||
#endif // TIMECONSTANTS_H
|
||||
29
src/constants/transcodersettings.h
Normal file
29
src/constants/transcodersettings.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2024, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef TRANSCODERSETTINGS_H
|
||||
#define TRANSCODERSETTINGS_H
|
||||
|
||||
namespace TranscoderSettings {
|
||||
constexpr char kSettingsGroup[] = "Transcoder";
|
||||
}
|
||||
|
||||
#endif // TRANSCODERSETTINGS_H
|
||||
|
||||
Reference in New Issue
Block a user