[NUI] Refactor ButtonExtension
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Controls / Extension / LottieSwitchExtension.cs
1 /*
2  * Copyright(c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 using System.ComponentModel;
18 using Tizen.NUI.BaseComponents;
19
20 namespace Tizen.NUI.Components.Extension
21 {
22     /// <summary>
23     /// LottieSwitchExtension is a SwitchExtension class that uses Lottie image for a Switch icon.
24     /// <remark>
25     /// This extension must be used within a class implementing LottieSwitchStyle.
26     /// </remark>
27     /// </summary>
28     [EditorBrowsable(EditorBrowsableState.Never)]
29     public class LottieSwitchExtension : SwitchExtension
30     {
31         /// <inheritdoc/>
32         [EditorBrowsable(EditorBrowsableState.Never)]
33         public override bool ProcessIcon(Button button, ref ImageView icon)
34         {
35             if (button.Style is ILottieButtonStyle lottieStyle)
36             {
37                 var lottieView = LottieExtensionHelper.CreateLottieView(lottieStyle);
38                 var parent = icon.GetParent();
39
40                 icon.Unparent();
41                 icon.Dispose();
42                 icon = lottieView;
43                 parent?.Add(icon);
44
45                 return true;
46             }
47
48             return false;
49         }
50
51         /// <inheritdoc/>
52         [EditorBrowsable(EditorBrowsableState.Never)]
53         public override void OnControlStateChanged(Button button, View.ControlStateChangedEventArgs args)
54         {
55             if (button.Style is ILottieButtonStyle lottieStyle && button.Icon is LottieAnimationView lottieView)
56             {
57                 LottieExtensionHelper.UpdateLottieView(lottieView, lottieStyle, args.PreviousState, button.ControlState);
58             }
59         }
60     }
61 }