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