aboutsummaryrefslogtreecommitdiff
path: root/src/app-indicator.h
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-02-03 11:26:19 -0600
committerTed Gould <ted@gould.cx>2011-02-03 11:26:19 -0600
commit0faacd13e0e23b202969127e9034605b4fcf90c4 (patch)
tree91d9e8441bda99a520e6bd24a82da1dece1142d0 /src/app-indicator.h
parent19c543fd42571ef3e011db21a6d93e93d7da4483 (diff)
parentb5660e8977f5d4ffa28bfe4cfe30e5d7cf4ce944 (diff)
downloadlibayatana-appindicator-0faacd13e0e23b202969127e9034605b4fcf90c4.tar.gz
libayatana-appindicator-0faacd13e0e23b202969127e9034605b4fcf90c4.tar.bz2
libayatana-appindicator-0faacd13e0e23b202969127e9034605b4fcf90c4.zip
Support the Scroll method for scroll whell support.
Diffstat (limited to 'src/app-indicator.h')
-rw-r--r--src/app-indicator.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/app-indicator.h b/src/app-indicator.h
index 3e159db..abd6699 100644
--- a/src/app-indicator.h
+++ b/src/app-indicator.h
@@ -107,12 +107,18 @@ G_BEGIN_DECLS
String identifier for the #AppIndicator::new-icon-theme-path signal.
*/
+/**
+ APP_INDICATOR_SIGNAL_SCROLL_EVENT:
+
+ String identifier for the #AppIndicator::scroll-event signal.
+*/
#define APP_INDICATOR_SIGNAL_NEW_ICON "new-icon"
#define APP_INDICATOR_SIGNAL_NEW_ATTENTION_ICON "new-attention-icon"
#define APP_INDICATOR_SIGNAL_NEW_STATUS "new-status"
#define APP_INDICATOR_SIGNAL_NEW_LABEL "new-label"
#define APP_INDICATOR_SIGNAL_CONNECTION_CHANGED "connection-changed"
#define APP_INDICATOR_SIGNAL_NEW_ICON_THEME_PATH "new-icon-theme-path"
+#define APP_INDICATOR_SIGNAL_SCROLL_EVENT "scroll-event"
/**
AppIndicatorCategory:
@@ -163,7 +169,7 @@ typedef struct _AppIndicatorPrivate AppIndicatorPrivate;
@new_icon_theme_path: Slot for #AppIndicator::new-icon-theme-path
@new_label: Slot for #AppIndicator::new-label.
@connection_changed: Slot for #AppIndicator::connection-changed.
- @app_indicator_reserved_sw: Reserved for future use.
+ @scroll-event: Slot for #AppIndicator::scroll-event
@app_indicator_reserved_ats: Reserved for future use.
@fallback: Function that gets called to make a #GtkStatusIcon when
there is no Application Indicator area available.
@@ -203,7 +209,12 @@ struct _AppIndicatorClass {
void (* connection_changed) (AppIndicator * indicator,
gboolean connected,
gpointer user_data);
- void (*app_indicator_reserved_sw)(void);
+
+ void (* scroll_event) (AppIndicator * indicator,
+ gint delta,
+ guint direction,
+ gpointer user_data);
+
void (*app_indicator_reserved_ats)(void);
/* Overridable Functions */