fixed TC crash on emulator
[platform/core/csapi/tizenfx.git] / src / Tizen.Maps / Tizen.Maps / Polygon.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
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;
18 using System.Collections.Generic;
19 using System.Linq;
20
21 using Color = ElmSharp.Color;
22
23 namespace Tizen.Maps
24 {
25     /// <summary>
26     /// Polygon map object
27     /// </summary>
28     public class Polygon : MapObject, IDisposable
29     {
30         internal Interop.PolygonHandle handle;
31         private List<Geocoordinates> _coordinateList;
32
33         /// <summary>
34         /// Creates a polygon visual object
35         /// </summary>
36         /// <param name="coordinates">list of geographical coordinates</param>
37         /// <param name="color">background color</param>
38         /// <exception cref="ArgumentException">Throws if input values are invalid</exception>
39         public Polygon(IEnumerable<Geocoordinates> coordinates, Color color) : base()
40         {
41             var err = Interop.ErrorCode.InvalidParameter;
42             if (coordinates == null || coordinates.Count() < 3)
43             {
44                 err.ThrowIfFailed("given coordinates list should contain at least 3 coordinates");
45             }
46             _coordinateList = coordinates.ToList();
47             var geocoordinateList = new GeocoordinatesList(_coordinateList, false);
48             handle = new Interop.PolygonHandle(geocoordinateList.handle, color);
49         }
50
51         /// <summary>
52         /// Clicked event
53         /// </summary>
54         public event EventHandler Clicked;
55
56         public override bool IsVisible
57         {
58             get { return handle.IsVisible; }
59             set { handle.IsVisible = value; }
60         }
61
62         /// <summary>
63         /// List of geographical coordinates of polygon vertices
64         /// </summary>
65         public IEnumerable<Geocoordinates> Coordinates
66         {
67             get
68             {
69                 return _coordinateList;
70             }
71             set
72             {
73                 var coordinates = value.ToList();
74                 var err = Interop.ErrorCode.InvalidParameter;
75                 if (coordinates == null || coordinates.Count() < 3)
76                 {
77                     err.ThrowIfFailed("given coordinates list should contain at least 3 coordinates");
78                 }
79
80                 var geocoordinateList = new GeocoordinatesList(coordinates, false);
81                 if (handle.SetPolygon(geocoordinateList.handle).IsSuccess())
82                 {
83                     _coordinateList = coordinates;
84                 }
85             }
86         }
87
88         /// <summary>
89         /// Background fill color
90         /// </summary>
91         public Color FillColor
92         {
93             get
94             {
95                 return handle.FillColor;
96             }
97             set
98             {
99                 handle.FillColor = value;
100             }
101         }
102
103         internal override void HandleClickedEvent()
104         {
105             Clicked?.Invoke(this, EventArgs.Empty);
106         }
107
108         internal override void InvalidateMapObject()
109         {
110             handle = null;
111         }
112
113         internal override Interop.ViewObjectHandle GetHandle()
114         {
115             return handle;
116         }
117
118         #region IDisposable Support
119         private bool _disposedValue = false;
120
121         protected virtual void Dispose(bool disposing)
122         {
123             if (!_disposedValue)
124             {
125                 if (disposing)
126                 {
127                     _coordinateList.Clear();
128                 }
129                 handle.Dispose();
130                 _disposedValue = true;
131             }
132         }
133
134         public void Dispose()
135         {
136             Dispose(true);
137             GC.SuppressFinalize(this);
138         }
139         #endregion
140     }
141 }