aboutsummaryrefslogtreecommitdiff
path: root/launcher/icons/IconUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/icons/IconUtils.h')
-rw-r--r--launcher/icons/IconUtils.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/launcher/icons/IconUtils.h b/launcher/icons/IconUtils.h
new file mode 100644
index 00000000..be93d914
--- /dev/null
+++ b/launcher/icons/IconUtils.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <QString>
+
+namespace IconUtils {
+
+// Given a folder and an icon key, find 'best' of the icons with the given key in there and return its path
+QString findBestIconIn(const QString &folder, const QString & iconKey);
+
+// Get icon file type filter for file browser dialogs
+QString getIconFilter();
+
+}