[ACR-564] deprecate unused API
[platform/core/csapi/tizenfx.git] / src / ElmSharp.Wearable / ElmSharp.Wearable / ICircleWidget.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace ElmSharp.Wearable
6 {
7     /// <summary>
8     /// The ICircleWidget is the interface for a widget to display and handle with the CircleSurface.
9     /// </summary>
10     /// <since_tizen> preview </since_tizen>
11     [Obsolete("This has been deprecated in API12")]
12     public interface ICircleWidget
13     {
14         /// <summary>
15         /// Gets the handle for the Circle widget.
16         /// </summary>
17         /// <since_tizen> preview </since_tizen>
18         [Obsolete("This has been deprecated in API12")]
19         IntPtr CircleHandle { get; }
20
21         /// <summary>
22         /// Gets the CircleSurface used in this widget.
23         /// </summary>
24         /// <since_tizen> preview </since_tizen>
25         [Obsolete("This has been deprecated in API12")]
26         CircleSurface CircleSurface { get; }
27     }
28
29     /// <summary>
30     /// The IRotaryActionWidget is the interface for a widget that has action by the Rotary event.
31     /// </summary>
32     /// <since_tizen> preview </since_tizen>
33     [Obsolete("This has been deprecated in API12")]
34     public interface IRotaryActionWidget : ICircleWidget
35     {
36     }
37 }