aboutsummaryrefslogtreecommitdiff
path: root/libindicator/indicator.h
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-21 14:15:22 -0500
committerTed Gould <ted@canonical.com>2009-04-21 14:15:22 -0500
commit61bc03afdadb206839db4c0eb0631104a1a2ff3b (patch)
tree36e2b4b00ac54e440cf7f13f3e1469a67b250321 /libindicator/indicator.h
parent43cf92a1e3306bf142f98ebc0cc4b2c636271c0d (diff)
downloadlibayatana-indicator-61bc03afdadb206839db4c0eb0631104a1a2ff3b.tar.gz
libayatana-indicator-61bc03afdadb206839db4c0eb0631104a1a2ff3b.tar.bz2
libayatana-indicator-61bc03afdadb206839db4c0eb0631104a1a2ff3b.zip
Creating an indicator lib to make sure we can attach all these things together.
Diffstat (limited to 'libindicator/indicator.h')
-rw-r--r--libindicator/indicator.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/libindicator/indicator.h b/libindicator/indicator.h
new file mode 100644
index 0000000..9afaa4f
--- /dev/null
+++ b/libindicator/indicator.h
@@ -0,0 +1,17 @@
+
+#ifndef __LIBINDICATOR_INDICATOR_H_SEEN__
+#define __LIBINDICATOR_INDICATOR_H_SEEN__ 1
+
+#include <gtk/gtk.h>
+
+#define INDICATOR_GET_LABEL_S "get_label"
+GtkLabel * get_label (void);
+
+#define INDICATOR_GET_ICON_S "get_icon"
+GtkImage * get_icon (void);
+
+#define INDICATOR_GET_MENU_S "get_menu"
+GtkMenu * get_menu (void);
+
+#endif /* __LIBINDICATOR_INDICATOR_H_SEEN__ */
+