2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 /// Enumeration for the icon lookup order. Should look for icons in the theme, FDO paths, or both.
24 public enum IconLookupOrder
27 /// Icon look up order: freedesktop, theme
31 /// Icon look up order: theme, freedesktop
35 /// Icon look up order: freedesktop
39 /// Icon look up order: theme
45 /// The Icon is a widget that displays standard icon images ("delete", "edit", "arrows", etc.)
46 /// or images coming from a custom file (PNG, JPG, EDJE, etc.), on icon context.
49 public class Icon : Image
52 /// Creates and initializes a new instance of Icon class.
54 /// <param name="parent">The parent is a given container which will be attached by Icon as a child. It's <see cref="EvasObject"/> type.</param>
55 public Icon(EvasObject parent) : base(parent)
60 /// Sets or gets the standard icon name of a given Icon widget.
62 public string StandardIconName
66 return Interop.Elementary.elm_icon_standard_get(RealHandle);
70 Interop.Elementary.elm_icon_standard_set(RealHandle, value);
75 /// Sets or gets the icon lookup order of a given Icon widget.
77 public IconLookupOrder IconLookupOrder
81 return (IconLookupOrder)Interop.Elementary.elm_icon_order_lookup_get(RealHandle);
85 Interop.Elementary.elm_icon_order_lookup_set(RealHandle, (int)value);
90 /// Sets the file that is used, but uses a generated thumbnail.
92 /// <param name="file">The path to the file that is used as an icon image</param>
93 /// <param name="group">The group that the icon belongs to</param>
94 public void SetThumb(string file, string group)
96 Interop.Elementary.elm_icon_thumb_set(RealHandle, file, group);
100 /// Adds a new icon object to the parent.
102 /// <param name="parent">EvasObject</param>
103 /// <returns>The new object, otherwise NULL if it cannot be created</returns>
104 protected override IntPtr CreateHandle(EvasObject parent)
106 IntPtr handle = Interop.Elementary.elm_layout_add(parent.Handle);
107 Interop.Elementary.elm_layout_theme_set(handle, "layout", "background", "default");
109 RealHandle = Interop.Elementary.elm_icon_add(handle);
110 Interop.Elementary.elm_object_part_content_set(handle, "elm.swallow.content", RealHandle);