[NUI] View Transition with page switching
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / Common / TimePeriod.cs
1 /*
2  * Copyright(c) 2021 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
18 using global::System;
19 using global::System.ComponentModel;
20
21 namespace Tizen.NUI
22 {
23     [EditorBrowsable(EditorBrowsableState.Never)]
24     public class TimePeriod : Disposable
25     {
26         internal TimePeriod(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn)
27         {
28         }
29
30         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TimePeriod obj)
31         {
32             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.SwigCPtr;
33         }
34
35         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
36         {
37             Interop.TimePeriod.DeleteTimePeriod(swigCPtr);
38         }
39
40         [EditorBrowsable(EditorBrowsableState.Never)]
41         public TimePeriod(float durationSeconds) : this(Interop.TimePeriod.NewTimePeriod(durationSeconds), true)
42         {
43             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
44         }
45
46         [EditorBrowsable(EditorBrowsableState.Never)]
47         public TimePeriod(float delaySeconds, float durationSeconds) : this(Interop.TimePeriod.NewTimePeriod(delaySeconds, durationSeconds), true)
48         {
49             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
50         }
51
52         [EditorBrowsable(EditorBrowsableState.Never)]
53         public float DelaySeconds
54         {
55             set
56             {
57                 Interop.TimePeriod.DelaySecondsSet(SwigCPtr, value);
58                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
59             }
60             get
61             {
62                 float ret = Interop.TimePeriod.DelaySecondsGet(SwigCPtr);
63                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
64                 return ret;
65             }
66         }
67
68         [EditorBrowsable(EditorBrowsableState.Never)]
69         public float DurationSeconds
70         {
71             set
72             {
73                 Interop.TimePeriod.DurationSecondsSet(SwigCPtr, value);
74                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
75             }
76             get
77             {
78                 float ret = Interop.TimePeriod.DurationSecondsGet(SwigCPtr);
79                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
80                 return ret;
81             }
82         }
83     }
84 }