diff --git a/dir_595f0268ff83821d3439fdccc6c5e3fd.html b/dir_595f0268ff83821d3439fdccc6c5e3fd.html index db228c60..652bc113 100644 --- a/dir_595f0268ff83821d3439fdccc6c5e3fd.html +++ b/dir_595f0268ff83821d3439fdccc6c5e3fd.html @@ -101,6 +101,8 @@   file  followtype.hpp [code]   +file  librarylayout.hpp [code] +  file  logtype.hpp [code]   file  mediatype.hpp [code] diff --git a/files.html b/files.html index 88b2b6b3..37b22deb 100644 --- a/files.html +++ b/files.html @@ -95,85 +95,86 @@  clienttype.hpp  devicetype.hpp  followtype.hpp - logtype.hpp - mediatype.hpp - palette.hpp - playeraction.hpp - playlistorder.hpp - repeatstate.hpp - resizemode.hpp - spotifycontext.hpp -  github - api.hpp - contributor.hpp - release.hpp -  lyrics - api.hpp - credit.hpp - line.hpp - lyrics.hpp - searchresult.hpp -  paths - paths.hpp -  search - api.hpp - link.hpp - results.hpp -  settings - account.hpp - general.hpp - qt.hpp - spotify.hpp -  spotify - album.hpp - api.hpp - artist.hpp - audiofeature.hpp - audiofeatures.hpp - auth.hpp - callback.hpp - context.hpp - device.hpp - deviceselect.hpp - entity.hpp - episode.hpp - error.hpp - image.hpp - playback.hpp - playlist.hpp - playlistdetails.hpp - queue.hpp - request.hpp - savedalbum.hpp - searchresults.hpp - show.hpp - track.hpp - trackinfo.hpp - user.hpp - util.hpp - base64.hpp - cache.hpp - datetime.hpp - developermode.hpp - enums.hpp - fmt.hpp - format.hpp - httpclient.hpp - image.hpp - json.hpp - log.hpp - logmessage.hpp - optional.hpp - random.hpp - result.hpp - set.hpp - settings.hpp - stopwatch.hpp - strings.hpp - system.hpp - time.hpp - uri.hpp - vector.hpp + librarylayout.hpp + logtype.hpp + mediatype.hpp + palette.hpp + playeraction.hpp + playlistorder.hpp + repeatstate.hpp + resizemode.hpp + spotifycontext.hpp +  github + api.hpp + contributor.hpp + release.hpp +  lyrics + api.hpp + credit.hpp + line.hpp + lyrics.hpp + searchresult.hpp +  paths + paths.hpp +  search + api.hpp + link.hpp + results.hpp +  settings + account.hpp + general.hpp + qt.hpp + spotify.hpp +  spotify + album.hpp + api.hpp + artist.hpp + audiofeature.hpp + audiofeatures.hpp + auth.hpp + callback.hpp + context.hpp + device.hpp + deviceselect.hpp + entity.hpp + episode.hpp + error.hpp + image.hpp + playback.hpp + playlist.hpp + playlistdetails.hpp + queue.hpp + request.hpp + savedalbum.hpp + searchresults.hpp + show.hpp + track.hpp + trackinfo.hpp + user.hpp + util.hpp + base64.hpp + cache.hpp + datetime.hpp + developermode.hpp + enums.hpp + fmt.hpp + format.hpp + httpclient.hpp + image.hpp + json.hpp + log.hpp + logmessage.hpp + optional.hpp + random.hpp + result.hpp + set.hpp + settings.hpp + stopwatch.hpp + strings.hpp + system.hpp + time.hpp + uri.hpp + vector.hpp diff --git a/librarylayout_8hpp_source.html b/librarylayout_8hpp_source.html new file mode 100644 index 00000000..ffdec57f --- /dev/null +++ b/librarylayout_8hpp_source.html @@ -0,0 +1,98 @@ + + + + + + + +spotify-qt-lib: /github/workspace/lib/include/lib/enum/librarylayout.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
spotify-qt-lib +
+
the spotify-qt core
+
+
+ + + + + + + + +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ + +
+
+
librarylayout.hpp
+
+
+
1#pragma once
+
2
+
3namespace lib
+
4{
+
8 enum class library_layout
+
9 {
+
13 stacked = 0,
+
14
+
18 tabbed = 1,
+
19 };
+
20}
+
+ + + + diff --git a/qt_8hpp_source.html b/qt_8hpp_source.html index a5bdfa1f..98a1f314 100644 --- a/qt_8hpp_source.html +++ b/qt_8hpp_source.html @@ -82,34 +82,37 @@
2
3#include "lib/json.hpp"
4#include "lib/enum/albumsize.hpp"
-
5
-
6namespace lib
-
7{
-
8 namespace setting
-
9 {
-
13 using qt = struct qt
-
14 {
-
18 bool system_title_bar = false;
-
19
-
23 std::string custom_font_name;
-
24
-
29 int custom_font_size = 0;
-
30
-
35 bool mirror_title_bar
-
36#ifdef __APPLE__
-
37 = true;
-
38#else
-
39 = false;
-
40#endif
-
41
-
45 lib::album_size album_size = lib::album_size::fixed;
-
46 };
+
5#include "lib/enum/librarylayout.hpp"
+
6
+
7namespace lib
+
8{
+
9 namespace setting
+
10 {
+
14 using qt = struct qt
+
15 {
+
19 bool system_title_bar = false;
+
20
+
24 std::string custom_font_name;
+
25
+
30 int custom_font_size = 0;
+
31
+
36 bool mirror_title_bar
+
37#ifdef __APPLE__
+
38 = true;
+
39#else
+
40 = false;
+
41#endif
+
42
+
46 lib::album_size album_size = lib::album_size::fixed;
47
-
48 void to_json(nlohmann::json &j, const qt &q);
-
49
-
50 void from_json(const nlohmann::json &j, qt &q);
-
51 }
-
52}
+
51 lib::library_layout library_layout = lib::library_layout::stacked;
+
52 };
+
53
+
54 void to_json(nlohmann::json &j, const qt &q);
+
55
+
56 void from_json(const nlohmann::json &j, qt &q);
+
57 }
+
58}