From 360f533eb6e244dae4cc748618bd77348f206f46 Mon Sep 17 00:00:00 2001 From: Gian Mario Tagliaretti Date: Mon, 9 Mar 2009 23:35:05 +0000 Subject: Create a dedicated Changelog for the docs and move the latest entries in 2009-03-09 Gian Mario Tagliaretti * docs/reference/Changelog: Create a dedicated Changelog for the docs and move the latest entries in there. 2009-03-09 Gian Mario Tagliaretti * docs/Makefile.am: * docs/reference/pygio-classes.xml: * docs/reference/pygio-emblemedicon.xml: * docs/reference/pygio-icon.xml: * docs/reference/pygio-emblem.xml: Add gio.EmblemedIcon and gio.Icon in docs, fix a couple of typos. svn path=/trunk/; revision=1026 --- docs/reference/pygio-icon.xml | 124 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 docs/reference/pygio-icon.xml (limited to 'docs/reference/pygio-icon.xml') diff --git a/docs/reference/pygio-icon.xml b/docs/reference/pygio-icon.xml new file mode 100644 index 0000000..607dad3 --- /dev/null +++ b/docs/reference/pygio-icon.xml @@ -0,0 +1,124 @@ + + + + + + gio.Icon + Interface for icons. + + + + Synopsis + + + gio.Icon + gobject.GInterface + + + equal + icon2 + + + + + + + + Ancestry + ++-- gobject.GInterface + +-- gio.Icon + + + + + + Known Derived Interfaces + + gio.Icon is required by + gio.LoadableIcon. + + + + + Known Implementation + + gio.Icon is implemented by + gio.ThemedIcon, + gio.FileIcon, + gio.Emblem, + gio.EmblemedIcon. + + + + + Description + + + gio.Icon + is a very minimal interface for icons. It provides functions for checking + the equality of two icons, hashing of icons and serializing an icon to and from strings. + + + gio.Icon + does not provide the actual pixmap for the icon as this is out of GIO's + scope, however implementations of + gio.Icon + may contain the name of an icon (see + gio.ThemedIcon), + or the path to an icon (see + gio.LoadableIcon). + + + + To check if two GIcons are equal, see + gio.Icon.equal(). + + + + + + Methods + + + gio.Emblem.equal + + + equal + icon2 + + + + + icon2 : + the second + gio.Icon + + + + + + The equal() method checks if two icons are equal. + + + + -- cgit