blob: dcecbdefd1f44b44efcbafd55800560a6a645f90 (
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
37
38
39
40
41
42
43
44
|
From 9f1228fad3e549fd0ead4fd37573e02b874d1661 Mon Sep 17 00:00:00 2001
From: Grigory Kletsko <grigory.kletsko@cogentembedded.com>
Date: Tue, 13 Dec 2016 18:20:11 +0300
Subject: [PATCH] Add call for setting fullscreen with IVI
---
clients/toytoolkit.h | 3 +++
clients/window.c | 6 ++++++
2 files changed, 9 insertions(+)
diff --git a/clients/toytoolkit.h b/clients/toytoolkit.h
index d0e73ab..1759a52 100644
--- a/clients/toytoolkit.h
+++ b/clients/toytoolkit.h
@@ -384,6 +384,9 @@ window_set_fullscreen(struct window *window, int fullscreen);
void
window_set_fullscreen_at_output(struct window *window, int fullscreen, struct output *output);
+void
+window_set_fullscreen_hack(struct window *window, int fullscreen);
+
int
window_is_maximized(struct window *window);
diff --git a/clients/window.c b/clients/window.c
index 820cd78..638e2ff 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -4391,6 +4391,12 @@ window_set_fullscreen_at_output(struct window *window, int fullscreen, struct ou
xdg_surface_unset_fullscreen(window->xdg_surface);
}
+void
+window_set_fullscreen_hack(struct window *window, int fullscreen)
+{
+ window->fullscreen = fullscreen;
+}
+
int
window_is_maximized(struct window *window)
{
--
2.7.4
|