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.
275 lines
9.9 KiB
C++
275 lines
9.9 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_FLUTTER_WINDOWS_VIEW_H_
|
|
#define FLUTTER_SHELL_PLATFORM_WINDOWS_FLUTTER_WINDOWS_VIEW_H_
|
|
|
|
#include <windowsx.h>
|
|
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "flutter/shell/platform/common/cpp/client_wrapper/include/flutter/plugin_registrar.h"
|
|
#include "flutter/shell/platform/common/cpp/geometry.h"
|
|
#include "flutter/shell/platform/embedder/embedder.h"
|
|
#include "flutter/shell/platform/windows/angle_surface_manager.h"
|
|
#include "flutter/shell/platform/windows/cursor_handler.h"
|
|
#include "flutter/shell/platform/windows/flutter_windows_engine.h"
|
|
#include "flutter/shell/platform/windows/key_event_handler.h"
|
|
#include "flutter/shell/platform/windows/keyboard_hook_handler.h"
|
|
#include "flutter/shell/platform/windows/platform_handler.h"
|
|
#include "flutter/shell/platform/windows/public/flutter_windows.h"
|
|
#include "flutter/shell/platform/windows/text_input_plugin.h"
|
|
#include "flutter/shell/platform/windows/text_input_plugin_delegate.h"
|
|
#include "flutter/shell/platform/windows/window_binding_handler.h"
|
|
#include "flutter/shell/platform/windows/window_binding_handler_delegate.h"
|
|
#include "flutter/shell/platform/windows/window_state.h"
|
|
|
|
namespace flutter {
|
|
|
|
// ID for the window frame buffer.
|
|
inline constexpr uint32_t kWindowFrameBufferID = 0;
|
|
|
|
// An OS-windowing neutral abstration for flutter
|
|
// view that works with win32 hwnds and Windows::UI::Composition visuals.
|
|
class FlutterWindowsView : public WindowBindingHandlerDelegate,
|
|
public TextInputPluginDelegate {
|
|
public:
|
|
// Creates a FlutterWindowsView with the given implementor of
|
|
// WindowBindingHandler.
|
|
//
|
|
// In order for object to render Flutter content the SetEngine method must be
|
|
// called with a valid FlutterWindowsEngine instance.
|
|
FlutterWindowsView(std::unique_ptr<WindowBindingHandler> window_binding);
|
|
|
|
virtual ~FlutterWindowsView();
|
|
|
|
// Configures the window instance with an instance of a running Flutter
|
|
// engine.
|
|
void SetEngine(std::unique_ptr<FlutterWindowsEngine> engine);
|
|
|
|
// Creates rendering surface for Flutter engine to draw into.
|
|
// Should be called before calling FlutterEngineRun using this view.
|
|
void CreateRenderSurface();
|
|
|
|
// Destroys current rendering surface if one has been allocated.
|
|
void DestroyRenderSurface();
|
|
|
|
// Return the currently configured WindowsRenderTarget.
|
|
WindowsRenderTarget* GetRenderTarget() const;
|
|
|
|
// Returns the engine backing this view.
|
|
FlutterWindowsEngine* GetEngine();
|
|
|
|
// Callbacks for clearing context, settings context and swapping buffers,
|
|
// these are typically called on an engine-controlled (non-platform) thread.
|
|
bool ClearContext();
|
|
bool MakeCurrent();
|
|
bool MakeResourceCurrent();
|
|
bool SwapBuffers();
|
|
|
|
// Send initial bounds to embedder. Must occur after engine has initialized.
|
|
void SendInitialBounds();
|
|
|
|
// Returns the frame buffer id for the engine to render to.
|
|
uint32_t GetFrameBufferId(size_t width, size_t height);
|
|
|
|
// |WindowBindingHandlerDelegate|
|
|
void OnWindowSizeChanged(size_t width, size_t height) override;
|
|
|
|
// |WindowBindingHandlerDelegate|
|
|
void OnPointerMove(double x, double y) override;
|
|
|
|
// |WindowBindingHandlerDelegate|
|
|
void OnPointerDown(double x,
|
|
double y,
|
|
FlutterPointerMouseButtons button) override;
|
|
|
|
// |WindowBindingHandlerDelegate|
|
|
void OnPointerUp(double x,
|
|
double y,
|
|
FlutterPointerMouseButtons button) override;
|
|
|
|
// |WindowBindingHandlerDelegate|
|
|
void OnPointerLeave() override;
|
|
|
|
// |WindowBindingHandlerDelegate|
|
|
void OnText(const std::u16string&) override;
|
|
|
|
// |WindowBindingHandlerDelegate|
|
|
bool OnKey(int key,
|
|
int scancode,
|
|
int action,
|
|
char32_t character,
|
|
bool extended) override;
|
|
|
|
// |WindowBindingHandlerDelegate|
|
|
void OnScroll(double x,
|
|
double y,
|
|
double delta_x,
|
|
double delta_y,
|
|
int scroll_offset_multiplier) override;
|
|
|
|
// |TextInputPluginDelegate|
|
|
void OnCursorRectUpdated(const Rect& rect) override;
|
|
|
|
protected:
|
|
// Called to create the keyboard hook handlers.
|
|
virtual void RegisterKeyboardHookHandlers(
|
|
flutter::BinaryMessenger* messenger);
|
|
|
|
// Used by RegisterKeyboardHookHandlers to add a new keyboard hook handler.
|
|
void AddKeyboardHookHandler(
|
|
std::unique_ptr<flutter::KeyboardHookHandler> handler);
|
|
|
|
private:
|
|
// Struct holding the mouse state. The engine doesn't keep track of which
|
|
// mouse buttons have been pressed, so it's the embedding's responsibility.
|
|
struct MouseState {
|
|
// True if the last event sent to Flutter had at least one mouse button.
|
|
// pressed.
|
|
bool flutter_state_is_down = false;
|
|
|
|
// True if kAdd has been sent to Flutter. Used to determine whether
|
|
// to send a kAdd event before sending an incoming mouse event, since
|
|
// Flutter expects pointers to be added before events are sent for them.
|
|
bool flutter_state_is_added = false;
|
|
|
|
// The currently pressed buttons, as represented in FlutterPointerEvent.
|
|
uint64_t buttons = 0;
|
|
};
|
|
|
|
// States a resize event can be in.
|
|
enum class ResizeState {
|
|
// When a resize event has started but is in progress.
|
|
kResizeStarted,
|
|
// After a resize event starts and the framework has been notified to
|
|
// generate a frame for the right size.
|
|
kFrameGenerated,
|
|
// Default state for when no resize is in progress. Also used to indicate
|
|
// that during a resize event, a frame with the right size has been rendered
|
|
// and the buffers have been swapped.
|
|
kDone,
|
|
};
|
|
|
|
// Sends a window metrics update to the Flutter engine using current window
|
|
// dimensions in physical
|
|
void SendWindowMetrics(size_t width, size_t height, double dpiscale) const;
|
|
|
|
// Reports a mouse movement to Flutter engine.
|
|
void SendPointerMove(double x, double y);
|
|
|
|
// Reports mouse press to Flutter engine.
|
|
void SendPointerDown(double x, double y);
|
|
|
|
// Reports mouse release to Flutter engine.
|
|
void SendPointerUp(double x, double y);
|
|
|
|
// Reports mouse left the window client area.
|
|
//
|
|
// Win32 api doesn't have "mouse enter" event. Therefore, there is no
|
|
// SendPointerEnter method. A mouse enter event is tracked then the "move"
|
|
// event is called.
|
|
void SendPointerLeave();
|
|
|
|
// Reports a keyboard character to Flutter engine.
|
|
void SendText(const std::u16string&);
|
|
|
|
// Reports a raw keyboard message to Flutter engine.
|
|
bool SendKey(int key,
|
|
int scancode,
|
|
int action,
|
|
char32_t character,
|
|
bool extended);
|
|
|
|
// Reports scroll wheel events to Flutter engine.
|
|
void SendScroll(double x,
|
|
double y,
|
|
double delta_x,
|
|
double delta_y,
|
|
int scroll_offset_multiplier);
|
|
|
|
// Sets |event_data|'s phase to either kMove or kHover depending on the
|
|
// current primary mouse button state.
|
|
void SetEventPhaseFromCursorButtonState(
|
|
FlutterPointerEvent* event_data) const;
|
|
|
|
// Sends a pointer event to the Flutter engine based on given data. Since
|
|
// all input messages are passed in physical pixel values, no translation is
|
|
// needed before passing on to engine.
|
|
void SendPointerEventWithData(const FlutterPointerEvent& event_data);
|
|
|
|
// Resets the mouse state to its default values.
|
|
void ResetMouseState() { mouse_state_ = MouseState(); }
|
|
|
|
// Updates the mouse state to whether the last event to Flutter had at least
|
|
// one mouse button pressed.
|
|
void SetMouseFlutterStateDown(bool is_down) {
|
|
mouse_state_.flutter_state_is_down = is_down;
|
|
}
|
|
|
|
// Updates the mouse state to whether the last event to Flutter was a kAdd
|
|
// event.
|
|
void SetMouseFlutterStateAdded(bool is_added) {
|
|
mouse_state_.flutter_state_is_added = is_added;
|
|
}
|
|
|
|
// Updates the currently pressed buttons.
|
|
void SetMouseButtons(uint64_t buttons) { mouse_state_.buttons = buttons; }
|
|
|
|
// Currently configured WindowsRenderTarget for this view used by
|
|
// surface_manager for creation of render surfaces and bound to the physical
|
|
// os window.
|
|
std::unique_ptr<WindowsRenderTarget> render_target_;
|
|
|
|
// An object used for intializing Angle and creating / destroying render
|
|
// surfaces. Surface creation functionality requires a valid render_target.
|
|
std::unique_ptr<AngleSurfaceManager> surface_manager_;
|
|
|
|
// The engine associated with this view.
|
|
std::unique_ptr<FlutterWindowsEngine> engine_;
|
|
|
|
// Keeps track of mouse state in relation to the window.
|
|
MouseState mouse_state_;
|
|
|
|
// The plugin registrar managing internal plugins.
|
|
std::unique_ptr<flutter::PluginRegistrar> internal_plugin_registrar_;
|
|
|
|
// Handlers for keyboard events from Windows.
|
|
std::vector<std::unique_ptr<flutter::KeyboardHookHandler>>
|
|
keyboard_hook_handlers_;
|
|
|
|
// Handler for the flutter/platform channel.
|
|
std::unique_ptr<flutter::PlatformHandler> platform_handler_;
|
|
|
|
// Handler for cursor events.
|
|
std::unique_ptr<flutter::CursorHandler> cursor_handler_;
|
|
|
|
// Currently configured WindowBindingHandler for view.
|
|
std::unique_ptr<flutter::WindowBindingHandler> binding_handler_;
|
|
|
|
// Resize events are synchronized using this mutex and the corresponding
|
|
// condition variable.
|
|
std::mutex resize_mutex_;
|
|
std::condition_variable resize_cv_;
|
|
|
|
// Indicates the state of a window resize event. Platform thread will be
|
|
// blocked while this is not done. Guarded by resize_mutex_.
|
|
ResizeState resize_status_ = ResizeState::kDone;
|
|
|
|
// Target for the window width. Valid when resize_pending_ is set. Guarded by
|
|
// resize_mutex_.
|
|
size_t resize_target_width_ = 0;
|
|
|
|
// Target for the window width. Valid when resize_pending_ is set. Guarded by
|
|
// resize_mutex_.
|
|
size_t resize_target_height_ = 0;
|
|
};
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_SHELL_PLATFORM_WINDOWS_FLUTTER_WINDOWS_VIEW_H_
|