/* * Copyright (c) 2022 Huawei Device Co., Ltd. * 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. */ #ifndef OHOS_JS_DISPLAY_H #define OHOS_JS_DISPLAY_H #include #include #include #include #include "cutout_info.h" #include "display.h" namespace OHOS { namespace Rosen { std::shared_ptr FindJsDisplayObject(DisplayId displayId); NativeValue* CreateJsDisplayObject(NativeEngine& engine, sptr& display); NativeValue* CreateJsCutoutInfoObject(NativeEngine& engine, sptr cutoutInfo); NativeValue* CreateJsRectObject(NativeEngine& engine, DMRect rect); NativeValue* CreateJsWaterfallDisplayAreaRectsObject(NativeEngine& engine, WaterfallDisplayAreaRects waterfallDisplayAreaRects); NativeValue* CreateJsBoundingRectsArrayObject(NativeEngine& engine, std::vector boundingRects); class JsDisplay final { public: explicit JsDisplay(const sptr& display); ~JsDisplay(); static void Finalizer(NativeEngine* engine, void* data, void* hint); static NativeValue* GetCutoutInfo(NativeEngine* engine, NativeCallbackInfo* info); private: sptr display_ = nullptr; NativeValue* OnGetCutoutInfo(NativeEngine& engine, NativeCallbackInfo& info); }; enum class DisplayStateMode : uint32_t { STATE_UNKNOWN = 0, STATE_OFF, STATE_ON, STATE_DOZE, STATE_DOZE_SUSPEND, STATE_VR, STATE_ON_SUSPEND }; } // namespace Rosen } // namespace OHOS #endif