#include "flutter/shell/platform/windows/window_manager.h"
#include <dwmapi.h>
#include <optional>
#include <vector>
#include "embedder.h"
#include "flutter/shell/platform/common/windowing.h"
#include "flutter/shell/platform/windows/flutter_windows_engine.h"
#include "flutter/shell/platform/windows/flutter_windows_view_controller.h"
#include "flutter/shell/platform/windows/host_window.h"
#include "fml/logging.h"
#include "shell/platform/windows/client_wrapper/include/flutter/flutter_view.h"
#include "shell/platform/windows/flutter_windows_view.h"
Go to the source code of this file.
Namespaces | |
flutter | |
Functions | |
void | InternalFlutterWindows_WindowManager_Initialize (int64_t engine_id, const flutter::WindowingInitRequest *request) |
bool | InternalFlutterWindows_WindowManager_HasTopLevelWindows (int64_t engine_id) |
FlutterViewId | InternalFlutterWindows_WindowManager_CreateRegularWindow (int64_t engine_id, const flutter::WindowCreationRequest *request) |
HWND | InternalFlutterWindows_WindowManager_GetTopLevelWindowHandle (int64_t engine_id, FlutterViewId view_id) |
FlutterWindowSize | InternalFlutterWindows_WindowManager_GetWindowContentSize (HWND hwnd) |
void | InternalFlutterWindows_WindowManager_SetWindowContentSize (HWND hwnd, const flutter::WindowSizing *size) |
FlutterViewId InternalFlutterWindows_WindowManager_CreateRegularWindow | ( | int64_t | engine_id, |
const flutter::WindowCreationRequest * | request | ||
) |
Definition at line 116 of file window_manager.cc.
References flutter::WindowManager::CreateRegularWindow(), flutter::FlutterWindowsEngine::GetEngineForId(), and flutter::FlutterWindowsEngine::window_manager().
Referenced by flutter::testing::TEST_F().
HWND InternalFlutterWindows_WindowManager_GetTopLevelWindowHandle | ( | int64_t | engine_id, |
FlutterViewId | view_id | ||
) |
Definition at line 124 of file window_manager.cc.
References flutter::FlutterWindowsEngine::GetEngineForId(), flutter::FlutterWindowsView::GetWindowHandle(), and flutter::FlutterWindowsEngine::view().
Referenced by flutter::testing::TEST_F().
FlutterWindowSize InternalFlutterWindows_WindowManager_GetWindowContentSize | ( | HWND | hwnd | ) |
Definition at line 137 of file window_manager.cc.
References FlutterDesktopGetDpiForHWND().
Referenced by flutter::testing::TEST_F().
bool InternalFlutterWindows_WindowManager_HasTopLevelWindows | ( | int64_t | engine_id | ) |
Definition at line 109 of file window_manager.cc.
References flutter::FlutterWindowsEngine::GetEngineForId(), flutter::WindowManager::HasTopLevelWindows(), and flutter::FlutterWindowsEngine::window_manager().
Referenced by flutter::testing::TEST_F().
void InternalFlutterWindows_WindowManager_Initialize | ( | int64_t | engine_id, |
const flutter::WindowingInitRequest * | request | ||
) |
Definition at line 101 of file window_manager.cc.
References flutter::FlutterWindowsEngine::GetEngineForId(), flutter::WindowManager::Initialize(), and flutter::FlutterWindowsEngine::window_manager().
Referenced by flutter::testing::TEST_F().
void InternalFlutterWindows_WindowManager_SetWindowContentSize | ( | HWND | hwnd, |
const flutter::WindowSizing * | size | ||
) |
Definition at line 151 of file window_manager.cc.
References flutter::HostWindow::GetThisFromHandle(), and flutter::HostWindow::SetContentSize().
Referenced by flutter::testing::TEST_F().