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