~macslow/unity/backported-remote-add-to-5.0

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/HudIcon.h

Merging with upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
  typedef nux::ObjectPtr<IconTexture> Ptr;
54
54
  Icon(nux::BaseTexture* texture, guint width, guint height);
55
55
  Icon(std::string const& icon_name, unsigned int size, bool defer_icon_loading = false);
56
 
  ~Icon();
57
56
 
58
57
protected:
59
58
  void Draw(nux::GraphicsEngine& GfxContext, bool force_draw);
60
59
  void Init();
61
60
 
 
61
  std::string GetName() const;
 
62
 
62
63
  nux::ObjectPtr<nux::BaseTexture> background_;
63
64
  nux::ObjectPtr<nux::BaseTexture> gloss_;
64
65
  nux::ObjectPtr<nux::BaseTexture> edge_;