~unity-team/unity/trunk

« back to all changes in this revision

Viewing changes to unity-private/panel/panel-indicator-object-entry-view.vala

  • Committer: Neil Jagdish Patel
  • Date: 2010-09-22 18:16:13 UTC
  • mfrom: (539.1.1 gtk-action-stuff)
  • Revision ID: neil.patel@canonical.com-20100922181613-lqbop1n2q0zw9k79
[merge] Support new libindicator API

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
  {
24
24
    public unowned Indicator.ObjectEntry entry { get; construct; }
25
25
    public signal void menu_moved (Gtk.MenuDirectionType type);
 
26
    public signal void entry_shown ();
26
27
 
27
28
    private Clutter.CairoTexture bg;
28
29
    public  Ctk.Image     image;
469
470
          entry.menu.move_current.connect (menu_key_moved);
470
471
          entry.menu.notify["visible"].connect (menu_vis_changed);
471
472
          bg.opacity = 255;
 
473
 
 
474
          entry_shown ();
472
475
        }
473
476
    }
474
477