-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathviewport.c
66 lines (53 loc) · 1.76 KB
/
viewport.c
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
/*
* viewport.c
* Copyright (C) 2023 Igalia S.L.
*
* SPDX-License-Identifier: MIT
*/
#include "../core/cog.h"
typedef struct {
CogViewport *views;
gsize current_index;
} TimeoutData;
static gboolean
on_timeout_tick(TimeoutData *data)
{
if (++data->current_index >= cog_viewport_get_n_views(data->views))
data->current_index = 0;
CogView *view = cog_viewport_get_nth_view(data->views, data->current_index);
g_message("Set visible view %zu <%p>", data->current_index, view);
cog_viewport_set_visible_view(data->views, view);
return G_SOURCE_CONTINUE;
}
int
main(int argc, char *argv[])
{
if (argc < 2) {
g_printerr("Usage: %s <URL> [URL...]\n", argv[0]);
return EXIT_FAILURE;
}
g_set_prgname("viewport");
cog_init(NULL, NULL);
g_autoptr(CogShell) shell = cog_shell_new(g_get_prgname(), FALSE);
g_autoptr(GError) error = NULL;
CogPlatform *platform = cog_platform_get();
if (!cog_platform_setup(platform, shell, NULL, &error))
g_error("Cannot configure platform: %s", error->message);
g_autoptr(CogViewport) viewport = cog_viewport_new();
g_autoptr(GMainLoop) loop = g_main_loop_new(NULL, FALSE);
for (int i = 1; i < argc; i++) {
g_autoptr(CogView) view = cog_view_new(NULL);
cog_platform_init_web_view(platform, WEBKIT_WEB_VIEW(view));
cog_viewport_add(viewport, view);
webkit_web_view_load_uri(WEBKIT_WEB_VIEW(view), argv[i]);
g_message("Created view %p, URI %s", view, argv[i]);
}
TimeoutData data = {
.views = viewport,
.current_index = SIZE_MAX,
};
g_timeout_add_seconds(3, (GSourceFunc) on_timeout_tick, &data);
on_timeout_tick(&data);
g_main_loop_run(loop);
return EXIT_SUCCESS;
}