forked from AuroraMiddleware/gtk
07c8fd9997
This triggers a critical warning in gtk_widget_snapshot.
64 lines
1.2 KiB
C
64 lines
1.2 KiB
C
#include <gtk/gtk.h>
|
|
#include <locale.h>
|
|
#include "gdk/gdkeventsprivate.h"
|
|
|
|
static gboolean
|
|
pop_up (gpointer data)
|
|
{
|
|
gtk_popover_popup (GTK_POPOVER (data));
|
|
|
|
return G_SOURCE_REMOVE;
|
|
}
|
|
|
|
static gboolean
|
|
tickle (gpointer data)
|
|
{
|
|
GtkWidget *label;
|
|
|
|
label = gtk_widget_get_first_child (GTK_WIDGET (data));
|
|
gtk_widget_set_valign (label, GTK_ALIGN_START);
|
|
|
|
return G_SOURCE_REMOVE;
|
|
}
|
|
|
|
static gboolean
|
|
stop (gpointer data)
|
|
{
|
|
gtk_main_quit ();
|
|
|
|
return G_SOURCE_REMOVE;
|
|
}
|
|
|
|
static void
|
|
test_show_popover (void)
|
|
{
|
|
GtkWidget *window;
|
|
GtkWidget *button;
|
|
GtkWidget *popover;
|
|
|
|
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
|
button = gtk_menu_button_new ();
|
|
popover = gtk_popover_new (NULL);
|
|
gtk_container_add (GTK_CONTAINER (popover), gtk_label_new ("Nu?"));
|
|
gtk_menu_button_set_popover (GTK_MENU_BUTTON (button), popover);
|
|
gtk_container_add (GTK_CONTAINER (window), button);
|
|
|
|
gtk_window_present (GTK_WINDOW (window));
|
|
|
|
g_timeout_add (1000, pop_up, popover);
|
|
g_timeout_add (2000, tickle, popover);
|
|
g_timeout_add (3000, stop, NULL);
|
|
|
|
gtk_main ();
|
|
}
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
gtk_test_init (&argc, &argv);
|
|
|
|
g_test_add_func ("/popover/show", test_show_popover);
|
|
|
|
return g_test_run ();
|
|
}
|