2019-06-01 01:22:58 +05:30
|
|
|
#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
|
2021-07-25 22:41:59 +05:30
|
|
|
QString findBestIconIn(const QString &folder, const QString & iconKey);
|
2019-06-01 01:22:58 +05:30
|
|
|
|
|
|
|
// Get icon file type filter for file browser dialogs
|
2021-07-25 22:41:59 +05:30
|
|
|
QString getIconFilter();
|
2019-06-01 01:22:58 +05:30
|
|
|
|
|
|
|
}
|