~dylanmccall/unity/panel-drag-frontmost-maximized

« back to all changes in this revision

Viewing changes to src/PlacesGroup.h

  • Committer: Gord Allott
  • Date: 2011-03-10 15:21:45 UTC
  • mfrom: (918.8.5 keynav-fixes-11-03-07)
  • Revision ID: gord.allott@canonical.com-20110310152145-3ur561rrjgl6lwsc
updated keynav support, much better behaviour now

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
  void RecvMouseClick (int x, int y, unsigned long button_flags, unsigned long key_flags);
66
66
  void RecvMouseEnter (int x, int y, unsigned long button_flags, unsigned long key_flags);
67
67
  void RecvMouseLeave (int x, int y, unsigned long button_flags, unsigned long key_flags);
 
68
  void OnLabelActivated (nux::Area *label);
 
69
  void OnLabelFocusChanged (nux::Area *label);
 
70
  void RefreshLabel ();
68
71
 
69
72
private:
70
73
  nux::VLayout *_group_layout;
81
84
  bool  _is_expanded;
82
85
  guint _n_visible_items_in_unexpand_mode;
83
86
  guint _n_total_items;
 
87
  char *_cached_name;
84
88
};
85
89
 
86
90
#endif