File: test-menu-popup.c

package info (click to toggle)
gtk4-layer-shell 1.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 616 kB
  • sloc: ansic: 3,537; xml: 417; python: 333; makefile: 9
file content (33 lines) | stat: -rw-r--r-- 813 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
28
29
30
31
32
33
#include "integration-test-common.h"

static GtkWindow *window;
static GtkWidget *dropdown;
static const char *options[] = {"Foo", "Bar", "Baz", NULL};

static void callback_0()
{
    EXPECT_MESSAGE(zwlr_layer_shell_v1 .get_layer_surface);

    // The popup is weirdly slow to open, so slow the tests down
    step_time = 600;

    window = GTK_WINDOW(gtk_window_new());
    dropdown = gtk_drop_down_new_from_strings(options);
    gtk_window_set_child(window, dropdown);
    gtk_layer_init_for_window(window);
    gtk_window_present(window);
}

static void callback_1()
{
    EXPECT_MESSAGE(xdg_wm_base .get_xdg_surface);
    EXPECT_MESSAGE(xdg_surface .get_popup);
    EXPECT_MESSAGE(xdg_popup .grab);

    g_signal_emit_by_name (dropdown, "activate", NULL);
}

TEST_CALLBACKS(
    callback_0,
    callback_1,
)