69 lines
3.2 KiB
C++
69 lines
3.2 KiB
C++
/**************************************************************************/
|
|
/* winrt_utils.cpp */
|
|
/**************************************************************************/
|
|
/* This file is part of: */
|
|
/* GODOT ENGINE */
|
|
/* https://godotengine.org */
|
|
/**************************************************************************/
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
/* */
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
/* a copy of this software and associated documentation files (the */
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
/* the following conditions: */
|
|
/* */
|
|
/* The above copyright notice and this permission notice shall be */
|
|
/* included in all copies or substantial portions of the Software. */
|
|
/* */
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
/**************************************************************************/
|
|
|
|
#include "winrt_utils.h"
|
|
|
|
#include "core/typedefs.h"
|
|
|
|
#ifdef WINRT_ENABLED
|
|
|
|
GODOT_GCC_WARNING_PUSH
|
|
GODOT_GCC_WARNING_IGNORE("-Wnon-virtual-dtor")
|
|
GODOT_GCC_WARNING_IGNORE("-Wctor-dtor-privacy")
|
|
GODOT_GCC_WARNING_IGNORE("-Wshadow")
|
|
GODOT_GCC_WARNING_IGNORE("-Wstrict-aliasing")
|
|
GODOT_CLANG_WARNING_PUSH
|
|
GODOT_CLANG_WARNING_IGNORE("-Wnon-virtual-dtor")
|
|
|
|
#include <winrt/Windows.Foundation.Metadata.h>
|
|
#include <winrt/Windows.UI.Input.h>
|
|
#include <winrt/Windows.UI.ViewManagement.Core.h>
|
|
|
|
GODOT_GCC_WARNING_POP
|
|
GODOT_CLANG_WARNING_POP
|
|
|
|
using namespace winrt::Windows::Foundation::Metadata;
|
|
using namespace winrt::Windows::UI::ViewManagement::Core;
|
|
|
|
bool WinRTUtils::try_show_onecore_emoji_picker() {
|
|
if (ApiInformation::IsApiContractPresent(L"Windows.Foundation.UniversalApiContract", 7)) { // Windows 10, 1809+
|
|
return CoreInputView::GetForCurrentView().TryShow(CoreInputViewKind::Emoji);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
#else
|
|
|
|
bool WinRTUtils::try_show_onecore_emoji_picker() {
|
|
return false;
|
|
}
|
|
|
|
#endif
|