mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Some files are moved by this: Copy framework/node.dart into types/ - preparing for framework/'s decomissioning. Move app/scheduler.dart into sky/scheduler.dart - "app" doesn't really make sense. As part of the SkyBinding cleanup, I made the hit-testing less RenderBox-specific, by having the HitTestEntry.target member be a HitTestTarget, which is an interface with the handleEvent() function, which is then implemented by RenderBox. In theory, someone could now extend hit testing from the RenderBox world into their own tree of nodes, and take part in all the same dispatch logic automatically. This involved moving all the hit testing type definitions into a new sky/hittest.dart file. Renamed SkyBinding._app to SkyBinding._instance for clarity. Moved code around in SkyBinding so that related things are together. Made WidgetSkyBinding use the existing SkyBinding.instance singleton logic rather than having its own copy. I also added some stub README.md files that describe dependencies. R=abarth@chromium.org Review URL: https://codereview.chromium.org/1187393002.
61 lines
1.5 KiB
Dart
61 lines
1.5 KiB
Dart
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:sky' as sky;
|
|
|
|
typedef void Callback(double timeStamp);
|
|
|
|
bool _haveScheduledVisualUpdate = false;
|
|
int _nextCallbackId = 1;
|
|
|
|
final List<Callback> _persistentCallbacks = new List<Callback>();
|
|
Map<int, Callback> _transientCallbacks = new Map<int, Callback>();
|
|
|
|
void _beginFrame(double timeStamp) {
|
|
_haveScheduledVisualUpdate = false;
|
|
|
|
Map<int, Callback> callbacks = _transientCallbacks;
|
|
_transientCallbacks = new Map<int, Callback>();
|
|
|
|
callbacks.forEach((id, callback) {
|
|
callback(timeStamp);
|
|
});
|
|
|
|
for (Callback callback in _persistentCallbacks)
|
|
callback(timeStamp);
|
|
}
|
|
|
|
void init() {
|
|
assert(sky.window == null);
|
|
sky.view.setBeginFrameCallback(_beginFrame);
|
|
}
|
|
|
|
void addPersistentFrameCallback(Callback callback) {
|
|
assert(sky.window == null);
|
|
_persistentCallbacks.add(callback);
|
|
}
|
|
|
|
int requestAnimationFrame(Callback callback) {
|
|
if (sky.window != null)
|
|
return sky.window.requestAnimationFrame(callback);
|
|
int id = _nextCallbackId++;
|
|
_transientCallbacks[id] = callback;
|
|
ensureVisualUpdate();
|
|
return id;
|
|
}
|
|
|
|
void cancelAnimationFrame(int id) {
|
|
if (sky.window != null)
|
|
return sky.window.cancelAnimationFrame(id);
|
|
_transientCallbacks.remove(id);
|
|
}
|
|
|
|
void ensureVisualUpdate() {
|
|
assert(sky.window == null);
|
|
if (_haveScheduledVisualUpdate)
|
|
return;
|
|
sky.view.scheduleFrame();
|
|
_haveScheduledVisualUpdate = true;
|
|
}
|