aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-02-15 14:22:01 -0600
committerTed Gould <ted@gould.cx>2010-02-15 14:22:01 -0600
commitd970c855552615e22881b8ebb57ecc5de6481b8a (patch)
tree89f81337f3ff01f97056c951f7a1a30aca2c1f12
parent95f07c4e018e2a257a765ee7f71c777d555f548d (diff)
downloadlibayatana-indicator-d970c855552615e22881b8ebb57ecc5de6481b8a.tar.gz
libayatana-indicator-d970c855552615e22881b8ebb57ecc5de6481b8a.tar.bz2
libayatana-indicator-d970c855552615e22881b8ebb57ecc5de6481b8a.zip
Letz get ur prototypes
-rw-r--r--libindicator/indicator-desktop-shortcuts.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/libindicator/indicator-desktop-shortcuts.h b/libindicator/indicator-desktop-shortcuts.h
index 190c541..10cacff 100644
--- a/libindicator/indicator-desktop-shortcuts.h
+++ b/libindicator/indicator-desktop-shortcuts.h
@@ -39,15 +39,34 @@ G_BEGIN_DECLS
typedef struct _IndicatorDesktopShortcuts IndicatorDesktopShortcuts;
typedef struct _IndicatorDesktopShortcutsClass IndicatorDesktopShortcutsClass;
+/**
+ IndicatorDesktopShortcutsClass:
+ @parent_class: Space for #GObjectClass
+
+ The vtable for our precious #IndicatorDesktopShortcutsClass.
+*/
struct _IndicatorDesktopShortcutsClass {
GObjectClass parent_class;
};
+/**
+ IndicatorDesktopShortcuts:
+ @parent: The parent data from #GObject
+
+ The public data for an instance of the class
+ #IndicatorDesktopShortcuts.
+*/
struct _IndicatorDesktopShortcuts {
GObject parent;
};
-GType indicator_desktop_shortcuts_get_type (void);
+GType indicator_desktop_shortcuts_get_type (void);
+IndicatorDesktopShortcuts * indicator_desktop_shortcuts_new (const gchar * file,
+ const gchar * identity);
+const gchar ** indicator_desktop_shortcuts_get_nicks (IndicatorDesktopShortcuts * ids);
+const gchar * indicator_desktop_shortcuts_nick_get_name (IndicatorDesktopShortcuts * ids,
+ const gchar * nick);
+
G_END_DECLS