]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-10
Fix some docs
[~andy/gtk] / ChangeLog.pre-2-10
1 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
2
3         * gtk/gtkwindow.c (gtk_window_parse_geometry):
4         Fix up the example.  (#307699, Michal Suchanek)
5
6 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
7
8         * gtk/gtkcalendar.c: Update num_marked_dates as we
9         used to do.  (#307689, Thorsten Schoenfeld)
10  
11 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
12
13         Merged from gtk-2-6:
14
15         Fix #302087:
16
17         * gtk/gtkfilechooserdefault.c (list_selection_changed): Emit
18         "selection-changed" and do the normal housekeeping even if we are
19         in SAVE mode and there is nothing selected.  We didn't emit that
20         signal if we were in SAVE mode and unselect_all() got called.
21         (gtk_file_chooser_default_unselect_all): Call
22         pending_select_paths_free() so that we cancel any asynchronous
23         selections.
24         (gtk_file_chooser_default_set_current_name): Likewise.
25
26 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
27
28         Merged from gtk-2-6:
29
30         Fixes #307640:
31
32         * gtk/gtkfilechooserdefault.c
33         (gtk_file_chooser_default_should_respond): Oops, I broke SAVE
34         mode.  If the parent path is a folder, only create a subfolder if
35         we are in CREATE_FOLDER mode; if we are in SAVE mode, just return
36         and respond.  Also, pick up the case where the user types
37         "dirname/" instead of "dirname".
38         (check_save_entry): Make the return type void.  Add some return
39         parameters so that we can do more thorough checking.
40         (gtk_file_chooser_default_get_paths): If the file part is empty
41         and we are in SAVE mode, return an empty selection.
42
43 2005-06-15  Kristian Rietveld  <kris@gtk.org>
44
45         Patch for #163214 (reported by Tommi Komulainen) and fixes some
46         other scrolling/validation related bugs along the why.
47
48         * gtk/gtktreeview.c (gtk_tree_view_size_request): run
49         do_validate_rows once and don't queue a size request there,
50         (gtk_tree_view_size_allocate): don't update vadj value without
51         reason, sync top_row/dy after the window sizes and adjustments
52         are in sync again,
53         (validate_visible_area): always update dy when scrolling,
54         manually set top_row here after changing the vadj (don't depend
55         on _adjustment_changed and top_row/dy sync to do this), since we
56         now always set top_row here correctly, we can always free
57         scroll_to_path at the end which avoids infinite expose loops,
58         (do_validate_rows): add queue_resize boolean, remove top_row/dy
59         sync here, we cannot do it safely at this place since the
60         window sizes and adjustments are out of sync,
61         (validate_rows), (validate_rows_handler): update call to
62         do_validate_rows().
63
64 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
65
66         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_name): Add a 
67         stub for the no-Xcursor case. (noticed by Luis Villa)
68
69         Use named cursors for the DND cursors, the names are "dnd-none",
70         "dnd-copy", "dnd-link", "dnd-move" and "dnd-ask". Also use an RGBA 
71         cursor instead of cursor+window when possible. This saves 
72         roundtrips during the drag operation, and makes translucent icons 
73         possible.
74         
75         * gtk/gtkdndcursors.h: New file, containing inlined pixbufs
76         for the default dnd cursors.
77
78         * gtk/gtkdnd.c (struct _GtkDragSourceInfo): Store the cursors
79         used during the drag here, also store the icon pixbuf here. 
80
81         * gtk/gtkdnd.c (drag_cursors): Store the cursor names here. Also
82         switch the default cursors from xbm to inlined pixbufs. 
83
84         * gtk/gtkdnd.c (gtk_drag_get_cursor): This function now takes the
85         GtkDragSourceInfo as well, since it has to composite the 
86         drag-specific cursors. The cursors combined from the image of
87         the themed cursor and the icon_pixbuf stored in the info.
88
89         * gtk/gtkdnd.c (gtk_drag_begin_internal): Don't set the default
90         icon if there is an icon_pixbuf, which will be composited into
91         the cursor later.
92
93         * gtk/gtkdnd.c (set_icon_stock_pixbuf): If appropriate, store
94         the pixbuf in the info struct for later compositing into the
95         cursor instead of creating an icon window.
96         
97         * gtk/gtkdnd.c (gtk_drag_drop_finished): If we used an
98         RGBA cursor for the drag, and need to display the cancel
99         animation, construct the icon window here.
100
101         * gtk/gtkdnd.c (gtk_drag_source_info_destroy): Unref the 
102         drag-specific cursors and the icon_pixbuf when done with
103         the drag.
104
105 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
106
107         * gtk/gtkcolorsel.c (make_picker_cursor): Use a named cursor
108         with the name "color-picker", when available.
109
110         * gdk/gdk.symbols: 
111         * gdk/gdkcursor.h: 
112         * gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image) 
113         (gdk_cursor_new_from_name): New functions to construct named
114         cursors and to get the image used for a cursor.  
115
116 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
117
118         * gtk/gtkpathbar.[hc]: Rework the way in which rerooting of the
119         path bar is done, implementing the following principles:
120         (#137289, patch by Benjamin Otte)
121         
122         1. Re-root only if $HOME is an ancestor of the current path.
123
124         2. When re-rooting, make sure the Left arrow appears in the path 
125         bar, so that you can navigate up from $HOME to /.  In that case, 
126         make sure the Right arrow doesn't appear if the sub-hierarchy from 
127         $HOME to the cwd fits in the window.
128
129         3. Make sure that hitting Alt-Up takes you always one folder up, 
130         even when the path bar is re-rooted.
131
132         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
133         Try harder not to modify readonly strings. (#307541, Torsten Schoenfeld)
134
135         * gtk/gtkfilechooserbutton.c (model_update_current_folder): 
136         Free the data of the row before overwriting it.  (#307490,
137         Kjartan Maraas)
138
139 2005-06-13  Kjartan Maraas  <kmaraas@gnome.org>
140
141         * gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
142         leak the cairo context. Closes bug #307426.
143
144 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
145
146         Make invisible text work a bit better (#66194, patch by
147         Jeroen Zwartepoorte)
148         
149         * gtk/gtk.symbols:
150         * gtk/gtktextiter.[hc]: Add function to move by
151         visible lines.
152
153         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): 
154         Skip invisible text when moving by paragraphs.
155
156         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_visually): 
157         Skip invisible lines here too.
158
159 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
160
161         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
162         Don't leak the format names.  (#307190, Morten Welinder)
163
164 2005-06-12  Kjartan Maraas  <kmaraas@gnome.org>
165
166         * gdk/x11/gdkasync.c: (send_event_handler): Plug
167         a leak. Closes bug #307281.
168
169 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
170
171         * gtk/gtkcalendar.c (calendar_paint_header): 
172         (gtk_calendar_size_request): Allow localization of the
173         format in which the year is displayed.  (#135451, Paisa 
174         Seeluangsawat)
175
176         * gdk/*.h: Cleanup.  (#169648, Fabricio Barros Cabral)
177
178         * gdk/gdkcairo.c: Small doc additions.
179
180         * gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row): 
181         Check start_button_mask before starting a drag.  (#149058, 
182         Andreas Volz)
183
184         * gtk/gtkfilesystemunix.c: Support .hidden files.  (#129170,
185         Sayamindu Dasgupta, patch by Jan Arne Petersen)
186
187 2005-06-11  Matthias Clasen  <mclasen@redhat.com>
188
189         * NEWS: Updates.
190
191         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): More docs
192         provided by Owen Taylor.
193
194         * gtk/gtk.symbols: 
195         * gtk/gtkiconview.h: 
196         * gtk/gtkiconview.c (gtk_icon_view_get_visible_range): 
197         Add a function to determine what parts of the model are
198         visible.  (#306726, Jonathan Blandford)
199
200         * gtk/gtkfilesystemunix.c (create_file_info): Treat backup
201         files the same way as hidden files, to be closer to what
202         Nautilus does.  (#136196, Sean Middleditch)
203
204 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
205
206         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
207         Don't modify strings returned from gettext().
208
209 Fri Jun 10 19:06:03 2005  Manish Singh  <yosh@gimp.org>
210
211         * gtk/gtktextdisplay.c (render_para): don't use deprecated
212         gdk_gc_unref function.
213
214 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
215
216         Allow setting paragraph background.  (#81045, Gustavo
217         Carneiro, patch by Jeroen Zwartepoorte)
218         
219         * gtk/gtktextlayout.c (set_para_values): Propagate 
220         pg_bg_color to the display struct.
221         (gtk_text_layout_free_line_display): Free it here.
222
223         * gtk/gtktextdisplay.c (render_para): If pg_bg_color
224         is set, draw a rectangle in that color behind
225         the paragraph.
226
227         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add 
228         paragraph-background, paragraph-background-gdk and
229         paragraph-background-set properties.
230         (set_pg_bg_color): A setter for paragraph-background.
231
232         * gtk/gtktextlayout.h (struct _GtkTextLineDisplay): Add
233         pg_bg_color.
234
235         * gtk/gtktexttag.h (struct _GtkTextAttributes): Add
236         pg_bg_color.
237         (struct _GtkTextTag): Add pg_bg_color_set.
238
239 2005-06-10  Kjartan Maraas  <kmaraas@gnome.org>
240
241         * gdk/gdkcairo.c: (gdk_cairo_set_source_pixbuf): Destroy the
242         cairo surface when done with it. Plugs a fairly large leak in
243         some cases.
244         ==6014== 1999824 (115640 direct, 1884184 indirect) bytes in
245         826 blocks are definitely lost in loss record 25239 of 25250
246         Like this from nautilus.
247
248 2005-06-10  Michael Natterer  <mitch@imendio.com>
249
250         * gtk/gtk.symbols
251         * gtk/gtkaction.[ch] (gtk_action_get_accel_closure): new function
252         to get an action's accel_closure (Fixes #141750 and #148106).
253
254 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
255
256         * gdk/gen-keyname-table.pl: Generate N_() calls for
257         translatable key names.
258
259         * gdk/keynames.txt: Mark some key names as translatable.
260         
261         * gdk/keyname-table.h: Regenerated.
262
263         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): Add
264         some context to the msg ids for keyboard modifiers and
265         key names.
266         (_gtk_accel_label_class_get_accelerator_label): Try to
267         translate key names.  (#300224, Christian Rose)
268
269 2005-06-10  Federico Mena Quintero  <federico@ximian.com>
270
271         Merged from gtk-2-6:
272
273         Fixes #162358:
274
275         * gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't return
276         immediately if we are in CREATE_FOLDER mode, so that we can fill
277         the entry with the newly-selected folder.
278         (gtk_file_chooser_default_set_property): Warn against turning on
279         multiple selection for CREATE_FOLDER mode, or about setting that
280         action while multiple selection is on.
281         (update_chooser_entry): Change the entry's contents as well if we
282         are in CREATE_FOLDER mode.  If nothing is selected, clear the
283         chooser entry.
284         (trap_activate_cb): Don't trap enter/space if modifiers are
285         pressed.  This lets one use Ctrl-space to toggle rows in multiple
286         selection mode.
287         (gtk_file_chooser_default_should_respond): Clean up the if-chain
288         mess of special cases by using an array to determine what to do.
289         Also, for the save-entry case in CREATE_FOLDER mode, actually fix
290         the bug where the file chooser would switch to an existing folder
291         rather than confirming with it, and create the folder ourselves.
292         (error_creating_folder_over_existing_file_dialog): New function.
293
294         * gtk/gtkfilechooserentry.c (check_completion_callback): Only
295         insert the common prefix if we are in an "open" mode.  Use a
296         helper function.
297         (append_common_prefix): New helper function; code moved over from
298         check_completion_callback().
299         (find_common_prefix): New helper function.
300         (gtk_file_chooser_entry_focus): Append the common prefix if the
301         user requests it explicitly.
302
303 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
304
305         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_expand): 
306         * gtk/gtktoolbar.c (gtk_toolbar_get_show_arrow): 
307         * gtk/gtktextview.c (gtk_text_view_get_iter_at_position): 
308         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
309         * gtk/gtkspinbutton.c (gtk_spin_button_get_adjustment): 
310         * gtk/gtkscrolledwindow.h: 
311         * gtk/gtkmenushell.c (gtk_menu_shell_get_take_focus): 
312
313         * gtk/gtkiconview.c (gtk_icon_view_set_margin): 
314         * gtk/gtkicontheme.c (gtk_icon_info_load_icon): 
315         * gtk/gtkcalendar.c (gtk_calendar_thaw): Doc fixes.
316
317 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
318
319         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
320
321         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add docs.
322         (#306212, Steve Chaplin, docs provided by Billy Biggs)
323
324         * gtk/gtktextbtree.c (_gtk_text_btree_char_is_invisible): Small 
325         cleanup.  (#305539, Paolo Borelli)
326
327 2005-06-09  Rodrigo Moya <rodrigo@novell.com>
328
329         * configure.in: added cairo to list of $GTK_PACKAGES.
330
331 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
332
333         * gdk/x11/gdkdnd-x11.c (motif_drop_start, xdnd_drop_filter): Update
334         the user time on the window when a drop happens.  (#169364, Alexander
335         Hunziker, patch by Elijah Newren)
336
337         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
338
339         * gtk/gtk.symbols: 
340         * gtk/gtkiconview.h: 
341         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_path): New function
342         to scroll to a path.  (#306838, Jonathan Blandford)
343
344 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
345
346         * gtk/gtkiconview.c (gtk_icon_view_set_cursor): Scroll to the
347         item.  (#306839, Jonathan Blandford)
348
349         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): Check for
350         negative before appending the index, to avoid double error
351         message.  (#306393, Morten Welinder)
352
353         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
354         Don't crash if search_window is NULL.  (#304914, Victor Osadci,
355         testcase by Olaf Vitters)
356
357         * gtk/gtkimage.c: Make the file property readable.  
358         (#170674, Lorenzo Gil Sanchez)
359
360 ==================================================================
361 ==================================================================
362         
363 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
364
365         * gtk/gtkfilesystem.c (gtk_file_info_get_display_key): Use
366         g_utf8_collate_key_for_filename().
367
368 2005-06-07  Kjartan Maraas  <kmaraas@gnome.org>
369
370         * gtk/gtkfilechooserbutton.c: (update_label_and_image):
371         Merge leak fix from stable. Bug 306754.
372
373 2005-06-05  Tor Lillqvist  <tml@novell.com>
374
375         * gdk/win32/gdkscreen-win32.c
376         (_gdk_windowing_substitute_screen_number): Return NULL unless
377         screen number is zero. We have only one screen on Win32.
378         (gdk_screen_make_display_name): Call gdk_display_get_name() and
379         return that.
380         
381         * modules/engines/Makefile.am
382         * modules/input/Makefile.am: Decide whether to build the
383         ms-windows theme engine based on the GDK backend, not based on
384         platform. (I.e., if building for Cygwin with the X11 backend, we
385         shouldn't build the ms-windows engine, but if building for Cygwin
386         but with the Win32 backend, we should.) Ditto for the IME
387         (Windows) input module. (#305832)
388
389 2005-06-04  Tor Lillqvist  <tml@novell.com>
390
391         * gdk/win32/gdkcursor-win32.c
392         * gdk/win32/gdkwindow-win32.c
393         * gdk/win32/gdkprivate-win32.h: Support full-colour cursors.
394         Support cursors with alpha on XP. Use code in common with the
395         support for alpha icons that already was present. (#306101, Tim
396         Evans)
397
398         * modules/engines/ms-windows/msw_style.c: Render insensitive icons
399         in a way that more closely matches Windows. (#305986, Tim Evans).
400
401         * modules/engines/ms-windows/Makefile.am (LDADDS): Link with
402         gdk-pixbuf.
403
404 2005-06-03  Dom Lachowicz <cinamod@hotmail.com>
405
406         * modules/engines/ms-windows/msw_style.c: Re-sync with gtk-wimp
407         * modules/engines/ms-windows/xp_theme.c: Ditto
408         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Ditto
409
410 Thu May 26 16:43:27 2005 Manish Singh  <yosh@gimp.org>
411
412         * gtk/gtkentrycompletion.h: Add declarations for
413         gtk_entry_completion_{get,set}_popup_single_match.
414
415 2005-05-26  Matthias Clasen  <mclasen@redhat.com>
416
417         * gtk/gtk.symbols: 
418         * gtk/gtkentrycompletion.c: Add a property to suppress the
419         popup for single matches.  (#154711)
420
421         * gtk/gtkentry.c (gtk_entry_completion_timeout): Respect it here.
422
423         * gtk/gtkfilechooserentry.c (_gtk_file_chooser_entry_set_action): 
424         Use it here.
425
426         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Queue the 
427         redisplay after modifying the tag in the btree, otherwise 
428         we end up showing the old tags until the next redraw comes 
429         around.   (#143537, Gary Kramlich, Peter Wainwright)
430
431         * gtk/gtkcombobox.c (gtk_combo_box_list_auto_scroll): Make 
432         autoscrolling work at the bottom of the screen.
433
434 2005-05-26  Maciej Katafiasz  <email@mathrick.org>
435
436         * docs/reference/gtk/tmpl/gtkentry.sgml:
437         Point to GtkTextView instead of GtkText. Fixes bug #305535
438
439 2005-05-26  Sven Neumann  <sven@gimp.org>
440
441         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): use a less
442         aggressive PNG compression level (bug #305340).
443
444 2005-05-26  Tor Lillqvist  <tml@novell.com>
445
446         * gdk/win32/gdkdrawable-win32.c (_gdk_win32_blit): If blitting
447         from the root window, take the multi-monitor offset into
448         account. (#305511)
449
450 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
451
452         * demos/gtk-demo/appwindow.c (do_appwindow): Set the window
453         icon by name.
454
455         * gtk/gtkfilesystem.c (gtk_file_folder_is_finished_loading): 
456         Remove another C99ism.
457
458         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw the 
459         background of rows insensitive when the treeview is insensitive.
460         (pointed out by Billy Biggs)
461
462         * demos/gtk-demo/clipboard.c: Demonstrate image copy-and-paste
463         and DND, and clipboard persistency.
464
465         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
466         Make sure png comes first, otherwise dnd may use bmp by
467         default, loosing transparency.
468
469 2005-05-25  Michael Natterer  <mitch@imendio.com>
470
471         * gtk/gtktextview.c (blink_cb): block the text_layout's "changed"
472         handler when changing cursor visibility because it would expose
473         the whole paragraph where the cursor is. Instead, expose the
474         cursors' areas manually. (#173047).
475
476         (text_window_invalidate_cursors): new function which exposes the
477         cursors.
478
479         * gtk/gtkstyle.c (draw_insertion_cursor): added comment that the
480         same cursor size calculation is in text_window_invalidate_cursors().
481
482 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
483
484         * demos/gtk-demo/editable_cells.c (create_items_model): Also
485         demonstrate GtkCellRendererProgress.
486
487         * demos/gtk-demo/Makefile.am (demos): 
488         * demos/gtk-demo/combobox.c: Add a demo showing combo box 
489         variations.
490
491         * demos/gtk-demo/Makefile.am (demos): 
492         * demos/gtk-demo/pickers.c: Add a demo showing all picker widgets.
493
494 2005-05-24  Matthias Clasen  <mclasen@redhat.com>
495
496         * demos/gtk-demo/iconview.c (do_iconview): Fix a typo.
497
498 2005-05-24  Tor Lillqvist  <tml@novell.com>
499
500         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Handle
501         gtk-alternative-button-order (setting it to TRUE).
502
503 2005-05-23  Matthias Clasen  <mclasen@redhat.com>
504
505         * gtk/gtktreeview.c (gtk_tree_view_search_init): Remove
506         an unused variable.  (#305130, Jaap A. Haitsma)
507
508         * gtk/gtkfilechooserdefault.c (filter_create): Don't grab
509         the focus away from the file list when operating the filter
510         combo with the pointer.  (#304844, Sven Neumann)
511
512 2005-05-23  Tor Lillqvist  <tml@novell.com>
513
514         * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
515         GDK_Menu. (#172383, Ivan Wong)
516
517         * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
518         of the special cases this function takes care of, use it as
519         such. This takes care of for instance the Bengali Virama, see bug
520         #165723.
521
522 2005-05-20  Matthias Clasen  <mclasen@redhat.com>
523
524         * gtk/gtkimcontextsimple.c (check_table): Avoid a possible
525         buffer overrun.  (#142444, Leonard Michlmayr)
526
527         * gtk/gtkfilesystem.c: Remove C99-isms (#304879, 
528         Kazuki IWAMOTO)
529
530 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
531
532         * gtk/gtkfilechooser.c (gtk_file_chooser_remove_shortcut_folder_uri): 
533         Use the correct function to conver the uri to a path.  (#304565,
534         Ismael Juma)
535
536         * gtk/gtkfilechooserbutton.c (dialog_response_cb): Handle the
537         Cancel button properly.  (#304234, Sven Neumann)
538
539 2005-05-18  Anders Carlsson  <andersca@imendio.com>
540
541         * gtk/gtktextview.c: (gtk_text_view_flush_scroll),
542         (gtk_text_view_update_adjustments), (gtk_text_view_value_changed):
543         * gtk/gtktextview.h:
544         If the horizontal adjustment changes because of a change in the
545         layout width, then do a complete redraw. This is because there
546         might be right-aligned or centered text that needs to be redrawn.
547
548 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
549         
550         * gtk/gtkwidget.c (gtk_widget_add_events): Try harder to set
551         the event masks of descendent windows.  (#169821, Tommi Komulainen)
552
553         * gtk/gtktreeview.c (gtk_tree_view_get_drop_column) 
554         (gtk_tree_view_set_column_drag_info): Fix some errors in the
555         handling of drop columns.  (#143355, John Finlay)
556
557         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
558         Remove the no longer needed workaround.
559
560         * gtk/gtkwidget.c (widget_add_child_draw_rectangle): Only collect
561         allocations of mapped children.
562
563         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
564         Add a bug reference.
565
566 2005-05-18  Tor Lillqvist  <tml@novell.com>
567
568         * gdk/win32/gdkevents-win32.c
569         * gdk/win32/gdkkeys-win32.c
570         * gdk/win32/gdkprivate-win32.h: Check the KF_EXTENDED bit in
571         lParam of WM_KEY* messages to distinguish between left and right
572         Control and Alt keys. Unfortunately, the right Shift key doesnt
573         set KF_EXTENDED, so to distinguish between left and right Shift
574         keys, check the scan code. (#304584)
575
576 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
577
578         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Warn if
579         length overflows.  (#161520, Ian Wienand)
580
581         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name): Fix
582         parameter names to make gtk-doc happy.
583
584         * gtk/gtkscale.c (gtk_scale_class_init): Fix the default
585         values of draw-value and value-pos to be the values we
586         actually use in _init. (#304547, Mikael Hallendal)
587
588         * gtk/gtkcellrendererpixbuf.c: Support named icons in
589         cells by adding a icon-name property. (#165777, Anders
590         Carlsson)
591
592         * gtk/gtk.symbols:
593         * gtk/gtktoolbutton.h: 
594         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name) 
595         (gtk_tool_button_get_icon_name): Support named icons in 
596         tool buttons by adding a icon-name property. (#116577, 
597         Christian Neumair)
598
599         * gtk/gtk.symbols: 
600         * gtk/gtkdnd.h: 
601         * gtk/gtkdnd.c (gtk_drag_source_set_icon_name) 
602         (gtk_drag_set_icon_name): New functions to support themed 
603         drag icons.  (#116577, Christian Neumair)
604
605 2005-05-17  Owen Taylor  <otaylor@redhat.com>
606
607         * gdk/x11/gdkdrawable-x11.c (gdk_x11_ref_cairo_surface): 
608         Update to changed cairo interface.
609
610         * gdk/x11/gdkdrawable-x11.[ch]:
611         Add _gdk_x11_drawable_update_size()
612         
613         * gdk/x11/gdkwindow-x11.c (gdk_window_resize) 
614         (gdk_window_move_resize)
615         * gdk/x11/gdkevents-x11.c (gdk_event_translate): 
616         Call _gdk_x11_drawable_update_size().
617
618 2005-05-17  Matthias Clasen  <mclasen@redhat.com>
619
620         * gtk/gtktextview.c (cursor_blinks): Don't blink the cursor
621         if the text view is not editable.  
622
623         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): Keep
624         the popup posted if the button is released over the cellview.
625         This matches the behaviour of other combo box implementations.  
626         (#171378)
627         
628         * gdk/gdkwindow.c (gdk_window_set_bg_pattern): Adjust offsets
629         when recursing.  (#153682, Felipe Heidrich)
630
631 2005-05-16  Matthias Clasen  <mclasen@redhat.com>
632
633         * gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up 
634         and GDK_Page_Down twice.  (#168333, Hazael Maldonado Torres)
635
636         * gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if 
637         the entry is not editable.  (#304171, Nikos Kouremenos)
638         
639         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor): 
640         Make sure the action of the button and the dialog are in sync,
641         when the dialog is provided by the app.  (#303987, David A Knight)
642
643         * gdk/gdkpango.c (gdk_pango_renderer_get_default): Fix a typo
644         in the docs.  (#303940, Masao Mutoh)
645
646         * configure.in (GTK_DOC_CHECK): Check for gtk-doc 1.4.
647
648         * gtk/gtktoggleaction.c (connect_proxy): Be more careful when
649         casting.  (#304089, Philip Langdale)
650
651         * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Only shrink
652         the label if we need to.  (#169390, Felix Riemann)
653
654 Sat May 14 00:07:46 2005  Manish Singh  <yosh@gimp.org>
655
656         * gdk/gdkdraw.c
657         * gdk/gdkpango.c: #include gdkcairo.h for gdk_cairo_create()
658         declaration.
659
660         * gtk/gtkiconview.c (gtk_icon_view_create_drag_icon): actually
661         call gdk_cairo_set_source_color() with a color.
662
663         * gtk/gtkimage.c (gtk_image_expose): remove unused stock_id variable.
664
665         * tests/testiconview.c (main): cast args of drag functions to the
666         appropriate type.
667
668 2005-05-13  Owen Taylor  <otaylor@redhat.com>
669
670         * gdk/x11/gdkdrawable-x11.c: Update for cairo-xlib API change.
671
672         * gdk/x11/gdkpixmap-x11.[ch] gdk/gdk.symbols: Export 
673         gdk_pixmap_impl_x11_get_type(), needed in gdkdrawable-x11.c.
674         
675 2005-05-11  Owen Taylor  <otaylor@redhat.com>
676
677         * tests/testgtk.c (on_alpha_window_expose): Fix to use
678         gdk_cairo_create(). (create_alpha_window): Hook up "response"
679         to close the window.
680
681 2005-05-11  Owen Taylor  <otaylor@redhat.com>
682
683         * gtk/gtkcolorbutton.c: Use a GtkAlignment rather than a GtkDrawingArea
684         to draw the swatch in to avoid having an extraneous window.
685         
686         * gtk/gtkcolorsel.c (color_sample_draw_sample): Actually se tthe
687         color when !has_opacity.
688
689 2005-05-10  Owen Taylor  <otaylor@redhat.com>
690
691         * gdk/gdkcairo.[ch] gdk/gdkcolor.[ch] gdk/Makefile.am: Add source
692         files for Cairo convenience functionality.
693
694         * gdk/gdkcairo.h (gdk_cairo_rectangle, gdk_cairo_region): Add a
695         convenience functions to add GdkRectangle, GdkRegion to a cairo path.
696
697         * gdk/gdkwindow.c gdk/gdkgc.c gtk/gtkcolorsel.c gtk/gtkiconview.c 
698         gtk/gtkstyle.c: Use gdk_cairo_rectangle/region().
699
700         * gdk/gdkcairo.[ch] gdk/gdkdrawable.h gdk/gdkdraw.c: Rename
701         gdk_drawable_create_cairo_context() to gdk_cairo_create().
702
703         * gdk/gdkcairo.c gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c:
704         Rename gdk_pixbuf_set_as_cairo_source() to 
705         gdk_cairo_set_source_pixbuf().
706
707         * gdk/gdkdraw.c gdk/gdkpango.c gtk/gtkcolorsel.c gtk/gtkhruler.c
708         gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkstyle.c gtk/gtkvruler.c:
709         Adjust for renames.
710
711         * gdk/gdk.symbols: Update.
712
713         * gtk/gtkwidget.c (gtk_widget_queue_shallow_draw): Fix 
714         coordinate system problem that was causing the wrong portions
715         to be invalidated.
716
717         * gtk/gtkcellrenderer.c (gtk_cell_renderer_render)
718         gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render)
719         gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_render)
720         gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render)
721         gtk/gtkcellview.c (gtk_cell_view_expose)
722         gtk/gtkdnd.c (gtk_drag_highlight_expose)
723         gtk/gtkentry.c (gtk_entry_draw_text) 
724         gtk/gtktextview.c (text_window_invalidate_rect): Some cairoization.
725
726         * gtk/gtkcalendar.[ch]: Beat into something roughly resembling
727         GTK+ style ... use instance-private data and standard names for
728         private structure, etc. Move function docs inline.
729
730         * gtk/gtkcalendar.[ch]: Switch to drawing everything in
731         expose. Switch drawing to Cairo.
732
733         * gtk/gtkcalendar.c (gtk_calendar_freeze): Deprecate
734         gtk_calendar_freeze/thaw
735
736 2005-05-10  Tor Lillqvist  <tml@novell.com>
737
738         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Check
739         that GDK_IS_SCREEN(screen) (like the X11 backend does), not screen
740         == gdk_screen_get_default(), as that might return NULL when this
741         function is called.
742
743 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
744
745         * gtk/gtkalignment.c (gtk_alignment_size_allocate): Flip the
746         padding in RTL mode.  (#303572, Maciej Katafiasz)
747
748 2005-05-09  Owen Taylor  <otaylor@redhat.com>
749
750         * gdk/gdkrgb.c (gdk_rgb_convert_0888_br, gdk_rgb_convert_8880_br): 
751         Fill in unused bits so they can be used for the depth-32 target case.
752         Rewrite so that that gives a marginal speedup rather than a
753         marginal slowdown. (on x86)
754
755         * gdk/gdkscreen.h gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkvisual-x11.c:
756         Add gdk_screen_get_rgba_colormap/visual to get a visual for
757         windows with an alpha channel, if one exists.
758
759         * gdk/win32/gdkscreen-win32.c gdk/linux-fb/gdkscreen-fb.c:
760         Stub out gdk_screen_get_rgba_colormap/visual.
761
762         * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): computation of
763         "unused" wasn't right for depth == 32, since it depended on
764         shifting by 32.
765
766         * gdk/gdkrgb.c: Fill in alpha bits with 1s. (Based on patch from
767         Keith Packard,
768         http://mail.gnome.org/archives/gtk-devel-list/2004-June/msg00080.html)
769
770         * gdk/x11/gdkdrawable-x11.c (gdk_x11_drawable_get_picture):
771         Implement again, without using Xft.
772
773         * tests/testgtk.c: Add a test for windows with an alpha channel.
774
775 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
776
777         * autogen.sh: Revert accidental commit.
778
779 2005-05-08  Matthias Clasen  <mclasen@redhat.com>
780
781         * gdk/gdkcolor.c (gdk_cairo_set_source_color): 
782         * gdk/gdkimage.h: 
783         * gdk/gdkdraw.c: 
784         * gdk/gdkcolor.h: 
785         * gdk/gdkcursor.h: 
786         * gdk/x11/gdkcolor-x11.c: Small documentation additions.
787
788 2005-05-07  Matthias Clasen  <mclasen@redhat.com>
789
790         * gtk/gtkscrolledwindow.h: 
791         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_hscrollbar): 
792         (gtk_scrolled_window_get_cscrollbar): Change the return 
793         type to GtkWidget*, proposed by Owen Taylor. 
794
795         * gdk/x11/gdkscreen-x11.c (gdk_screen_get_width_mm) 
796         (gdk_screen_get_height_mm): Fix typos in the docs.  (#303389,
797         Masao Mutoh)
798
799 2005-05-07  Matthias Clasen <mclasen@redhat.com>
800
801         * gtk/gtkiconview.c: Fix a copy-and-paste accident, spotted
802         by Owen Taylor.
803
804 2005-05-07  Owen Taylor  <otaylor@redhat.com>
805
806         * gdk/gdkgc.c (gc_get_foreground): Get the foreground color, not
807         the background color.
808
809 2005-05-07  Owen Taylor  <otaylor@redhat.com>
810
811         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf.h (gdk_pixbuf_set_as_cairo_source): 
812         Change prototype to match cairo_set_source_surface().
813
814         * gdk/gdkdraw.c gdk/gdkgc.c gdk/gdkpixbuf-render.c gdk/gdkwindow.c
815         gtk/gtkhsv.c tests/testcairo.c.
816
817 2005-05-06  Federico Mena Quintero  <federico@ximian.com>
818
819         Merged from gtk-2-6:
820
821         * gtk/gtkfilesystemunix.c (fill_in_mime_type): Don't fill the mime
822         types if this is an AFS directory.
823         (fill_in_names): If we are in an AFS directory, set the MIME type
824         blindly to "x-directory/normal".
825
826 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
827
828         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): Always
829         initialize child-visible to FALSE, otherwise we may end up
830         with the wrong page visible initially.  (#302283, Patrik Fimml)
831
832         * gtk/gtktreeview.c (gtk_tree_view_draw_arrow): Make expanders
833         appear insensitive in insensitive treeviews. 
834
835 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
836
837         * gtk/gtktoolbar.c: Fix a typo in the docs.  (#303024, 
838         Morten Welinder)
839
840 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
841
842         * gtk/gtk.symbols:
843         * gtk/gtkiconview.[hc]: Add DND support similar to the DND
844         support in the tree view.  (#150270)
845
846 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
847
848         * gtk/gtktreednd.h: 
849         * gtk/gtkwidget.h: Small cleanups.
850
851         * gtk/gtktreeview.c (gtk_tree_view_get_dest_row_at_pos): Fix
852         a typo.
853
854 2005-05-04  Owen Taylor  <otaylor@redhat.com>
855
856         * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.h: Fix a bug
857         in focus tracking when we move between has_pointer_focus and 
858         has_focus_window directly. (#109246, Billy Biggs, Niko Tyni 
859         and others)
860
861         * gdk/x11/gdkevents-x11.c: Also fix some confusion that could
862         happen in the case of no window manager + keyboard grabs, by
863         moving to a more consistent model of when we pay attention to
864         mode=NotifyGrab/NotifyUngrab events.
865         
866         * docs/focus_tracking.txt: Extensive writeup about how to track
867         focus under X11.
868
869 Wed May  4 13:21:41 2005  Søren Sandmann  <sandmann@redhat.com>
870
871         * tests/testcairo.c (draw): Replace cairo_show_surface() uses with
872         cairo_set_source_surface()/cairo_paint();
873
874 2005-05-04  Tor Lillqvist  <tml@novell.com>
875
876         * gdk/win32/gdkdrawable-win32.c (generic_draw, blit_from_pixmap)
877         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values,
878         _gdk_win32_gc_new, _gdk_windowing_gc_set_clip_region,
879         gdk_win32_hdc_get): Minor fixes to make Win32 backend compile
880         again.
881
882 2005-05-03  Matthias Clasen  <mclasen@redhat.com>
883
884         * gtk/gtkfilesystem.c: 
885         * gtk/gtkcelleditable.c: 
886         * gtk/gtktreemodel.c: Avoid getting the interface struct
887         twice in the same function.  (#300513, Billy Biggs)
888
889         * gtk/gtkscrolledwindow.h:
890         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_vscrollbar): 
891         * gtk/gtk.symbols: Add getters for the scrollbars.  (#167181,
892         Billy Biggs)    
893
894         * gtk/gtkdialog.h: 
895         * gtk/gtkdialog.c (gtk_dialog_get_response_for_widget): 
896         Make this function public.  (#170748, Morten Welinder)
897
898 2005-05-02  Federico Mena Quintero  <federico@ximian.com>
899
900         Merged from gtk-2-6:
901
902         Fixes #301068:
903
904         * gtk/gtkfilesystemunix.c (struct _GtkFileSystemUnix): Add fields
905         to store struct stat for /afs and /net, and boolean fields to say
906         whether these are valid.
907         (struct _GtkFileFolderUnix): Added a boolean is_network_dir field.
908         (gtk_file_system_unix_get_folder): Fill in the is_network_dir
909         field of the folder structure.
910         (fill_in_names): If the folder is a network directory, create a
911         fake struct stat for its entries.
912         (fill_in_stats): Don't stat() the children of network directories.
913
914         * gtk/gtkfilechooserdefault.c (list_mtime_data_func): If the mtime
915         is 0, use "Unknown" for the cell's displayed text.
916
917 2005-04-28  Owen Taylor  <otaylor@redhat.com>
918
919         * gtk/gtkwidget.c: Add a draw-border style property to allow
920         themes to draw outside the widget's allocation.
921
922         * gdk/gdkwindow.c gtk/gtkstyle.c: Remove some save/restore pairs
923         that were working around the clip-leakage bug in Cairo.
924
925         * gtk/gtkstyle.c: Use cairo_fill_preserve() rathe than
926         save/fill/restore.
927
928         * gdk/gdkgc.c gdk/gdkinternals.h: Add _gdk_gc_update_context()
929         That updates a Cairo context to match a GC.
930
931         * gdk/gdkdraw.c: Use _gdk_gc_update_context() to add support
932         for tiles/stipples/clipping to gdk_draw_glyphs(), 
933         gdk_draw_trapezoids().
934
935         * gdk/gdkpango.c: Use _gdk_gc_update_context() instead of internal
936         implementation of stipples. Use one cairo_t across the entire
937         drawing operation. Replace cairo_matrix_create() with 
938         stack-allocated matrices.
939
940         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c 
941         gdk/win32/gdkgc-win32.c: Save various aspects of the 
942         GC state (fill, tile, stipple, foreground, background, clip region)
943         in instance-private-data for future use. Add getters.
944         Get rid of _gdk_windowing_gc_get_foreground() function implemented 
945         by the backends.
946
947         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
948         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Add
949         _gdk_gc_init() to do initial setup of the GC from values;
950         fixes some problems from drawable redirection.
951
952         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
953         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Move 
954         gdk_gc_copy() and gdk_gc_set_clip_{region,rectangle}() into 
955         the generic code, add _gdk_windowing_gc_copy(), 
956         _gdk_windowing_gc_set_clip_region() to do backend specific
957         stuff.
958
959         * gdk/x11/{gdkprivate-x11.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
960         gdk/win32/{gdkprivate-win32.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
961         gdk/linux-fb/{gdkprivate-fb.h,gdkgc-fb.c.c,gdkdrawable-fb.c}:
962         Don't duplicate state that now is stored by the generic code.
963
964         * gdk/gdk.symbols Update
965
966 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
967
968         * tests/testiconview.c: Test cell renderers.
969
970         * gtk/gtk.symbols: Add new functions.
971
972         * gtk/gtkiconview.[hc]: Implement GtkCellLayout and use
973         cell renderers for drawing and editing. (#148144, #160242)
974
975 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
976
977         * gtk/gtkcellrenderertext.c (get_size): Return a sufficient
978         width for cases where pango_layout_get_pixel_extents() returns
979         a rectangle with nonzero x. 
980
981         * gtk/gtkselection.c: Small doc fixes.
982
983         * gtk/gtkmenushell.c (gtk_menu_shell_set_take_focus): 
984         (gtk_menu_shell_get_take_focus): Fix up the docs a bit.
985
986 2005-05-02  Michael Natterer  <mitch@imendio.com>
987
988         * gtk/gtkmain.c (do_post_parse_initialization): return silently if
989         "gtk_initialized" is TRUE. Re-enables calling GTK's init functions
990         multiple times when using gtk_get_option_group(), just as one can
991         call gtk_init() multiple times without doing any harm.
992
993 2005-05-01  Matthias Clasen  <mclasen@redhat.com>
994
995         * gtk/gtktextview.c (gtk_text_view_expose_event): Propagate
996         the event to unanchored children in the text window.  
997         (#302494, Stephen Kennedy)
998
999 2005-04-30  Tor Lillqvist  <tml@novell.com>
1000
1001         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Take
1002         multi-monitor offset into account. (#302525)
1003
1004 2005-04-29  Matthias Clasen  <mclasen@redhat.com>
1005
1006         * gtk/gtkradioaction.c: Make the docs build.  (#302230,
1007         Ali Akcaagac)
1008
1009         * gtk/gtkiconview.c (gtk_icon_view_map): Get rid of this
1010         function, instead show the bin_window when it is created.
1011
1012         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't 
1013         grab focus to unrealized widgets.  (#302240, Philip Langdale)
1014
1015         * gtk/gtktreeview.c (gtk_tree_view_state_changed): Set
1016         background upon state changes.  (#301651, Billy Biggs)
1017         (gtk_tree_view_get_path_at_pos): Take RTL into account
1018         when iterating over the columns.  (#302163)
1019         
1020         * configure.in: Check for nm.
1021
1022         * gtk/Makefile.am: Use $(NM), not nm directly. (#301299, 
1023         Nguyen Thai Ngoc Duy)
1024
1025         * gtk/gtkiconview.c (gtk_icon_view_move_cursor_start_end): Use
1026         the internal unselect_all function, since we need the unselection
1027         to happen even in browse mode.  (#300995, Mathias Hasselmann)
1028
1029         * gtk/gtkuimanager.c (update_node): Use g_object_notify() instead
1030         of triggering a ::notify by re-setting the property.  (#300982,
1031         Sven Neumann)
1032
1033         * gtk/gtkaction.c (connect_proxy): Use gtk_action_sync_tooltip().
1034
1035         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_item): Also
1036         scroll horizontally when necessary, and keep the northwest
1037         corner of the item visible.  (#300913, Mathias Hasselmann)
1038
1039         * tests/testiconview.c: Add some more tests.
1040
1041         * gtk/gtkiconview.c (gtk_icon_view_select_path): Don't crash
1042         if the path does not point to a row in the model.  (#300909,
1043         Mathias Hasselmann)
1044         (gtk_icon_view_rows_reordered): Re-layout here.  (#301009, 
1045         Mathias Hasselmann)
1046
1047         * tests/testtext.c: Add some more attribute tests.
1048
1049         * gtk/gtktexttag.c (gtk_text_tag_class_init): Correct the documentation
1050         of the rise property. String change, but it is more important to
1051         be correct than to be translated.  (#301740)
1052
1053 2005-04-25  Tor Lillqvist  <tml@novell.com>
1054
1055         * gtk/gtkfilesystemwin32.c
1056         (gtk_file_system_win32_volume_get_display_name): Get volume name
1057         also on Win9x. (#301798, Daniel Atallah)
1058         (canonicalize_filename): Add explicit braces to silence compiler
1059         warning.
1060
1061 2005-04-22  Tor Lillqvist  <tml@novell.com>
1062
1063         * gtk/gtkmain.c: Initailize gettext before use. Calling
1064         bindtextdomain() and bind_textdomain_codeset() in
1065         do_post_parse_initialization() is too late. Put the calls in a new
1066         function gettext_initialization(), and call that from
1067         gtk_init_with_args() and gtk_parse_args(). Fixes #170948 for
1068         GTK+'s part, but the same problem occurs also at least in
1069         atk. Thanks to Robert Ögren, Daniel Atallah and Kevin Stange.
1070
1071 2005-04-19  Ivan, Wong Yat Cheung  <email@ivanwong.info>
1072
1073         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Match
1074         character height instead of cell height. Fix #301228.
1075
1076 2005-04-18  Federico Mena Quintero  <federico@ximian.com>
1077
1078         Merged from gtk-2-6:
1079
1080         * gtk/gtkfilechooserdefault.c (remove_selected_bookmarks): Remove
1081         obsolete assertion that the selected row can't be a volume; this
1082         is handled by the "removable" column now.  Fixes #301017.
1083
1084 2005-04-18  Owen Taylor  <otaylor@redhat.com>
1085
1086         * gtk/gtkstyle.c gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c
1087         * gdk/gdkcolor.c gdk/gdkwindow.c gdk/gdkpixbuf-render.c
1088         gdk/gdkpango.c tests/testcairo.c: Update to new Cairo API for
1089         setting color and opacity. (#301066, Vincent Noel)
1090  
1091 2005-04-15  Federico Mena Quintero  <federico@ximian.com>
1092
1093         Merged from gtk-2-6:
1094
1095         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
1096         Patch from Christian Neumair <chris@gnome-de.org>; only select the
1097         first row if we are in OPEN mode.  The only other case we were
1098         letting pass through was SELECT_FOLDER, but selecting the first
1099         row when changing folders confuses people when folders are
1100         actually being selected.  Fixes #171885.
1101
1102 2005-04-13  Matthias Clasen  <mclasen@redhat.com>
1103
1104         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
1105         Revert the fix for #169870, adjust the documentation instead. 
1106
1107         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
1108         Revert the fix for #170727.     
1109
1110 2005-04-11  Ivan, Wong Yat Cheung  <email@ivanwong.info>
1111
1112         Fix #300218:
1113
1114         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Fix
1115         C99ism.
1116
1117         * gtk/updateiconcache.c: Guard inclusion of unistd.h and
1118         utime.h.
1119
1120 2005-04-09  Matthias Clasen  <mclasen@redhat.com>
1121
1122         * gdk/x11/gdkinput-xfree.c:
1123         * gdk/x11/gdkinput-none.c:
1124         * gdk/gtk.symbols: Some more fixes necessary to 
1125         make building with gcc 4 work.
1126
1127         Add 16x16 versions of the zoom icons and of 
1128         GTK_STOCK_INDEX. Some of the images were taken from 
1129         the hicolor icon theme, and were originally created 
1130         by Jakub Steiner and Tuomas Kuosmanen.  (#167515, 
1131         Vincent Noel)
1132         
1133         * gtk/stock-icons/stock_index_16.png:
1134         * gtk/stock-icons/stock_zoom_1_16.png:
1135         * gtk/stock-icons/stock_zoom_fit_16.png:
1136         * gtk/stock-icons/stock_zoom_in_16.png:
1137         * gtk/stock-icons/stock_zoom_out_16.png: New images.
1138         
1139         * gtk/stock-icons/Makefile.am: Add the new images. 
1140
1141         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
1142         Don't display too many broken images.  (#169870, Roman
1143         Kagan, patch by Ivan Wong)
1144
1145         * gtk/gtkwidget.c (gtk_widget_unparent): Remove debugging
1146         output.  (#300013, Tommi Komulainen)
1147
1148 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
1149
1150         * gtk/gtkimage.c (gtk_image_expose, gtk_image_calc_size): 
1151         If a stock_id is unknown, display the missing image. (#169870,
1152         Steven Walter)
1153
1154         * gtk/gtkiconcache.c (icon_name_hash): Use the same function 
1155         as in updateiconcache.c.  (spotted by Morten Welinder)
1156
1157 2005-04-08  Carl Worth  <cworth@cworth.org>
1158
1159         * gdk/gdkpango.c: (emboss_context): Simplify matrix manipulation
1160         now that cairo exposes the cairo_matrix_t structure.
1161         
1162         * gdk/gdkpixbuf-render.c: (gdk_pixbuf_set_as_cairo_source): Track
1163         cairo API change in signedness of data argument.
1164
1165 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
1166
1167         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Make this
1168         work when called from gtk_combo_box_destroy().  (#172999,
1169         Christian Persch)
1170
1171 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
1172
1173         Fix double-click to autosize treeview columns. This was
1174         probably broken since 2.2 ! (#169675)
1175         
1176         * gtk/gtktreeview.c (gtk_tree_view_button_press): Leave the
1177         "user-resized" state of the column on a double-click to
1178         autosize.
1179         (gtk_tree_view_button_press, gtk_tree_view_motion_resize_column): 
1180         Enter the "user-resized" state of the column only if a drag
1181         actually changes the column width, not on any click.
1182
1183 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
1184
1185         * gtk/gtkmenu.c (gtk_menu_paint): Allow setting background
1186         images on menus.  (#169532, Benjamin Otte)
1187         
1188         * gtk/updateiconcache.c (write_card16, write_card32): Avoid
1189         unaligned access.  (#172947)
1190
1191         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): 
1192         Consistently use the term "Bookmarks" in the UI.  (#166906,
1193         Sebastian Bacher)
1194
1195         Some fixes from Morten Welinder (#172947):
1196         
1197         * gtk/updateiconcache.c (icon_name_hash): Make this compiler- 
1198         and platform-independent.
1199         (is_cache_up_to_date): Don't compare mtimes is a stat call failed.
1200         (build_cache): Error out if a stat fails.  
1201
1202 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
1203
1204         * gtk/gtktreeview.c (gtk_tree_view_set_expander_column): Add 
1205         a hint about hiding expanders.
1206
1207         * gtk/updateiconcache.c (is_cache_up_to_date): Return 
1208         TRUE if the cache is newer than the directory.  (#172852,
1209         Jacob Kroon)
1210
1211         * configure.in: Replace an explicit pkg-config by 
1212         $PKG_CONFIG.  (#168074, Hans-Wolfgang Loidl)
1213         
1214         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
1215         Ignore regions which fall completely outside the line.  
1216         (#165862, Felipe Heidrich)
1217
1218 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
1219
1220         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Document
1221         -1 as possible value.  
1222         (gtk_tree_view_enable_model_drag_source) 
1223         (gtk_tree_view_enable_model_drag_dest): Pass the target list 
1224         to the underlying dnd implementation, otherwise we miss the 
1225         target info in the drag-data-received signal.  (#164085, Jorn
1226         Baayen)
1227
1228 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
1229
1230         * gtk/gtktreeview.c (gtk_tree_view_motion_resize_column) 
1231         (gtk_tree_view_bin_expose): Avoid a few unnecessary calls
1232         to gdk_window_get_pointer(). (#168015, Billy Biggs)
1233
1234         * po/.cvsignore, po-properties/.cvsignore: Remove
1235         Makefile.in.in.  (#171092, Stepan Kasal)
1236
1237         * gtk/gtkrc.c (gtk_rc_parse_style): Don't modify 
1238         scanner->value, copy it first.  (#165693, Tommi Komulainen)
1239
1240 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
1241
1242         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_grab_focus): 
1243         * gtk/gtkcombobox.c (gtk_combo_box_grab_focus): Implement
1244         grab_focus for GtkComboBox and GtkComboBoxEntry.  (#171912,
1245         Gustavo Carneiro)
1246
1247         * gtk/gtkicontheme.c: Store icon caches along with the
1248         mtimes of the toplevel directories. The previous
1249         mechanism of a hashtable-per-theme caused duplicate icon
1250         caches for the same toplevel directory to be created.  
1251         (#170030)
1252
1253 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
1254
1255         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_build_level): 
1256         Fix a typo in a warning.
1257
1258         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Protect
1259         the license and credits buttons from being affected by 
1260         gtk_widget_show_all().  (#172724)
1261
1262 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
1263
1264         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): Keep a 
1265         reference to the item.  (#167920, Hazael Maldonado Torres)
1266
1267         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Add some
1268         more docs on interactive search.
1269
1270 2005-04-05  Tor Lillqvist  <tml@novell.com>
1271
1272         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Handle 16 colour
1273         display mode. For some reason, in this mode GetDeviceCaps(BITSPIXEL)
1274         returns 1 (but GetDeviceCaps(NUMCOLORS) does return 16). (#143415)
1275
1276         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Don't force
1277         24bpp GdkVisual on 32bpp displays. (#140706)
1278
1279 Mon Apr  4 19:13:23 2005  Jonathan Blandford  <jrb@redhat.com>
1280
1281         Fix for #172319, Tristan Van Berkom:
1282         
1283         * gtk/gtktreeview.c (gtk_tree_view_expand_all): change to use
1284         gtk_tree_view_real_expand_row() instead of doing this by hand.
1285
1286 2005-04-04  Johan Dahlin  <johan@gnome.org>
1287
1288         * gtk/gtktextbuffer.c: (gtk_text_buffer_class_init),
1289         (gtk_text_buffer_set_property), (gtk_text_buffer_get_property),
1290         (gtk_text_buffer_set_text): Add GtkTextBuffer::text (#172631)
1291
1292 Mon Apr  4 14:33:55 2005  Manish Singh  <yosh@gimp.org>
1293
1294         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text):
1295         cast combo->priv->entry to GTK_ENTRY()
1296
1297         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
1298         cast completion->priv->tree_view to GTK_TREE_VIEW()
1299
1300 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1301
1302         * gtk/gtktextbuffer.c: Some trivial doc fixes.
1303
1304         * gtk/gtkwidget.c (gtk_widget_set_redraw_on_allocate): Improve 
1305         the wording of the doc comment.  (#172422, Vincent Untz)
1306
1307 2005-04-04  Owen Taylor  <otaylor@redhat.com>
1308
1309         * gtk/gtkstyle.c (gtk_default_draw_expander): Covert expander
1310         drawing to Cairo. Also always draw the entire triangle instead
1311         of just drawing the center for prelight. (Fixes inconsistent
1312         drawing in GtkTreeView.)
1313
1314 2005-04-04  Johan Dahlin  <johan@gnome.org>
1315
1316         * gtk/gtk.symbols: Remove symbols accidentally added.
1317         * gtk/gtkentryprivate.h: Add boolean property popup_set_width
1318         * gtk/gtktoggletoolbutton.c: (gtk_toggle_tool_button_class_init):
1319         Use object_class instead of gobject_class
1320
1321 Mon Apr  4 12:14:35 2005  Søren Sandmann  <sandmann@redhat.com>
1322
1323         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Translate x, y into
1324         widget coordinates instead of root coordinates. Patch from Jorn
1325         Baayen. (#172236)
1326
1327 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1328
1329         * gtk/gtktoolbar.c: Add a tooltips property.
1330
1331         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_class_init): 
1332         * gtk/gtkruler.c (gtk_ruler_class_init): Add docs.
1333
1334         * gtk/gtktoggletoolbutton.c: Add an active property.
1335
1336 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1337
1338         Allow completion popups to be wider than the entry. (#131916, 
1339         Ross Burton)
1340         
1341         * gtk/gtkentrycompletion.[hc]: Add a boolean popup-set-width property.
1342
1343         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
1344         Don't force the popup to have the same width as the entry if 
1345         popup-set-width is FALSE.
1346
1347         * gtk/gtk.symbols: Add new functions.
1348
1349 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
1350
1351         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
1352         Use gtk_accel_map_change_entry(), so that reusing the same
1353         action name works.  (#170727, Paolo Borelli)
1354
1355 2005-04-04  Tor Lillqvist  <tml@novell.com>
1356
1357         * gdk/win32/gdkmain.c (_gdk_win32_cf_to_string): New debugging
1358         function, to log a clipboard format name symbolically.
1359         (_gdk_win32_data_to_string): Also new, to log random data bytes.
1360
1361         Implement delayed rendering on Win32, specifically for transfering
1362         images through the clipboard from GTK+ apps to other
1363         apps (#168173, implementation by Ivan Wong):
1364
1365         * gdk/win32/gdkevents-win32.c (gdk_event_translate): 
1366         Handle WM_RENDERFORMAT.
1367
1368         * gdk/win32/gdkprivate-win32.h
1369         * gdk/win32/gdkglobals-win32.c: Add _format_atom_table,
1370         _delayed_rendering_data and _image_bmp.
1371
1372         * gdk/win32/gdkmain-win32.c: Initialize _image_bmp.
1373
1374         * gdk/win32/gdkproperty-win32.c (gdk_property_change):
1375         Accept formats other than GDK_TARGET_STRING or _utf8_string, and
1376         assume they are handled through delayed rendering.
1377
1378         * gdk/win32/gdkselection-win32.c (gdk_selection_convert):
1379         Return all available formats (including those registered by GTK+
1380         apps) on request_targets.
1381         (gdk_selection_property_get): We should append a zero byte like
1382         X11 does.
1383         (gdk_win32_selection_add_targets): New function, for
1384         gtkselection's use. Win32 requires that the clipboard owner
1385         registers all valid formats even if the owner wants delayed
1386         rendering.
1387         (_gdk_win32_selection_convert_to_dib): New function. Convert
1388         images to DIB using gdk-pixbuf.
1389
1390         * gdk/win32/gdkwin32.h: Declare gdk_win32_selection_add_targets().
1391
1392         * gtk/gtkselection.c (gtk_selection_add_target,
1393         gtk_selection_add_targets): Call gdk_win32_selection_add_targets()
1394         to register target formats.
1395
1396         * gdk/gdk.symbols: Add gdk_win32_selection_add_targets().
1397
1398 2005-04-03  Hans Breuer  <hans@breuer.org>
1399
1400         [merged from gtk-2-6 branch]
1401         * gdk/win32/gdkdrawable-win32.c : let dash_offset shift the start of
1402         the line pattern not the start of the line. Fixes bug #171641.
1403
1404         * gtk/makefile.msc.in : follow .symbols changes
1405
1406         * gdk/win32/gdkwindow-win32.c : declare and resolve GetAncestor()
1407         dynamically. (It is not available in _WIN_VER <= 0x0400)
1408
1409         * gdk/win32/makefile.msc : removed gdkpango-win32.obj
1410
1411         * gtk/gtkhsv.c gtk/gtkstyle.c : use G_PI instead of M_PI
1412
1413         [also applied to gtk-2-6 branch]
1414         * gdk/makefile.msc gdk-pixbuf/makefile.msc : handle gdk*alias.def
1415
1416         * gdk/makefile.msc.in : add gtkmnemonichash.obj
1417
1418         * test/testgtk.c(set_parent_signal) : use g_message instead of
1419         g_print to keep the 'testgtk --bench=all' output clean
1420
1421 2005-04-03  Matthias Clasen  <mclasen@redhat.com>
1422
1423         * gtk/gtkruler.c: Add a "metric" property.
1424
1425         * gtk/gtkradiomenuitem.c: Add a "group" property like
1426         the one found in radio buttons.
1427
1428         * gtk/gtkradiobutton.c (gtk_radio_button_class_init): Fix
1429         a typo in the docs.
1430         (gtk_radio_button_set_group): Add change notification.
1431         
1432 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
1433
1434         * gtk/gtkselection.c: Move documentation inline, document
1435         if add_target functions append or prepend.  (#172350, 
1436         Jon-Kare Hellan)
1437
1438 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
1439
1440         Make gtk_combo_box_get_active_text do the right thing for
1441         GtkComboBoxEntry (#171373, Robert Staudinger)
1442         
1443         * gtk/gtkcombobox.h: Add a get_active_text vfunc.
1444         
1445         * gtk/gtkcombobox.c (gtk_combo_box_real_get_active_text): And
1446         implement it here.
1447
1448         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text): 
1449         Implement get_active_text by always returning the content of 
1450         the entry.
1451
1452 2005-03-31  Sven Neumann  <sven@gimp.org>
1453
1454         Merged from gtk-2-6:
1455
1456         * gtk/gtkbutton.c
1457         * gtk/gtkiconview.c: fixed gtk-doc comments.
1458
1459 2005-03-31  Michael Natterer  <mitch@gimp.org>
1460
1461         Allow to pop up menus without grabbing the keyboard. Useful for
1462         stuff like virtual keyboards. Fixes bug #159890
1463
1464         * gtk/gtk.symbols
1465         * gtk/gtkmenushell.[ch]: added boolean property "take-focus"
1466         and public API gtk_menu_shell_set/get_take_focus().
1467
1468         * gtk/gtkmenu.c (gtk_menu_popup)
1469         (popup_grab_on_window): don't grab the keyboard if take_focus
1470         is FALSE.
1471
1472         * gtk/gtkmenuitem.c (_gtk_menu_item_popup_submen): propagate the
1473         parent menu_shell's take_focus property to the submenu which is
1474         about to be popped up.
1475
1476 2005-03-30  Federico Mena Quintero  <federico@ximian.com>
1477
1478         Merged from gtk-2-6:
1479
1480         Fix #170755:
1481
1482         * gtk/gtktreeview.c (gtk_tree_view_row_changed): Only stop editing
1483         if the row which changed is the same as the row being edited.
1484
1485 2005-03-30  Matthias Clasen  <mclasen@redhat.com>
1486
1487         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
1488         Make enable_search control only typeahead, not C-f.  (#170435,
1489         Sven Neumann)
1490         (gtk_tree_view_start_interactive_search): Pass keybinding == TRUE.
1491
1492         * gdk/gdkpixbuf.h: Include cairo.h
1493
1494         * gtk/gtkclipboard.c (gtk_clipboard_set_can_store): 
1495         Don't accept n_targets == -1.
1496         (clipboard_unset): unref the old_data, not the
1497         user_data which we have just cleared.  (#172038, Sven
1498         Neumann)
1499
1500         * gtk/gtkcombobox.c (gtk_combo_box_popup): Don't 
1501         segfault if somebody tries to popup an unrealized
1502         combo box.  (#172031, Felipe Heidrich)
1503
1504 2005-03-30  Tor Lillqvist  <tml@novell.com>
1505
1506         * gdk/win32/gdkevents-win32.c (build_pointer_event_state): The
1507         state field should represent the state before the event, like on
1508         X11. (#169753)
1509         (gdk_event_translate): Fix event filter handling. If an event
1510         filter (global, client message filter, of window-specific) returns
1511         GDK_FILTER_CONTINUE, continue as if nothing happened. If it
1512         returns GDK_FILTER_REMOVE or GDK_FILTER_TRANSLATE, return TRUE
1513         from gdk_event_translate() which means that DefWindowProc() will
1514         not be called.
1515         (gdk_event_translate): Fix client message handling. Append a
1516         GDK_CLIENT_EVENT unless there is a filter that matches and returns
1517         something other than GDK_FILTER_CONTINUE. (#135552)
1518
1519 2005-03-29  Matthias Clasen  <mclasen@redhat.com>
1520
1521         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_set_visible_func): 
1522         Document the need to refilter if parameters of the visibility function
1523         change.  (#169516, Olivier Sessink)     
1524
1525 Mon Mar 28 15:13:42 2005  Søren Sandmann  <sandmann@redhat.com>
1526
1527         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Don't
1528         invalidate areas that are covered by mapped input-output child
1529         windows. Bug 141380.
1530
1531 2005-03-28  Jeroen Zwartepoorte  <jeroen.zwartepoorte@gmail.com>
1532
1533         * gtk/gtkfilechooserdefault.c: (update_preview_widget_visibility): Make
1534         the preview label ellipsize so the dialog layout stays constant.
1535         (#171398)
1536
1537 2005-03-28  Matthias Clasen  <mclasen@redhat.com>
1538
1539         * gtk/gtktreeview.c (gtk_tree_view_key_press): Don't pop up
1540         the context menu of the search entry if it is not visible.
1541         (#169534, Billy Biggs)
1542
1543 2005-03-27  Tor Lillqvist  <tml@novell.com>
1544
1545         * configure.in: Apparently AC_LIBTOOL_WIN32_DLL isn't deprecated
1546         after all, and in fact necessary with HEAD libtool.
1547
1548 2005-03-26  Matthias Clasen  <mclasen@redhat.com>
1549
1550         * gtk/*.c: 
1551         * gdk/gdkdisplaymanager.c: 
1552         Use canonical names for g_object_notify() as well. 
1553
1554 2005-03-24  Tor Lillqvist  <tml@novell.com>
1555
1556         * configure.in (GTK_EXTRA_CFLAGS): Include the -mms-bitfields flag
1557         in GTK_EXTRA_CFLAGS on Win32, so that it gets included in the
1558         gtk+-2.0.pc file and automatically used by dependents. MSVC users
1559         who use pkg-config will have to manually edit it out from
1560         gtk+-2.0.pc, sorry. Maybe pkg-config should be enhanced to support
1561         some kind of conditionals in .pc files?
1562
1563 2005-03-23  Matthias Clasen  <mclasen@redhat.com>
1564
1565         * gtk/gtkfilechooserbutton.c (update_combo_box): Remove
1566         a call whose result was unused and leaked.  (#170776,
1567         Kjartan Maraas)
1568
1569         Some cleanups to the GtkDialog code:  (#170746, 
1570         Morten Welinder)
1571         * gtk/gtkdialog.c (action_widget_activated): Simplify,
1572         use _gtk_dialog_get_response_for_widget.
1573         (gtk_dialog_add_action_widget): Use the correct signal
1574         id for non-buttons.
1575         (gtk_dialog_set_response_sensitive): 
1576         (gtk_dialog_set_default_response): Use get_response_data.
1577         (gtk_dialog_run): Don't disconnect the signals if the
1578         dialog was destroyed while running.
1579
1580 Tue Mar 22 14:16:31 2005  Manish Singh  <yosh@gimp.org>
1581
1582         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label):
1583         Use g_return_if_fail, not g_return_val_if_fail.
1584
1585 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
1586
1587         Implement bookmark renaming  (#136216, Sean Middleditch)
1588         
1589         * gtk/gtkfilesystem.h (struct _GtkFileSystemIface): Add 
1590         get_bookmark_label and set_bookmark_label vfuncs.
1591
1592         * gtk/gtkfilesystem.h:
1593         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label): 
1594         (gtk_file_system_get_bookmark_label): Wrappers for the
1595         vfuncs.
1596
1597         * gtk/gtk.symbols: Add new exported symbols.
1598
1599         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_set_bookmark_label): 
1600         (gtk_file_system_unix_get_bookmark_label): Implementations
1601         for the Unix backend.
1602
1603         * gtk/gtkfilechooserdefault.c: Add a context menu to
1604         the bookmarks pane, and allow to rename bookmarks.
1605
1606 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
1607
1608         * gtk/gtkpathbar.c (gtk_path_bar_unmap): 
1609         * gtk/gtkspinbutton.c (gtk_spin_button_unmap): 
1610         * gtk/gtknotebook.c (gtk_notebook_unmap): 
1611         * gtk/gtkrange.c (gtk_range_unmap): Stop scrolling when
1612         the widget is unmapped.  (#168791, Ryan Lortie)
1613
1614 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
1615
1616         * gtk/gtkprivate.h: Define macros GTK_PARAM_READABLE,
1617         GTK_PARAM_WRITABLE, GTK_PARAM_READWRITE which are like
1618         their G_ counterparts, but also mark the name, nick
1619         and blurb as static.
1620
1621         * gtk/*.c: Mark param spec strings as static, using
1622         the new macros.
1623
1624         * gtk/gtkspinbutton.h: Fix a typo.
1625
1626 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
1627
1628         * gtk/gtkcellrendererprogress.c: 
1629         * gtk/gtkcellrendererpixbuf.c: 
1630         * gtk/gtkcellrenderercombo.c: 
1631         * gtk/gtkcellrenderer.c: 
1632         * gtk/gtkcalendar.c: 
1633         * gtk/gtkbutton.c: 
1634         * gtk/gtkbox.c: 
1635         * gtk/gtkbbox.c: 
1636         * gtk/gtkaspectframe.c: 
1637         * gtk/gtkarrow.c: 
1638         * gtk/gtkalignment.c: 
1639         * gtk/gtkactiongroup.c: 
1640         * gtk/gtkaction.c:
1641         * gtk/gtkaccellabel.c: 
1642         * gtk/gtkaboutdialog.c: Mark param spec strings as static.
1643
1644         * gdk/gdkpango.c (gdk_pango_renderer_class_init): 
1645         * gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Mark
1646         param spec strings as static.
1647
1648 2005-03-21  Tor Lillqvist  <tml@novell.com>
1649
1650         * modules/engines/ms-windows/*.c: Silence gcc warnings (unused
1651         variables, unhandled enum value in switch). Use g_object_unref()
1652         instead of deprecated gdk_gc_unref() and gdk_drawable_unref().
1653
1654         * modules/engines/ms-windows/xp_theme.c (xp_theme_map_gtk_state): 
1655         Add missing "case" keyword.
1656
1657         * modules/engines/ms-windows/Makefile.am: Link with -lgdi32
1658         explicitly.
1659
1660 2005-03-20  Tor Lillqvist  <tml@novell.com>
1661
1662         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Return the
1663         Terminal Services session number, window station name (always
1664         "WinSta0" in interactive processes), and desktop name (typically
1665         "Default"), concatenated with backslash separators.
1666         (gdk_display_open): Accept only NULL or the string
1667         gdk_display_get_name() returns as display name.
1668
1669 2005-03-20  Matthias Clasen  <mclasen@redhat.com>
1670
1671         Make PLT-reduction work with gcc4, and don't include
1672         everything in gdkalias.h:
1673         
1674         * gtk/grk.symbols: Group symbols by header and source file.
1675         * gtk/makegtkalias.pl: Protect definitions by the same 
1676         preprocessor symbols used to guard the headers. Move
1677         the alias declarations to a separate file which is 
1678         produced when calling makegtkalias.pl -def
1679         * gdk/Makefile.am (gtkaliasdef.c): Add a rule to generate 
1680         this file.
1681         * gtk/*.c: Include gtkalias.h after the other headers, 
1682         include gtkaliasdef.c at the bottom.
1683         * gtk/*.h: Small cleanups.
1684
1685 Fri Mar 18 23:59:49 2005  Soeren Sandmann  <sandmann@redhat.com>
1686
1687         * gtk/gtkmenutoolbutton.c (arrow_button_button_press_event_cb):
1688         Make right-clicks not pop up the menu.
1689
1690 2005-03-18  Owen Taylor  <otaylor@redhat.com>
1691
1692         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_drawable_finish): 
1693         Call cairo_surface_finish()
1694
1695         * gdk/gdkinternals.c gdk/x11/gdkdrawable-x11.c: Remoev
1696         _gdk_windowing_set_surface_device_offset().
1697
1698 2005-03-18  Tor Lillqvist  <tml@novell.com>
1699
1700         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
1701         WM_MOUSEMOVE, don't check if this process owns the active
1702         window. This makes cross-application widget embedding work better.
1703         On WM_MOVE, don't bother checking for window visibility.
1704
1705         * gdk/win32/gdkim-win32.c: Remove bogus empty doc comment. Remove
1706         unused variables. Add some casts to silence gcc.
1707
1708 2005-02-24  Owen Taylor  <otaylor@redhat.com>
1709
1710         * gdk/gdkwindow.c: Use cairo_set_device_offset().
1711
1712         * gdk/win32/gdkdrawable-win32.[ch] gdk/win32/gdkwindow-win32.c
1713         gdk/win32/gdkpixmap-win32.c: 
1714         Add_gdk_win32_drawable_acquire/release_dc() to get a DC for the 
1715         drawable. Add _gdk_drawable_win32_finish() to clean up resources
1716         when a drawable is destroyed.
1717
1718         * gdk/win32/gdkgc-win32.c gdk/win32/gdkdrawable-win32.c
1719         (blit_from_pixmap) gdk/win32/gdkprivate-win32.h : Use 
1720         acquire/release_dc when getting a DC to use with a GC or for 
1721         blitting from a pixmap.
1722
1723         * gdk/win32/gdkdrawable-win32.[ch]: Implement ref_cairo_surface()
1724
1725         * gdk/win32/gdkpango-win32.c gdk/win32/gdkdrawable-win32.c Makefile.am:
1726         Remove gdk_screen_get_pango_context(), draw_glyph[_transformed]
1727         implementations.
1728
1729         * gdk/win32/gdkdrawable-win32.c: Remove 
1730         gdk_draw_rectangle_alpha_libgtk_only()
1731
1732 2005-03-17  Owen Taylor  <otaylor@redhat.com>
1733
1734         * gdk/gdkpango.c: Fix get_stipple_surface to actually work, set
1735         EXTEND_REPEAT on the stipple pattern.
1736
1737 2005-03-17  Matthias Clasen  <mclasen@redhat.com>
1738
1739         * gtk/gtklabel.c (gtk_label_set_markup): Fix formatting
1740         in example in the docs.  (#170611, Jianfei Wang)
1741
1742         * gtk/gtkiconview.c (gtk_icon_view_size_allocate): Clamp
1743         adjustment values on resize.  (#170567, Tomislav Jonjic)
1744
1745         * gtk/gtkicontheme.c (theme_lookup_icon): Don't crash
1746         if there is no cache.  (#170652, Diego Gonzalez)
1747         
1748         * gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix): 
1749         Make inline completion insert the prefix at the
1750         right spot.  (#170146, Doug Quale)
1751
1752 2005-03-17  Tor Lillqvist  <tml@novell.com>
1753
1754         * gdk/gdkkeynames.c: gdk_key is a typedef, not a struct tag.
1755
1756 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
1757
1758         * gtk/gtkprogressbar.c (gtk_progress_bar_get_ellipsize): 
1759         Typo fix in the docs.
1760         
1761         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_set_arrow_tooltip): 
1762         Typo fix in the docs.
1763
1764         * gtk/gtkiconview.c (gtk_icon_view_set_columns) 
1765         (gtk_icon_view_get_columns, gtk_icon_view_set_item_width) 
1766         (gtk_icon_view_get_item_width, gtk_icon_view_set_spacing) 
1767         (gtk_icon_view_get_spacing, gtk_icon_view_set_row_spacing) 
1768         (gtk_icon_view_set_column_spacing) 
1769         (gtk_icon_view_get_row_spacing, gtk_icon_view_get_margin) 
1770         (gtk_icon_view_set_margin): Add docs.
1771         
1772         * gtk/gtkcellview.c (gtk_cell_view_get_displayed_row): 
1773         Add docs.
1774
1775 2005-03-15  Owen Taylor  <otaylor@redhat.com>
1776
1777         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkpixmap.c gdk/gdkwindow.c 
1778         gdk/x11/gdkdrawable-x11.c gdk/x11/gdkpixmap-x11.c gdk/x11/gdkwindow-x11.c
1779         gdk/gdkinternals.h: Switch set_cairo_target() virtual function to
1780         ref_cairo_surface()
1781
1782         * gdk/gdkdrawable.h gdk/gdkdraw.h: Switch set_cairo_target() virtual
1783         function to create_cairo_context()
1784
1785         * gdk/gdkwindow.c: Clear double buffer pixmaps with Cairo.
1786
1787         * gdk/x11/gdkwindow-x11.c: Keep all components in GdkWindowObject.bg_color,
1788         not just the pixel.
1789
1790         * tests/testcairo.c: Update for create_cairo_context()
1791
1792         * gdk/gdkdraw.c (gdk_draw_trapezoids, gdk_draw_glyphs[_transformed]):
1793         Reimplement in terms of Cairo, bypass the vtable entries.
1794
1795         * gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
1796         gdk/x11/gdkgc-x11.c gdk/x11/gdkpango-x11.c
1797         gdk/x11/gdkprivate-x11.h gdk/x11/Makefile.am: Remove
1798         implementation of draw_trapezoids / draw_glyphs[_transformed].
1799
1800         * gdk/gdkpango.c: Switch GdkPangoRenderer to use Cairo
1801
1802         * gdk/gdkpango.c gdk/x11/gdkpango-x11.c: Move
1803         gdk_pango_context_get_for_screen() into the backend independent code.
1804
1805         * gdk/x11/gdkdrawable-x11.[ch]: Remove Xft use, use RENDER directly
1806         for drawing images.
1807
1808         * gdk/gdkdrawable.h gdk/x11/gdkdrawable-x11.c: Remove
1809         gdk_draw_rectangle_alpha_libgtk_only.
1810
1811         * gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c: Add 
1812         gdk_pixbuf_set_as_cairo_source()
1813
1814         * gdk/gdk.symbols: Update
1815
1816         * gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkruler.[ch]
1817         gtk/gtk[hv]ruler.c: Convert to Cairo rendering.
1818
1819         * gtk/gtkstyle.c (gtk_default_draw_check, gtk_default_draw_focus,
1820         gtk_default_draw_option): Switch to Cairo. Simplify the checkbutton,
1821         radio button style for now to get something more scalable.
1822
1823         *  gtk/gtksettings.c: #if 0 out the code to use PangoXft for hinting/
1824         antialiasing/dpi settings.
1825
1826 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
1827
1828         * demos/gtk-demo/editable_cells.c: Also demonstrate
1829         GtkCellRenderer::editing-started and separators.
1830
1831 Tue Mar 15 20:34:33 2005  Manish Singh  <yosh@gimp.org>
1832
1833         * gdk/x11/gdkinput-xfree.c: #include gdkaliasdef.c here too.
1834
1835 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
1836
1837         Make PLT-reduction work with gcc4, and don't include
1838         everything in gdkalias.h:
1839
1840         * gdk/gdk.symbols: Group symbols by header and source file.
1841         * gdk/makegdkalias.pl: Protect definitions by the same
1842         preprocessor symbols used to guard the headers. Move
1843         the alias declarations to a separate file which is
1844         produced when calling makegdkalias.pl -def
1845         * gdk/Makefile.am (gdkaliasdef.c): Add a rule to generate this
1846         file.
1847         * gdk/*.c, gdk/x11/*.c: Include gdkalias.h after the other
1848         headers, include gdkaliasdef.c at the bottom.
1849
1850 2005-03-16  Tor Lillqvist  <tml@novell.com>
1851
1852         * gdk/win32/gdkdisplay-win32.c (_win32_on_clipboard_change): Print
1853         debugging output only if asked for, not always.
1854
1855         * gdk/win32/*.c: Use the %+d%+d format for coordinate pairs in
1856         debugging printout instead of +%d+%d. Misc other additions and
1857         cosmetic improvements to debugging printouts. Use API_CALL() and
1858         GDI_CALL() macros in more places.
1859
1860         * gdk/win32/gdkwindow-win32.c (gdk_window_move, gdk_window_resize,
1861         gdk_window_move_resize): To detect child windows, check whether
1862         the real parent is not the desktop window, instead of relying on
1863         the GDK window type being GDK_WINDOW_CHILD. Foreign GtkPlug
1864         windows have a GDK window type GDK_WINDOW_FOREIGN, but are still
1865         de facto child windows.
1866
1867         * gdk/win32/gdkprivate-win32.h
1868         * gdk/win32/*.c: Drop global variable _gdk_root_window, just call
1869         GetDesktopWindow(). Rename the GdkWindow* _gdk_parent_root to
1870         _gdk_root.
1871
1872         * gdk/win32/gdkwindow-win32.h (GdkWindowImplWin32): Add
1873         toplevel_window_type field.
1874
1875         * gdk/win32/gdkwindow-win32.c: As there is only one root window in
1876         GDK on Win32, we can compare directly to _gdk_root instead of
1877         checking the window type.
1878         (gdk_window_reparent): When reparenting a child of the desktop
1879         clear out the window decorations. Correspondingly, when
1880         reparenting to the desktop, add decorations. As in the X11
1881         backend, save the window type of a toplevel window when
1882         reparenting, in case it is reparented back to toplevel.
1883
1884 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
1885
1886         * gtk/gtkradioaction.c (gtk_radio_action_get_group): Add an
1887         example for manually setting up a group of actions.
1888
1889         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
1890         Document that inline completion requires text-column to be set.
1891         (gtk_entry_completion_compute_prefix): Return NULL if text-column
1892         is not set.
1893
1894         * gtk/gtkentry.c (check_completion_callback): Call 
1895         gtk_entry_completion_complete() before inserting the prefix,
1896         otherwise the prefix may depend on (random) state of the
1897         filter model.  
1898
1899 2005-03-15  Anders Carlsson  <andersca@imendio.com>
1900
1901         * docs/iconcache.txt:
1902         Update spec.
1903         
1904         * gtk/gtkiconcache.c: (find_image_offset),
1905         (_gtk_icon_cache_get_icon_flags), (_gtk_icon_cache_add_icons),
1906         (_gtk_icon_cache_get_icon), (_gtk_icon_cache_get_icon_data):
1907         * gtk/gtkiconcache.h:
1908         Update to be able to fetch pixbuf data and icon metadata.
1909         
1910         * gtk/gtkicontheme.c: (theme_lookup_icon), (gtk_icon_info_free),
1911         (icon_info_ensure_scale_and_pixbuf):
1912         Use new cache functions.
1913         
1914         * gtk/updateiconcache.c: (foreach_remove_func), (load_icon_data),
1915         (maybe_cache_image_data), (scan_directory), (write_pixdata),
1916         (get_image_meta_data_size), (get_image_pixel_data_size),
1917         (get_image_data_size), (get_single_node_size), (get_bucket_size),
1918         (write_bucket), (main):
1919         Update to write pixbuf data as well as information from .icon
1920         files.
1921         
1922 2005-03-15  Tor Lillqvist  <tml@novell.com>
1923
1924         * gdk/win32/gdkmain-win32.c (_gdk_win32_key_to_string): New
1925         debugging function. As GetKeyNameText() returns a localized key
1926         name we need to convert it to UTF-8.
1927
1928         * gdk/win32/gdkprivate-win32.h: Declare it.
1929
1930         * gdk/win32/gdkevents-win32.c: Use it.
1931
1932         * gdk/win32/gdkwindow-win32.c (gdk_window_new_internal): Fix
1933         handling of children of foreign windows. They should be child
1934         windows from Windows's perspective, even if they are toplevel GDK
1935         windows.
1936
1937 2005-03-13  Ivan, Wong Yat Cheung  <email@ivanwong.info>
1938
1939         * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): A further fix
1940         for big window support. Now also the test in testgtk works.
1941
1942 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
1943
1944         * gtk/gtkaboutdialog.c (add_credits_page): Don't crash on
1945         style changes.  (#169334, Yury Puzis)
1946
1947         * gtk/gtkicontheme.c (gtk_icon_theme_set_custom_theme): Fix
1948         the doc comments.  (#169967, Masao Mutoh)
1949
1950 2005-03-12  Ivan, Wong Yat Cheung  <email@ivanwong.info>
1951
1952         Big window fix for Win32. Big windows are still emulated within
1953         16-bit coordinate limits, though. Big windows now work on NT-based
1954         Windows. (#169989)
1955
1956         * gdk/win32/gdkgc-win32.c (_gdk_win32_gdkregion_to_hrgn): Use
1957         32-bit coordinates.
1958
1959         * gdk/win32/gdkgeometry-win32.c: Largely rewrite.
1960
1961         * gdk/win32/gdkwindow-win32.c: Minor related changes.
1962         
1963 2005-03-10  Matthias Clasen  <mclasen@redhat.com>
1964
1965         * gtk/gtkliststore.c (gtk_list_store_insert_with_valuesv): 
1966         Fix a doc typo.  (#169873, Johan Dahlin)
1967
1968         * gtk/gtkdialog.c (gtk_dialog_map): Don't
1969         try to focus the default_widget if there is 
1970         none.  (#169881, Thomas Leonard)
1971
1972 Wed Mar  9 19:20:44 2005  Manish Singh  <yosh@gimp.org>
1973
1974         * configure.in: Remove inadvertent gail references, require
1975         Pango 1.9.0
1976
1977 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
1978
1979         * configure.in: Require GLib 2.7.0
1980
1981 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
1982
1983         * gtk/gtkwidget.h (struct _GtkWidget): Typo fixes in comments.
1984         (#169728, Morten Welinder, Owen Taylor)
1985
1986         * gtk/gtkwidget.c (gtk_widget_add_mnemonic_label): Fix a typo
1987         in the docs.  (#169729, Morten Welinder)
1988
1989         * gtk/gtkimage.c (gtk_image_class_init): Fix a typo.
1990
1991         * gtk/gtkiconview.c (gtk_icon_view_set_model): Queue a resize 
1992         when the model is unset.  (#169528, Tomislav Jonjic)
1993
1994 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
1995
1996         * gtk/gtkviewport.c (gtk_viewport_class_init): 
1997         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): 
1998         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_class_init): 
1999         * gtk/gtktipsquery.c (gtk_tips_query_class_init): 
2000         * gtk/gtktext.c (gtk_text_class_init): 
2001         * gtk/gtkstatusbar.c (gtk_statusbar_class_init): 
2002         * gtk/gtkspinbutton.c (gtk_spin_button_class_init): 
2003         * gtk/gtktoggleaction.c (gtk_toggle_action_class_init): 
2004         * gtk/gtkoptionmenu.c (gtk_option_menu_class_init): 
2005         * gtk/gtkoldeditable.c (gtk_old_editable_class_init): 
2006         * gtk/gtkmessagedialog.c (gtk_message_dialog_class_init): 
2007         * gtk/gtktoolbutton.c (gtk_tool_button_class_init): 
2008         * gtk/gtktoolitem.c (gtk_tool_item_class_init): 
2009         * gtk/gtkimage.c (gtk_image_class_init): 
2010         * gtk/gtkruler.c (gtk_ruler_class_init): 
2011         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
2012         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): 
2013         * gtk/gtkprogress.c (gtk_progress_class_init): 
2014         * gtk/gtkmenu.c (gtk_menu_class_init): 
2015         * gtk/gtkscale.c (gtk_scale_class_init): 
2016         * gtk/gtkpaned.c (gtk_paned_class_init): 
2017         * gtk/gtkhandlebox.c (gtk_handle_box_class_init): 
2018         * gtk/gtkfontbutton.c (gtk_font_button_class_init): 
2019         * gtk/gtkfontsel.c (gtk_font_selection_class_init): 
2020         * gtk/gtkfilesel.c (gtk_file_selection_class_init): 
2021         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
2022         * gtk/gtkcurve.c (gtk_curve_class_init): 
2023         * gtk/gtkcombo.c (gtk_combo_class_init): 
2024         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
2025         * gtk/gtkcolorbutton.c (gtk_color_button_class_init): 
2026         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): 
2027         * gtk/gtkmenuitem.c (gtk_menu_item_class_init): 
2028         * gtk/gtkcheckbutton.c (gtk_check_button_class_init): 
2029         * gtk/gtktogglebutton.c (gtk_toggle_button_class_init): 
2030         * gtk/gtkcellview.c (gtk_cell_view_class_init): 
2031         * gtk/gtktoolbar.c (gtk_toolbar_class_init): 
2032         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): 
2033         * gtk/gtkclist.c (gtk_clist_class_init): 
2034         * gtk/gtkctree.c (gtk_ctree_class_init): 
2035         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): 
2036         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init): 
2037         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init): 
2038         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_class_init): 
2039         * gtk/gtkcalendar.c (gtk_calendar_class_init): 
2040         * gtk/gtkbbox.c (gtk_button_box_class_init): 
2041         * gtk/gtktable.c (gtk_table_class_init): 
2042         * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): 
2043         * gtk/gtkframe.c (gtk_frame_class_init): 
2044         * gtk/gtkaction.c (gtk_action_class_init): 
2045         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): 
2046         * gtk/gtkaboutdialog.c (gtk_about_dialog_class_init): 
2047         * gtk/gtkdialog.c (gtk_dialog_class_init): More of the same.
2048
2049 2005-03-08  Matthias Clasen  <mclasen@redhat.com>
2050
2051         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): 
2052         * gtk/gtkrange.c (gtk_range_class_init): 
2053         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init): 
2054         * gtk/gtktexttag.c (gtk_text_tag_class_init): 
2055         * gtk/gtktextview.c (gtk_text_view_class_init): 
2056         * gtk/gtkscrollbar.c (gtk_scrollbar_class_init): 
2057         * gtk/gtknotebook.c (gtk_notebook_class_init): 
2058         * gtk/gtkentry.c (gtk_entry_class_init): 
2059         * gtk/gtkexpander.c (gtk_expander_class_init): 
2060         * gtk/gtkarrow.c (gtk_arrow_class_init): 
2061         * gtk/gtkalignment.c (gtk_alignment_class_init): 
2062         * gtk/gtkbutton.c (gtk_button_class_init): 
2063         * gtk/gtklabel.c (gtk_label_class_init): 
2064         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): 
2065         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
2066         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
2067         * gtk/gtktreeview.c (gtk_tree_view_class_init): 
2068         * gtk/gtkbox.c (gtk_box_class_init): 
2069         * gtk/gtkwindow.c (gtk_window_class_init, gtk_window_class_init): 
2070         * gtk/gtkcontainer.c (gtk_container_class_init): 
2071         * gtk/gtkwidget.c (gtk_widget_class_init): 
2072         * gtk/gtkobject.c (gtk_object_class_init): Use canonical names
2073         when registering param specs.
2074
2075         * demos/gtk-demo/editable_cells.c: Use GtkCellRendererCombo
2076         (#169607, Mark McLoughlin)
2077         
2078         * gtk/gtk.symbols: Add the new attributes here, too.
2079
2080         * gtk/gtkwidget.h: 
2081         * gtk/gtktreeview.h: 
2082         * gtk/gtktreeviewcolumn.h: 
2083         * gtk/gtktextbuffer.h: 
2084         * gtk/gtkobject.h: 
2085         * gtk/gtkfilechooserdialog.h: 
2086         * gtk/gtkdialog.h: 
2087         * gtk/gtkcontainer.h: 
2088         * gtk/gtkcelllayout.h: 
2089         * gtk/gtkaboutdialog.h: Use G_GNUC_NULL_TERMINATED where
2090         appropriate.  (#165682, Marc Meissner)
2091
2092 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
2093
2094         Convert the gdk keyval-keyname tables to a big string
2095         + offsets. (#168901)
2096         
2097         * gdk/gen-keyname-table.pl: Perl script inspired by
2098         pango/tools/gen-color-table.pl to create the 
2099         gdk_keys_by_keyval and gdk_keys_by_name tables as lists
2100         of offsets pointing into a big const string.
2101         
2102         * gdk/keynames.txt: List of keyval-keyname pairs.
2103         * gdk/keyname-table.h: Generated tables.
2104
2105         * gdk/gdkkeynames.c: Include keyname-table.h and don't
2106         generate the inverse table at runtime.
2107
2108 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
2109
2110         * gtk/gtkstyle.c: Document which parameters may be NULL.  
2111         (#166855, Frank Naumann)
2112
2113 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
2114
2115         * AUTHORS: Add original authors of incorporated software.
2116
2117 Thu Mar  3 16:59:44 2005  Manish Singh  <yosh@gimp.org>
2118
2119         * configure.in: URL escape the '+' in gtk+ in the bugzilla URL.
2120
2121 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
2122
2123         * gtk/gtksettings.c (gtk_settings_get_property): 
2124         * gtk/gtkrc.c (gtk_rc_parse_assignment): Don't leak 
2125         the values here.  (#169047, Philip Langdale)
2126
2127         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
2128         Don't warn if a stock icon cannot be found.  (#168830,
2129         Sven Neumann)
2130
2131 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
2132
2133         * gtk/gtkwidget.c (gtk_widget_reparent_subwindows): 
2134         Avoid warnings if gtk_widget_reparent() is called at
2135         unusual times.  (#168966, Christian Persch)
2136
2137 Tue Mar  1 14:04:08 2005  Manish Singh  <yosh@gimp.org>
2138
2139         * gdk/x11/gdkproperty-x11.c (virtual_atom_check_init): Cast to avoid
2140         const warnings on data structure seeding.
2141
2142 Tue Mar  1 13:53:56 2005  Manish Singh  <yosh@gimp.org>
2143
2144         * gtk/xdgmime/xdgmime.[ch]: revert previous change, maintain ABI.
2145
2146 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
2147
2148         * gtk/gtkmenutoolbutton.c (button_state_changed_cb): 
2149         Fix prelighting.  (#157392, Vincent Noel, patch by
2150         Christian Persch)
2151
2152         * gtk/gtkicontheme.c (theme_lookup_icon): Make 
2153         icon data caching work again.  (#168851, Alexander Larsson)
2154
2155         * gdk-pixbuf/gdk-pixbuf.c:
2156         * gdk-pixbuf/gdk-pixbuf-features.h.in:
2157         Revert the previous change, since it breaks
2158         bin compat.
2159
2160 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
2161
2162         * gdk/gdkkeyuni.c
2163         * gdk/gdkpixbuf-drawable.c
2164         * gdk/gdkrgb.c
2165         * gdk/x11/gdkdnd-x11.c
2166         * gdk/x11/gdkevents-x11.c
2167         * gdk/x11/gdkproperty-x11.c
2168         * gdk/x11/gdkvisual-x11.c
2169         * gdk-pixbuf/gdk-pixbuf.c
2170         * gdk-pixbuf/gdk-pixbuf-features.h.in
2171         * gtk/gtkaction.c
2172         * gtk/gtkbindings.c
2173         * gtk/gtkcolorbutton.c
2174         * gtk/gtkcombo.c
2175         * gtk/gtkcontainer.c
2176         * gtk/gtkfilechooserdefault.c
2177         * gtk/gtkfilesel.c
2178         * gtk/gtkgamma.c
2179         * gtk/gtkiconview.c
2180         * gtk/gtkinputdialog.c
2181         * gtk/gtkitemfactory.c
2182         * gtk/gtkmenu.c
2183         * gtk/gtktextview.c
2184         * gtk/gtktooltips.c
2185         * gtk/gtktreedatalist.c
2186         * gtk/gtkuimanager.c
2187         * gtk/tree_minus.xpm
2188         * gtk/tree_plus.xpm
2189         * gtk/xdgmime/xdgmime.c
2190         * gtk/xdgmime/xdgmime.h: 
2191         Move constant data to .rodata.
2192
2193 2005-02-27  Matthias Clasen  <mclasen@redhat.com>
2194
2195         * gtk/gtkaction.c (connect_proxy): Improve the handling
2196         of buttons as action proxys.  (#165534, Milosz Derezynski)
2197
2198         * gtk/gtklabel.c (gtk_label_size_request): Fix a typo.
2199         (#168646, Vincent Untz)
2200
2201         * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
2202         Unset "focus-on-click" for the save folder combo.  (#168688,
2203         Sven Neumann)
2204
2205 2005-02-25  Matthias Clasen  <mclasen@redhat.com>
2206
2207         * demos/testpixbuf.c (main): Remove a C++ comment.  (#168531, 
2208         Paul Cornett)
2209
2210         * gtk/gtkcombobox.c (gtk_combo_box_menu_fill_level): Don't leak a 
2211         path here.  (#168443, Morten Welinder)
2212
2213 2005-02-24  Robert Ögren  <gtk@roboros.com>
2214
2215         Implement better handling of Wintab tablet context overlap on
2216         Win32. (#167298)
2217
2218         * gdk/win32/gdkinput-win32.c (_gdk_input_set_tablet_active): New
2219         function that brings any tablet contexts to the top of the overlap
2220         order.
2221         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_set_tablet_active ()
2222         * gdk/win32/gdkevents-win32.c (gdk_event_translate):
2223         Call _gdk_input_set_tablet_active when a window is activated (on
2224         WM_ACTIVATE)
2225
2226 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2227
2228         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path): 
2229         Don't leak parent_path.  (#168435, Morten Welinder)
2230
2231 Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
2232
2233         * gtk/gtkstyle.c: Add
2234
2235         g_return_if_fail (style->depth == gdk_drawable_get_depth(window));
2236
2237         all over the place.
2238
2239 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2240
2241         * gtk/gtkcombobox.c: Consistently use gtk_tree_row_reference_valid().
2242         (gtk_combo_box_model_row_deleted): Update the displayed row in 
2243         the cell_view.  (#167842, Gustavo Carneiro)
2244
2245 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2246
2247         Fix #167259, reported by  Christian Persch:
2248         
2249         * gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented 
2250         widget, even if we avoid the unrealizing. 
2251         (gtk_widget_reparent_subwindows): Make reparenting work for
2252         !NO_WINDOW widgets which have other windows which are siblings
2253         of widget->window (as e.g. GtkSpinButton).
2254
2255 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
2256
2257         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_changed): 
2258         Don't emit a warning if a parent node is filtered out. (#164726,
2259         Olivier Sessink)
2260
2261 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
2262
2263         * gtk/gtklabel.c (gtk_label_style_set): Revert the last 
2264         change, since gtk_widget_set_style_internal() already
2265         queues a resize.
2266
2267 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
2268
2269         * gtk/gtklabel.c (gtk_label_style_set): Queue a resize, since
2270         fonts may have changed.  (#164128, Phil Blundell)
2271
2272         * gtk/gtkaboutdialog.c (gtk_about_dialog_init) 
2273         (gtk_about_dialog_new): Move initialization code from _new to 
2274         _init.  (#168249, Murray Cumming) 
2275
2276 Wed Feb 23 17:34:01 2005  Jonathan Blandford  <jrb@redhat.com>
2277
2278         * gtk/gtktreeview.c (gtk_tree_view_node_queue_redraw): Patch from
2279         jorn@nl.linux.org (Jorn Baayen) to notice changes to fixed-height
2280         widgets.
2281
2282 2005-02-23  Tor Lillqvist  <tml@novell.com>
2283
2284         * gdk/win32/gdkkeys-win32.c (update_keymap): Workaround for bug in
2285         MapVirtualKey(VK_DIVIDE, 0) in some Windows versions. (#142998)
2286
2287 Tue Feb 22 13:49:09 2005  Manish Singh  <yosh@gimp.org>
2288
2289         * gtk/updateiconcache.c: #include <config.h>
2290
2291 2005-02-22  Federico Mena Quintero  <federico@ximian.com>
2292
2293         Merged from gtk-2-6:
2294
2295         Fix #164940, patch by Ben Maurer and Tommi Komulainen.
2296
2297         * gdk/gdkrgb.c (gdk_rgb_convert_565_d): Constify the "dmp" variable.
2298         (gdk_rgb_convert_565_d): Likewise.
2299         (DM_565): Made a static const precomputed array to avoid
2300         allocating it at runtime.
2301         (gdk_rgb_preprocess_dm_565): #ifdef out.
2302
2303 2005-02-20  Matthias Clasen  <mclasen@redhat.com>
2304
2305         * gtk/gtkwindow.c: 
2306         * gtk/gtkclipboard.c: Fix links to freedesktop.org specs
2307         in the documentation.
2308
2309         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
2310         Set have_render_with_trapezoids to GDK_YES when we have 
2311         a new enough Render extension.  (#167965,Billy Biggs) 
2312
2313         * gtk/gtkwindow.c (gtk_window_present): Use the timestamp of
2314         the last user interaction when focusing the window.  (#166379, 
2315         Elijah Newren)
2316
2317 Thu Feb 17 14:58:16 2005  Manish Singh  <yosh@gimp.org>
2318
2319         * gtk/gtkuimanager.c (start_element_handler): make sure expand
2320         is initialized, cast to GTK_SEPARATOR_TOOL_ITEM.
2321
2322 Thu Feb 17 14:52:57 2005  Manish Singh  <yosh@gimp.org>
2323
2324         * gtk/gtkcombobox.c: Pass gtk_widget_get_toplevel() a GTK_WIDGET.
2325
2326 2005-02-16  Matthias Clasen  <mclasen@redhat.com>
2327
2328         * docs/iconcache.txt: Add some information about the
2329         icon cache format (since I can't locate it at freedesktop.org)
2330
2331         Fixes for #143829, Tommi Komulainen, Christian Persch:
2332         
2333         * gtk/gtktreeview.c (gtk_tree_view_destroy): Remove the
2334         typeselect_flush_timeout when destroying the widgets
2335         it is operating on.  
2336         (gtk_tree_view_ensure_interactive_directory): Add the 
2337         popup to the window group of the toplevel it belongs to.
2338
2339         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget) 
2340         (gtk_combo_box_popup): Do the same here. 
2341
2342 2005-02-14  Matthias Clasen  <mclasen@redhat.com>
2343
2344         * configure.in: Kill --enable-ansi  (#164394)
2345
2346 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
2347
2348         * gtk/gtkpathbar.c (gtk_path_bar_finalize): Stop scrolling 
2349         when the pathbar goes away.  (#167094, Rodney Dawes)
2350         (change_icon_theme): Use GTK_ICON_SIZE_MENU here as 
2351         well  (Vincent Noel)
2352
2353 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
2354
2355         Support vertical menubars  (#166632): 
2356         
2357         * gtk/gtkenums.h (GtkPackDirection): New enumeration for pack 
2358         directions, with values for left-to-right, right-to-left, 
2359         top-to-bottom and bottom-to-top.
2360
2361         * gtk/gtk.symbols: 
2362         * gtk/gtkmenubar.h: 
2363         * gtk/gtkmenubar.c: Add two properties, pack-direction and
2364         child-pack-direction, which specify how children and 
2365         grandchildren of a menubar are packed, with getters and setters. 
2366
2367         * gtk/gtkmenubar.c (gtk_menu_bar_set_property): 
2368         (gtk_menu_bar_get_property): Implement set_property and get_property.
2369
2370         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): 
2371         (gtk_menu_bar_size_allocate): Take pack direction into account.
2372
2373         * gtk/gtkmenubar.c (gtk_menu_bar_move_current): Implement 
2374         move_current here move all the menubar-specific direction 
2375         tweaking from the generic menushell implementation here.
2376
2377         * gtk/gtkmenu.c (gtk_menu_move_current): Move  menu-specific 
2378         direction tweaking from the generic menushell implementation here.
2379
2380         * gtk/gtkmenuitem.c (gtk_menu_item_size_request): 
2381         (gtk_menu_bar_size_allocate): Take pack direction into account.
2382
2383         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_size_request) 
2384         (gtk_image_menu_item_size_allocate): 
2385         (gtk_image_menu_item_toggle_size_request): Take child pack 
2386         direction into account and pack the image vertically if
2387         necessary.
2388
2389         * gtk/gtkmenushell.c (gtk_menu_shell_real_select_item):
2390         Set the submenu direction to left-right for menuitems in 
2391         vertical menubars.
2392         (gtk_real_menu_shell_move_current): Simplify by moving
2393         direction tweaking to menu- and menubar-specific 
2394         implementations. Take pack direction into account when
2395         doing fallbacks.
2396
2397         * tests/testmenubars.c: Test menubars in various packing
2398         direction combinations.
2399
2400         * tests/Makefile.am (noinst_PROGRAMS): Add testmenubars.
2401
2402 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
2403
2404         Complete the fix for #165770, Vincent Noel:
2405         
2406         * gtk/gtkfilechooserbutton.c (FALLBACK_ICON_SIZE): Make the
2407         fallback size be 16, to be equal to the default for
2408         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
2409         (gtk_file_chooser_button_init):
2410         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
2411         GTK_ICON_SIZE_SMALL_TOOLBAR. 
2412
2413 2005-02-09  Matthias Clasen  <mclasen@redhat.com>
2414
2415         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current): Fix RTL
2416         keynav for going from menubar to menu.
2417
2418 2005-02-08  Christian Rose  <menthos@menthos.com>
2419
2420         * configure.in: Added "xh" to ALL_LINGUAS.
2421
2422 2005-02-08  Matthias Clasen  <mclasen@redhat.com>
2423
2424         * gtk/gtkuimanager.c (start_element_handler): Accept 
2425         the "expand" attribute and set a flag in the node if it
2426         is set to "true".
2427         (update_node): If the expand flag is set, make separator
2428         toolitems non-drawn and expanding.  (#166489, Christian Persch)
2429
2430 2005-02-05  Hans Breuer  <hans@breuer.org>
2431
2432         * gdk/makefile.msc gdk/win32/makefile.msc gtk/makefile.msc.in :
2433         build with Cairo dependency. The patch to acually use Cairo
2434         on win32 will be on gtk-devel-list soon.
2435         * tests/makefile.msc : add testcairo building
2436
2437         * gtk/stock-icons/makefile.msc : split command line into two to
2438         work with the shells default
2439
2440 Fri Feb  4 14:16:31 2005  Manish Singh  <yosh@gimp.org>
2441
2442         * gtk/gtkaccelgroup.c (substitute_underscores): remove unused
2443         function.
2444
2445         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
2446         Add some extra parens for bitop order of operations disambiguiation.
2447
2448         * gtk/gtkstock.c: Fix const confusion, make our own copy of the 
2449         domain when setting a translate function.
2450
2451         * tests/testcombo.c: removed unused variable.
2452
2453 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
2454
2455         * gtk/gtkstock.c (gtk_stock_lookup): Handle item->translation_domain
2456         being NULL.  (#166179, Diego Gonzalez)
2457
2458 2005-02-04  Owen Taylor  <otaylor@redhat.com>
2459
2460         * configure.in: Revert gtk_binary_version to 2.4.0. Fix
2461         up comment to talk only about backwards compat, not
2462         forward/backwards compat. (#166293, reported by Vincent Noel)
2463
2464 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
2465
2466         * gtk/gtkpaned.c (gtk_paned_compute_position): Work better
2467         when there is not enough space. This avoids a nasty size
2468         allocation loop in the file chooser.  (#154007, reported 
2469         by Milosz Derezynski, patch by Robert Ögren)
2470
2471 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
2472
2473         * gtk/gtkentry.c (gtk_entry_create_layout): Avoid spurious
2474         selection of RTL direction if the widget does not have 
2475         focus.  (#164125, Frederic Crozat)
2476
2477 Thu Feb  3 19:15:55 2005  Manish Singh  <yosh@gimp.org>
2478
2479         * gdk/x11/gdkdrawable-x11.c: #include cairo-xlib.h
2480
2481 2005-02-03  Owen Taylor  <otaylor@redhat.com>
2482
2483         * gdk/gdkdrawable.[ch] gdkpixmap.c gdkwindow.c: Add
2484         gdk_drawable_set_cairo_target().
2485
2486         * tests/testtreeflow.c (enum): Use grand not rand as a variable
2487         name because one of the cairo headers is pulling in stdlib.h.
2488
2489         * tests/testcairo.c tests/Makefile.am: Add a simple cairo based
2490         example.
2491
2492         * configure.in: Bump release to 2.7.0, gtk_binary_version to 2.7.0.
2493
2494         * Require libpangocairo for all backends.
2495
2496 2005-02-03  Tor Lillqvist  <tml@novell.com>
2497
2498         * modules/input/gtkimcontextime.c (get_pango_attr_list): Use the
2499         wide character version of ImmGetCompositionString() here,
2500         too. (#165278, Takuro Ashie)
2501
2502 2005-02-03  Matthias Clasen  <mclasen@redhat.com>
2503
2504         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Don't do
2505         one roundtrip per motion event.  (#166173, pointed out
2506         by Chris Lee, patch by Søren Sandmann)
2507
2508         * gtk/gtk.symbols: 
2509         * gtk/gtkstock.h: 
2510         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
2511         New function which allows to change the function used for
2512         translation stock labels, on a per-domain basis. Use this
2513         functionality to switch the GTK+ stock items to use Q_()
2514         prefixed msgids.  (#166179, Funda Wang)
2515         
2516         * gdk/gdkkeynames.c: Make the gdk_key array const (#166075,
2517         Tommi Komulainen)
2518
2519 2005-02-02  Federico Mena Quintero  <federico@ximian.com>
2520
2521         Merged from gtk-2-6:
2522
2523         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
2524         Don't select the first row if the chooser is not mapped.  This
2525         happens when it's acting on behalf of GtkFileChooserButton.  Also,
2526         don't select the first row if we are in SAVE or CREATE_FOLDER
2527         modes --- I had missed that (see the ChangeLog entry from
2528         2005-01-18).  Fixes #165264.
2529
2530 2005-02-02  Tor Lillqvist  <tml@novell.com>
2531
2532         Implement lazy extended input initialization on Win32, by Robert
2533         Ögren. Fixes #163163, possibly #162334. Lazy initialization would
2534         be a good idea in any case even if it didn't fix any visible
2535         problems, though.
2536
2537         The Wacom tablet driver seems to get confused if Wintab is
2538         initialized but no window is shown before the process exits. This
2539         is the case for some GIMP plug-ins, for instance. 
2540
2541         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Made
2542         non-static (and renamed).
2543         (_gdk_input_init): Don't call _gdk_input_wintab_init_check().
2544
2545         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_wintab_init_check().
2546
2547         * gdk/win32/gdkinput.c (gdk_devices_list,
2548         gdk_display_list_devices, gdk_input_set_extension_events): Call
2549         _gdk_input_wintab_init_check() here instead.
2550
2551 2005-02-02  Ivan, Wong Yat Cheung  <email@ivanwong.info>
2552
2553         * gdk/win32/gdkselection.c: Use a FIFO list for storing GdkSelProp
2554         of a single window so that gtk_clipboard_request_contents() can be
2555         called inside a GtkClipboardReceivedFunc(). (#163844)
2556
2557 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
2558
2559         * gtk/gtkicontheme.c (gtk_icon_theme_init): Look for icons
2560         in XDG_DATA_DIRS/pixmaps.  (#165950, Thomas Zajic)
2561
2562         * gtk/gtkwindow.c (gtk_window_set_icon_name): Set info->icon_list
2563         to NULL after freeing it.  (#165800, Damon Chaplin)
2564
2565 2005-02-01  Michael Natterer  <mitch@gimp.org>
2566
2567         * configure.in: depend on stable pango-1.8, not unstable 1.7
2568
2569 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
2570
2571         Merged from gtk-2-6:
2572
2573         * gtk/gtkfilechooserdefault.c
2574         (browse_files_model_finished_loading_cb): Don't
2575         g_assert_not_reached() if we are in any other state.  Another code
2576         path may have triggered a folder reload.  Fixes #165556.
2577
2578 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
2579
2580         Merged from gtk-2-6:
2581
2582         Fix #165770:
2583
2584         * gtk/gtkfilechooserdefault.c (FALLBACK_ICON_SIZE): Make the
2585         fallback size be 16, to be equal to the default for
2586         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
2587         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
2588         GTK_ICON_SIZE_SMALL_TOOLBAR.
2589
2590 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
2591
2592         * */*.c: Fix many instances of "the the" in docs and
2593         comments.  (#165815, Masao Mutoh)
2594
2595         * gtk/updateiconcache.c (main): Add a --quiet option.
2596
2597 2005-02-01  Tor Lillqvist  <tml@novell.com>
2598
2599         * gdk/win32/gdkkeys-win32.c (handle_special, set_shift_vks,
2600         reset_after_dead, handle_dead): New functions, code blocks
2601         refactored out of update_keymap(). No functionality change.
2602
2603         (update_keymap): Use ToUnicodeEx() when available (on NT-based
2604         Windows) instead of ToAsciiEx(). Makes keyboard input work in
2605         Unicode-only input locales that don't have any ANSI codepage, for
2606         instance Hindi and Bengali. Use _gdk_input_codepage only on
2607         Win9x. (#165723)
2608
2609         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
2610         WM_INPUTLANGCHANGE, use GetLocaleInfo() instead of
2611         TranslateCharsetInfo() to get the input locale's corresponding
2612         codepage, if any.
2613
2614 2005-01-31  Matthias Clasen  <mclasen@redhat.com>
2615
2616         * modules/input/gtkimcontextxim.c: Use NULL, not 0 to terminate 
2617         NULL-terminated va lists.  (#165683)
2618
2619 2005-01-29  Matthias Clasen  <mclasen@redhat.com>
2620
2621         * gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_set_draw): 
2622         Typo fix.  (#165581, Masao Mutoh)
2623
2624 Thu Jan 27 14:25:45 2005  Manish Singh  <yosh@gimp.org>
2625
2626         * README.cvs-commits: update ancient IRC info.
2627
2628 2005-01-27  Federico Mena Quintero  <federico@ximian.com>
2629
2630         Merged from gtk-2-6:
2631
2632         * gtk/gtkfilechooserdefault.c
2633         (gtk_file_chooser_default_select_path): Oops, don't assert that we
2634         can't reach the end of the function; this happens if we are still
2635         loading but don't need a path change.  Fixes #165213.
2636
2637 2005-01-27  Matthias Clasen  <mclasen@redhat.com>
2638
2639         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
2640         Make wrapping work in RTL mode.  
2641
2642         * gtk/gtkaboutdialog.c: Some visual tweaks to the about dialog,
2643         obey HIG spacing a bit more, add a hand cursor when over the
2644         link button.  (#163979, Jorn Baayen)
2645
2646 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
2647
2648         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
2649         Don't allow -1 as minimum-key-length.
2650         (gtk_entry_completion_set_model): Add missing notification.
2651         (gtk_entry_completion_set_minimum_key_length): Add missing
2652         notification, allow setting minimum-key-length to 0.  (#165194,
2653         Vincent Ladeuil)
2654
2655 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
2656
2657         * gtk/gtkaboutdialog.c (display_license_dialog): Make sure
2658         the license dialog is initially displayed without a horizontal
2659         scrollbar.  
2660         (gtk_about_dialog_class_init): Document the fact that the 
2661         license text is not wrapped.  (#165012, Christian Rose)
2662
2663 2005-01-25  Matthias Clasen  <mclasen@redhat.com>
2664
2665         * gtk/gtkbutton.c (gtk_button_set_image): Fix docs.  (#165180,
2666         Jeff Franks)
2667
2668         * gdk/x11/gdkwindow-x11.c (gdk_window_configure_finished): Fix 
2669         docs.  (#165163, Jeff Franks)
2670         
2671         * gtk/gtkimage.c (gtk_image_get_property): Use the correct setter
2672         for a string GValue.  (#165203, Damon Chaplin)
2673
2674 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
2675
2676         * gdk/x11/gdkdisplay-x11.c (_gdk_windowing_set_default_display): 
2677         Initialize user_time from DESKTOP_STARTUP_ID.  (#165131,
2678         Elijah Newren)
2679
2680 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
2681
2682         * gtk/gtkfilechooserdefault.c: Removed leftover comments.
2683
2684 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
2685
2686         Merged from gtk-2-6:
2687
2688         Fix #147785 and clean up the loading code:
2689
2690         * gtk/gtkfilechooserdefault.c (LoadState): Make the set of states
2691         be EMPTY, PRELOAD, LOADING, FINISHED.
2692         (gtk_file_chooser_default_init): Start in the LOAD_EMPTY state.
2693         (struct _GtkFileChooserDefault): Added a pending_select_paths
2694         field.
2695         (load_remove_timer): Add the new states.
2696         (load_setup_timer): Likewise.
2697         (load_timeout_cb): Likewise.  Switch to the LOAD_LOADING state.
2698         (browse_files_model_finished_loading_cb): Switch to the
2699         LOAD_FINISHED state.
2700         (enum PendingOp): Removed.
2701         (struct _GtkFileChooserDefault): Removed the pending_op and
2702         pending_select_path fields.
2703         (pending_select_paths_free): New utility function.
2704         (pending_select_paths_add): New utility function.
2705         (gtk_file_chooser_default_finalize): Call
2706         pending_select_paths_free().
2707         (pending_op_queue): Removed.
2708         (pending_op_process): Removed.
2709         (pending_select_paths_process): New function.
2710         (browse_files_model_finished_loading_cb): Call
2711         pending_select_paths_process().
2712         (center_selected_row_foreach_cb): Handle multiple selection by
2713         only centering the first row.
2714         (get_is_file_filtered): Constify.
2715         (gtk_file_chooser_default_select_path): Queue into a list of paths
2716         to select if we are not finished loading.
2717         (show_and_select_paths): New utility function.
2718         (up_folder_handler): Use pending_select_paths_add().
2719         (gtk_file_chooser_default_should_respond): Do not call
2720         pending_op_queue(); free the pending_selected_paths instead.
2721         (gtk_file_chooser_default_initial_focus): Don't queue a pending
2722         operation, and don't select the first row unconditionally --- this
2723         will happen when the folder is done loading.
2724         (shortcuts_row_activated_cb): Free the pending_select_paths.
2725         (pending_select_paths_store_selection): New utility function.
2726         (gtk_file_chooser_default_map): Call
2727         pending_select_paths_store_selection() to save the selection
2728         before reloading the folder.
2729         (select_func): Umm?  Call gtk_tree_selection_select_iter().  Don't
2730         move the cursor here; it will be done when processing the pending paths.
2731
2732         * tests/testfilechooser.c (main): Add a button to the command
2733         window to unmap and remap the file chooser.
2734
2735 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
2736
2737         * docs/tutorial/gtk-tut.sgml:
2738         * docs/tutorial/gtk_tut.sgml:
2739         * docs/reference/gtk/tmpl/gtkliststore.sgml:
2740         * gtk/gtkactiongroup.c:
2741         * gtk/gtksizegroup.c:
2742         * gtk/gtksizegroup.h:
2743         * gtk/gtktogglebutton.c: Replace "effect" by "affect" where
2744         appropriate.  (#165108, Dan Winship)
2745
2746 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
2747
2748         * gtk/gtkwidget.c (gtk_widget_class_init): Document 
2749         GtkWidget::style-set.  (#164222, Alex Graveley)
2750         
2751 2005-01-22  Matthias Clasen  <mclasen@redhat.com>
2752
2753         * gdk/gdkdisplay.h (gdk_display_add_client_message_filter_full): 
2754         Remove the accidentally added prototype for this unimplemented 
2755         function.  (#164893, Jeff Franks)
2756
2757         * gtk/gtktreeview.c (gtk_tree_view_leave_notify): Avoid spurious
2758         drags.  (#164884)
2759
2760 2005-01-23  Tor Lillqvist  <tml@novell.com>
2761
2762         * gdk/win32/gdkkeys-win32.c (update_keymap): Handle Greek tonos
2763         dead accent key. (#164859, reported and fix verified by Daniel
2764         Atallah.)
2765
2766         * gtk/gtkimcontextsimple.c (gtk_compose_seqs): Handle
2767         GDK_Greek_accentdieresis (tonos and dialytika) combining with iota
2768         and upsilon.
2769
2770         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_volume_get_display_name): 
2771         Don't call GetVolumeInformation() for network drives. They might
2772         be disconnected, and calling GetVolumeInformation() will then
2773         cause long delays. (#164448, reported by Dave Neary.) It seems to
2774         be very hard to reliably find out whether a network drive is
2775         connected or not, so it's easier to just not try getting the
2776         volume name for them. See the bug report for discussion.
2777
2778         Make volume name display formats translatable.
2779
2780         Fix for #163702, from Ivan Wong: 
2781         
2782         * gdk/win32/gdkprivate-win32.h 
2783         * gdk/win32/gdkglobals-win32.c: New flag _ignore_destroy_clipboard.
2784         
2785         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle
2786         WM_DESTROYCLIPBOARD. Unless _ignore_destroy_clipboard, generate a
2787         GDK_SELECTION_CLEAR event.
2788
2789         * gdk/win32/gdkselection-win32.c
2790         (gdk_selection_owner_set_for_display): Set _ignore_destroy_clipboard
2791         when emptying the clipboard ourselves.
2792
2793         (gdk_selection_send_notify_for_display): Remove the artifical
2794         GDK_SELECTION_CLEAR event generation.
2795
2796 2005-01-21  Matthias Clasen  <mclasen@redhat.com>
2797
2798         * gtk/gtkwidget.c (gtk_widget_get_accessible): More details
2799         provided by Bill Haneman.
2800
2801 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
2802
2803         * gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs.  (#164725,
2804         George Kraft IV)
2805
2806         * gtk/gtkdialog.c (gtk_dialog_map): Don't loop forever
2807         here, even if the only focusable widgets are labels.
2808
2809 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
2810
2811         Support tinting in GtkCellRendererPixbuf (#162903, Jorn Baayen):
2812         
2813         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init) 
2814         Add a follow-state property which when TRUE causes the pixbuf
2815         to be tinted according to state.
2816
2817         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
2818         Use follow-state and colorize the pixbuf when appropriate.      
2819         
2820 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
2821
2822         Support wrapping in GtkCellRendererText  (#163608):
2823         
2824         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
2825         Add wrap-mode and wrap-width properties which cause a 
2826         text cell to break to a specified width when set.
2827
2828         * gtk/gtkcellrenderertext.c (get_layout): Use wrap-mode
2829         and wrap-width when they are set.
2830
2831 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
2832
2833         * gtk/gtkmodules.c (load_module): Don't reverse the order
2834         of modules when putting them in gtk_modules.  (#162676, Dennis
2835         Cranston, patch by Remus Draica)
2836
2837         * gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash 
2838         if the tree is empty.  (#164669, Priit Laes)
2839
2840 Wed Jan 19 18:57:02 2005  Manish Singh  <yosh@gimp.org>
2841
2842         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Call
2843         GDK_DISPLAY_XDISPLAY with a display, not a window. Clean up the
2844         function a bit too.
2845
2846 Wed Jan 19 17:17:31 2005  Manish Singh  <yosh@gimp.org>
2847
2848         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Squash
2849         strict aliasing warning in _NET_VIRTUAL_ROOTS code.
2850
2851 2005-01-19  Tor Lillqvist  <tml@novell.com>
2852
2853         * gdk/win32/gdkkeys-win32.c (update_keymap,
2854         gdk_keymap_translate_keyboard_state): Handle keyboards with
2855         ShiftLock (and not CapsLock) correctly. (#161814)
2856
2857 2005-01-19  Matthias Clasen  <mclasen@redhat.com>
2858
2859         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond):
2860         In save mode, don't return paths containing nonexisting 
2861         directories.  (#162443, Jean Marie Favreau)
2862
2863         * gtk/gtkobject.c (gtk_object_add_arg_type): Use GLib limit 
2864         macros to avoid sparse warnings. Pointed out by Kjartan Maraas.
2865
2866         * gdk/x11/gdkdisplay-x11.c: Precache the _NET_VIRTUAL_ROOTS
2867         atom.
2868
2869         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): 
2870         Support _NET_VIRTUAL_ROOTS.  (#163910, Carsten Haitzler)
2871         
2872         * gdk/gdk.symbols: 
2873         * gdk/x11/gdkx.h: 
2874         * gdk/x11/gdkdisplay-x11.c (gdk_x11_display_get_user_time): 
2875         Add a function to obtain the last user interaction 
2876         time.  (#163119, Elijah Newren)
2877
2878 Tue Jan 18 13:56:09 2005  Manish Singh  <yosh@gimp.org>
2879
2880         * gtk/gtkfilechooserdefault.c (pending_op_queue): Actually assign
2881         PENDING_OP_NONE.
2882
2883 Tue Jan 18 13:46:46 2005  Manish Singh  <yosh@gimp.org>
2884
2885         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids):
2886         disambiguate nested if/else.
2887
2888 2005-01-18  Federico Mena Quintero  <federico@ximian.com>
2889
2890         Merged from gtk-2-6:
2891
2892         * gtk/gtkfilechooserdefault.c (pending_op_queue): Don't queue an
2893         operation to select the first file if we are in SAVE or
2894         CREATE_FOLDER modes.  Executing that operation would overwrite the
2895         contents of the save-name entry.
2896
2897 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
2898
2899         * gdk/gdkdisplay.h: 
2900         * gdk/x11/gdkwindow-x11.c (gdk_display_warp_pointer): 
2901         * gdk/win32/gdkwindow-win32.c (gdk_display_warp_pointer): Add
2902         pointer warping to GDK.  (#160437)
2903
2904         * gtk/gtkcolorsel.c (key_press): Use gdk_display_warp_pointer.
2905
2906 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
2907
2908         * gtk/gtkstyle.c (gtk_default_draw_check) 
2909         (gtk_default_draw_option, gtk_default_draw_handle): Add some
2910         more NULL checks, patch by Michael Natterer.
2911
2912 Tue Jan 18 10:55:47 2005  Søren Sandmann  <sandmann@redhat.com>
2913
2914         * gtk/gtkstyle.c (gtk_default_draw_handle): Check for NULL detail
2915         and NULL widget.
2916
2917         * gtk/gtkstyle.c (gtk_default_draw_box): Check for NULL detail and
2918         NULL widget.  (#164477, Michael Natterer)
2919
2920 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
2921
2922         Avoid X errors when running against servers which
2923         implement XRender < 0.4.  (#164427, Albert Chin)
2924         
2925         * gdk/x11/gdkprivate-x11.h:
2926         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
2927         New function to check for trapezoid support in XRender.
2928         (gdk_x11_draw_trapezoids, _gdk_x11_drawable_draw_xtrapezoids): 
2929         Use it here.
2930         
2931         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add a 
2932         separate have_render_with_trapezoids field.
2933
2934         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize it.
2935
2936 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
2937
2938         * gtk/gtkiconview.c: Remove debug output. (#164376, Jens Finke)
2939
2940 Mon Jan 17 16:44:36 2005  Jonathan Blandford  <jrb@redhat.com>
2941
2942         * docs/Makefile.am (EXTRA_DIST): add tree-column-sizing.png to
2943         dist.
2944
2945 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
2946
2947         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmarks): Save
2948         and restore the selected row in the bookmark list and the
2949         save folder combo.  (#164290)
2950
2951 2005-01-16  Matthias Clasen  <mclasen@redhat.com>
2952
2953         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_new_with_backend):
2954         Fix argument order in docs.  
2955
2956 2005-01-15  Matthias Clasen  <mclasen@redhat.com>
2957
2958         * gtk/gtktextview.c (gtk_text_view_check_keymap_direction): 
2959         * gtk/gtkentry.c (gtk_entry_create_layout): Prefer LTR over RTL 
2960         if the keymap is neutral.  (#164125, Phil Blundell)
2961
2962 2005-01-14  Matthias Clasen  <mclasen@redhat.com>
2963
2964         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Allow to
2965         reset the property to its default value -1. 
2966         (gtk_tree_view_get_search_column): Return the default value in
2967         the g_return_val_if_fail() check.  (#163864, Richard Hult)
2968
2969         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_set_value): 
2970         Add a translator hint.  (#163889)
2971
2972         * configure.in: Check for _NL_TIME_FIRST_WEEKDAY too, since it
2973         is an enum value, not a define. Pointed out by Tommi Komulainen.
2974         * gtk/gtkcalendar.c (gtk_calendar_init): Adapt.
2975
2976 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
2977
2978         * configure.in: Check for nl_langinfo()
2979         * gtk/gtkcalendar.c (gtk_calendar_init): Use nl_langinfo() when it's
2980         available to determine first day of week   (#163842, Vincent Untz)
2981
2982         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Add hints about 
2983         the lifecycle of widgets.  (#159503, Christian Persch)
2984
2985         * demos/gtk-demo/main.c (create_text): Use monospace for the 
2986         source code view.  (#163526, Theerud Lawtrakul)
2987
2988         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic
2989         for the Credits button to avoid duplicate.  (#163465, Tim-Philipp 
2990         Müller)
2991         
2992         * configure.in: Add an OS_LINUX conditional.
2993
2994         * gdk/Makefile.am (TESTS):
2995         * gdk-pixbuf/Makefile.am (TESTS):
2996         * gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
2997         Roger Leigh)
2998
2999 2005-01-13  Matthias Clasen <mclasen@redhat.com>
3000
3001         * gtk/gtktreeview.c: (gtk_tree_view_class_init),
3002         (gtk_tree_view_set_headers_clickable): Make the headers-visible
3003         property readwrite instead of just writable, and remove the
3004         g_return_if_fail check that there is a model when setting this
3005         property. Also improve the blurb.  (#163851, Richard Hult)
3006
3007 2005-01-12  Owen Taylor <otaylor@redhat.com>
3008
3009         * configure.in: Remove GLIB_DIVERT_BEFORE_HELP() on
3010         initialization of gdktarget, that was causing it to be
3011         evaluated before host was set. Simplify --with-gdktarget help
3012         message.
3013
3014         * gtk/Makefile.am: Use grep | head -n 1 instead of grep -m 1 
3015         which doesn't work with slightly older versions of GNU grep 
3016         in install-libtool-import-lib rule.
3017         
3018 2005-01-12  Tor Lillqvist  <tlillqvist@novell.com>
3019
3020         Fix for #162790, by Iwan Wong:
3021         
3022         * gdk/win32/gdkdrawable-win32.c: Implement dashed lines
3023         correctly. Simplify the interface to render_line_horizontal() and
3024         render_line_vertical(). Need to draw lines "manually" also on
3025         NT-based Windowses if we have a dash offset or are drawing
3026         double-dashed lines.
3027
3028         * gdk/win32/gdkprivate-win32.h: Keep also the dash offset,
3029         double-dash flag, and a brush for the background colour (used by
3030         the odd dashes in the double-dash line style) in the GdkGCWin32
3031         struct.
3032
3033         * gdk/win32/gdkgc-win32.c: Set up above new fields.
3034
3035 2005-01-10  Federico Mena Quintero  <federico@ximian.com>
3036
3037         Fix #162617.
3038
3039         * gtk/gtkfilesystemunix.c (STAT_NEEDED_MASK): Take out
3040         GTK_FILE_INFO_IS_HIDDEN; we don't need to stat() to know this.
3041         (gtk_file_system_unix_get_folder): Make error reporting more
3042         accurate.  Don't bail out if we can't read the directory.
3043         (fill_in_stats): Don't return an error; just assume we don't have
3044         stat info for this folder's files.
3045         (fill_in_names): Don't create the hash table for the names if we
3046         can't open the directory.
3047         (gtk_file_folder_unix_list_children): Don't emit the
3048         "finished-loading" signal --- we don't do asynchronous loads, so
3049         we are always finished loading.
3050         (gtk_file_folder_unix_get_info): Use helper functions; handle the
3051         case where we can't stat '/'.
3052         (get_icon_type_from_path): Don't call fill_in_stats() here; only
3053         use the info we have.
3054         (fill_in_mime_type): Don't return an error.  Don't do anything if
3055         we don't have the stat info.
3056
3057 2005-01-10  Owen Taylor  <otaylor@redhat.com>
3058
3059         * Makefile.am (EXTRA_DIST): Adding missing ChangeLog.pre*
3060         to EXTRA_DIST.
3061
3062 2005-01-10  Matthias Clasen  <mclasen@redhat.com>
3063
3064         * gtk/gtkaccelgroup.c (gtk_accel_group_class_init): Document
3065         signals.  (#163319, Murray Cumming)
3066
3067 2005-01-09  Tor Lillqvist  <tlillqvist@novell.com>
3068
3069         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Set current
3070         cursor also when changing the cursor of a window that is the first
3071         ancestor of the window containing the pointer that has a cursor
3072         defined. (#163035, Ivan Wong)
3073
3074 2005-01-09  Anders Carlsson <andersca@gnome.org>
3075
3076         * gtk/gtkcellrenderertext.c: (get_size):
3077         * gtk/gtklabel.c: (gtk_label_size_request):
3078         * gtk/gtkprogressbar.c: (gtk_progress_bar_size_request):
3079         Don't pass NULL to pango_context_get_metrics. Use 
3080         pango_context_get_language instead, which is way faster.
3081         
3082 2005-01-08  Matthias Clasen  <mclasen@redhat.com>
3083
3084         * configure.in: Bump version
3085
3086         * === Released 2.6.1 ===
3087         
3088         * gdk-pixbuf-2.0.pc.in: Require gmodule-no-export-2.0
3089
3090 2005-01-07  Tor Lillqvist  <tml@iki.fi>
3091
3092         * gdk/win32/gdkselection-win32.c (_gdk_selection_property_store):
3093         Fix braino. (#163232, Arnaud Charlet)
3094
3095 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
3096
3097         * gtk/gtkiconview.c: Make markup_column work, and fix some
3098         layout issues when either icon or text is missing.  (#163065)
3099
3100 2005-01-06  Federico Mena Quintero  <federico@ximian.com>
3101
3102         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): Add an
3103         "Open _Location" item.  Fixes #148839.
3104
3105 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
3106
3107         * README.in: Fix a typo.  (#163128, kentaro fukuchi)
3108
3109 2005-01-06  James M. Cape  <jcape@ignore-your.tv>
3110
3111         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new)
3112         (gtk_file_chooser_button_new_with_backend): Use default title if
3113         NULL is passed.
3114
3115         * docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml: Make examples
3116         match API.
3117
3118 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
3119
3120         Fix #161409:
3121
3122         * gtk/gtkfilechooserdefault.c (shortcuts_row_activated_cb): Queue
3123         a pending operation to select the first row.
3124
3125 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
3126
3127         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Don't call
3128         button_data_free() explicitly; the button is weak-reffed and the
3129         callback will free the button data.  Fixes #163010.
3130         (_gtk_path_bar_set_path): Don't ref/sink the button.  And for the
3131         failure case, call gtk_widget_destroy() on it.
3132
3133         * gtk/gtkfilechooserdefault.c (check_is_folder): Use
3134         gtk_file_system_get_folder() again (see the ChangeLog entry from
3135         2004-08-25).  We can't first get the parent folder and then
3136         request the info for the path in question, as the parent folder
3137         may not be readable.  See bug #162617.
3138         (gtk_file_chooser_default_set_current_folder): Assert that the
3139         passed-in path is not null.
3140         (shortcuts_find_current_folder): Likewise.
3141         (shortcuts_add_current_folder): Likewise.
3142         (set_list_model): Likewise.
3143         (gtk_file_chooser_default_map): Only reload the current folder if
3144         it exists.
3145         (bookmarks_check_add_sensitivity): Check for the current folder
3146         being NULL.
3147         (browse_files_select_first_row): Don't set the cursor if there is
3148         no model loaded.
3149
3150 2005-01-05  Matthias Clasen  <mclasen@redhat.com>
3151
3152         * gtk/gtkfilechooserdefault.c: Don't construct errors from 
3153         the GTK_FILE_SYSTEM_ERROR domain. Partial fix for #162911.
3154         (get_file_info, check_is_folder): Translate errors from
3155         the filesystem into the GTK_FILE_CHOOSER_ERROR domain. Rest
3156         of the fix for #162911, noticed by Murray Cumming.
3157
3158 Wed Jan  5 11:42:49 2005  Søren Sandmann  <sandmann@redhat.com>
3159
3160         * gtk/gtkviewport.c (gtk_viewport_realize):
3161         * gtk/gtktextview.c ((text_window_realize): Set the background of
3162         the windows to None instead of adding EXPOSURE_MASK, as suggested
3163         by Owen in #162112.
3164
3165         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Update 
3166         the user time when receiving a WM_DELETE message.  (#162980, 
3167         Elijah Newren)
3168         
3169 Tue Jan  4 16:52:14 2005  Jonathan Blandford  <jrb@redhat.com>
3170
3171         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_event):
3172         only reorder on button 1, part of #141937
3173
3174 Tue Jan  4 11:36:43 2005  Søren Sandmann  <sandmann@redhat.com>
3175
3176         Bug 162112.
3177         
3178         * gtk/gtktextview.c (text_window_realize): Add GDK_EXPOSURE_MASK
3179         to win->window's event_mask
3180
3181         * gtk/gtkviewport.c (gtk_viewport_realize): Add GDK_EXPOSURE_MASK
3182         to viewport->view_window.
3183
3184 2005-01-04  Matthias Clasen  <mclasen@redhat.com>
3185
3186         * demos/testpixbuf.c (main): Remove the size_prepared callback,
3187         to test incremental display.
3188         (new_testrgb_window): Return the drawing area, not the window,
3189         since we want to queue draws on the drawing area.
3190
3191 2005-01-03  Matthias Clasen  <mclasen@redhat.com>
3192
3193         * examples/*: Re-extract.
3194
3195         * docs/tutorial/gtk-tut.sgml: Small corrections.
3196         
3197         * docs/tutorial/gtk-tut.sgml: Some updates for the drawing
3198         section.  (#161414, Robert Ancell)
3199
3200         * docs/tutorial/gtk-tut.sgml: Make it build.
3201
3202         * gtk/gtkdialog.c (gtk_dialog_run): Some clarification
3203         regarding modality.  (#112903, Dave Bordoley)
3204
3205         * gtk/gtkfixed.c (gtk_fixed_set_has_window): 
3206         Add a little motivation.  (#145556, Tommi Komulainen)
3207
3208         * docs/tutorial/gtk-tut.sgml: Clarify section on 
3209         g_signal_connect_swapped.   (#120543, David Bourguignon)
3210
3211         Make gtk_icon_theme_load_icon() work independent of
3212         icon factory initialization.  (#162791, Tristan Van Berkom)
3213         
3214         * gtk/gtkiconfactory.[hc]: Rename ensure_default_icons to
3215         _gtk_icon_factory_ensure_default_icons, and make it non-static.
3216
3217         * gtk/gtkicontheme.c (find_builtin_icon): ..and call it here.
3218
3219 2005-01-02  Matthias Clasen  <mclasen@redhat.com>
3220
3221         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_remove_shortcut_folder): 
3222         Don't add a shortcut here.  (#162752, Tor Lillqvist)
3223
3224 2005-01-02  Tor Lillqvist  <tml@iki.fi>
3225
3226         * gtk/Makefile.am (libgtk_target_ldflags): Add -lole32, needed for
3227         CoTaskMemFree in get_special_folder() below.
3228
3229         * gtk/gtkfilesystem.h: Implement case-insensitive path compare on
3230         Win32 using _gtk_file_system_win32_path_compare().
3231
3232         * gtk/gtk.symbols: Add _gtk_file_system_win32_path_compare.
3233
3234         * gtk/gtkfilechooserbutton.c (model_add_special)
3235         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Use
3236         _gtk_file_system_win32_get_desktop() to get correct Desktop folder
3237         on Win32. (#144003)
3238
3239         * gtk/gtkfilesystemwin32.c: Remove unnecessary includes. Do
3240         consider all drives "mounted", including floppies. Trying to
3241         inspect the contents of a nonexistent floppy will cause errors
3242         later that are handled normally, no need to avoid them
3243         completely. Keep the drive type in the GtkFileSystemVolume.
3244         Support UNC paths. (#161797, #137874) Fix error message
3245         capitalizations as in gtkfilesystemunix.c.
3246
3247         (gtk_file_system_win32_init): Start one timeout per
3248         GtkFileSystemWin32.
3249
3250         (gtk_file_system_win32_finalize): Remove the timeout.
3251
3252         (get_special_folder): Copied from GLib.
3253
3254         (_gtk_file_system_win32_get_desktop): New function, uses
3255         get_special_folder().
3256
3257         (gtk_file_system_win32_list_volumes): Don't start a timeout at
3258         each call to this function. Don't assume A: and B: are floppies.
3259
3260         (gtk_file_system_win32_get_volume_for_path): Don't assume all
3261         volumes are drive roots, i.e. support share roots of UNC paths
3262         (\\server\share).
3263
3264         (gtk_file_system_win32_get_folder): Don't assume errno is set
3265         after g_file_test() returns FALSE. It isn't on Win32 (and even on
3266         Unix I don't think one should assume anything about errno after
3267         g_file_test()).
3268
3269         (gtk_file_system_win32_volume_get_is_mounted): Always return TRUE.
3270
3271         (gtk_file_system_win32_volume_get_display_name): Don't call
3272         GetVolumeInformation() on drives A: or B: if they are removable,
3273         as they might then be floppies, causing an unnecessary
3274         delay. (#157820)
3275
3276         (gtk_file_system_win32_volume_render_icon): Use network icon for
3277         unrecognized drive types.
3278
3279         (canonicalize_filename, gtk_file_system_win32_parse): Don't get
3280         confused by UNC paths.
3281
3282         (bookmarks_serialize): Use _gtk_file_system_win32_path_compare()
3283         for case-insensitive UTF-8 path comparison.
3284
3285         (extract_icon): Use SHGetFileInfo() which is faster than
3286         ExtractAssociatedIcon(). Icon extraction is still slow, though,
3287         needs work.
3288
3289         (win32_pseudo_mime_lookup): Don't use the same icon for all
3290         shortcuts or executables. Cache only other file type icons.
3291
3292         (gtk_file_system_win32_render_icon): Use network stock icon for
3293         remote drives and UNC server share roots. Compare home directory
3294         case-insensitively. Do lookup icons also for executable files,
3295         after all, it's these files that can have individual icons in the
3296         first place. Yes, it can be slow. Needs work.
3297
3298         (filename_is_drive_root): Require also the slash after the colon.
3299
3300         (filename_is_server_share): New function.
3301
3302         (_gtk_file_system_win32_path_compare): New function, does
3303         case-folded UTF-8 comparison.
3304
3305         * gtk/gtkfilesystemwin32.h: Declare
3306         _gtk_file_system_win32_path_compare().
3307
3308 2005-01-01  Matthias Clasen  <mclasen@redhat.com>
3309
3310         * gtk/gtkbutton.c (gtk_button_set_image): Allow unsetting the
3311         custom image by passing NULL.
3312         (gtk_button_init): Initialize image_is_stock to TRUE, fixing
3313         a problem with changing stock labels.  (#162273, Marcin 
3314         Krzyzanowski)
3315
3316 2005-01-01  Tor Lillqvist  <tml@iki.fi>
3317
3318         * gtk/gtkmodules.c (get_module_path)
3319         * gtk/gtkrc.c (gtk_rc_make_default_dir, gtk_rc_get_im_module_file,
3320         gtk_rc_get_theme_dir, gtk_rc_add_initial_default_files): With
3321         g_getenv() now returning UTF-8 on Win32, no need to call
3322         g_locale_to_utf8().
3323
3324 2004-12-31  Matthias Clasen  <mclasen@redhat.com>
3325
3326         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval) 
3327         (_gtk_key_hash_lookup): Don't sort a list of values as if
3328         it was a list of entries. This fixes crashes during mnemonic
3329         activation in the presence of multiple keymaps. (#162488, 
3330         Christian Persch)
3331
3332 2004-12-30  Matthias Clasen  <mclasen@redhat.com>
3333
3334         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): Fix
3335         state propagation when making an insensitive combo box sensitive
3336         again.  (#162524, Carlos Garnacho Parro)
3337
3338         * gtk/gtkfilechooserdefault.c: Use secondary text for error 
3339         dialogs.
3340
3341         * gtk/gtkfilesystemunix.c: Clean up some cases of errno handling
3342         (#162496, noted by Tor Lillqvist), and use g_filename_display_name()
3343         for error messages. Also mark some error messages for translation,
3344         fix capitalization of error messages.
3345
3346         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property): 
3347         Use g_value_get_boolean() for ellipsize_set.  (#162447, 
3348         Brian Tarricone)
3349
3350 2004-12-30  Tor Lillqvist  <tml@iki.fi>
3351
3352         * gtk/gtkicontheme.c (gtk_icon_theme_init): Use /usr/share/pixmaps
3353         only on Unix.
3354
3355 2004-12-28  Matthias Clasen  <mclasen@redhat.com>
3356
3357         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Inherit
3358         submenu direction from the parent menu.
3359
3360         * gtk/gtkmenushell.c (gtk_menu_shell_select_submenu_first): 
3361         Return a boolean indicating whether an item in the submenu
3362         was selected.
3363         (gtk_real_menu_shell_move_current): When going in child 
3364         direction, don't get stuck at completely insensitive 
3365         submenus.  (#162055, Billy Biggs)       
3366
3367 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
3368
3369         Make the clipboard image API more robust (#162357, 
3370         Torsten Schoenfeld):
3371         
3372         * gtk/gtkclipboard.c (clipboard_image_received_func): Don't
3373         ref the pixbuf if it is NULL.
3374
3375         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): 
3376         NULL-terminate the varargs in the call to 
3377         gdk_pixbuf_save_to_buffer(). 
3378         (gtk_selection_data_get_pixbuf): Only use a pixbuf loader 
3379         if there is data to load.
3380
3381 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
3382
3383         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
3384         Set x_root and y_root in button and motion events from 
3385         extended input devices.  (#148715, Robert Ögren)
3386
3387         * gtk/gtktreeview.c (gtk_tree_view_class_init): Fix a 
3388         typo.  (#162339, Alessio Dessi)
3389
3390         * gtk/gtkadjustment.c (gtk_adjustment_class_init): Document
3391         properties as new since 2.4.  (#156101, Billy Biggs)
3392
3393         * configure.in: Add a warning about the linux-fb 
3394         target.  (#155488, Zeeshan Ali)
3395
3396         * gtk/gtkmain.c (gtk_init_with_args): Typo fix.  (#162278,
3397         Torsten Schoenfeld)
3398
3399 2004-12-26  Matthias Clasen  <mclasen@redhat.com>
3400
3401         * gtk/gtkfilechooser.c (gtk_file_chooser_set_action): 
3402         Typo fix.  (#162219, Masao Mutoh)
3403         (gtk_file_chooser_set_preview_widget_active): 
3404         Another typo.  (#162218, Masao Mutoh)
3405
3406 2004-12-23  Matthias Clasen  <mclasen@redhat.com>
3407
3408         * gtk/gtkliststore.c (gtk_list_store_iter_children): 
3409         Return TRUE if there are children.  (#162134, Iñigo Serna,
3410         patch by John Finlay)
3411
3412         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): 
3413         Transfer state from the button to the cell view to get
3414         prelighting right.  (#156327, Ricardo Veguilla)
3415
3416 Wed Dec 22 14:22:19 2004  Søren Sandmann  <sandmann@redhat.com>
3417
3418         * tests/testtoolbar.c (timeout_cb): Add sensitivity-changing
3419         timeout. Written by Christian Persch.
3420
3421 Wed Dec 22 14:14:02 2004  Søren Sandmann  <sandmann@redhat.com>
3422
3423         Bug #161561
3424         
3425         * gdk/x11/gdkwindow-x11.c (tmp_{re,un}set_bg): Only set/reset the
3426         background for windows that get expose events. 
3427
3428         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Remove
3429         hack to repaint !expose windows.
3430
3431 Wed Dec 22 11:35:41 2004  Søren Sandmann  <sandmann@redhat.com>
3432
3433         Bug #147497, make menu items activate immediately when you release
3434         the button.
3435         
3436         * gtk/gtkmenu.c (gtk_menu_enter_notify, menu_motion_notify): Make
3437         items activate immediately.
3438
3439         * gtk/gtkmenu.c (definitely_within_item): New function
3440         * gtk/gtkmenu.c (check_threshold): New function
3441
3442 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
3443
3444         * gtk/gtklabel.c (gtk_label_setup_mnemonic): Don't forget to
3445         null the mnemonic_menu when unsetting a mnemonic, reported
3446         by Owen Taylor.
3447
3448 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
3449
3450         * gtk/gtkliststore.c (generate_order): Generate the order the
3451         way it is supposed to be, order[new_pos] == old_pos.
3452         (gtk_list_store_reorder): Invert the order before using it.
3453
3454 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
3455
3456         Fix sorting of list stores.  (#161886, Marcin Krzyzanowski)
3457
3458         * gtk/gtkliststore.c (generate_order): Generate the order the
3459         way it is supposed to be, order[new_pos] == old_pos.
3460         (gtk_list_store_reorder): Invert the order before using it.
3461
3462         * gtk/gtkiconview.c (gtk_icon_view_rows_reordered): Adapt to the
3463         list store fix.
3464
3465 Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>
3466
3467         * gtk/queryimmodules.c (main): print out the version and binary
3468         name in the header comment.  Problem reported by Seth Nickell.
3469
3470 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
3471
3472         * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Pass a
3473         root path to gtk_tree_model_rows_reordered().  (#161720,
3474         Marcin Krzyzanowski)
3475
3476         * gtk/gtkactiongroup.c (gtk_action_group_translate_string): Don't 
3477         translate NULL messages.  (#161789, Morten Welinder)
3478
3479         * gtk/gtkmessagedialog.c (setup_primary_label_font): Don't show
3480         the secondary label on show_all().  (#161707, Christian Persch)
3481
3482 2004-12-19  Tor Lillqvist  <tml@iki.fi>
3483
3484         * gdk/win32/gdkdnd-win32.c (resolve_link, gdk_dropfiles_filter):
3485         Use wide character API when available. Use UTF-8 for filenames.
3486
3487         * gdk/win32/gdkselection-win32.c (_gdk_dropfiles_store): Include
3488         the string's trailing zero byte in the property's length, just for
3489         safety.
3490
3491 2004-12-18  Matthias Clasen  <mclasen@redhat.com>
3492
3493         * gtk/gtkfilechooserentry.c (check_completion_callback) 
3494         (load_directory_callback): Add missing GDK_THREADS_ENTER/LEAVE.
3495
3496         * gtk/gtkfilechooserdefault.c (edited_idle_cb) 
3497         (shortcuts_drag_outside_idle_cb): Add missing 
3498         GDK_THREADS_ENTER/LEAVE.  (#161604)
3499         
3500         * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): 
3501         (list_select_func): Don't call gtk_file_info_get_is_folder()
3502         on NULL. 
3503
3504         * gtk/gtkaboutdialog.c (gtk_about_dialog_get_logo_icon_name): 
3505         (gtk_about_dialog_init): Add missing initializations.  (#161646,
3506         Torsten Schoenfeld)
3507