66 lines
2.4 KiB
C++
66 lines
2.4 KiB
C++
/*
|
|
* Copyright (c) 2025 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 NATIVE_XCOMPONENT_PLUGIN_RENDER_H
|
|
#define NATIVE_XCOMPONENT_PLUGIN_RENDER_H
|
|
|
|
#include <ace/xcomponent/native_interface_xcomponent.h>
|
|
#include <napi/native_api.h>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
#include "EGLCore.h"
|
|
|
|
namespace NativeOpenCAX {
|
|
class NativeRender {
|
|
public:
|
|
explicit NativeRender(std::string& id);
|
|
~NativeRender()
|
|
{
|
|
if (eglCore_ != nullptr) {
|
|
eglCore_->Release();
|
|
delete eglCore_;
|
|
eglCore_ = nullptr;
|
|
}
|
|
}
|
|
static NativeRender* GetInstance(std::string& id);
|
|
static void Release(std::string& id);
|
|
static napi_value NapiDrawPattern(napi_env env, napi_callback_info info);
|
|
static napi_value TestGetXComponentStatus(napi_env env, napi_callback_info info);
|
|
void Export(napi_env env, napi_value exports);
|
|
void OnSurfaceChanged(OH_NativeXComponent* component, void* window);
|
|
void OnTouchEvent(OH_NativeXComponent* component, void* window);
|
|
void OnTouchEventPartTwo(OH_NativeXComponent* component, void* window);
|
|
void OnMouseEvent(OH_NativeXComponent* component, void* window);
|
|
void OnHoverEvent(OH_NativeXComponent* component, bool isHover);
|
|
void OnFocusEvent(OH_NativeXComponent* component, void* window);
|
|
void OnBlurEvent(OH_NativeXComponent* component, void* window);
|
|
void OnKeyEvent(OH_NativeXComponent* component, void* window);
|
|
void RegisterCallback(OH_NativeXComponent* nativeXComponent);
|
|
void ShowSample(OH_NativeXComponent* component);
|
|
|
|
public:
|
|
static std::unordered_map<std::string, NativeRender*> instance_;
|
|
EGLCore* eglCore_;
|
|
std::string id_;
|
|
static int32_t hasDraw_;
|
|
static int32_t hasChangeColor_;
|
|
|
|
private:
|
|
OH_NativeXComponent_Callback renderCallback_;
|
|
OH_NativeXComponent_MouseEvent_Callback mouseCallback_;
|
|
};
|
|
} // namespace NativeXComponentSample
|
|
#endif // NATIVE_XCOMPONENT_PLUGIN_RENDER_H
|