Add a manual popover menu example

Reproduce the testpopover popover manually, by packing model
buttons into a stack in a popover.
This commit is contained in:
Matthias Clasen
2014-10-23 21:55:20 -04:00
parent 83976c47f8
commit a8cc4787d2
3 changed files with 664 additions and 22 deletions

View File

@ -9,7 +9,8 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/gdk \
$(GTK_DEBUG_FLAGS) \
$(GTK_DEP_CFLAGS) \
$(GDK_DEP_CFLAGS)
$(GDK_DEP_CFLAGS) \
-pthread
DEPS = \
$(top_builddir)/gtk/libgtk-3.la
@ -19,8 +20,12 @@ LDADD = \
$(top_builddir)/gdk/libgdk-3.la \
$(GTK_DEP_LIBS) \
$(GDK_DEP_LIBS) \
-lgmodule-2.0 \
-lm
AM_LDFLAGS = -Wl,--export-dynamic -pthread
if USE_X11
testsocket_programs = testsocket testsocket_child
endif