~om26er/unity/fix-778256-stable

« back to all changes in this revision

Viewing changes to services/panel-service.h

  • Committer: Neil Jagdish Patel
  • Author(s): Marco Trevisan (Treviño)
  • Date: 2011-09-08 11:53:46 UTC
  • mfrom: (1351.2.28 indicators-redesign)
  • Revision ID: neil.patel@canonical.com-20110908115346-5pkyfkkcavep6p7q
To implement the Desktop DX Indicators Review blueprint [1] and to implement the system indicators ordering requested by design team [2], I've redesigned the way the indicators work in unity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
guint             panel_service_get_n_indicators (PanelService *self);
76
76
 
77
 
IndicatorObject * panel_service_get_indicator (PanelService *self, guint position);
 
77
IndicatorObject * panel_service_get_indicator_nth (PanelService *self, guint position);
 
78
IndicatorObject * panel_service_get_indicator (PanelService *self, const gchar *indicator_id);
 
79
 
 
80
void              panel_service_remove_indicator (PanelService *self, IndicatorObject *indicator);
 
81
 
 
82
void              panel_service_clear_indicators (PanelService *self);
78
83
 
79
84
GVariant        * panel_service_sync          (PanelService *self);
80
85