• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2025 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef OHOS_JS_UI_EFFECT_CONTROLLER_H
17 #define OHOS_JS_UI_EFFECT_CONTROLLER_H
18 #include "js_runtime_utils.h"
19 #include "ui_effect_controller_client.h"
20 #include "ui_effect_controller_proxy.h"
21 
22 namespace OHOS::Rosen {
23 class JsUIEffectController final {
24 public:
25     static napi_status CreateJsObject(napi_env env, JsUIEffectController* filter, napi_value& obj);
26     static void Finalizer(napi_env env, void* data, void* hint);
27     static void BindNativeFunctions(napi_env env, napi_value object, const char* moduleName);
28     static napi_value SetParams(napi_env env, napi_callback_info info);
29     static napi_value AnimateTo(napi_env env, napi_callback_info info);
30     JsUIEffectController();
31     ~JsUIEffectController();
32     WMError Init();
33 
34 private:
35     napi_value OnSetParams(napi_env env, napi_callback_info info);
36     WMError InitClientAndServer();
37     napi_value OnAnimateTo(napi_env env, napi_callback_info info);
38     sptr<UIEffectControllerClient> client_;
39     sptr<IUIEffectController> server_;
40 };
41 }
42 #endif