File: test-hide-and-show.c

package info (click to toggle)
gtk4-layer-shell 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 852 kB
  • sloc: ansic: 5,701; python: 421; xml: 417; makefile: 10
file content (27 lines) | stat: -rw-r--r-- 656 bytes parent folder | download
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
#include "integration-test-common.h"

GtkWindow* window;

static void callback_0() {
    window = create_default_window();
    gtk_layer_init_for_window(window);
    gtk_window_present(window);
}

static void callback_1() {
    EXPECT_MESSAGE(zwlr_layer_surface_v1 .destroy);
    gtk_widget_set_visible(GTK_WIDGET(window), FALSE);
}

static void callback_2() {
    EXPECT_MESSAGE(zwlr_layer_shell_v1 .get_layer_surface);
    EXPECT_MESSAGE(zwlr_layer_surface_v1 .configure);
    EXPECT_MESSAGE(zwlr_layer_surface_v1 .ack_configure);
    gtk_widget_set_visible(GTK_WIDGET(window), TRUE);
}

TEST_CALLBACKS(
    callback_0,
    callback_1,
    callback_2,
)