forked from AuroraMiddleware/gtk
368f15ca59
2005-02-24 Owen Taylor <otaylor@redhat.com> * gdk/gdkwindow.c: Use cairo_set_device_offset(). * gdk/win32/gdkdrawable-win32.[ch] gdk/win32/gdkwindow-win32.c gdk/win32/gdkpixmap-win32.c: Add_gdk_win32_drawable_acquire/release_dc() to get a DC for the drawable. Add _gdk_drawable_win32_finish() to clean up resources when a drawable is destroyed. * gdk/win32/gdkgc-win32.c gdk/win32/gdkdrawable-win32.c (blit_from_pixmap) gdk/win32/gdkprivate-win32.h : Use acquire/release_dc when getting a DC to use with a GC or for blitting from a pixmap. * gdk/win32/gdkdrawable-win32.[ch]: Implement ref_cairo_surface() * gdk/win32/gdkpango-win32.c gdk/win32/gdkdrawable-win32.c Makefile.am: Remove gdk_screen_get_pango_context(), draw_glyph[_transformed] implementations. * gdk/win32/gdkdrawable-win32.c: Remove gdk_draw_rectangle_alpha_libgtk_only()
81 lines
1.4 KiB
Makefile
81 lines
1.4 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgdkincludedir = $(includedir)/gtk-2.0/gdk
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"Gdk\" \
|
|
-DINSIDE_GDK_WIN32 \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GDK_DEP_CFLAGS) \
|
|
$(GDK_WIN32_EXTRA_CFLAGS)\
|
|
-DGDK_COMPILATION
|
|
|
|
LDADDS = $(GDK_DEP_LIBS)
|
|
|
|
if HAVE_WINTAB
|
|
libwntab32x_a = .libs/libwntab32x.a
|
|
|
|
.libs/libwntab32x.a: $(WINTAB_LIB)
|
|
cp $< $@
|
|
endif
|
|
|
|
if HAVE_IE55
|
|
libie55uuid_a = .libs/libie55uuid.a
|
|
|
|
.libs/libie55uuid.a: $(IE55_UUID_LIB)
|
|
cp $< $@
|
|
endif
|
|
|
|
noinst_DATA = $(libwntab32x_a) $(libie55uuid_a)
|
|
|
|
noinst_LTLIBRARIES = libgdk-win32.la
|
|
|
|
SUBDIRS=rc
|
|
|
|
EXTRA_DIST = \
|
|
bdfcursor.c \
|
|
makefile.msc \
|
|
libie55uuid.la \
|
|
libwntab32x.la
|
|
|
|
libgdk_win32_la_SOURCES = \
|
|
xcursors.h \
|
|
gdkcolor-win32.c \
|
|
gdkcursor-win32.c \
|
|
gdkdisplay-win32.c \
|
|
gdkdnd-win32.c \
|
|
gdkdrawable-win32.c \
|
|
gdkdrawable-win32.h \
|
|
gdkevents-win32.c \
|
|
gdkfont-win32.c \
|
|
gdkgc-win32.c \
|
|
gdkgeometry-win32.c \
|
|
gdkglobals-win32.c \
|
|
gdkim-win32.c \
|
|
gdkimage-win32.c \
|
|
gdkinput.c \
|
|
gdkinput-win32.c \
|
|
gdkinput-win32.h \
|
|
gdkkeys-win32.c \
|
|
gdkmain-win32.c \
|
|
gdkpixmap-win32.c \
|
|
gdkpixmap-win32.h \
|
|
gdkprivate-win32.h \
|
|
gdkproperty-win32.c \
|
|
gdkscreen-win32.c \
|
|
gdkselection-win32.c \
|
|
gdkspawn-win32.c \
|
|
gdkvisual-win32.c \
|
|
gdkwin32.h \
|
|
gdkwin32id.c \
|
|
gdkwindow-win32.c \
|
|
gdkwindow-win32.h
|
|
|
|
libgdkinclude_HEADERS = \
|
|
gdkwin32.h
|
|
|
|
libgdk_win32_la_LIBADD = rc/gdk-win32res.lo
|