blob: 6baa805958088f49ae1797a03cc2e731b2e8d4c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifndef LIBHOMESCREEN_HPP
#define LIBHOMESCREEN_HPP
#include <vector>
// forward declarations
struct _LibHomeScreenHomescreen;
typedef struct _LibHomeScreenHomescreen LibHomeScreenHomescreen;
typedef struct
{
int x;
int y;
int width;
int height;
} sRectangle;
class LibHomeScreen
{
public:
LibHomeScreen();
~LibHomeScreen();
// these are representing the D-Bus methods:
std::vector<int> getAllSurfacesOfProcess(int pid);
int getSurfaceStatus(int surfaceId);
void hardKeyPressed(int key);
void renderSurfaceToArea(int surfaceId, int layoutArea);
bool renderAppToAreaAllowed(int appCategory, int layoutArea);
void requestSurfaceIdToFullScreen(int surfaceId);
private:
LibHomeScreenHomescreen *mp_libHomeScreenHomescreen_Proxy;
};
#endif // LIBHOMESCREEN_HPP
|