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 DRAG_INTERNAL_ANIMATION 17 #define DRAG_INTERNAL_ANIMATION 18 19 #include "i_context.h" 20 21 namespace OHOS { 22 namespace Msdp { 23 namespace DeviceStatus { 24 25 typedef int32_t (*EnableInternalDropAnimationFunc)(const char *); 26 typedef int32_t (*PerformInternalDropAnimationFunc)(IContext*); 27 28 class DragInternalAnimationWrapper { 29 public: 30 DragInternalAnimationWrapper() = default; 31 ~DragInternalAnimationWrapper(); 32 int32_t EnableInternalDropAnimation(const std::string &animationInfo); 33 int32_t PerformInternalDropAnimation(IContext* env); 34 35 private: 36 bool Init(); 37 38 void* dragInternalAnimationHandle_ { nullptr }; 39 EnableInternalDropAnimationFunc enableInternalDropAnimationHandle_ { nullptr }; 40 PerformInternalDropAnimationFunc performInternalDropAnimationHandle_ { nullptr }; 41 }; 42 } // namespace DeviceStatus 43 } // namespace Msdp 44 } // namespace OHOS 45 #endif // DRAG_INTERNAL_ANIMATION