mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Fixes several bugs in the clipboard code, and makes some structural
improvements:
- Adds scoped wrappers for clipboard open/close and global lock/unlock,
to prevent missing cleanup, fixing at least one case where the lock
was not released.
- Adds the relevant window handle to the clipboard calls, since the docs
suggest that some operations won't work without one.
- Adds a missing clear step to setting the clipboard data.
- Switches from TEXT to UNICODETEXT to handle non-ASCII text correctly.
- To enable that, adds UTF-16/-8 conversion utilities built on the
Win32 APIs (rather than the deprecated std::codecvt functions, as
have been previously used in the engine).
- Fixes handling of getting data when the clipboard is empty, correctly
returning null.
- Passes more errors back through the method channel, with details, for
easier debugging of future issues.
Fixes https://github.com/flutter/flutter/issues/54226
23 lines
744 B
C++
23 lines
744 B
C++
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FLUTTER_SHELL_PLATFORM_WINDOWS_STRING_CONVERSION_H_
|
|
#define FLUTTER_SHELL_PLATFORM_WINDOWS_STRING_CONVERSION_H_
|
|
|
|
#include <string>
|
|
|
|
namespace flutter {
|
|
|
|
// Converts a string from UTF-16 to UTF-8. Returns an empty string if the
|
|
// input is not valid UTF-16.
|
|
std::string Utf8FromUtf16(const std::wstring& utf16_string);
|
|
|
|
// Converts a string from UTF-8 to UTF-16. Returns an empty string if the
|
|
// input is not valid UTF-8.
|
|
std::wstring Utf16FromUtf8(const std::string& utf8_string);
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_SHELL_PLATFORM_WINDOWS_STRING_CONVERSION_H_
|