~jamalta/unity/683241-recyclebin-icon

« back to all changes in this revision

Viewing changes to src/PanelHomeButton.h

  • Committer: Jamal Fanaian
  • Date: 2010-12-07 08:21:28 UTC
  • mfrom: (648.1.20 unity)
  • Revision ID: j@jamalfanaian.com-20101207082128-tfket8npcmaqj82x
mergedĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <NuxImage/CairoGraphics.h>
25
25
#include <NuxGraphics/GraphicsEngine.h>
26
26
 
27
 
class PanelHomeButton : public nux::TextureArea
 
27
#include "Introspectable.h"
 
28
 
 
29
class PanelHomeButton : public nux::TextureArea, public Introspectable
28
30
{
29
31
public:
30
32
  PanelHomeButton ();
32
34
 
33
35
  void RecvMouseClick (int x, int y, unsigned long button_flags, unsigned long key_flags);
34
36
 
 
37
protected:
 
38
  const gchar* GetName ();
 
39
  void AddProperties (GVariantBuilder *builder);
 
40
 
35
41
private:
36
42
  void Refresh ();
37
43