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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/*
* Copyright (C) 2017 Advanced Driver Information Technology Joint Venture GmbH
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee, provided
* that the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation, and that the name of the copyright holders not be used in
* advertising or publicity pertaining to distribution of the software
* without specific, written prior permission. The copyright holders make
* no representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
* SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef WESTON_IVI_SHELL_SRC_IVI_CONTROLLER_H_
#define WESTON_IVI_SHELL_SRC_IVI_CONTROLLER_H_
#include "ivi-wm-server-protocol.h"
#include <ivi-layout-export.h>
/* Convert timespec to milliseconds
*
* \param a timespec
* \return milliseconds
*
* Rounding to integer milliseconds happens always down (floor()).
*/
static inline int64_t
timespec_to_msec(const struct timespec *a)
{
return (int64_t)a->tv_sec * 1000 + a->tv_nsec / 1000000;
}
struct ivisurface {
struct wl_list link;
struct ivishell *shell;
uint32_t update_count;
struct ivi_layout_surface *layout_surface;
const struct ivi_layout_surface_properties *prop;
struct wl_listener property_changed;
struct wl_listener surface_destroy_listener;
struct wl_listener committed;
struct wl_list notification_list;
enum ivi_wm_surface_type type;
uint32_t frame_count;
struct wl_list accepted_seat_list;
};
struct ivishell {
struct weston_compositor *compositor;
const struct ivi_layout_interface *interface;
struct wl_list list_surface;
struct wl_list list_layer;
struct wl_list list_screen;
struct wl_list list_controller;
struct wl_signal ivisurface_created_signal;
struct wl_signal ivisurface_removed_signal;
struct wl_listener surface_created;
struct wl_listener surface_removed;
struct wl_listener surface_configured;
struct wl_listener layer_created;
struct wl_listener layer_removed;
struct wl_listener output_created;
struct wl_listener output_destroyed;
struct wl_listener output_resized;
struct wl_listener destroy_listener;
struct wl_listener client_destroy_listener;
struct wl_array screen_ids;
uint32_t screen_id_offset;
int32_t bkgnd_surface_id;
uint32_t bkgnd_color;
int enable_cursor;
struct ivisurface *bkgnd_surface;
struct weston_layer bkgnd_layer;
struct weston_view *bkgnd_view;
struct weston_transform bkgnd_transform;
struct wl_client *client;
char *ivi_client_name;
char *debug_scopes;
};
#endif /* WESTON_IVI_SHELL_SRC_IVI_CONTROLLER_H_ */
|