mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
a3c5d33f26
configure generates glibconfig.h. Currently it only defines what windowing API GDK uses, and on Unix (where configure scripts are used), it's always X11... Include gdkconfig.h in gdktypes.h. gdkconfig.h is installed in @libdir@/gtk+/include (like glibconfig.h is in @libdir@/glib/include). (This might be debatable?) Add that to gtk-config --cflags. Merge in Win32 changes to gtkfontsel.c
79 lines
3.0 KiB
Plaintext
79 lines
3.0 KiB
Plaintext
1999-03-13 Tor Lillqvist <tml@iki.fi>
|
|
|
|
* configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
|
|
gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
|
|
|
|
* gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
|
|
installed) to CFLAGS.
|
|
|
|
* gdk/Makefile.am: Add rules for gdkconfig.h.
|
|
|
|
* gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
|
|
APIs.
|
|
|
|
* gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
|
|
gdkx.h anyway when compiling for X11.
|
|
(gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
|
|
general): Merge in Win32 version.
|
|
|
|
* gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
|
|
version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
|
|
expansion (if we don't have HAVE_PWD_H), allow for drive
|
|
letters. UNC paths (\\server\share\...) are not handled yet. Also,
|
|
included code from Craig Setera's port to Win32 (the one that uses
|
|
X11, and the cygwin dll), even if it probably will be abandoned.
|
|
|
|
* gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
|
|
the user entered one herself. This way one can complete *.h and
|
|
don't get matches on any .help files, for instance.
|
|
|
|
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
|
|
|
|
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
|
|
font hash table, if we have a GdkFontPrivate entry for this font
|
|
already, simply increment its reference count, provided by Olaf Dietsche
|
|
<olaf.dietsche+list.gtk@netcologne.de>.
|
|
|
|
* gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
|
|
provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
|
|
|
|
1999-03-09 Federico Mena Quintero <federico@nuclecu.unam.mx>
|
|
|
|
* gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
|
|
the number of calls to gdk_draw_point() (and thus to X) by
|
|
clipping the points by hand.
|
|
|
|
* gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
|
|
the clip parameter.
|
|
(gtk_handle_box_paint): Only paint the handle if the expose area
|
|
intersects it.
|
|
|
|
Sun Mar 7 18:46:37 1999 ape@lrdpf.spacetec.no (Asbjorn Pettersen)
|
|
|
|
* gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
|
|
|
|
Sun Mar 7 11:43:34 1999 ape@spacetec.no (Asbjorn Pettersen)
|
|
|
|
* gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
|
|
Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
|
|
|
|
Fri Mar 5 09:12:24 1999 ape@lrdpf.spacetec.no (Asbjorn Pettersen)
|
|
|
|
* gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
|
|
textmode (O_TEXT) for OS/2 version.
|
|
|
|
Sun Feb 28 16:46:02 1999 Stefan Jeske <stefan@gtk.org>
|
|
|
|
* gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to
|
|
GtkSpinButton, "input" and "output", to make the output more flexible.
|
|
The user has to provide a mapping between adjustment->value and the
|
|
output string (and vice versa, if the spin button is editable).
|
|
See testgtk for examples.
|
|
|
|
Sat Feb 27 01:18:47 1999 Tim Janik <timj@gtk.org>
|
|
|
|
* ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
|
|
new one.
|
|
|
|
* configure.in: set gtk+ version to 1.3.0.
|