]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-10
Free mult_atoms here. (#317039, Paolo Borelli)
[~andy/gtk] / ChangeLog.pre-2-10
1 2005-09-28  Matthias Clasen  <mclasen@redhat.com>
2
3         * gtk/gtkselection.c (_gtk_selection_request): Free mult_atoms 
4         here. (#317039, Paolo Borelli)
5
6         * gtk/gtktexttag.h: 
7         * gtk/gtktexttag.c (gtk_text_attributes_ref): Return the attributes
8         to make this function work as boxed copy function.  (#317455,
9         Gustavo Carneiro)
10
11         * gtk/gtkclipboard.c (request_image_received_func): Don't unref
12         NULL.  (#316828, Tor Lillqvist)
13
14 2005-09-28  Tor Lillqvist  <tml@novell.com>
15
16         * modules/input/imime.c: Include <config.h>. (#317444, Kazuki
17         Iwamoto)
18
19 2005-09-27  Federico Mena Quintero  <federico@ximian.com>
20
21         Don't reload the current folder unnecessarily on ::map().
22
23         * gtk/gtkfilechooserprivate.h (ReloadState): New enum to represent
24         the reloading state.
25         (struct _GtkFileChooserDefault): Added a "reload_state" field.
26
27         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init):
28         Initialize impl->reload_state.
29         (gtk_file_chooser_default_map): Check the impl->reload_state; load
30         a default folder if no folder has been set, or reload the current
31         one only if we had been unmapped first.
32         (gtk_file_chooser_default_update_current_folder): Set the
33         reload_state to RELOAD_HAS_FOLDER.
34         (gtk_file_chooser_default_unmap): Implement, and set the
35         reload_state to RELOAD_WAS_UNMAPPED.
36         (shortcuts_model_create): Don't call shortcuts_add_bookmarks()
37         here; they'll get (re)loaded on ::map() anyway.
38
39         * gtk/gtkfilechooserwidget.c
40         (gtk_file_chooser_widget_constructor): Don't set a default folder here.
41
42         * tests/autotestfilechooser.c (test_action_widgets): Don't take in
43         a dialog; build it ourselves.
44         (test_reload): New test to ensure that we don't load the default
45         folder more than once, and that we reload it when
46         unmapping/remapping.
47         (get_impl_from_dialog): New utility function.
48         (test_widgets_for_current_action): Use get_impl_from_dialog().
49
50 2005-09-27  Federico Mena Quintero  <federico@ximian.com>
51
52         * gtk/gtkfilechooserdefault.c
53         (gtk_file_chooser_default_constructor): Mark the entry/exit of
54         this function for profiling.
55         (check_icon_theme): Likewise.
56         (change_icon_theme): Likewise.
57         (settings_notify_cb): Likewise.
58         (gtk_file_chooser_default_screen_changed): Likewise.
59         (update_chooser_entry): If the selection is empty, clear the file
60         name entry only if we are in CREATE_FOLDER mode.  In SAVE mode,
61         nothing will be selected when the user starts typeahead in the
62         treeview, and we don't want to clear the file name entry in that
63         case --- the user could be typing-ahead to look for a folder name.
64         Fixes bug #308332, patch by Jürg Billeter.
65
66 2005-09-27  Matthias Clasen  <mclasen@redhat.com>
67
68         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
69         Pop below the entry if there's more free space below the entry
70         than above.  (#316948, Tommi Komulainen)
71
72 2005-09-26  Federico Mena Quintero  <federico@ximian.com>
73
74         Do not create the save mode-specific widgets in the open modes, so
75         that we don't carry their baggage around.
76
77         * gtk/gtkfilechooserdefault.c
78         (gtk_file_chooser_default_constructor): Don't create the
79         save_widgets here.
80         (save_widgets_create): Set the impl->save_widgets directly here,
81         instead of passing the widgets back to the caller.  Also, pack
82         them into the impl's box.
83         (update_appearance): Create or destroy the save widgets as
84         appropriate.  Set the action of the save_file_name_entry here.
85         (shortcuts_add_current_folder): Set the active item in the
86         save_folder_combo only if it exists.
87         (gtk_file_chooser_default_set_property): Don't set the action of
88         the save_file_name_entry here.
89         (gtk_file_chooser_default_update_current_folder): Set the base
90         folder of the save_file_name_entry only if the entry exists.
91         (shortcuts_drag_data_received_cb): Cast the selection_data->data
92         to (const char *) since that's what shortcuts_drop_uris() expects.
93         (file_list_drag_data_received_cb): Likewise, for
94         g_uri_list_extract_uris().
95
96 2005-09-26  Tor Lillqvist  <tml@novell.com>
97
98         * gdk/win32/gdkwindow-win32.c (gdk_window_shape_combine_mask): Set
99         the shaped flag here, too. (#316871)
100         (gdk_window_shape_combine_region): Currently unimplemented, so
101         don't do anything to the shaped flag here.
102
103 2005-09-26  Matthias Clasen  <mclasen@redhat.com>
104
105         Fix #316871, reported by Dan Winship:
106         
107         * gdk/gdkwindow.h (struct _GdkWindowObject): Add a shaped flag.
108
109         * gdk/x11/gdkwindow-x11.c (gdk_window_shape_combine_mask) 
110         (gdk_window_shape_combine_region): Set it here.
111
112         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Don't
113         remove the child area for shaped windows.
114
115 2005-09-23  Matthias Clasen  <mclasen@redhat.com>
116
117         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_finalize):
118         Don't leak expander pixbufs.  (#316946, Tommi Komulainen)
119
120 2005-09-22  Michael Natterer  <mitch@imendio.com>
121
122         Renamed GtkCellRendererKeys to GtkCellRendererAccel to be
123         consistent with GTK+ terminology:
124
125         * gtk/gtkcellrendererkeys.[ch]
126         * tests/testkeys.c: removed...
127
128         * gtk/gtkcellrendereraccel.[ch]
129         * tests/testaccel.c: ...and added.
130
131         * gtk/Makefile.am
132         * gtk/gtk.h
133         * gtk/gtk.symbols
134         * tests/Makefile.am: changed accordingly.
135
136 2005-09-22  Matthias Clasen  <mclasen@redhat.com>
137
138         * gtk/gtkwidget.c (gtk_widget_class_init): Fix the documentation
139         for the grab-broken-event signal, noticed by Damon Chaplin.
140
141 2005-09-21  Tor Lillqvist  <tml@novell.com>
142
143         * gdk/win32/gdkselection-win32.c (gdk_selection_convert,
144         gdk_text_property_to_text_list_for_display,
145         gdk_text_property_to_utf8_list_for_display,
146         gdk_win32_selection_add_targets,
147         _gdk_win32_selection_convert_to_dib): Free return value from
148         gdk_atom_name().
149         (gdk_text_property_to_text_list_for_display): Drop GError variable
150         that isn't actually used after being set.
151
152 2005-09-20  Johan Dahlin  <jdahlin@async.com.br>
153
154         * gtk/gtkentry.c (gtk_entry_set_completion): Mention NULL in 
155         documentation.
156
157 2005-09-20  Tor Lillqvist  <tml@novell.com>
158
159         * gdk/win32/gdkselection-win32.c
160         (gdk_selection_owner_get_for_display): Do return the correct owner
161         for CLIPBOARD (i.e., the owner of the Windows Clipboard, if it is
162         a window GDK knows about). The reason to return NULL seems to have
163         gone when in the fix for bug #163702 the artificial
164         GDK_SELECTION_CLEAR event generation was removed from
165         gdk_selection_send_notify_for_display(). Fixes bug #316552.
166
167 2005-09-20  Matthias Clasen  <mclasen@redhat.com>
168
169         Avoid unnecessary XkbGetState() calls and XkbStateNotify
170         events.  (#151555, Søren Sandmann)
171
172         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Use 
173         XkbSelectEventDetails() to select XkbStateNotify events
174         for only the state we care about.
175
176         * gdk/x11/gdkprivate-x11.h:
177         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_state_changed): Pass
178         the event into the function and update the keymap state from
179         the state information contained in the event. Adjust all callers.
180         
181 2005-09-19  Matthias Clasen  <mclasen@redhat.com>
182
183         * gtk/gtkiconview.c: Use g_list_nth_data() instead of g_list_nth()->data
184         in multiple places to avoid segfaults if the index is out of range.  
185         (#316422, Guillaume Cottenceau)
186         (gtk_icon_view_set_drag_dest_item): 
187         (gtk_icon_view_scroll_to_path): Fix a typo in the docs.  (#316419,
188         #316424, Guillaume Cottenceau)
189
190 2005-09-18  Hans Breuer  <hans@breuer.org>
191
192         * gtk/gtktrayicon-win32.c : now handling events by hard-coded 
193         g_signal_emit_by_name() - will break when gtkstatusicon.c changes.
194
195 2005-09-18  Hans Breuer  <hans@breuer.org>
196
197         * gdk/gdk.symbols gdk/win32/gdkwin32.h gdk/win32/gdkcursorwin32.c : export
198         _gdk_win32_pixbuf_to_hicon() as gdk_win32_pixbuf_to_hicon_libgtk_only()
199         * gtk/gtktrayicon-win32.c : a lot of debug spew but it has started to show
200         the icon and is blinking with teststatusicon. More to come ...
201
202 2005-09-18  Hans Breuer  <hans@breuer.org>
203
204         * gtk/makefile.msc.in : fix typo for GTK_VER; define HAVE_CONFIG_H
205         cause gtkprogressbar.c has #include <config.h> conditionally; less
206         noise from generated gtk.def
207         * gtk/stock-icons/makefile.msc gdk/makefile.msc tests/makefile.msc : updated
208         
209         * gtk/gtktrayicon-win32.c : dummy implmentation to make gtk compile.
210         For me it works as well as the *NIX implemenation, that is not at all.
211
212         * gdk/win32/gdkproperty-win32.c : implement gdk_atom_intern_static_string()
213
214         * gdk/win32/gdkwindow-win32.c(gdk_window_set_urgency_hint) : only use
215         only use (WINVER >= 0x0500) when available from the SDK. Otherwise fall
216         back to true dynamic linking of FlashWindowEx. Makes gtk+ work on NT4.0
217         again - if compiled properly.
218
219         * tests/teststatusicon.c : don't use GNOME icons for testing, but icons
220         already coming with Gtk+. Makes it compile on win32.
221
222 2005-09-18  Guilherme de S. Pastore  <gpastore@cvs.gnome.org>
223
224         * README.cvs-commits: fixed some tiny typos
225
226 2005-09-16  Tor Lillqvist  <tml@novell.com>
227
228         * modules/engines/ms-windows/msw_style.c (draw_extension,
229         draw_box_gap): Check whether the widget actually is a GtkNotebook
230         before treating it as such. Drop some unneeded local variables,
231         use parameter with same information instead. (#316412)
232
233 2005-09-15  Federico Mena Quintero  <federico@ximian.com>
234
235         * tests/autotestfilechooser.c: Start a set of automated tests for
236         the file chooser.  The only test in there right now doesn't pass
237         yet.  It specifies the intended behavior of the first optimization
238         of a series which I'll do on the file chooser (see
239         http://primates.ximian.com/~federico/news-2005-09.html#14 for the
240         details of this optimization).
241
242         * tests/Makefile.am: Added autotestfilechooser.c.
243
244         * gtk/gtkfilechooserprivate.h (struct
245         _GtkFileChooserDialogPrivate): Move all the file chooser's private
246         structures to here, so that they can be accessed by
247         tests/autotestfilechooser.c:  _GtkFileChooserDialogPrivate,
248         _GtkFileChooserWidgetPrivate, LoadState, _GtkFileChooserDefault.
249
250         * gtk/gtkfilechooserdialog.c: See above.
251
252         * gtk/gtkfilechooserwidget.c: See above.
253
254         * gtk/gtkfilechooserdefault.c: See above.
255
256 Thu Sep 15 15:27:55 2005  Tim Janik  <timj@imendio.com>
257
258         * gtk/gtkwindow.c: 
259         gtk_window_map_event(): new function to work around lost unmap requests.
260         fixes bug #316180.
261
262 2005-09-14  Federico Mena Quintero  <federico@ximian.com>
263
264         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): Add
265         an easy-to-find profiling marker when starting to create a file
266         chooser.
267         (browse_files_model_finished_loading_cb): Likewise, for when the
268         chooser is finished loading.
269
270 2005-09-14  Tristan Van Berkom <tvb@cvs.gnome.org>
271
272         * gtk/gtkcolorbutton.c: Check "color" argument in gtk_color_button_set_color ()
273
274 2005-09-14  Matthias Clasen  <mclasen@redhat.com>
275
276         * gtk/gtklabel.c (gtk_label_get_type): 
277         * gtk/gtkbutton.c (gtk_button_get_type): 
278         * gtk/gtkwindow.c (gtk_window_group_get_type): No point in 
279         using a mem chunk for window groups, buttons, labels.
280
281         * gtk/updateiconcache.c (foreach_remove_func): Fix
282         a use-after-free bug.  (#316256, Alexander Nedotsukov)
283
284 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
285
286         * gtk/*.c: Various cleanups.  (#315360, Kjartan Maraas)
287
288         * gdk/*.c: Various cleanups.  (#315359, Kjartan Maraas)
289         
290 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
291
292         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
293         Let GDK_Return pass through in some more cases.
294
295         * gtk/gtkentry.c (gtk_entry_key_press): Reset the im context before
296         activating the entry. 
297
298         * gtk/gtkiconview.c (gtk_icon_view_class_init):
299         (gtk_icon_view_get_dest_item_at_pos):  Fix typos in the 
300         docs.  (#316008, #316027, #316121, Guillaume Cottenceau)
301
302         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add some docs.
303         (#316001, Guillaume Cottenceau)
304
305         * gtk/gtkdnd.c (gtk_drag_set_icon_name): Fix a copy-and-paste
306         mistake in the docs.  (#315993, Guillaume Cottenceau)
307
308         * tests/testentrycompletion.c (create_simple_completion_model): Add
309         some strings containing multibyte characters.
310
311         * gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix): 
312         Fix prefix insertion for multibyte characters.  (#316095,
313         Tommi Komulainen)
314
315         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): 
316         * gtk/gtkiconview.c (gtk_icon_view_create_drag_icon): Silently
317         return NULL if the widget is not realized.  (#316023,
318         Guillaume Cottenceau)
319
320 2005-09-11  Matthias Clasen  <mclasen@redhat.com>
321
322         * gdk/gdk.symbols: 
323         * gdk/gdkproperty.h: 
324         * gdk/x11/gdkproperty-x11.c (gdk_atom_intern_static_string): 
325         New function to avoid pointless strdups when creating atoms
326         from static strings.  
327
328         * gdk/x11/*.c:
329         * gtk/*.c:  Use gdk_atom_intern_static_string() where 
330         appropriate.
331
332 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
333
334         * gtk/gtkcellrendererkeys.h: 
335         * gtk/gtkcellrendererkeys.c: Add a cell renderer for displaying
336         and editing accelerators, a port of EggCellRendererKeys .
337
338         * gtk/gtk.symbols:
339         * gtk/gtk.h:
340         * gtk/Makefile.am: Add the keys cell renderer.
341
342         * tests/Makefile.am: 
343         * tests/testkeys.c: Test GtkCellRendererKeys
344
345 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
346
347         Make it possible to determine if a key event is for a
348         modifier key:
349         
350         * gdk/x11/gdkprivate-x11.h: 
351         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_key_is_modifier): 
352         New function to determine if a keycode is mapped to a modifier.
353         (get_xkb): Get the modmap.
354
355         * gdk/x11/gdkevents-x11.c (translate_key_event): Set the 
356         is_modifier bit by calling _gdk_keymap_key_is_modifier().
357
358         * gdk/gdkevents.h (struct _GdkEventKey): Add an is_modifier
359         bit.
360
361 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
362
363         * gdk/gdkpixbuf-drawable.c (convert_real_slow): Remove an 
364         unused variable, noticed by Kjartan Maraas.
365
366 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
367
368         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_event): 
369         Make drag reordering work properly for columns other than the
370         first.  (#315054, Dan Winship)
371         
372         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name): Handle 
373         invalid fontnames better. (#136926, Michael R. Walton)
374         
375         Stop cursor blinking in non-editable regions of a text view.
376         (#311508, Torbjörn Andersson)
377         
378         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): 
379         (cursor_blinks): Take editability into account when deciding
380         whether the cursor blinks.
381         (gtk_text_view_button_release_event): 
382         (gtk_text_view_move_cursor_internal): Update cursor blinking here.
383
384         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_start_editing): 
385         Use connect_after to connect to the focus_out event. This
386         ensures that the entry has already stopped blinking by the time
387         we emit the edited signal.  (#315229, Thomas Leonard)
388
389         * tests/testgtk.c: Use GDK_MOD1_MASK, not GDK_ALT_MASK.
390
391         * gtk/gtkwindow.c (gtk_window_parse_geometry): Don't set
392         unsigned ints to -1.  (#315481, Kjartan Maraas)
393
394         * gtk/gtkcalendar.c (gtk_calendar_init): first_weekday is relative
395         to week_1stday, not to Sunday. Gotta love the ISO 14652 guys...
396         (#314473, Stanislav Brabec)
397
398 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
399
400         * gtk/gtktreeview.c (gtk_tree_view_get_visible_range): Document
401         memory handling.  (#314975, Torsten Schoenfeld)
402
403         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
404         * gtk/gtkfilesel.c (gtk_file_selection_class_init): 
405         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
406         * gtk/gtklabel.c (gtk_label_class_init): 
407         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
408         Stylistic improvements and clarifications for some blurbs. 
409         (#315520, Clytie Siddall)
410
411 2005-09-09  Tor Lillqvist  <tml@novell.com>
412
413         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Cache the
414         display name. There is only one GdkDisplay on Win32, and
415         constructing the display name isn't entirely trivial, so cacheing
416         is probably worth it. For instance GIMP calls this function a lot.
417         (gdk_display_open): Call gdk_display_get_name() to prime the
418         cached name.
419         (gdk_display_get_n_screens, gdk_display_get_screen,
420         gdk_display_get_default_screen): Verify parameter correctness like
421         the X11 backend does.
422
423         * gdk/win32/gdkscreen-win32.c (gdk_screen_make_display_name):
424         Return a freshly allocated string, as the API specifies. Fixes a
425         heap corruption problem that caused random errors and crashes in
426         GIMP, for instance.
427
428 2005-09-07  Matthias Clasen  <mclasen@redhat.com>
429
430         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
431         Make C-u commit and restart hex input if we are already in a
432         hex sequence.
433
434 2005-09-06  Matthias Clasen  <mclasen@redhat.com>
435
436         * gdk/x11/gdkkeys-x11.c (update_modmap): Make the modmap reflexive.
437         (_gdk_keymap_add_virtual_modifiers): Don't add both Alt and Meta
438         if they are mapped to the same modifier.
439
440         * gtk/Makefile.am: Rename gtkstatusicon-x11.c and gtktrayicon.c
441         to gtkstatusicon.c and gtktrayicon-x11.c
442
443         * gtk/gtkaccelgroup.c: Include Super, Hyper and Meta in the
444         default accel mod mask.
445
446         * gtk/gtkaccelgroup.c (gtk_accelerator_parse): 
447         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
448         Don't use GDK_ALT_MASK.
449
450         * gdk/gdktypes.h: No need to introduce GDK_ALT_MASK
451
452 2005-09-06  Matthias Clasen  <mclasen@redhat.com>
453
454         Add support for extra virtual modifiers:  (#85780, Owen Taylor)
455         
456         * tests/testgtk.c (create_key_lookup): Add tests for extra virtual
457         modifiers.
458
459         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup): Try to match both against
460         Mod2 - Mod5 and against Super, Hyper, Meta.
461
462         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
463         * gtk/gtkaccelgroup.c (gtk_accelerator_parse) 
464         (gtk_accelerator_name): Support Super, Hyper Meta and Mod2 - Mod5.
465
466         * gdk/x11/gdkkeys-x11.c (struct _GdkKeymapX11): Add a 
467         modmap to maintain the information which X modifiers map to
468         virtual modifiers.
469         (get_xkb): Set up the modmap from the XKB tables.
470         (update_keymaps): Set up the modmap from the information returned
471         by XGetModifierMapping in the non-XKB case.
472
473         * gdk/x11/gdkprivate-x11.h: 
474         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_add_virtual_modifiers): New 
475         function to set the virtual modifiers in the state.
476
477         * gdk/x11/gdkevents-x11.c (translate_key_event): Call 
478         _gdk_keymap_add_virtual_modifiers here.
479
480         * gdk/gdktypes.h (GdkModifierType): Add bits for virtual Super, 
481         Hyper and Meta modifiers. Also add GDK_ALT_MASK as an alias
482         for GDK_MOD1_MASK.
483
484 2005-09-05  Matthias Clasen  <mclasen@redhat.com>
485
486         * gtk/gtkaction.c (connect_proxy): Set the label of a button
487         if it has no child.  (#315253, John Finlay)
488
489 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
490
491         * gtkimcontextsimple.h: Add a modifiers_dropped bit
492
493 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
494
495         * gtk/gtkentry.c (gtk_entry_destroy): Disconnect idle handlers
496         on destroy to avoid problems when they are called on a destroyed
497         widget.  (#315135, John Cupitt)
498         
499         * gtk/gtkentry.c (gtk_entry_class_init):
500         * gtk/gtktextview.c (gtk_text_view_class_init): Add bindings
501         for Ctrl-Shift-A to unselect all.  (#309301, Kathy Fernandes)
502
503         * gtk/gtkimcontextsimple.c: Rework the Unicode hex input
504         code. Now we only steal a single key combination, Ctrl-Shift-U,
505         instead of sixteen. 
506         A hex Unicode sequence must be started with Ctrl-Shift-U, followed
507         by a sequence of hex digits entered with Ctrl-Shift still held.
508         Releasing one of the modifiers or pressing space while the modifiers
509         are still held commits the character. It is possible to erase
510         digits using backspace.
511         As an extension to the above, we also allow to start the sequence
512         with Ctrl-Shift-U, then release the modifiers before typing any
513         digits, and enter the digits without modifiers.
514         (#82011, Owen Taylor)
515         
516 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
517
518         * gtk/gtkmain.c (gtk_get_event_widget): If the window is destroyed,
519         we still need to deliver the destroy event.  (#314980, Chris Lahey)
520
521         * gtk/gtktextview.c (gtk_text_view_key_press_event): Reset 
522         im context before committing \n or \t.
523
524 2005-09-02  Alexander Larsson  <alexl@redhat.com>
525
526         * gtk/gtkfilechooserdefault.c: (shortcuts_add_volumes),
527         (shortcuts_activate_volume):
528         Handle base_path being null in the rest of the cases (#310270)
529
530 2005-09-02  Tor Lillqvist  <tml@novell.com>
531
532         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Keep track of
533         cursor position also in root window coordinates. Prune out
534         superfluous WM_MOUSEMOVE events even earlier, based on root window
535         coordinates. Windows sends WM_MOUSEMOVE messages after a new
536         window has ben mapped below the cursor even if the mouse doesn't
537         move. We used to generate GDK_MOTION_NOTIFY in these cases. This
538         confused at least gtk_menu_motion_notify(). (#314995)
539
540         * gtk/gtkintl.h: No need to include config.h here. It caused
541         warnings about GTK_LOCALEDIR being redefined on Win32 when
542         compiling files where gtkintl.h is included after gtkprivate.h
543         (which #undefines and re-#defines GTK_LOCALEDIR on Win32).
544
545         * gtk/gtkplug.c: Include config.h.
546
547 2005-09-01  Matthias Clasen  <mclasen@redhat.com>
548
549         * gtk/gtkfilesystemunix.c: Pass statbufs down to 
550         xdg_mime_get_mime_type_for_file() where possible, to avoid
551         useless re-stating.  
552         
553         * gtk/gtkaction.c (gtk_action_get_accel_closure): Fix doc
554         typo.  (#314921, Guillaume Cottenceau)
555
556         * gdk/*.c: Intern some more strings.
557         * gtk/gtkintl.h: 
558         * gtk/*.c: Define an I_() macro and use it instead of the 
559         bulky g_intern_static_string().
560
561 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
562
563         * gtk/gtkbindings.c (binding_signal_new): Intern the signal name
564         instead of copying it.
565
566         * gtk/gtktypeutils.c (gtk_identifier_get_type): Some more string interning.
567
568         * gtk/*.c: Also intern static strings passed to 
569         g_object_set_data().
570
571         * gdk/Makefile.am: 
572         * gtk/Makefile.am: Intern type names in code generated by 
573         glib-mkenums, too.
574
575         * gtk/*.c: 
576         * gdk/x11/*.c: 
577         * gdk/*.c: Intern type names before registering the type to avoid 
578         unnecessary copies.
579
580         * configure.in: Require GLib 2.9.0
581
582 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
583
584         * gtk/gtktoolbar.c: Undeprecate gtk_toolbar_set_icon_size(),
585         and add icon-size and icon-size-set properties.  (#314172)      
586
587         * gtk/gtkwindow.c (gtk_window_set_transient_for): Inherit window
588         groups across transient parents.  (#312918, Christian Persch)
589
590         * gtk/gtktreemodel.c: Some documentation fixes.  (#314882,
591         Guillaume Cottenceau)
592
593         * gtk/gtktextiter.c (gtk_text_iter_backward_visible_cursor_positions): 
594         Fix a typo in the docs.  (#314878, Guillaume Cottenceau)
595
596 2005-08-30  Matthias Clasen  <mclasen@redhat.com>
597
598         * gtk/gtkentry.c (gtk_entry_class_init): Add key bindings to
599         make C-/ select all and C-\ unselect all.  (#309301,
600         Kathy Fernandez)
601
602         * gtk/gtkimcontextsimple.c: Change the compose sequence for
603         soft hyphen to be multi_key-minus-minus-space, and add
604         compose sequences multi_key-minus-minus-period and 
605         multi_key-minus-minus-minus for en dash and em dash.
606         (#172653, Christian Lohmaier)
607
608         * gtk/gtkentry.c (gtk_entry_draw_frame): Fix some unused
609         code.  (#313946, Christian Persch)
610
611         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Another
612         fix for the default value of the "ui" property.
613
614 2005-08-30  Matthias Clasen  <mclasen@redhat.com>
615
616         * gtk/gtk.symbols: 
617         * gtk/gtkselection.h:
618         * gtk/gtkselection.c: Add functions which look for text, image
619         or uri targets in an array of atoms.   (#314089, Mark Wielaard)
620
621         * gtk/gtk.symbols: 
622         * gtk/gtkselection.h:
623         * gtk/gtkselection.c (gtk_selection_data_targets_include_uri): 
624         Add a function to check wether targets include uri.  
625         (#314092, Mark Wielaard)
626         
627         * gtk/gtk.symbols: 
628         * gtk/gtkwindow.h: 
629         * gtk/gtkwindow.c: Add a deletable property with getter
630         and setter, to control the close button in the window 
631         frame.  (#59718, Havoc Pennington)
632
633 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
634
635         * gtk/gtkrc.key.emacs: Add C-n/C-p/C-f/C-b as alternatives
636         to the arrow keys for menu navigation.  (#162825, Carl Worth)
637
638         * gtk/gtkentry.c, gtk/gtktextview.c: More typo fixes
639
640         * gtk/gtksocket-x11.c, gtk/gtkstatusicon-x11.c: Fix typos.
641
642         * gtk/gtkstatusicon-x11.c (gtk_status_icon_new_from_stock): 
643         * gtk/gtkimage.c (gtk_image_new_from_stock): Don't
644         refer to nonexisting stock ids.
645
646         * gtk/gtktextview.c (popup_targets_received): 
647         * gtk/gtkentry.c (popup_targets_received): Construct
648         the "Select All" menuitem from stock.
649
650         * gtk/stock-icons/stock_select_all_{16,24}.png:
651         * gtk/stock-icons/Makefile.am: 
652         * gtk/gtkiconfactory.c:
653         * gtk/gtkstock.h: 
654         * gtk/gtkstock.c: Add a "Select All" stock item.  (#78545,
655         Calum Benson)
656
657         * gtk/gtktrayicon.c: Add a pointer to the spec.
658
659         * gtk/gtkstatusicon-x11.c: Add docs.
660
661         * gtk/gtkstatusicon.h: Fix a typo.
662
663         Add a cross-platform "tray icon" API, by
664         porting EggStatusIcon/EggTrayIcon (#105101)
665         
666         * gtk/gtkstatusicon.h: A GtkStatusIcon is an object which
667         displays an icon in a notification area.
668
669         * gtk/gtkstatusicon-x11.c: GtkStatusIcon implementation for
670         X11, using GtkTrayIcon.
671
672         * gtk/gtktrayicon.h: 
673         * gtk/gtktrayicon.c: An implementation of the freedesktop.org
674         system tray specification, not public API.
675
676         * gtk/gtk.symbols: Add new exported functions.
677
678         * gtk/gtk.h: Include gtkstatusicon.h.
679
680         * gtk/Makefile.am: Add new files.
681
682         * tests/Makefile.am:
683         * tests/teststatusicon.c: Test for GtkStatusIcon.
684
685 2005-08-29  Christopher Aillon  <caillon@redhat.com>
686
687         * gtk/gtkstock.c: Add builtin GtkStockItems for GTK_STOCK_CONNECT
688         and GTK_STOCK_DISCONNECT
689         
690 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
691
692         * gtk/gtksocket-x11.c (_gtk_socket_windowing_embed_notify): 
693         Use XFixesChangeSaveSet if available.  (#314682)
694
695         * gtk/gtkmenu.c (gtk_menu_grab_notify):  Only cancel if the menu
696         was active.  (#314298, Christian Persch, analysis by Mark McLoughlin)
697
698 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
699
700         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): Remove an
701         accidentally leftover duplicate pixbuf creation.  (#314700,
702         Kjartan Maraas)
703
704         * gtk/gtksettings.c (settings_update_cursor_theme): Don't 
705         leak the cursor theme name.  (#314693, Kjartan Maraas)
706
707         * gdk/x11/gdkasync.c (_gdk_x11_get_window_child_info): Free 
708         state.children in all cases.  (#313862, Kjartan Maraas)
709
710 2005-08-28  Matthias Clasen  <mclasen@redhat.com>
711
712         * po/POTFILES.in, po-properties/POTFILES.in:
713         Add gdk/gdkscreen.c
714
715 2005-08-27  Matthias Clasen  <mclasen@redhat.com>
716
717         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Fix the default
718         value of the ui property. (#314532, Yong Wang)
719
720         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Don't warn
721         when G_MAXLONG is passed as length.  
722
723 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
724
725         * gtk/updateiconcache.c: Add a separate --ignore-theme-index option
726         to avoid overloading --force.  (JP Rosevaar)
727
728 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
729
730         * configure.in: Bump version to 2.9.0
731
732         * gdk/gdk.symbols: 
733         * gdk/gdkscreen.h: 
734         * gdk/gdkscreen.c: Make the GdkScreen font options api
735         public, and add properties GdkScreen::font-options and
736         GdkScreen::resolution.  (#314004)
737
738         * gdk/gdkpango.c:
739         * gtk/gtksettings.c:
740         * gtk/gtkwidget.c: Adjust all callers.
741         
742         * gdk/gdkintl.h: Simplify and use glib/gi18n-lib.h.
743         * gdk/gdkpango.c: Include gdkintl.h, not gtkintl.h.
744         * gdk/gdkscreen.c: Include gdkintl.h.
745
746         * gtk/gtkicontheme.c (theme_lookup_icon): Avoid an uninitialized
747         variable warning, pointed out by Colin Walters. (#314585)
748
749 2005-08-26  Tor Lillqvist  <tml@novell.com>
750
751         * gtk/gtkfilesystemwin32.c: Remove some ifdeffed out debugging
752         printouts.
753         (gtk_file_system_win32_parse): Don't mishandle UNC paths. (#314519)
754
755 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
756
757         * gtk/gtkcalendar.c (gtk_calendar_init): Fix the calculation
758         of week_start.  (#314473, JP Rosevaar)
759
760 2005-08-25  Thomas Fitzsimmons  <fitzsim@redhat.com>
761
762         * gtk/gtkfilesystemmodel.c (idle_finished_loading_cb): Acquire GDK
763         lock.  (#314533, Thomas Fitzsimmons)
764
765 2005-08-25  Matthias Clasen  <mclasen@redhat.com>
766
767         * gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): Handle
768         NULL gracefully.  (#314523, Ed Catmur)
769
770 2005-08-25  Owen Taylor  <otaylor@redhat.com>
771
772         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): 
773         Handle theme == NULL.
774
775 2005-08-25  Matthias Clasen  <mclasen@redhat.com>
776
777         * gtk/gtkmenutoolbutton.c (menu_position_func): Take widget
778         y offset into account when positioning the popup.  (#314470,
779         Christian Persch)
780
781 2005-08-25  Owen Taylor  <otaylor@redhat.com>
782
783         * gdk/gdkscreen.c (gdk_screen_get_type): Use gdk_screen_init
784         as instance_init, not base_init! (#314452, Fix from Frederic
785         Crozat, reported by Joe Marcus Clarke). Trivial cleanup: use -1.
786         rather than 1 for a negative flag value.
787
788 2005-08-24  Owen Taylor  <otaylor@redhat.com>
789
790         * gdk/gdkpango.c (draw_error_underline): Add a note about
791         cut-and-paste between here and Pango.
792
793 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
794
795         * === Released 2.8.2 ===
796
797         * gtk/gtkclipboard.c (request_image_received_func): Use the correct
798         callback for image/gif, and also try image/bmp.  (#314086,  Mark 
799         Wielaard)
800
801         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_render_icon): 
802         Use gnome-dev-harddisk for volumes, not gnome-fs-blockdev.  (#314382,
803         Sebastien Bacher)
804         
805         * NEWS: Updates
806
807         * gtk/gtksettings.c (gtk_settings_get_for_screen): Make sure font
808         and cursor settings get propagated down to the screen initially.
809         Pointed out by Frederic Crozat.
810
811         * gtk/gtkicontheme.c (ensure_valid_themes): Don't try to send a client
812         message if the screen is NULL. Noticed by Kjartan Maraas.
813
814 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
815
816         * Bump version
817
818         * === Released 2.8.1 ===
819
820         * NEWS: Updates
821         
822 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
823
824         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_visible): Protect
825         against lazy filterers which return values other than TRUE or
826         FALSE from their visible func.  (#314335)
827
828 2005-08-23  Owen Taylor  <otaylor@redhat.com>
829
830         Fix for #314004, reported by Michael Reinsch:
831
832         * gdk/gdk.symbols:
833         * gdk/gdkscreen.[ch]: Add gdk_screen_get/set_font_options_libgtk_only()
834         Add gdk_screen_get/set_resolution_libgtk_only()
835
836         * gdk/gdkpango.c (gdk_pango_context_get_for_screen): Set
837         the options for the screen on the newly created context.
838
839         * gtk/gtksettings.c (settings_update_font_options/dpi) gtkwidget.c: 
840         Move font options and dpi code from gtkwidget.c to gtksettings.c, set
841         the font options on the screen.
842
843         * gtk/gtkwidget.c (gtk_widget_update_pango_context): Just get
844         the font options from the screen and set them on the context.
845
846 2005-08-23  Kristian Rietveld  <kris@gtk.org>
847
848         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): don't
849         bother inserting new rows in a level with a zero refcount and
850         immediately free the level. (Fixes #312350, reported by Markku Vire).
851
852 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
853
854         * gtk/updateiconcache.c: Complain when there is no index.theme file
855         in the specified directory, unless --force is used. Also add an
856         --index-only option to create caches without image data.
857
858         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Fix a
859         C99ism.  (#314262, Robert Jeff Mitchell)
860         
861 2005-08-22  Manish Singh  <yosh@gimp.org>
862
863         * gtk/gtkicontheme.h: add declaration for _gtk_icon_theme_check_reload.
864
865         * gtk/gtkwindow.c: remove declaration of gtk_window_read_rcfiles.
866
867 2005-08-22  Matthias Clasen  <mclasen@redhat.com>
868
869         * gtk/gtkwindow.c (gtk_window_client_event): 
870         * gtk/gtkicontheme.c (ensure_valid_themes) 
871         (_gtk_icon_theme_check_reload): Implement a clientmessage based
872         scheme for makeing sure that all GTK+ applications notice if an
873         icon theme has been updated. This should prevent multiple versions
874         of an icon theme cache to be mapped in memory at the same time,
875         which can cause excessive memory consumption.  (#313156, Chris 
876         Lahey)
877
878 2005-08-22  Matthias Clasen  <mclasen@redhat.com>
879
880         * gtk/gtkicontheme.c (gtk_icon_theme_load_icon): Add a note
881         regarding icon theme changes.
882
883         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): When returning
884         pixbufs which are backed by the mmapped memory of an icon cache,
885         increase the refcount of the icon cache, so that the memory is not
886         munmapped away underneath the pixbuf upon icon theme changes.  
887         (#314170, Kjartan Maraas)
888
889         * docs/tools/Makefile.am (LDADDS): Add GTK_DEP_LIBS, in order 
890         to link against Xext.  (#314062)
891
892         * gtk/gtkhsv.c (paint_triangle): One more fix to prevent buffer
893         overruns.  (#314081, Hans Breuer)
894
895 2005-08-20  Matthias Clasen  <mclasen@redhat.com>
896
897         * gtk/gtkentry.c (gtk_entry_get_layout): Clarify that the
898         returned layout must not be modified.
899
900 Sat Aug 20 16:12:14 2005  Jonathan Blandford  <jrb@redhat.com>
901
902         * gtk/gtktreeview.c (gtk_tree_view_set_model): clear
903         scroll_to_path if the model changes.
904
905         * gtk/gtkiconview.c: (gtk_icon_view_destroy),
906         (gtk_icon_view_size_allocate), (gtk_icon_view_set_cursor),
907         (gtk_icon_view_scroll_to_path): Handle scrolling to a path before
908         we're realized, #312798
909         (gtk_icon_view_set_model): clear scroll_to_path if the model
910         changes.
911
912 2005-08-20  Matthias Clasen  <mclasen@redhat.com>
913
914         * gtk/gtkrange.c (gtk_range_adjustment_changed) 
915         (gtk_range_adjustment_value_changed):  Don't queue a draw
916         if the layout has not changed.  (#313991, Benjamin Berg)
917
918 2005-08-19  Matthias Clasen  <mclasen@redhat.com>
919
920         * gtk/gtktreeitem.c: Remove duplicate lines.  (#313344,
921         Benoit Carpentier)
922
923         * modules/engines/ms-windows/msw_style.c (setup_system_styles): 
924         Fix a typo. 
925
926         * gtk/gtkfilechooserbutton.c (change_icon_theme) 
927         (model_add_special, model_add_special, model_add_volumes):
928         Handle pixbuf being NULL without warnings. Also, don't
929         leak pixbuf references when the icon theme is changed.
930
931         * gtk/gtkmain.c (gtk_get_event_widget): Don't access
932         the user data on destroyed windows, since at best
933         it can be a stale pointer.  (#313953, Robin Green)      
934
935 2005-08-19  Matthias Clasen  <mclasen@redhat.com>
936
937         * gtk/gtkhsv.c (paint_triangle): Avoid a buffer overrun.  
938         (#313900, Sebastien Bacher)
939
940         * gtk/gtktreeview.c (gtk_tree_view_get_visible_range): Return
941         FALSE if the tree is empty.  (#313891, Guillaume Cottenceau)
942
943         * gdk/x11/gdkdnd-x11.c (_gdk_drag_get_protocol_for_display) 
944         (xdnd_read_actions, get_client_window_at_coords_recurse): 
945         Free data returned from XGetWindowProperty. 
946
947         * gdk/x11/gdkevents-x11.c (fetch_net_wm_check_window) 
948         Free data returned from XGetWindowProperty.  (313867, Kjartan
949         Maraas)
950         
951         * gdk/x11/gdkdnd-x11.c (get_client_window_at_coords_recurse): Free
952         children in all cases.  (#313862, Kjartan Maraas)
953
954         * gtk/gtkicontheme.c (theme_lookup_icon): Store GtkIconData structs 
955         in the per-directory hash, even if they come from the icon cache. 
956         We tried to avoid that before, but as a result leaked icon data
957         structs.  (#313852, Kjartan Maraas)
958
959 2005-08-18  Matthias Clasen  <mclasen@redhat.com>
960
961         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_destroy): Disconnect
962         signal handlers on destroy, not on finalize.  (#313759, Brett Atoms)
963
964 2005-08-15  Owen Taylor  <otaylor@redhat.com>
965
966         * configure.in: Add -lXext to GDK_EXTRA_LIBS in absence of pkg-config
967         files for x11/xext. (Jonas Bonn)
968
969 2005-08-15  Tor Lillqvist  <tml@novell.com>
970
971         * gtk/gtkicontheme.c (theme_lookup_icon): Put debugging printout
972         inside GTK_NOTE.
973
974 2005-08-15  Owen Taylor  <otaylor@redhat.com>
975
976         * configure.in: Fix have_base_pc / have_base_x_pc typo.
977
978         * gdk/x11/gdkdrawable-x11.c gtk/gtksettings.c: Remove panoxft.h includes.
979         (#313417, James Andrewartha)
980
981         * configure.in: Add fontconfig to X_PACKAGES, since we use it for
982         FcNameConstant(). (More of #313417)
983
984 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
985
986         * gtk/gtkfilechooserdefault.c: When using gtk_dialog_run() for
987         modal dialogs, make sure to inherit the window group from 
988         the parent, since we don't inherit window groups across
989         transient parents currently.  (#312918, Christian Persch)
990
991         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): 
992         * gtk/gtkdialog.c (gtk_dialog_run): Slight update to the docs. 
993
994         * gtk/gtkiconview.c (gtk_icon_view_select_path) 
995         (gtk_icon_view_scroll_to_path): Handle paths of depth 0
996         gracefully.  (#312796, Jonathan Blandford)
997
998         * tests/testtoolbar.c: Add some more tests for menu placement.
999
1000         * gtk/gtkmenutoolbutton.c (menu_position_func): 
1001         * gtk/gtktoolbar.c (menu_position_func): Improve positioning
1002         of toolbutton menus and of the overflow menu.  (#312937, 
1003         #153870, Christian Persch, Paolo Borelli)
1004
1005 2005-08-15  Tor Lillqvist  <tml@novell.com>
1006
1007         * gtk/updateiconcache.c: Use g_path_get_dirname() instead of
1008         the nonportable <libgen.h> and dirname().
1009
1010 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
1011
1012         * gtk/gtksizegroup.c: Use object data to mark widgets and
1013         groups as visited, so that we avoid constant extra list
1014         traversals. Also allocate quarks in class_init.  (#311618,
1015         Michael Natterer)
1016
1017         * gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon): Correct the 
1018         download location for the hicolor icon theme. (#313475, Olexiy 
1019         Avramchenko)
1020
1021         * gtk/gtkicontheme.c: Remove debug spew. 
1022
1023 2005-08-15  Owen Taylor  <otaylor@redhat.com>
1024
1025         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap): 
1026         * gdk/win32/gdkwindow-win32.c (gdk_window_set_back_pixmap): 
1027         * gdk/x11/gdkwindow-x11.c (gdk_window_set_back_pixmap):
1028         Handle pixmap == NULL when checking for a colormap.
1029         (Allin Cottrell).
1030
1031 2005-08-14  Matthias Clasen  <mclasen@redhat.com>
1032
1033         * gtk/updateiconcache.c: Store only one copy of the pixel data
1034         for symlinked icons. To achieve this, maintain a hashtable 
1035         mapping pathnames to pixel data, and share the pixel data for
1036         all symlinks resolving to the same pathname. When writing out
1037         the image data, write out the pixel data only the first time
1038         it is met, and store the offset pointing to the first copy
1039         for use in all later cases.
1040         This reduces the size of the Bluecurve icon cache from 40
1041         to 13MB. (#312972)
1042