~marcobiscaro2112/unity/custom-bg

« back to all changes in this revision

Viewing changes to hud/HudView.h

  • Committer: Marco Biscaro
  • Date: 2012-07-12 12:05:07 UTC
  • mfrom: (2353.2.144 unity)
  • Revision ID: marcobiscaro2112@gmail.com-20120712120507-7u9sb43bqon88ifl
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
  void OnSearchChanged(std::string const& search_string);
72
72
  virtual long PostLayoutManagement(long LayoutResult);
73
73
 
74
 
  IntrospectableList introspectable_children_;
75
 
 
76
74
private:
77
75
  void OnMouseButtonDown(int x, int y, unsigned long button, unsigned long key);
78
76
  void OnKeyDown (unsigned long event_type, unsigned long event_keysym,
89
87
 
90
88
  std::string GetName() const;
91
89
  void AddProperties(GVariantBuilder* builder);
92
 
  IntrospectableList const& GetIntrospectableChildren();
 
90
  IntrospectableList GetIntrospectableChildren();
93
91
 
94
92
private:
95
93
  UBusManager ubus;
97
95
  nux::ObjectPtr<nux::Layout> content_layout_;
98
96
  nux::ObjectPtr<nux::VLayout> button_views_;
99
97
  std::list<HudButton::Ptr> buttons_;
 
98
  IntrospectableList introspectable_children_;
100
99
 
101
100
  //FIXME - replace with dash search bar once modifications to dash search bar land
102
101
  SearchBar::Ptr search_bar_;