]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-0
build gtkcompat.h from gtkcompat.h.in instead of gtkfeatures.h from
[~andy/gtk] / ChangeLog.pre-2-0
1 Wed Mar 17 02:49:32 1999  Tim Janik  <timj@gtk.org>
2         
3         * configure.in: build gtkcompat.h from gtkcompat.h.in instead of
4         gtkfeatures.h from gtkfeatures.h.in, require GLib 1.3.0.
5
6         * gtk/gtkcompat.h.in: combined gtkcompat.h and gtkfeatures.in in this
7         file. strongly deprecated the GTK_HAVE_* macros, we provide
8         GTK_CHECK_VERSION() for people that need to check for certain
9         Gtk+ versions.
10
11         * gtk/gtkcompat.h: removed this from CVS.
12         * gtk/gtkfeatures.h.in: removed this from CVS, gtkfeatures.h was a bad
13         idea right from the start, it just didn't seem like that back then.
14
15 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
16
17         * merges from gtk-1-2:
18
19 Tue Mar 16 17:43:33 1999  Tim Janik  <timj@gtk.org>
20
21         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
22         item factory class has been created.
23         (gtk_item_factory_parse_rc): likewise.
24
25         * gtk/gtkmenu.c:
26         keep proper references for old_active_menu_item.
27         (gtk_menu_reparent): unset the usize of the new parent,
28         so the menu can sanely be size requested and we don't get nasty screen
29         artefacts upon next reparentation.
30         (gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
31         enter notify. only synthesize enter notifies if the pointer really is
32         inside the event window.
33         (gtk_menu_popdown): use gtk_menu_shell_deselect().
34         (gtk_menu_popup): move the background setting stuff into
35         gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
36
37         * gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
38         gtk_menu_shell_select_item() to select the new item.
39         (gtk_menu_shell_deselect): export this function, so gtkmenu.c can
40         do the right thing for deselection as well.
41
42 Sat Mar 15 20:10:33 1999  Tim Janik  <timj@gtk.org>
43
44         * gtk/gtkwidget.[hc]:
45         (gtk_widget_accelerators_locked): return whether a widget's accelerators
46         are locked.
47
48         * gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
49         existing accelerators if the widget's accelerators are locked.
50
51 Sat Mar 14 19:44:05 1999  Tim Janik  <timj@gtk.org>
52
53         * gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
54
55         * gtk/gtkmenu.c: truely forward key press and key release events to
56         the menu widget from the toplevel or tearoff window. we can't simply
57         connect to that, we need to stop further processing of the events as
58         well.
59
60 Sat Mar 13 13:14:17 1999  Tim Janik  <timj@gtk.org>
61
62         * gtk/gtkmenu.c:
63         (gtk_menu_key_press): pass event->keyval, event->state to
64         gtk_accelerator_valid, instead of event->keyval twice.
65         refuse to install single letter accelerators for menus that use
66         single letter shortcuts.
67
68         * gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
69         gtk_menu_ensure_uline_accel_group().
70
71         * gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
72         which will always return an uline accel group, made
73         gtk_menu_get_uline_accel_group() return NULL if the group isn't
74         yet created.
75
76 Mon Mar 15 01:03:27 1999  Lars Hamann  <lars@gtk.org>
77
78         * gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
79
80         * gtk/gtkclist.c (gtk_clist_column_title_passive):
81         Leave button sensitive, trap  button_press, button_release,
82         motion_notify, enter_notify and leave_notify events instead.
83         (gtk_clist_column_title_active): disconnect event handler.
84         (gtk_clist_drag_data_get): fixed memory leak. Reported by
85         Guillaume Laurent <glaurent@worldnet.fr>
86
87 Wed Mar 10 23:49:55 1999  Lars Hamann  <lars@gtk.org>
88
89         * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
90         width/height mixups.
91
92         * gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
93         if needed.
94
95 Wed Mar 10 00:11:32 1999  Tim Janik  <timj@gtk.org>
96
97         * gtk/testgtk.c (create_item_factory): unref the item factory after
98         window's destruction.
99
100         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
101         count on the menu shell around the menu item's activation, since the
102         signal emission may cause menu shell destruction.
103
104         * gtk/gtkitemfactory.c:
105         the previous code leaked one accel group per menu. we use
106         gtk_menu_get_uline_accel_group() now to fix that, and with that
107         also create the underline accelerator group of the menus only if
108         required (i.e. an underline accelerator has been specified).
109         (gtk_item_factory_construct):
110         (gtk_item_factory_create_item): removed code that would create an
111         extra accel group for the menu (and leak references).
112         (gtk_item_factory_create_item): adapted the underline accelerator
113         installation code to properly feature gtk_menu_get_uline_accel_group().
114
115         * gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
116         menu->accel_group, this may return NULL if the accelerator group
117         hasn't been set yet.
118         added gtk_menu_get_uline_accel_group() to retrive the underline
119         accelerator group of the menu, this will be created on demand
120         and proper care is taken about its reference count.
121
122         * gtk/gtkitemfactory.h:
123         * gtk/gtkitemfactory.c:
124         dumped the approach of keeping a widgets by action list on the
125         factory since the factory<->widget destroy negotiation didn't work
126         and would be hard to get going at all. instead we keep a list of
127         GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
128         persistant throughout a program's life time).
129         also, i removed the static const gchar *key_* variables, and made
130         them inline strings (they weren't actually used anyways).
131         (gtk_item_factory_add_item): update ifactory->items.
132         (gtk_item_factory_destroy): destroy ifactory->items (and remove
133         the item factory pointer from the remaining ifactory widgets).
134         (gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
135         list to find the widget.
136         (gtk_item_factory_get_item): new function that works around
137         gtk_item_factory_get_widget() limitations, this function will only
138         return menu items, even for <Branch> entries.
139
140 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
141
142         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
143         font hash table, if we have a GdkFontPrivate entry for this font
144         already, simply increment its reference count, provided by Olaf Dietsche
145         <olaf.dietsche+list.gtk@netcologne.de>.
146
147         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
148         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
149
150 Sun Mar  7 06:13:29 1999  Tim Janik  <timj@gtk.org>
151
152         * gtk/gtkcontainer.c:
153         (gtk_container_add_with_args):
154         (gtk_container_addv):
155         (gtk_container_add): before adding a child to a conatiner, make sure
156         it is (default) constructed, this is neccessary because under certain
157         circumstances the child will get relized and mapped immediatedly, in
158         which case it has to be constructed already.
159
160 Mon Mar  1 17:58:21 1999  Tim Janik  <timj@gtk.org>
161
162         * gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
163         values > 1 as TRUE also.
164
165 1999-03-16  Tor Lillqvist  <tml@iki.fi>
166
167         * README.win32: New file.
168                 
169         * configure.in: Check for lstat.
170
171         * config.h.win32: Add non-definition of HAVE_LSTAT, just for
172         completeness.
173
174         * gtk/gtkrc.c: If don't HAVE_LSTAT, use stat.
175
176         * gtk/gtk.def: Removed CRs.
177
178         * gtk/makefile.msc: Correct include path to Win32 GDK version (in
179         ..\gdk\win32).
180
181         * gdk/win32/makefile.msc: Correct upwards relative paths.
182         
183 Mon Mar 15 03:38:34 1999  George Lebl  <jirka@5z.com>
184
185         * gtk/gtkdnd.c: (gtk_drag_highlight) swap the
186           gtk_drag_highlight_expose and gtk_drag_highlight_paint since
187           it was connecting a void function to expose_event and the int
188           returning function to the draw signal
189
190 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
191
192         * configure.in:
193         Use correct path to libgmodule.la when ref'ing uninstalled copy
194         of glib.  (Already in stable branch, Bug #417)
195
196 1999-03-15  Tor Lillqvist  <tml@iki.fi>
197
198         Win32 merge and general portability stuff:
199                 
200         * acconfig.h,configure.in: Check for <sys/time.h>.
201
202         * gdk/win32: New directory (actually, been there for a while).
203         
204         * gtk/fnmatch.c: Include <glib.h> for G_DIR_SEPARATOR, WIN32 and
205         NATIVE_WIN32, and use these. Always case fold on Win32. No
206         backslashed escapes on native Win32.
207
208         * gtk/{gtk.def,makefile.msc}: New files.
209
210         * gtk/Makefile.am: Add above new files.
211         
212         * gtk/{gtkaccelgroup,gtkbindings}.c: Include <string.h>
213         instead of <strings.h>.
214
215         * gtk/{gtkcalendar,gtkitemfactory,gtkpreview,gtkrc}.c: Include
216         config.h. Protect inclusion of <sys/param.h>, <sys/time.h>, and
217         <unistd.h> appropriately.
218
219         * gtk/gtkdnd.c: Merge in Win32 version (which doesn't do much).
220         Use ABS() (from <glib.h>) instead of abs().
221         
222         * gtk/gtkfilesel.c: Moved Win32-specific includes after inclusion
223         of gtk (and thus glib) headers, so that WIN32 will be
224         defined. With MS C, include <direct.h> for mkdir prototype.
225
226         * gtk/gtkitemfactory.c (gtk_item_factory_callback_marshal): Add
227         some casts, needed by MS C.
228
229         * gtk/{gtklayout,gtkplug}.c: Merge in Win32 version (which isn't
230         implemented).
231
232         * gtk/gtkmain.c: Include gdk/gdkx.h for GDK_WINDOWING. Include
233         <X11/Xlocale.h> only on X11 platform, otherwise <locale.h>.  Use
234         G_SEARCHPATH_SEPARATOR_S and g_module_build_path.
235
236         * gtk/gtkmain.h: Mark variables for export/import on Win32.
237                 
238         * gtk/gtkrange.c (gtk_range_motion_notify): Set mods also in case
239         the event is not a hint, or its window is not the slider. Needed
240         on Win32, at least.
241
242         * gtk/gtkrc.c: Include config.h and gdk/gdkx.h. Use <locale.h>
243         unless on X11. Skip \r chars, too. Use G_DIR_SEPARATOR and
244         G_SEARCHPATH_SEPARATOR(_S). Use g_path_is_absolute. On Win32, use
245         a subdirectory of the Windows directory as gtk system
246         configuration directory.
247
248         * gtk/gtkselection.c: No chunks on Win32.
249
250         * gtk/gtksocket.c: Not implemented on Win32.
251
252         * gtk/gtkthemes.c (gtk_theme_engine_get): Use g_module_build_path.
253
254         * gtk/makeenums.h: Include gdkprivate.h after gdk.h.
255
256         * gtk/maketypes.awk: Declare variables with a macro that expands to
257         necessary export/import magic in the case of Win32.
258                 
259         * gtk/testrgb.c: Use dynamically allocated buffer. Use GTimers.
260
261 1999-03-13  Raja R Harinath  <harinath@cs.umn.edu>
262
263         * configure.in (gdk_wc): Move widechar tests from `glib' to here,
264         since those were meant only for gdki18n.h.  
265         * gdk/gdki18n.h: Include gdkconfig.h and use GDK_* instead of G_*
266         for widechar tests.
267         * gtk/Makefile.am (INCLUDES): Add -I../gdk for gdkconfig.h.
268
269 1999-03-13  Tor Lillqvist  <tml@iki.fi>
270
271         * configure.in acconfig.h: Check for dirent.h and pwd.h. Generate
272         gdk/gdkconfig.h using similar mechanism as GLib's glibconfig.h.
273
274         * gtk-config.in: Add @libdir/gtk+/include (where gdkconfig.h is
275         installed) to CFLAGS.
276
277         * gdk/Makefile.am: Add rules for gdkconfig.h.
278
279         * gdk/gdktypes.h: Include gdkconfig.h. Define macros for windowing
280         APIs.
281
282         * gdk/gdkfontsel.c: Don't include Xlib.h, it gets included via
283         gdkx.h anyway when compiling for X11.
284         (gtk_font_selection_create_xlfd): Use g_strdup_printf. (In
285         general): Merge in Win32 version.
286         
287         * gtk/gtkfilesel.c: Use g_get_current_dir(). Merge in Win32
288         version: Use G_DIR_SEPARATOR, g_path_is_absolute, no tilde
289         expansion (if we don't have HAVE_PWD_H), allow for drive
290         letters. UNC paths (\\server\share\...) are not handled yet.  Also,
291         included code from Craig Setera's port to Win32 (the one that uses
292         X11, and the cygwin dll), even if it probably will be abandoned.
293
294         * gtk/gtkfilesel.c: Don't append a * to the pattern to complete if
295         the user entered one herself.  This way one can complete *.h and
296         don't get matches on any .help files, for instance.
297         
298 Tue Mar  9 01:01:28 1999  Tim Janik  <timj@gtk.org>
299
300         * gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
301         font hash table, if we have a GdkFontPrivate entry for this font
302         already, simply increment its reference count, provided by Olaf Dietsche
303         <olaf.dietsche+list.gtk@netcologne.de>.
304
305         * gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
306         provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
307
308 1999-03-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
309
310         * gtk/gtkstyle.c (gtk_default_draw_handle): Significantly reduced
311         the number of calls to gdk_draw_point() (and thus to X) by
312         clipping the points by hand.
313
314         * gtk/gtkhandlebox.c (draw_textured_frame): Actually make use of
315         the clip parameter.
316         (gtk_handle_box_paint): Only paint the handle if the expose area
317         intersects it.
318
319 Sun Mar  7 18:46:37 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
320
321         * gtk/gtkmain.c (add_dll_suffix): Add this function (OS/2 ver.)
322
323 Sun Mar  7 11:43:34 1999  ape@spacetec.no  (Asbjorn Pettersen)
324
325         * gtk/gtkthemes.c (gtk_theme_engine_get): Add OS/2 changes.
326         Added function gen_8_3_dll_name(gchar *name, gchar *fullname).
327
328 Fri Mar  5 09:12:24 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
329
330         * gtk/gtkitemfactory.c (gtk_item_factory_parse_rc): Open file in
331          textmode (O_TEXT) for OS/2 version.
332
333 Sun Feb 28 16:46:02 1999  Stefan Jeske  <stefan@gtk.org>
334
335         * gtk/gtkspinbutton.[c,h] gtk/testgtk.c: Added two new signals to 
336         GtkSpinButton, "input" and "output", to make the output more flexible.
337         The user has to provide a mapping between adjustment->value and the
338         output string (and vice versa, if the spin button is editable). 
339         See testgtk for examples.
340
341 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
342
343         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
344         new one.
345         
346         * configure.in: set gtk+ version to 1.3.0.