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