2000-10-18 15:50:13 +00:00
|
|
|
## Makefile.am for gtk+/demos
|
|
|
|
|
2000-11-13 06:08:17 +00:00
|
|
|
democodedir=$(datadir)/gtk-2.0/demo
|
2000-11-13 04:36:38 +00:00
|
|
|
|
2001-04-18 18:09:18 +00:00
|
|
|
## These should be in the order you want them to appear in the
|
|
|
|
## demo app, which means alphabetized by demo title, not filename
|
2000-10-18 15:50:13 +00:00
|
|
|
demos = @STRIP_BEGIN@ \
|
2001-06-04 23:15:51 +00:00
|
|
|
appwindow.c \
|
2000-10-18 15:50:13 +00:00
|
|
|
button_box.c \
|
voc Pennington <hp@redhat.com>
* gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_previous_line):
(gtk_text_layout_move_iter_to_next_line): fix these two for
invisible text, lots of other stuff still hosed.
* gtk/gtkcolorsel.c (gtk_color_selection_set_change_palette_hook):
new function, replaces the get/set palette stuff. This function
is intended for use by libgnomeui which should set the hook to a
thing which sets the palette in GConf, and we need the
GConf-to-xsettings proxy which will result in the change being
propagated back to the GTK app.
* gtk/gtkaccelgroup.c (gtk_accel_group_add): add note to warning
about unusable signals that it may be because the signal has
parameters.
* gtk/gtkwidget.c (gtk_widget_modify_style): always copy the
style, otherwise gtkrc.c won't know to create a new GtkStyle for
it.
(gtk_widget_modify_color_component): call
gtk_widget_modify_style() so the rc style will get copied.
(gtk_widget_modify_font): ditto
* gtk/gtkrc.c: make a couple variables static
* gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): hide
help button by default, since it does nothing
* gtk/gtkcolorsel.c: add tooltips, work on key navigation, fool
around with UI
* gtk/gtkentry.c (gtk_entry_realize): request enter/leave notify
so we can have tooltips
* gtk/gtkhsv.c (gtk_hsv_realize): request enter/leave notify so we
can have tooltips
* gdk/gdkimage.h: mark gdk_image_new_bitmap with
GDK_ENABLE_BROKEN, because its memory behavior is completely
hosed.
* gtk/gtknotebook.c: remove key press handler, replace with
binding set, add numeric keypad support
* gtk/gtktextview.c (gtk_text_view_class_init): accept KP_Delete
* gtk/gtktext.c (gtk_text_key_press): add a bunch of KP keysyms
* gtk/gtkentry.c (gtk_entry_class_init): accept GDK_KP_Delete in
addition to plain Delete
* gtk/gtktextview.c (gtk_text_view_key_press_event): accept
GDK_KP_Enter in addition to GDK_Return
* gtk/gtkfontsel.c (gtk_font_selection_size_key_press): connect to
activate on entry instead of key press
(gtk_font_selection_on_clist_key_press): get
rid of this signal handler, not needed with new font sel.
* gtk/gtkfilesel.c (gtk_file_selection_key_press): remove a
no-longer-needed emit_stop_by_name(), just return TRUE
* gtk/gtkhscrollbar.c, gtk/gtkvscrollbar.c: remove keybindings
cruft, this widget is no longer focusable.
* gtk/gtkrange.h, gtk/gtkrange.c, gtk/gtkvscale.c,
gtk/gtkhscale.c: Get rid of trough_keys virtual function, add
move_slider action signal, add binding set for vscale/hscale, in
the process support numeric keypad
* gtk/gtkentry.c (gtk_entry_class_init): Add keypad bindings;
make GDK_Return and GDK_KP_Enter activate the entry via
binding set, instead of hardcoded.
2001-04-28 20:18:29 +00:00
|
|
|
colorsel.c \
|
2001-04-18 18:09:18 +00:00
|
|
|
dialog.c \
|
|
|
|
drawingarea.c \
|
2001-10-02 18:54:05 +00:00
|
|
|
editable_cells.c \
|
2001-04-18 18:09:18 +00:00
|
|
|
images.c \
|
2000-10-18 15:50:13 +00:00
|
|
|
item_factory.c \
|
2001-10-02 18:54:05 +00:00
|
|
|
list_store.c \
|
2000-10-18 15:50:13 +00:00
|
|
|
menus.c \
|
|
|
|
panes.c \
|
2001-04-18 18:09:18 +00:00
|
|
|
pixbufs.c \
|
2001-05-18 18:30:59 +00:00
|
|
|
sizegroup.c \
|
2001-05-25 20:41:46 +00:00
|
|
|
stock_browser.c \
|
2000-11-13 06:08:17 +00:00
|
|
|
textview.c \
|
2001-10-02 18:54:05 +00:00
|
|
|
tree_store.c \
|
2000-10-18 15:50:13 +00:00
|
|
|
@STRIP_END@
|
|
|
|
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
2000-11-13 04:36:38 +00:00
|
|
|
-DDEMOCODEDIR="\"$(democodedir)\"" \
|
2000-10-18 15:50:13 +00:00
|
|
|
-I$(top_srcdir) \
|
|
|
|
-I$(top_builddir)/gdk \
|
2001-08-17 14:11:36 +00:00
|
|
|
-DG_DISABLE_DEPRECATED \
|
2001-02-19 20:38:15 +00:00
|
|
|
-DGDK_DISABLE_DEPRECATED \
|
2001-02-03 01:09:41 +00:00
|
|
|
-DGTK_DISABLE_DEPRECATED \
|
2000-10-18 15:50:13 +00:00
|
|
|
@GTK_DEBUG_FLAGS@ \
|
2001-05-03 20:11:14 +00:00
|
|
|
@GTK_DEP_CFLAGS@ \
|
2000-10-18 15:50:13 +00:00
|
|
|
@STRIP_END@
|
|
|
|
|
|
|
|
DEPS = \
|
|
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-1.3.la \
|
|
|
|
$(top_builddir)/gdk/@gdktargetlib@ \
|
|
|
|
$(top_builddir)/gtk/@gtktargetlib@
|
|
|
|
|
|
|
|
LDADDS = @STRIP_BEGIN@ \
|
|
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-1.3.la \
|
|
|
|
$(top_builddir)/gdk/@gdktargetlib@ \
|
|
|
|
$(top_builddir)/gtk/@gtktargetlib@ \
|
|
|
|
@STRIP_END@
|
|
|
|
|
2000-11-13 04:36:38 +00:00
|
|
|
bin_PROGRAMS = gtk-demo
|
2000-10-18 15:50:13 +00:00
|
|
|
|
|
|
|
BUILT_SOURCES = demos.h
|
|
|
|
|
2001-05-05 14:07:45 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
geninclude.pl \
|
|
|
|
$(IMAGEFILES)
|
2000-10-18 15:50:13 +00:00
|
|
|
|
|
|
|
demos.h: $(demos) geninclude.pl
|
|
|
|
(cd $(srcdir) && ./geninclude.pl $(demos) > demos.h)
|
|
|
|
|
2000-11-13 04:36:38 +00:00
|
|
|
gtk_demo_SOURCES = \
|
2000-10-18 15:50:13 +00:00
|
|
|
$(demos) \
|
|
|
|
main.c \
|
|
|
|
demos.h
|
|
|
|
|
2000-11-13 04:36:38 +00:00
|
|
|
gtk_demo_DEPENDENCIES = $(DEPS)
|
|
|
|
gtk_demo_LDADD = $(LDADDS)
|
|
|
|
|
2001-05-07 15:58:47 +00:00
|
|
|
IMAGEFILES= alphatest.png \
|
|
|
|
apple-red.png \
|
2001-04-18 18:09:18 +00:00
|
|
|
background.jpg \
|
2001-05-07 15:58:47 +00:00
|
|
|
floppybuddy.gif \
|
2001-04-18 18:09:18 +00:00
|
|
|
gnome-applets.png \
|
|
|
|
gnome-calendar.png \
|
|
|
|
gnome-foot.png \
|
|
|
|
gnome-gimp.png \
|
|
|
|
gnome-gmush.png \
|
|
|
|
gnome-gsame.png \
|
|
|
|
gnu-keys.png \
|
|
|
|
gtk-logo-rgb.gif
|
|
|
|
|
|
|
|
democode_DATA = $(demos) $(IMAGEFILES)
|