Revert "[NUI] Refactoring Theme and StyleManager (#1981)" (#2013)
[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         /// <summary>
32         /// A constructor that creates LottieButtonExtension with a specified Lottie resource URL
33         /// </summary>
34         [EditorBrowsable(EditorBrowsableState.Never)]
35         public LottieSwitchExtension() : base()
36         {
37             LottieView = new LottieAnimationView();
38         }
39
40         /// <summary>
41         /// The Lottie view that will be used as an icon part in a Button.
42         /// </summary>
43         [EditorBrowsable(EditorBrowsableState.Never)]
44         protected LottieAnimationView LottieView { get; set; }
45
46         /// <inheritdoc/>
47         [EditorBrowsable(EditorBrowsableState.Never)]
48         public override ImageView OnCreateIcon(Button button, ImageView icon)
49         {
50             LottieButtonExtension.InitializeLottieView(button, LottieView);
51
52             return LottieView;
53         }
54
55         /// <inheritdoc/>
56         [EditorBrowsable(EditorBrowsableState.Never)]
57         public override void OnControlStateChanged(Button button, View.ControlStateChangedEventArgs args)
58         {
59             LottieButtonExtension.UpdateLottieView(button, args.PreviousState, LottieView);
60         }
61     }
62 }