mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This changes the Windows text handling so that keyboard events are sent to the framework first for handling, and then passed to the text input plugin, so that the framework has a chance to handle keys before they get given to the text field. This is complicated by the async nature of the interaction with the framework, since Windows wants a synchronous response. So, in this change, I always tell Windows that the event was handled, and if the framework (eventually) responds that it wasn't, then I synthesize a new event and send it with SendEvent. I also added support for detecting "extended" keys, since that was missing, and converted the OnKey handlers in the API to return a bool to indicate whether or not they have handled the event.
50 lines
1.6 KiB
C++
50 lines
1.6 KiB
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_TESTING_MOCK_WIN32_WINDOW_H_
|
|
#define FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_MOCK_WIN32_WINDOW_H_
|
|
|
|
#include <windowsx.h>
|
|
|
|
#include "flutter/shell/platform/windows/win32_window.h"
|
|
#include "gmock/gmock.h"
|
|
|
|
namespace flutter {
|
|
namespace testing {
|
|
|
|
/// Mock for the Win32Window base class.
|
|
class MockWin32Window : public Win32Window {
|
|
public:
|
|
MockWin32Window();
|
|
virtual ~MockWin32Window();
|
|
|
|
// Prevent copying.
|
|
MockWin32Window(MockWin32Window const&) = delete;
|
|
MockWin32Window& operator=(MockWin32Window const&) = delete;
|
|
|
|
// Wrapper for GetCurrentDPI() which is a protected method.
|
|
UINT GetDpi();
|
|
|
|
// Simulates a WindowProc message from the OS.
|
|
LRESULT InjectWindowMessage(UINT const message,
|
|
WPARAM const wparam,
|
|
LPARAM const lparam);
|
|
|
|
MOCK_METHOD1(OnDpiScale, void(unsigned int));
|
|
MOCK_METHOD2(OnResize, void(unsigned int, unsigned int));
|
|
MOCK_METHOD2(OnPointerMove, void(double, double));
|
|
MOCK_METHOD3(OnPointerDown, void(double, double, UINT));
|
|
MOCK_METHOD3(OnPointerUp, void(double, double, UINT));
|
|
MOCK_METHOD0(OnPointerLeave, void());
|
|
MOCK_METHOD0(OnSetCursor, void());
|
|
MOCK_METHOD1(OnText, void(const std::u16string&));
|
|
MOCK_METHOD5(OnKey, bool(int, int, int, char32_t, bool));
|
|
MOCK_METHOD2(OnScroll, void(double, double));
|
|
};
|
|
|
|
} // namespace testing
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_MOCK_WIN32_WINDOW_H_
|