~3v1n0/unity/light-shortcuts

« back to all changes in this revision

Viewing changes to tests/test_service_hud.h

  • Committer: Marco Trevisan (Treviño)
  • Date: 2013-04-26 12:41:09 UTC
  • Revision ID: mail@3v1n0.net-20130426124109-t3b2shjah2omiqa2
Unity: Remove all the views, but the Shortcuts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _SERVICE_HUD_H_
2
 
#define _SERVICE_HUD_H_
3
 
 
4
 
#include <UnityCore/GLibDBusServer.h>
5
 
#include <UnityCore/GLibSource.h>
6
 
 
7
 
namespace unity
8
 
{
9
 
namespace service
10
 
{
11
 
 
12
 
class Hud
13
 
{
14
 
public:
15
 
  Hud();
16
 
 
17
 
private:
18
 
  void EmitSignal();
19
 
  GVariant* OnMethodCall(std::string const& method, GVariant *parameters);
20
 
 
21
 
  glib::DBusServer server_;
22
 
  glib::Source::UniquePtr timeout_;
23
 
};
24
 
 
25
 
}
26
 
}
27
 
 
28
 
 
29
 
#endif /* _SERVICE_HUD_H_ */