2018-09-17 14:01:16 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <SkCanvas.h>
|
|
|
|
#include <SkDrawable.h>
|
|
|
|
|
2018-12-13 16:40:14 -08:00
|
|
|
#include <WebViewFunctorManager.h>
|
2018-09-17 14:01:16 -04:00
|
|
|
#include <utils/Functor.h>
|
2018-12-13 16:40:14 -08:00
|
|
|
#include <variant>
|
2018-09-17 14:01:16 -04:00
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace uirenderer {
|
|
|
|
|
|
|
|
namespace skiapipeline {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This drawable wraps a functor enabling it to be recorded into a list
|
|
|
|
* of Skia drawing commands.
|
|
|
|
*/
|
|
|
|
class FunctorDrawable : public SkDrawable {
|
|
|
|
public:
|
2018-12-13 16:40:14 -08:00
|
|
|
FunctorDrawable(int functor, SkCanvas* canvas)
|
|
|
|
: mBounds(canvas->getLocalClipBounds())
|
2020-06-25 17:14:13 -07:00
|
|
|
, mWebViewHandle(WebViewFunctorManager::instance().handleFor(functor)) {}
|
2018-12-13 16:40:14 -08:00
|
|
|
|
2018-09-17 14:01:16 -04:00
|
|
|
virtual ~FunctorDrawable() {}
|
|
|
|
|
2018-12-13 16:40:14 -08:00
|
|
|
virtual void syncFunctor(const WebViewSyncData& data) const {
|
2020-06-25 17:14:13 -07:00
|
|
|
mWebViewHandle->sync(data);
|
2018-12-13 16:40:14 -08:00
|
|
|
}
|
2018-09-17 14:01:16 -04:00
|
|
|
|
2021-06-25 21:54:16 -07:00
|
|
|
virtual void onRemovedFromTree() {
|
|
|
|
mWebViewHandle->onRemovedFromTree();
|
|
|
|
}
|
|
|
|
|
2018-09-17 14:01:16 -04:00
|
|
|
protected:
|
|
|
|
virtual SkRect onGetBounds() override { return mBounds; }
|
|
|
|
|
|
|
|
const SkRect mBounds;
|
2020-06-25 17:14:13 -07:00
|
|
|
sp<WebViewFunctor::Handle> mWebViewHandle;
|
2018-09-17 14:01:16 -04:00
|
|
|
};
|
|
|
|
|
2018-11-30 15:51:58 -08:00
|
|
|
} // namespace skiapipeline
|
|
|
|
} // namespace uirenderer
|
|
|
|
} // namespace android
|