/* * Copyright (c) 2019 Samsung Electronics 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. * */ using System.ComponentModel; namespace Tizen.NUI { /// /// The WatchTime class is used to get time for the WatchApplication.
/// A WatchTime has a time handle from watch application framework.
/// You can get time(hour, minute, second, millisecond) and date(year, month, day)
/// on receiving timeTick signal. ///
/// 4 public class WatchTime : Disposable { /// /// Constructor. /// /// 4 public WatchTime() : this(Interop.Watch.NewWatchTime(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } internal WatchTime(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn) { } /// /// Get the current hour. /// /// The return value is always positive.The WatchTime needs to be initialized. /// 4 public int Hour { get { return GetHour(); } } /// /// Get the current hour24. /// /// The return value is always positive.The WatchTime needs to be initialized. /// 4 public int Hour24 { get { return GetHour24(); } } /// /// Get the current minute. /// /// The return value is always positive.The WatchTime needs to be initialized. /// 4 public int Minute { get { return GetMinute(); } } /// /// Get the current second. /// /// The return value is always positive.The WatchTime needs to be initialized. /// 4 public int Second { get { return GetSecond(); } } /// /// Get the current millisecond. /// /// The return value is always positive.The WatchTime needs to be initialized. /// 4 public int Millisecond { get { return GetMillisecond(); } } /// /// Get the current year. /// /// The return value is always positive.The WatchTime needs to be initialized. /// 4 public int Year { get { return GetYear(); } } /// /// Get the current month. /// /// The return value is always positive.The WatchTime needs to be initialized. /// 4 public int Month { get { return GetMonth(); } } /// /// Get the current day. /// /// The return value is always positive.The WatchTime needs to be initialized. /// 4 public int Day { get { return GetDay(); } } /// /// Get the current week. /// /// The return value is always positive.The WatchTime needs to be initialized. /// 4 public int DayOfWeek { get { return GetDayOfWeek(); } } /// /// Get the ID of timezone. /// /// /// The WatchTime needs to be initialized.
/// The timezone ID, according to the IANA(Internet Assigned Numbers Authority)
/// If you want to see more information, please refer to the site :
/// https://en.wikipedia.org/wiki/List_of_tz_database_time_zones/ ///
/// 4 public string TimeZone { get { return GetTimeZone(); } } /// /// Get the daylight saving time status. /// /// The WatchTime needs to be initialized. /// 4 public bool DaylightSavingTimeStatus { get { return GetDaylightSavingTimeStatus(); } } internal static global::System.Runtime.InteropServices.HandleRef getCPtr(WatchTime obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } internal static WatchTime GetWatchTimeFromPtr(global::System.IntPtr cPtr) { WatchTime ret = new WatchTime(cPtr, false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal int GetDayOfWeek() { int ret = Interop.Watch.WatchTimeGetDayOfWeek(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal SWIGTYPE_p_tm GetUtcTime() { SWIGTYPE_p_tm ret = new SWIGTYPE_p_tm(Interop.Watch.WatchTimeGetUtcTime(swigCPtr)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal SWIGTYPE_p_time_t GetUtcTimeStamp() { SWIGTYPE_p_time_t ret = new SWIGTYPE_p_time_t(Interop.Watch.WatchTimeGetUtcTimeStamp(swigCPtr)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal string GetTimeZone() { string ret = Interop.Watch.WatchTimeGetTimeZone(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal bool GetDaylightSavingTimeStatus() { bool ret = Interop.Watch.WatchTimeGetDaylightSavingTimeStatus(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal int GetHour() { int ret = Interop.Watch.WatchTimeGetHour(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal int GetHour24() { int ret = Interop.Watch.WatchTimeGetHour24(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal int GetMinute() { int ret = Interop.Watch.WatchTimeGetMinute(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal int GetSecond() { int ret = Interop.Watch.WatchTimeGetSecond(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal int GetMillisecond() { int ret = Interop.Watch.WatchTimeGetMillisecond(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal int GetYear() { int ret = Interop.Watch.WatchTimeGetYear(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal int GetMonth() { int ret = Interop.Watch.WatchTimeGetMonth(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } internal int GetDay() { int ret = Interop.Watch.WatchTimeGetDay(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } /// This will not be public opened. [EditorBrowsable(EditorBrowsableState.Never)] protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr) { Interop.Watch.DeleteWatchTime(swigCPtr); } } }