Green Sky
7e92e9808e
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Failing after 15m46s
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Failing after 6m36s
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Failing after 6m53s
ContinuousIntegration / linux (push) Successful in 4m39s
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Failing after 6m12s
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Failing after 6m3s
ContinuousDelivery / windows (push) Has been cancelled
ContinuousDelivery / windows-asan (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
still has no way to know which mimetype was set last
69 lines
1.4 KiB
C++
69 lines
1.4 KiB
C++
#include "./sdl_clipboard_utils.hpp"
|
|
|
|
#include <SDL3/SDL.h>
|
|
|
|
#include <string_view>
|
|
#include <vector>
|
|
#include <algorithm>
|
|
|
|
static const char* clipboardHas(const std::vector<std::string_view>& filter_mime_types) {
|
|
for (const auto& mime_type : filter_mime_types) {
|
|
// ASSERTS that stringview is null terminated
|
|
if (SDL_HasClipboardData(mime_type.data()) == SDL_TRUE) {
|
|
return mime_type.data();
|
|
}
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
const static std::vector<std::string_view> image_mime_types {
|
|
"image/svg+xml",
|
|
"image/apng",
|
|
"image/webp",
|
|
"image/png",
|
|
"image/avif",
|
|
"image/jxl",
|
|
"image/gif",
|
|
"image/jpeg",
|
|
"image/qoi",
|
|
"image/bmp",
|
|
// tiff?
|
|
};
|
|
|
|
const static std::vector<std::string_view> file_list_mime_types {
|
|
"text/uri-list",
|
|
"text/x-moz-url",
|
|
};
|
|
|
|
const char* clipboardHasImage(void) {
|
|
return clipboardHas(image_mime_types);
|
|
}
|
|
|
|
const char* clipboardHasFileList(void) {
|
|
return clipboardHas(file_list_mime_types);
|
|
}
|
|
|
|
bool mimeIsImage(const char* mime_type) {
|
|
if (mime_type == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
std::string_view mt_sv {mime_type};
|
|
auto it = std::find(image_mime_types.cbegin(), image_mime_types.cend(), mime_type);
|
|
|
|
return it != image_mime_types.cend();
|
|
}
|
|
|
|
bool mimeIsFileList(const char* mime_type) {
|
|
if (mime_type == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
std::string_view mt_sv {mime_type};
|
|
auto it = std::find(file_list_mime_types.cbegin(), file_list_mime_types.cend(), mime_type);
|
|
|
|
return it != image_mime_types.cend();
|
|
}
|
|
|