Flutter Engine Uber Docs
Docs for the entire Flutter Engine repo.
Loading...
Searching...
No Matches
host_window_tooltip.h
Go to the documentation of this file.
1
// Copyright 2013 The Flutter Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
#ifndef FLUTTER_SHELL_PLATFORM_WINDOWS_HOST_WINDOW_TOOLTIP_H_
6
#define FLUTTER_SHELL_PLATFORM_WINDOWS_HOST_WINDOW_TOOLTIP_H_
7
8
#include <cstdint>
9
#include "
host_window.h
"
10
#include "
shell/platform/windows/flutter_windows_view.h
"
11
#include "
shell/platform/windows/window_manager.h
"
12
13
namespace
flutter
{
14
class
HostWindowTooltip
:
public
HostWindow
,
15
private
FlutterWindowsViewSizingDelegate
{
16
public
:
17
// Creates a tooltip window.
18
HostWindowTooltip
(
WindowManager
* window_manager,
19
FlutterWindowsEngine
*
engine
,
20
const
BoxConstraints
& constraints,
21
GetWindowPositionCallback
get_position_callback,
22
HWND parent);
23
24
// Update the position of the tooltip window based off the current size
25
// of the tooltip.
26
void
UpdatePosition
();
27
28
protected
:
29
LRESULT
HandleMessage
(HWND hwnd,
30
UINT
message
,
31
WPARAM
wparam,
32
LPARAM
lparam)
override
;
33
34
private
:
35
void
DidUpdateViewSize(int32_t
width
, int32_t
height
)
override
;
36
WindowRect
GetWorkArea()
const override
;
37
38
GetWindowPositionCallback
get_position_callback_;
39
HWND parent_;
40
Isolate
isolate_;
41
42
// Used to track whether the view is still in tasks scheduled from raster
43
// thread.
44
std::shared_ptr<int> view_alive_;
45
46
// The current width of the tooltip.
47
int
width_ = 0;
48
49
// The current height of the tooltip.
50
int
height_ = 0;
51
};
52
}
// namespace flutter
53
54
#endif
// FLUTTER_SHELL_PLATFORM_WINDOWS_HOST_WINDOW_TOOLTIP_H_
flutter::BoxConstraints
Definition
geometry.h:83
flutter::FlutterWindowsEngine
Definition
flutter_windows_engine.h:92
flutter::FlutterWindowsViewSizingDelegate
Definition
flutter_windows_view.h:34
flutter::HostWindow
Definition
host_window.h:29
flutter::HostWindowTooltip
Definition
host_window_tooltip.h:15
flutter::HostWindowTooltip::HandleMessage
LRESULT HandleMessage(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) override
Definition
host_window_tooltip.cc:118
flutter::HostWindowTooltip::UpdatePosition
void UpdatePosition()
Definition
host_window_tooltip.cc:83
flutter::Isolate
Definition
isolate_scope.h:15
flutter::WindowManager
Definition
window_manager.h:114
engine
FlutterEngine engine
Definition
main.cc:84
message
const char * message
Definition
fl_accessibility_handler.cc:21
flutter_windows_view.h
host_window.h
flutter
Definition
asset_manager.cc:10
flutter::GetWindowPositionCallback
WindowRect *(* GetWindowPositionCallback)(const WindowSize &child_size, const WindowRect &parent_rect, const WindowRect &output_rect)
Definition
window_manager.h:69
height
int32_t height
Definition
serialization_callbacks.cc:1
width
int32_t width
Definition
serialization_callbacks.cc:0
flutter::WindowRect
Definition
window_manager.h:42
window_manager.h
LRESULT
LONG_PTR LRESULT
Definition
windows_types.h:61
UINT
unsigned int UINT
Definition
windows_types.h:32
LPARAM
LONG_PTR LPARAM
Definition
windows_types.h:60
WPARAM
UINT_PTR WPARAM
Definition
windows_types.h:59
shell
platform
windows
host_window_tooltip.h
Generated on Mon May 25 2026 06:07:41 for Flutter Engine Uber Docs by
1.9.8