aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-06-11 21:52:59 +0200
committerdec05eba <dec05eba@protonmail.com>2023-06-11 21:52:59 +0200
commitcdddd4250c0fd6cb6b8e0fe7f8810a83df7d48c4 (patch)
treea9d3460d20895028f77fb4dba79550cd1e073ca6 /plugins
parentfd402fc4ea57eababbe5e568835e7b5e070bd0c0 (diff)
Change file manager view to grid, change file and folder icons
Diffstat (limited to 'plugins')
-rw-r--r--plugins/FileManager.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/FileManager.hpp b/plugins/FileManager.hpp
index e31eb41..bb3b847 100644
--- a/plugins/FileManager.hpp
+++ b/plugins/FileManager.hpp
@@ -9,10 +9,11 @@ namespace QuickMedia {
enum FileManagerMimeType {
FILE_MANAGER_MIME_TYPE_IMAGE = (1 << 0),
FILE_MANAGER_MIME_TYPE_VIDEO = (1 << 1),
- FILE_MANAGER_MIME_TYPE_OTHER = (1 << 2)
+ FILE_MANAGER_MIME_TYPE_AUDIO = (1 << 2),
+ FILE_MANAGER_MIME_TYPE_OTHER = (1 << 3)
};
- static const FileManagerMimeType FILE_MANAGER_MIME_TYPE_ALL = (FileManagerMimeType)(FILE_MANAGER_MIME_TYPE_IMAGE|FILE_MANAGER_MIME_TYPE_VIDEO|FILE_MANAGER_MIME_TYPE_OTHER);
+ static const FileManagerMimeType FILE_MANAGER_MIME_TYPE_ALL = (FileManagerMimeType)(FILE_MANAGER_MIME_TYPE_IMAGE|FILE_MANAGER_MIME_TYPE_VIDEO|FILE_MANAGER_MIME_TYPE_AUDIO|FILE_MANAGER_MIME_TYPE_OTHER);
// Return the tags to go to after selecting a file, or return an empty array to exit the program
using FileSelectionHandler = std::function<std::vector<Tab>(FileManagerPage*, const std::filesystem::path&)>;