1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19  
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 /*
25  * Conversion parameters:
26  * inFile  = GIcon.html
27  * outPack = gio
28  * outFile = IconIF
29  * strct   = GIcon
30  * realStrct=
31  * ctorStrct=
32  * clss    = IconT
33  * interf  = IconIF
34  * class Code: No
35  * interface Code: No
36  * template for:
37  * extend  = 
38  * implements:
39  * prefixes:
40  * 	- g_icon_
41  * omit structs:
42  * omit prefixes:
43  * omit code:
44  * 	- g_icon_new_for_string
45  * omit signals:
46  * imports:
47  * 	- glib.Str
48  * 	- glib.ErrorG
49  * 	- glib.GException
50  * 	- glib.Variant
51  * 	- gio.IconIF
52  * 	- gio.Icon
53  * structWrap:
54  * 	- GIcon* -> IconIF
55  * 	- GVariant* -> Variant
56  * module aliases:
57  * local aliases:
58  * overrides:
59  * 	- toString
60  */
61 
62 module gio.IconIF;
63 
64 public  import gtkc.giotypes;
65 
66 private import gtkc.gio;
67 private import glib.ConstructionException;
68 private import gobject.ObjectG;
69 
70 
71 private import glib.Str;
72 private import glib.ErrorG;
73 private import glib.GException;
74 private import glib.Variant;
75 private import gio.IconIF;
76 private import gio.Icon;
77 
78 
79 
80 
81 /**
82  * GIcon is a very minimal interface for icons. It provides functions
83  * for checking the equality of two icons, hashing of icons and
84  * serializing an icon to and from strings.
85  *
86  * GIcon does not provide the actual pixmap for the icon as this is out
87  * of GIO's scope, however implementations of GIcon may contain the name
88  * of an icon (see GThemedIcon), or the path to an icon (see GLoadableIcon).
89  *
90  * To obtain a hash of a GIcon, see g_icon_hash().
91  *
92  * To check if two GIcons are equal, see g_icon_equal().
93  *
94  * For serializing a GIcon, use g_icon_serialize() and
95  * g_icon_deserialize().
96  *
97  * If you want to consume GIcon (for example, in a toolkit) you must
98  * be prepared to handle at least the three following cases:
99  * GLoadableIcon, GThemedIcon and GEmblemedIcon. It may also make
100  * sense to have fast-paths for other cases (like handling GdkPixbuf
101  * directly, for example) but all compliant GIcon implementations
102  * outside of GIO must implement GLoadableIcon.
103  *
104  * If your application or library provides one or more GIcon
105  * implementations you need to ensure that your new implementation also
106  * implements GLoadableIcon. Additionally, you must provide an
107  * implementation of g_icon_serialize() that gives a result that is
108  * understood by g_icon_deserialize(), yielding one of the built-in icon
109  * types.
110  */
111 public interface IconIF
112 {
113 	
114 	
115 	public GIcon* getIconTStruct();
116 	
117 	/** the main Gtk struct as a void* */
118 	protected void* getStruct();
119 	
120 	
121 	/**
122 	 */
123 	
124 	/**
125 	 * Gets a hash for an icon.
126 	 * Virtual: hash
127 	 * Params:
128 	 * icon = gconstpointer to an icon object.
129 	 * Returns: a guint containing a hash for the icon, suitable for use in a GHashTable or similar data structure.
130 	 */
131 	public static uint hash(void* icon);
132 	
133 	/**
134 	 * Checks if two icons are equal.
135 	 * Params:
136 	 * icon2 = pointer to the second GIcon. [allow-none]
137 	 * Returns: TRUE if icon1 is equal to icon2. FALSE otherwise.
138 	 */
139 	public int equal(IconIF icon2);
140 	
141 	/**
142 	 * Generates a textual representation of icon that can be used for
143 	 * serialization such as when passing icon to a different process or
144 	 * saving it to persistent storage. Use g_icon_new_for_string() to
145 	 * get icon back from the returned string.
146 	 * The encoding of the returned string is proprietary to GIcon except
147 	 * in the following two cases
148 	 *  If icon is a GFileIcon, the returned string is a native path
149 	 *  (such as /path/to/my icon.png) without escaping
150 	 *  if the GFile for icon is a native file. If the file is not
151 	 *  native, the returned string is the result of g_file_get_uri()
152 	 *  (such as sftp://path/to/my%20icon.png).
153 	 *  If icon is a GThemedIcon with exactly one name, the encoding is
154 	 *  simply the name (such as network-server).
155 	 * Virtual: to_tokens
156 	 * Since 2.20
157 	 * Returns: An allocated NUL-terminated UTF8 string or NULL if icon can't be serialized. Use g_free() to free.
158 	 */
159 	public string toString();
160 	
161 	/**
162 	 * Serializes a GIcon into a GVariant. An equivalent GIcon can be retrieved
163 	 * back by calling g_icon_deserialize() on the returned value.
164 	 * As serialization will avoid using raw icon data when possible, it only
165 	 * makes sense to transfer the GVariant between processes on the same machine,
166 	 * (as opposed to over the network), and within the same file system namespace.
167 	 * Since 2.38
168 	 * Returns: a GVariant, or NULL when serialization fails. [transfer full]
169 	 */
170 	public Variant serialize();
171 	
172 	/**
173 	 * Deserializes a GIcon previously serialized using g_icon_serialize().
174 	 * Since 2.38
175 	 * Params:
176 	 * value = a GVariant created with g_icon_serialize()
177 	 * Returns: a GIcon, or NULL when deserialization fails. [transfer full]
178 	 */
179 	public static IconIF deserialize(Variant value);
180 }