mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
38 lines
1.0 KiB
C++
38 lines
1.0 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_LIB_UI_WINDOW_WINDOW_H_
|
|
#define FLUTTER_LIB_UI_WINDOW_WINDOW_H_
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
#include "flutter/lib/ui/window/platform_message.h"
|
|
#include "flutter/lib/ui/window/pointer_data_packet.h"
|
|
#include "flutter/lib/ui/window/viewport_metrics.h"
|
|
#include "third_party/skia/include/gpu/GrDirectContext.h"
|
|
#include "third_party/tonic/dart_persistent_value.h"
|
|
|
|
namespace flutter {
|
|
class Window final {
|
|
public:
|
|
explicit Window(ViewportMetrics metrics);
|
|
|
|
~Window();
|
|
|
|
const ViewportMetrics& viewport_metrics() const { return viewport_metrics_; }
|
|
|
|
void DispatchPointerDataPacket(const PointerDataPacket& packet);
|
|
void UpdateWindowMetrics(const ViewportMetrics& metrics);
|
|
|
|
private:
|
|
tonic::DartPersistentValue library_;
|
|
ViewportMetrics viewport_metrics_;
|
|
};
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_LIB_UI_WINDOW_WINDOW_H_
|