diff options
author | Ryan Lortie <[email protected]> | 2011-03-29 23:41:17 +0530 |
---|---|---|
committer | infirit <[email protected]> | 2015-07-14 13:08:19 +0200 |
commit | e9c7cb073d30e30aeac0a2e9fe3c21f1d0f49cd0 (patch) | |
tree | a03cf5f3b1cd91ce3042fba7c5f32f48c6cf2fea /applets/notification_area/na-tray.h | |
parent | be334f90f603df90bee15d43f5f67a052fa07ff2 (diff) | |
download | mate-panel-e9c7cb073d30e30aeac0a2e9fe3c21f1d0f49cd0.tar.bz2 mate-panel-e9c7cb073d30e30aeac0a2e9fe3c21f1d0f49cd0.tar.xz |
notification applet: support fixed-sized icons
Add a new _NET_SYSTEM_TRAY_ICON_SIZE property that is set to the value
of the "icon-size" style property. The result is that all icons in the
tray will be hinted to draw themselves with exactly this pixel size
(16x16, for example).
Bug #645232
Conflicts:
applets/notification_area/na-tray-manager.c
applets/notification_area/na-tray-manager.h
applets/notification_area/na-tray.h
Diffstat (limited to 'applets/notification_area/na-tray.h')
-rw-r--r-- | applets/notification_area/na-tray.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/applets/notification_area/na-tray.h b/applets/notification_area/na-tray.h index 2b642d4a..3e69ce6d 100644 --- a/applets/notification_area/na-tray.h +++ b/applets/notification_area/na-tray.h @@ -29,9 +29,7 @@ #endif #include <gtk/gtk.h> -#ifdef __cplusplus -extern "C" { -#endif +G_BEGIN_DECLS #define NA_TYPE_TRAY (na_tray_get_type ()) #define NA_TRAY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NA_TYPE_TRAY, NaTray)) @@ -62,10 +60,17 @@ NaTray *na_tray_new_for_screen (GdkScreen *screen, void na_tray_set_orientation (NaTray *tray, GtkOrientation orientation); GtkOrientation na_tray_get_orientation (NaTray *tray); +void na_tray_set_padding (NaTray *tray, + gint padding); +void na_tray_set_icon_size (NaTray *tray, + gint icon_size); +void na_tray_set_colors (NaTray *tray, + GdkColor *fg, + GdkColor *error, + GdkColor *warning, + GdkColor *success); void na_tray_force_redraw (NaTray *tray); -#ifdef __cplusplus -} -#endif +G_END_DECLS #endif /* __NA_TRAY_H__ */ |