using System; using System.Collections.Generic; using System.Text; namespace ElmSharp.Wearable { /// /// The ICircleWidget is the interface for a widget to display and handle with the CircleSurface. /// /// preview [Obsolete("This has been deprecated in API12")] public interface ICircleWidget { /// /// Gets the handle for the Circle widget. /// /// preview [Obsolete("This has been deprecated in API12")] IntPtr CircleHandle { get; } /// /// Gets the CircleSurface used in this widget. /// /// preview [Obsolete("This has been deprecated in API12")] CircleSurface CircleSurface { get; } } /// /// The IRotaryActionWidget is the interface for a widget that has action by the Rotary event. /// /// preview [Obsolete("This has been deprecated in API12")] public interface IRotaryActionWidget : ICircleWidget { } }