2000-12-21 01:53:39 +00:00
|
|
|
## Makefile.am for gtk+/tests
|
|
|
|
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_builddir)/gdk \
|
2001-06-07 16:40:01 +00:00
|
|
|
-I$(top_srcdir)/gdk \
|
2002-10-13 23:22:33 +00:00
|
|
|
-DG_DISABLE_DEPRECATED \
|
|
|
|
-DGDK_PIXBUF_DISABLE_DEPRECATED \
|
|
|
|
-DGDK_DISABLE_DEPRECATED \
|
add -DGTK_DISABLE_DEPRECATED. #undef it at the top of gtktypebuiltins.c.
Tue Nov 19 17:05:51 2002 Manish Singh <yosh@gimp.org>
* gtk/Makefile.am: add -DGTK_DISABLE_DEPRECATED. #undef it at the
top of gtktypebuiltins.c.
* gtk/gtkclist.c
* gtk/gtkcombo.c
* gtk/gtkctree.c
* gtk/gtklist.c
* gtk/gtklistitem.c
* gtk/gtkoldeditable.c
* gtk/gtkpixmap.c
* gtk/gtkpreview.c
* gtk/gtksignal.c
* gtk/gtktext.c
* gtk/gtktipsquery.c
* gtk/gtktree.c
* gtk/gtktreeitem.c
* gtk/gtktypeutils.c: #undef GTK_DISABLE_DEPRECATED, deprecated widgets
and compat code.
* gtk/gtkcolorsel.c: move gtk_color_selection_set_color implementation
to set_color_internal, and use that. The deprecated function now
merely wraps it.
* gtk/gtkfontsel.c: same as above, except with
gtk_font_selection_get_font.
* gtk/gtknotebook.c: same as above, except with
gtk_notebook_set_homogeneous, and gtk_notebook_set_tab_{border,
hborder,vborder}.
* gtk/gtkprogressbar.c: same as above, except with
gtk_progress_bar_set_{bar_stype,discrete_blocks,activity_step,
activity_blocks}.
* gtk/gtkstyle.c: same as above, except with gtk_style_get_font.
* gtk/gtkwidget.c: same as above, except with gtk_widget_set_usize.
* gtk/gtkitemfactory.h: declare compatibility functions for deprecated
GtkMenuFactory stuff if GTK_COMPILATION, since they are used
internally by the compat code.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
use of deprecated gtk_check_menu_item_set_show_toggle (it is a noop
now).
* gtk/gtkmain.c: replaced deprecated GTK_TYPE_* with G_TYPE_*.
* gtk/gtkobject.c: replaced various deprecated functions. In set and
get_property, use g_object_{set,get}_data with "user_data" instead
of gtk_object_{set,get}_user_data.
* gtk/gtkprogress.h: API declared if GTK_COMPILATION
* gtk/gtkprogress.c: port get_type to GObject API.
* gtk/gtktypeutils.h: declare GtkArg stuff and gtk_type_init,
if GTK_COMPILATION.
* gtk/gtkwidget.c: define gtk_widget_queue_clear in terms of
gtk_widget_queue_draw instead of the other way around.
* tests/Makefile.am: define -DGTK_DISABLE_DEPRECATED
* tests/testgtk.c
* tests/testselection.c
* tests/testsocket.c: #undef GTK_DISABLE_DEPRECATED, makes use of
deprecated stuff.
2002-11-20 01:07:33 +00:00
|
|
|
-DGTK_DISABLE_DEPRECATED \
|
2000-12-21 01:53:39 +00:00
|
|
|
@GTK_DEBUG_FLAGS@ \
|
2001-05-03 20:11:14 +00:00
|
|
|
@GTK_DEP_CFLAGS@ \
|
2000-12-21 01:53:39 +00:00
|
|
|
@STRIP_END@
|
|
|
|
|
|
|
|
DEPS = \
|
2002-03-05 21:04:09 +00:00
|
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \
|
|
|
|
$(top_builddir)/gdk/@gdktargetlib@ \
|
2000-12-21 01:53:39 +00:00
|
|
|
$(top_builddir)/gtk/@gtktargetlib@
|
|
|
|
|
|
|
|
LDADDS = @STRIP_BEGIN@ \
|
2002-03-05 21:04:09 +00:00
|
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \
|
2000-12-21 01:53:39 +00:00
|
|
|
$(top_builddir)/gdk/@gdktargetlib@ \
|
|
|
|
$(top_builddir)/gtk/@gtktargetlib@ \
|
|
|
|
@STRIP_END@
|
|
|
|
|
2001-04-18 18:28:19 +00:00
|
|
|
if USE_X11
|
|
|
|
testsocket_programs = testsocket testsocket_child
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2002-05-05 00:59:42 +00:00
|
|
|
noinst_PROGRAMS = \
|
|
|
|
simple \
|
|
|
|
testcalendar \
|
|
|
|
testdnd \
|
|
|
|
testgtk \
|
|
|
|
testinput \
|
2002-11-08 20:16:43 +00:00
|
|
|
testmenus \
|
2002-05-05 00:59:42 +00:00
|
|
|
testmultidisplay \
|
|
|
|
testmultiscreen \
|
|
|
|
testrgb \
|
|
|
|
testselection \
|
|
|
|
$(testsocket_programs) \
|
|
|
|
testtext \
|
|
|
|
testtextbuffer \
|
|
|
|
testtreeedit \
|
|
|
|
testtreeview \
|
|
|
|
testtreefocus \
|
|
|
|
testtreeflow \
|
|
|
|
testtreecolumns \
|
|
|
|
testtreesort \
|
|
|
|
treestoretest \
|
|
|
|
testxinerama \
|
|
|
|
pixbuf-read \
|
|
|
|
pixbuf-lowmem \
|
|
|
|
pixbuf-randomly-modified \
|
|
|
|
pixbuf-random
|
2000-12-21 01:53:39 +00:00
|
|
|
|
2001-04-03 18:48:46 +00:00
|
|
|
simple_DEPENDENCIES = $(TEST_DEPS)
|
|
|
|
testcalendar_DEPENDENCIES = $(TEST_DEPS)
|
|
|
|
testdnd_DEPENDENCIES = $(TEST_DEPS)
|
|
|
|
testgtk_DEPENDENCIES = $(TEST_DEPS)
|
|
|
|
testinput_DEPENDENCIES = $(TEST_DEPS)
|
2002-11-08 20:16:43 +00:00
|
|
|
testmenus_DEPENDENCIES = $(TEST_DEPS)
|
2002-04-30 20:17:36 +00:00
|
|
|
testmultidisplay_DEPENDENCIES = $(TEST_DEPS)
|
|
|
|
testmultiscreen_DEPENDENCIES = $(TEST_DEPS)
|
2001-04-03 18:48:46 +00:00
|
|
|
testrgb_DEPENDENCIES = $(TEST_DEPS)
|
|
|
|
testselection_DEPENDENCIES = $(TEST_DEPS)
|
2001-04-18 18:28:19 +00:00
|
|
|
testsocket_DEPENDENCIES = $(DEPS)
|
|
|
|
testsocket_child_DEPENDENCIES = $(DEPS)
|
2001-04-03 18:48:46 +00:00
|
|
|
testtext_DEPENDENCIES = $(TEST_DEPS)
|
|
|
|
testtextbuffer_DEPENDENCIES = $(TEST_DEPS)
|
2001-10-26 18:12:34 +00:00
|
|
|
testtreeedit_DEPENDENCIES = $(DEPS)
|
2000-12-21 01:53:39 +00:00
|
|
|
testtreeview_DEPENDENCIES = $(DEPS)
|
2001-03-08 21:36:34 +00:00
|
|
|
testtreefocus_DEPENDENCIES = $(DEPS)
|
2001-10-18 18:58:47 +00:00
|
|
|
testtreeflow_DEPENDENCIES = $(DEPS)
|
2001-03-08 21:36:34 +00:00
|
|
|
testtreecolumns_DEPENDENCIES = $(DEPS)
|
2001-03-28 01:54:14 +00:00
|
|
|
testtreesort_DEPENDENCIES = $(DEPS)
|
2001-04-03 18:48:46 +00:00
|
|
|
treestoretest_DEPENDENCIES = $(TEST_DEPS)
|
2002-04-30 18:32:08 +00:00
|
|
|
testxinerama_DEPENDENCIES = $(TEST_DEPS)
|
2000-12-21 01:53:39 +00:00
|
|
|
|
2001-04-03 18:48:46 +00:00
|
|
|
simple_LDADD = $(LDADDS)
|
|
|
|
testcalendar_LDADD = $(LDADDS)
|
|
|
|
testdnd_LDADD = $(LDADDS)
|
|
|
|
testgtk_LDADD = $(LDADDS)
|
|
|
|
testinput_LDADD = $(LDADDS)
|
2002-11-08 20:16:43 +00:00
|
|
|
testmenus_LDADD = $(LDADDS)
|
2002-04-30 20:17:36 +00:00
|
|
|
testmultidisplay_LDADD = $(LDADDS)
|
|
|
|
testmultiscreen_LDADD = $(LDADDS)
|
2001-04-03 18:48:46 +00:00
|
|
|
testrgb_LDADD = $(LDADDS)
|
|
|
|
testselection_LDADD = $(LDADDS)
|
2001-04-18 18:28:19 +00:00
|
|
|
testsocket_LDADD = $(LDADDS)
|
|
|
|
testsocket_child_LDADD = $(LDADDS)
|
2001-04-03 18:48:46 +00:00
|
|
|
testtextbuffer_LDADD = $(LDADDS)
|
2001-09-25 16:44:39 +00:00
|
|
|
testtreeedit_LDADD = $(LDADDS)
|
2000-12-21 01:53:39 +00:00
|
|
|
testtreeview_LDADD = $(LDADDS)
|
2001-03-08 21:36:34 +00:00
|
|
|
testtreefocus_LDADD = $(LDADDS)
|
2001-10-18 18:58:47 +00:00
|
|
|
testtreeflow_LDADD = $(LDADDS)
|
2001-02-28 00:35:25 +00:00
|
|
|
testtreecolumns_LDADD = $(LDADDS)
|
2001-03-28 01:54:14 +00:00
|
|
|
testtreesort_LDADD = $(LDADDS)
|
2001-04-03 18:48:46 +00:00
|
|
|
testtext_LDADD = $(LDADDS)
|
|
|
|
treestoretest_LDADD = $(LDADDS)
|
2002-04-30 18:32:08 +00:00
|
|
|
testxinerama_LDADD = $(LDADDS)
|
2002-05-05 00:59:42 +00:00
|
|
|
pixbuf_read_LDADD = $(LDADDS)
|
|
|
|
pixbuf_lowmem_LDADD = $(LDADDS)
|
|
|
|
pixbuf_randomly_modified_LDADD = $(LDADDS)
|
|
|
|
pixbuf_random_LDADD = $(LDADDS)
|
2001-04-03 18:48:46 +00:00
|
|
|
|
2001-05-03 00:46:19 +00:00
|
|
|
testgtk_SOURCES = \
|
2001-08-26 22:23:28 +00:00
|
|
|
prop-editor.c \
|
|
|
|
testgtk.c
|
2001-05-03 00:46:19 +00:00
|
|
|
|
2001-09-25 16:44:39 +00:00
|
|
|
testtreeedit_SOURCES = \
|
|
|
|
testtreeedit.c
|
|
|
|
|
2001-05-03 00:46:19 +00:00
|
|
|
testtreeview_SOURCES = \
|
|
|
|
prop-editor.c \
|
|
|
|
testtreeview.c
|
|
|
|
|
2001-05-22 00:11:10 +00:00
|
|
|
testtext_SOURCES = \
|
|
|
|
prop-editor.c \
|
|
|
|
testtext.c
|
|
|
|
|
2001-07-03 14:14:30 +00:00
|
|
|
testsocket_SOURCES = \
|
|
|
|
testsocket.c \
|
|
|
|
testsocket_common.c
|
|
|
|
|
|
|
|
testsocket_child_SOURCES = \
|
|
|
|
testsocket_child.c \
|
|
|
|
testsocket_common.c
|
|
|
|
|
2001-09-18 13:26:52 +00:00
|
|
|
EXTRA_DIST = @STRIP_BEGIN@ \
|
2001-05-03 00:46:19 +00:00
|
|
|
prop-editor.h \
|
2001-04-03 18:48:46 +00:00
|
|
|
testgtk.1 \
|
|
|
|
testgtkrc \
|
|
|
|
testgtkrc2 \
|
|
|
|
circles.xbm \
|
|
|
|
3DRings.xpm \
|
|
|
|
FilesQueue.xpm \
|
|
|
|
Modeller.xpm \
|
|
|
|
check-y.xpm \
|
|
|
|
check-n.xpm \
|
|
|
|
marble.xpm \
|
|
|
|
test.xpm \
|
|
|
|
check-y.xpm \
|
|
|
|
check-n.xpm \
|
|
|
|
test.xpm \
|
|
|
|
@STRIP_END@
|
|
|
|
|
2001-02-28 00:35:25 +00:00
|
|
|
|