]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-8
part of bug #168326
[~andy/gtk] / ChangeLog.pre-2-8
1 2005-08-01  Dom Lachowicz <cinamod@hotmail.com>
2
3         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Part of #168326
4
5 2005-08-01  Matthias Clasen  <mclasen@redhat.com>
6
7         * gtk/gtkclipboard.c (gtk_clipboard_set_image) 
8         (gtk_clipboard_set_text): Don't leak atom names.  (#311933,
9         Peter Zelezny)
10
11         * gtk/gtkmain.c (do_post_parse_initialization): Call
12         gettext_initialization() here as well.  (#311612, Dan Winship)
13
14 2005-08-01  Tor Lillqvist  <tml@novell.com>
15
16         * gdk/win32/gdkwindow-win32.c (gdk_window_set_urgency_hint):
17         Implement using FlashWindowEx(). (#309423)
18
19 2005-07-30  Hans Breuer  <hans@breuer.org>
20
21         * gtk/makefile.msc.in tests/makefile.msc : updated
22
23 2005-07-30  Johan Dahlin  <jdahlin@async.com.br>
24
25         * gtk/gtkctree.c (gtk_ctree_class_init): Do not use | 
26         G_PARAM_STATIC_NAME in the type field, makes subclassing possible.
27
28 2005-07-29  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>
29
30         * docs/reference/gtk/migrating-GtkAction.sgml: Declaring the 
31         GtkActionEntry arrays static const. Fixes #301612.
32
33 2005-07-29  J. Ali Harlow  <ali@juiblex.co.uk>
34
35         * gtk/Makefile.am: Include gtkwin32embed.h in EXTRA_DIST
36         unconditionally. Fixes #311972.
37
38 2005-07-28  Federico Mena Quintero  <federico@ximian.com>
39
40         * perf/README: Update for the new API of the profiler.
41
42         * perf/gtkwidgetprofiler.[ch]: New files with a widget profiler
43         object.  This is the old content of timers.[ch] turned into a nice
44         object, with signals for creation and reporting.  The profiler
45         needs to maintain some state when reusing the widget, so it's
46         useful to turn it into a real object.
47
48         Break down timing show_all into GTK_WIDGET_PROFILER_REPORT_MAP and
49         GTK_WIDGET_PROFILER_REPORT_EXPOSE.
50
51         * perf/main.c: Refactor to use GtkWidgetProfiler.
52
53         * perf/appwindow.c (content_area_new): Make this just create a
54         notebook, instead of a complex arrangement of panes.
55
56         * perf/widgets.h: New header file for all the "create a widget"
57         utility functions.
58
59         * perf/treeview.c: New file.  Moved the tree view part from
60         appwindow.c over to here; GtkTreeView really needs its own tests.
61         (tree_view_new): Set the shadow type to IN.
62
63         * perf/textview.c: Likewise moved over from appwindow.c, but for
64         GtkTextView.
65         (text_view_new): Set the shadow type to IN.
66
67         * perf/Makefile.am (testperf_SOURCES): Add the new source files;
68         remove appwindow.h and timers.[ch].
69
70         * perf/timers.[ch]: Removed.
71
72         * perf/appwindow.h: Removed.
73
74 2005-07-29  Tor Lillqvist  <tml@novell.com>
75
76         * gdk/win32/gdkevents-win32.c: Remove ifdeffed out code relating
77         to the gdk-ping message. Use the global _gdk_display instead of
78         calling gdk_display_get_default() or gdk_drawable_get_display()
79         which would return _gdk_display anyway.
80         (append_event, apply_filters, gdk_event_translate): Drop any
81         GdkDisplay parameter as we only have one display anyway. Use
82         _gdk_display where needed.
83         (gdk_event_apply_filters): Delete, move the code into its only
84         caller, apply_filters().
85         (generate_button_event): Factor out code from two places in
86         gdk_event_translate().
87         (gdk_event_translate): Call generate_button_event() in place of
88         inline code.
89
90         * gdk/win32/gdkevents-win32.c (generate_grab_broken_event): New
91         static function to generate and append the GDK_GRAB_BROKEN events.
92         (gdk_pointer_grab, gdk_keyboard_grab): Generate grab broken events
93         when overriding a grab inside the application, like in the X11
94         backend. Final bits of the fix for #107320, hopefully.
95         (print_event): Handle also GDK_SETTING, GDK_OWNER_CHANGE and
96         GDK_GRAB_BROKEN events.
97         (gdk_event_translate): Call generate_grab_broken_event() in place
98         of inline code.
99         
100         * gdk/win32/gdkdrawable-win32.c (blit_inside_drawable): Rename
101         from blit_inside_window(), as it now does blitting inside a
102         bitmap, too. No code change, still just call BitBlt().
103         (_gdk_win32_blit): Check for source equalling destination
104         first. (#169508, #131977) 
105         Do away with the superfluous local draw_impl variable, the
106         parameter to this function is already a GdkDrawableImplWin32*, no
107         need to copy and cast it.
108
109 2005-07-28  Robert Ögren  <gtk@roboros.com>
110
111         Avoid spurious core pointer events when the tablet pen is lifted.
112         (#167000)
113
114         * gdk/win32/gdkinput-win32.c (set_ignore_core): New static function,
115         handles delayed unsetting of _gdk_input_ignore_core.
116         (_gdk_input_other_event): Call set_ignore_core instead of setting
117         _gdk_input_ignore_core directly.
118
119 2005-07-28  Dom Lachowicz <cinamod@hotmail.com>
120
121         * modules/engines/ms-windows/*: Re-sync with gtk-wimp CVS. Notable
122         changes include: menu/toolbars have a gradient applied to them; better
123         handling of menu/toolbar shadows, tracking theme settings;
124         sliders/scales now use XP theming; status bar grippies drawn properly;
125         convincing toolbar grippies are drawn for the Win2k theme; notebook
126         tabs now have that orange stripe across their top; a host of scrollbar
127         bugs are fixed
128         
129 2005-07-27  Tor Lillqvist  <tml@novell.com>
130
131         * gdk/win32/gdkmain-win32.c (_gdk_win32_psstyle_to_string): Handle
132         PS_ALTERNATE, too.
133
134         * gdk/win32/gdkmain-win32.c (gdk_screen_get_height_mm): Fix for
135         multi-monitor cases. (#311677, Tim Evans)
136
137 2005-07-26  Owen Taylor  <otaylor@redhat.com>
138
139         * gtk/gtknotebook.c (gtk_notebook_page_allocate): Fix to be
140         monotonic in the original size (#308145, Morten Welinder)
141
142 2005-07-26  Elijah Newren  <newren@gmail.com>
143
144         Revert part of patch from #166379; don't have gtk_window_present()
145         change a window's desktop, but rather leave it up to the WM.
146         (#311653)
147         
148         * gtk/gtkwindow.c (gtk_window_present_with_time): Don't change a
149         window's workspace
150
151 2005-07-26  Tor Lillqvist  <tml@novell.com>
152
153         * gtk/gtkplug-win32.c: Declare GetAncestor() and define GA_PARENT
154         if missing (MSVC6). (#311633)
155
156 2005-07-26  Federico Mena Quintero  <federico@ximian.com>
157
158         * perf/: New directory with the start of a framework for testing
159         performance in GTK+.
160
161         * Makefile.am (SRC_SUBDIRS): Added the perf directory.
162
163         * configure.in (AC_OUTPUT): Generate perf/Makefile.
164
165 2005-07-26  Matthias Clasen  <mclasen@redhat.com>
166
167         * gtk/gtkfilechooserdefault.c: Fix up includes on Win32.  
168         (#311630, Kazuki Iwamoto)
169
170         * gtk/gtkimcontextsimple.c: Add ISO_Level3_Shift to 
171         the list of keysyms to ignore for composition, since
172         AltGr keys produce it in some keyboard layouts.  (#307283)
173
174         * gtk/gtkwidget.h: 
175         * gtk/gtk.symbols: Remove G_GNUC_NULL_TERMINATED from
176         gtk_widget_new as well, pointed out by Kjartan Maraas.
177
178 2005-07-25  Matthias Clasen  <mclasen@redhat.com>
179
180         * gtk/gtkhsv.c (paint_triangle): Pad out the full width, in 
181         an attempt to work around bug #311225. 
182
183         * gtk/gtktreemodelsort.c: Trivial doc fixes.
184
185         * gtk/gtktreesortable.c: Talk about comparison functions, not
186         sort functions in some places.  (#311398, Fabrice Bauzac)
187
188         * gtk/gtk.symbols: 
189         * gtk/gtkobject.[hc]: 
190         * gtk/gtkfilechooserdialog.[hc] 
191         * gtk/gtkdialog.[hc]: Remove the G_GNUC_NULL_TERMINATED marker
192         from a number of varargs functions where we allow to omit the
193         varargs completely.  (#311465, Callum McKenzie)
194
195 2005-07-22  Matthias Clasen  <mclasen@redhat.com>
196
197         * === Released 2.7.4 === 
198
199         * NEWS: Updates
200
201         * gtk/gtkmessagedialog.c (gtk_message_dialog_format_secondary_markup): 
202         Point out escaping oversight.  (#311260, Owen Taylor)
203
204 2005-07-21  Matthias Clasen  <mclasen@redhat.com>
205
206         * gtk/gtkcombobox.c (gtk_combo_box_list_destroy): Cleanup
207         a possible resize idle.  (#311141, Robert Ögren)
208
209         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_changed): 
210         (gtk_tree_model_sort_sort_level): Ref the level while using it,
211         otherwise it may get nuked by gtk_tree_model_sort_increment_stamp.
212         (gtk_tree_model_sort_row_deleted): Don't leak the root level 
213         here.  (#300089, James Bramford, Markku Vire)
214
215 2005-07-21  Federico Mena Quintero  <federico@ximian.com>
216
217         * gtk/gtkfilechooser.c (gtk_file_chooser_set_filename): Clarify
218         the usage of this function.
219         (gtk_file_chooser_set_uri): Likewise.
220         (gtk_file_chooser_set_current_name): Likewise.
221
222         * gtk/gtkfilechooserdefault.c (set_file_system_backend):
223         Instrument this function for profiling as well.
224         (gtk_file_chooser_default_init): Likewise; just to have a marker
225         of where instance initialization begins.
226
227 2005-07-21  Owen Taylor  <otaylor@redhat.com>
228
229         * gtk/gtkwidget.c (update_pango_context): Fix a couple of leaks.
230
231 2005-07-21  Christian Rose  <menthos@menthos.com>
232
233         * configure.in: Added "hy" to ALL_LINGUAS.
234
235 2005-07-21  Matthias Clasen  <mclasen@redhat.com>
236
237         * NEWS: Updates
238
239         * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Be
240         a bit more careful to not shrink the label to a negative
241         width.  (#311175, Thomas Vander Stichele)
242
243         * gtk/gtk.symbols: mark gtk_socket_steal as deprecated.
244
245         * configure.in: Bump the cairo requirement.
246
247 2005-07-19  Owen Taylor  <otaylor@redhat.com>
248
249         * gtk/gtksettings.c gtk/gtkwidget.c: Change machinery for
250         following font rendering xsettings to set cairo font
251         options on PangoContext
252
253         * gdk/x11/gdkxftdefaults.c gdk/x11/gdkevents-x11.c gdkscreen-x11.h
254         gdkprivate-x11.h: Get default values for rendering options
255         (such as antialiasing, dpi) from the Xft resources for the
256         display, borrowing a bit of code from Xft.
257
258         * gtk/gtksettings.c (gtk_settings_class_init): Fix docs for
259         values of gtk-xft-hintstyle.
260
261 2005-07-21  Tor Lillqvist  <tml@novell.com>
262
263         Make GtkPlug/Socket cross-platform: Add Win32 implementation,
264         splice out X11 implementation to separate files. (#58541)
265             
266         * gtk/gtk.symbols: Make GtkPlug/Socket API available with all
267         backends.
268
269         * gtk/Makefile.am: Changes to build GtkPlug/Socket with all
270         backends.
271
272         * gtk/gtksocket.c
273         * gtk/gtkplug.c: Splice out backend-dependend parts to separate
274         files, see below.
275
276         * gtk/gtksocketprivate.h
277         * gtk/gtkplugprivate.h: New files. Declare the backend-specific
278         functions, and the private backend-independent functions they call
279         back to.
280
281         * gtk/gtksocket-stub.c
282         * gtk/gtkplug-stub.c
283         * gtk/gtksocket-x11.c
284         * gtk/gtkplug-x11.c
285         * gtk/gtksocket-win32.c
286         * gtk/gtkplug-win32.c
287         * gtk/gtkwin32embed.h
288         * gtk/gtkwin32embed.c: New files, containing the backend-specific
289         parts of GtkPlug/Socket.
290
291         * gtk/gtkxembed.h
292         * gtk/gtkxembed.c (_gtk_xembed_message_name): New function, used
293         in error messages and debugging output.
294         
295         * gtk/gtkwindow.c (gtk_window_show): No need for ifdef, can now
296         use GTK_IS_PLUG() with all backends.
297
298         * tests/testsocket_common.c: Make it work on Win32, too.
299
300 2005-07-21  Tor Lillqvist  <tml@novell.com>
301
302         * gdk/win32/gdkwindow-win32.c (gdk_window_set_title): Use
303         wide-char API when available. (#311079, Peter Zelezny)
304
305 2005-07-21  Matthias Clasen  <mclasen@redhat.com>
306
307         * gtk/gtkwidget.c (gtk_widget_modify_bg, gtk_widget_modify_base): 
308         Add hints on how to handle "no window" widgets.  (#136347)
309
310 2005-07-20  Keith Packard  <keithp@keithp.com>
311
312         * gdk/x11/gdkdrawable-x11.c: (gdk_x11_ref_cairo_surface):
313
314         Follow change in cairo API to add Screen* to
315         cairo_xlib_create_surface_for_bitmap
316
317 2005-07-20  Matthias Clasen  <mclasen@redhat.com>
318
319         * gtk/gtkicontheme.c (load_svg_at_size): Explicitly use the 
320         svg loader, if available. This should help with the fact that
321         svg is not reliably sniffable with the current gdk-pixbuf sniffing
322         code. 
323
324         * gtk/gtkstyle.c (gtk_default_draw_expander): Make sure expanded
325         expanders are not fuzzy.  (#310172, reported by Alexander Larsson,
326         patch by Owen Taylor)
327
328         * gtk/gtkdnd.c (gtk_drag_begin_internal): Don't fail if we
329         can't get a keyboard grab.  (#168351)
330
331         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_[sg]et_property):
332         Add GTK_FILE_CHOOSER_PROP_DO_OVERWRITE_CONFIRMATION. 
333
334 2005-07-19  Federico Mena Quintero  <federico@ximian.com>
335
336         * gtk/gtkfilechooserdefault.c: Added a few utility functions for
337         profiling; instrument the code, make it conditional.
338
339 2005-07-19  Kristian Rietveld  <kris@gtk.org>
340
341         * gtk/gtkentry.c (gtk_entry_move_forward_word): don't iterate
342         past the end of the string, so pango_layout_get_cursor_pos() won't
343         complain. (#309211, Tommi Komulainen).
344
345 2005-07-19  Tor Lillqvist  <tml@novell.com>
346
347         * gtk/gtkmain.c (check_sizeof_GtkWindow, check_sizeof_GtkBox):
348         Don't bother mentioning the -fnative-struct (used by GCC 2) switch
349         in the error message any longer.
350
351 2005-07-18  Matthias Clasen  <mclasen@redhat.com>
352
353         * gdk/gdkpixbuf-render.c: Small formatting fixes in doc comments. 
354
355         * gtk/gtkcombobox.c (gtk_combo_box_model_row_deleted) 
356         (gtk_combo_box_model_row_inserted): Remove useless calls
357         to gtk_tree_row_reference_inserted/deleted, since we
358         don't use manual row references here. 
359
360         * gtk/gtkmain.c (gtk_parse_args, gtk_init_with_args): Call
361         gettext_initialization before checking gtk_initialized, otherwise
362         there are scenarios where it is not called at all. For an
363         example, see tests/testfilechooserbutton.c.  (#310323, 
364         Arkady L. Shane)
365
366 2005-07-18  Tor Lillqvist  <tml@novell.com>
367
368         * gdk/win32/gdkgc-win32.c (gdk_win32_hdc_get): Be sure to remove
369         any possible leftover clipping region in the DC if we don't want
370         any clipping. Thanks to Robert Ögren. (#309823)
371
372         * configure.in (GDK_EXTRA_LIBS): [Win32] Bypass libtool, use
373         -Wl,-luuid. This avoids a libtool warning as libuuid is static.
374
375 2005-07-18  Matthias Clasen  <mclasen@redhat.com>
376
377         * gtk/gtkcombobox.c (gtk_combo_box_set_focus_on_click): Propagate
378         the focus-on-click value to the button.  (#310543, Christian Persch)
379
380         * gtk/gtkwidget.c (gtk_widget_set_double_buffered): Add a note
381         about the need to handle expose events. We really need a chapter
382         on the GTK+ drawing model that we can refer to here... (#310765,
383         Steve Chaplin)
384
385 2005-07-16  Tor Lillqvist  <tml@novell.com>
386
387         * configure.in (GDK_EXTRA_LIBS): [Win32] Put -luuid back, it is
388         needed in case one builds without the ie55 stuff. (#310582)
389
390 2005-07-15  Matthias Clasen  <mclasen@redhat.com>
391         
392         * configure.in: Bump version
393
394         * === Released 2.7.3 ===
395         
396         * gdk/gdkdraw.c (gdk_draw_drawable): Add better docs.  
397         (#310192, Owen Taylor)
398
399 2005-07-15  Matthias Clasen  <mclasen@redhat.com>
400
401         * NEWS: Updates
402
403         * gtk/gtkentry.c (gtk_entry_move_forward_word): 
404         (gtk_entry_move_backward_word): Don't treat whitespace as
405         words for keynav, pointed out by Owen Taylor.
406
407 2005-07-15  Federico Mena Quintero  <federico@ximian.com>
408
409         * gtk/gtkfilechooserdefault.c
410         (should_respond_after_confirm_overwrite): Take the parent folder
411         path instead of the display name, to avoid doing duplicated work
412         in gtk_file_chooser_default_should_respond().
413
414 2005-07-15  Federico Mena Quintero  <federico@ximian.com>
415
416         * gtk/gtkfilechooserdefault.c
417         (confirm_dialog_should_accept_filename): Take the display name of
418         the folder as well so that we can present a better message.  Use a
419         stock cancel button, "_Replace", and GTK_STOCK_SAVE_AS.
420         (gtk_file_chooser_default_should_respond): Pass the file part and
421         folder display name directly to the function above.  Oops, only do
422         the confirmation dialog if the file exists.
423
424 2005-07-15  Federico Mena Quintero  <federico@ximian.com>
425
426         * gtk/gtkfilechooserdefault.c
427         (confirm_dialog_should_accept_filename): Use header capitalization
428         for the buttons, per the HIG.
429
430         * gtk/gtk.symbols: Add the new functions.
431
432         * tests/testfilechooser.c (confirm_overwrite_cb): Add a test for
433         the confirm-overwrite signal.
434
435         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Remove the
436         stub documentation for the "confirm-overwrite" signal.
437         (gtk_file_chooser_set_do_overwrite_confirmation): Add "Since: 2.8"
438         to the docs.
439         (gtk_file_chooser_get_do_overwrite_confirmation): Likewise.
440
441 2005-07-14  Federico Mena Quintero  <federico@ximian.com>
442
443         Add overwrite confirmation for SAVE mode.  Fixes bug #152850:
444
445         * gtk/gtkfilechooser.h: Add prototypes for
446         gtk_file_chooser_set/get_do_overwrite_confirmation().
447         (GtkFileChooserConfirmation): New enum for the result of the
448         "confirm-overwrite" signal.
449
450         * gtk/gtkmarshalers.list: Add ENUM:VOID.
451
452         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add a
453         "do-overwrite-confirmation" boolean property.
454         (gtk_file_chooser_set_do_overwrite_confirmation): Implement.
455         (gtk_file_chooser_get_do_overwrite_confirmation): Implement.
456         (confirm_overwrite_accumulator): New accumulator for the signal.
457
458         * gtk/gtkfilechooserutils.h (GtkFileChooserProp): Add
459         GTK_FILE_CHOOSER_PROP_DO_OVERWRITE_CONFIRMATION.
460
461         * gtk/gtkfilechooserutils.c
462         (_gtk_file_chooser_install_properties): Override the
463         do-overwrite-confirmation property.
464
465         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserIface): Add a
466         confirm_overwrite signal to the vtable.
467
468         * gtk/gtkfilechooserdefault.c
469         (gtk_file_chooser_default_set_property): Handle the new property.
470         (gtk_file_chooser_default_get_property): Likewise.
471         (get_selected_file_info_from_file_list): New helper function; code
472         taken from list_selection_changed().
473         (list_selection_changed): Use get_selected_file_info_from_file_list().
474         (should_respond_after_confirm_overwrite): New function.
475         (gtk_file_chooser_default_should_respond): Confirm when necessary.
476
477 2005-07-14  Matthias Clasen  <mclasen@redhat.com>
478
479         * gtk/gtk.symbols: Add new exported symbols.
480
481 2005-07-14  Tor Lillqvist  <tml@novell.com>
482
483         * gtk/gtkfilesystemwin32.c (filename_get_info): Implement getting
484         the MIME type of a file. Look it up in the Registry. Bug reported
485         by Hans Oesterholt.
486
487 2005-07-14  Tor Lillqvist  <tml@novell.com>
488
489         * configure.in (GDK_EXTRA_LIBS): Don't need -luuid on Win32. It
490         was some leftover, and in fact occasionally caused issues with
491         libtool as it made its way into the libgdk-win32-2.0.la file and
492         that way into the .la files of all libraries that depend on
493         GDK. (This happened only when building from CVS and not using a
494         full "make install" which would run the sanitize-la.sh script.)
495
496 2005-07-14  Matthias Clasen  <mclasen@redhat.com>
497
498         * gdk/x11/gdkevents-x11.c (set_screen_from_root): Don't assert if 
499         the xrootwin is invalid.  (#309997, Barbie LeVille)
500         (gdk_event_translate): Ignore events with an invalid root field.
501
502         * configure.in: Set interface age to 0.
503
504         * gtk/gtkimmodule.h: Move G_BEGIN_DECLS to the right spot, noticed
505         by Akira Tagoh.
506
507 2005-07-14  Kristian Rietveld  <kris@gtk.org>
508
509         * gtk/gtktreeviewcolumn.[ch] (gtk_tree_view_column_queue_resize): new
510         function (fixes #169961, reported by Morten Welinder).
511
512 2005-07-14  Kristian Rietveld  <kris@gtk.org>
513
514         * gtk/gtktreeview.[ch] (gtk_tree_view_get_visible_range): new
515         function. (fixes #105252, suggestion from Mikael Hallendal).
516
517 2005-07-13  Manish Singh  <yosh@gimp.org>
518
519         * demos/gtk-demo/iconview_edit.c: remove unused variable.
520
521 2005-07-13  Kristian Rietveld  <kris@gtk.org>
522
523         * gtk/gtktreemodel.[ch] (gtk_tree_row_reference_get_model): new
524         function. (#160879, Stefan Kost).
525
526 2005-07-13  Kristian Rietveld  <kris@gtk.org>
527
528         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): paint a flat box
529         on the area the treeview got allocated extra vertically (fixes
530         #142063, reported by Brian Bober).
531
532         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
533         make this function calculate real_cell_area and real_background_area
534         correctly. (fixes #309249, reported by Bernd Demian).
535
536 2005-07-13  Matthias Clasen  <mclasen@redhat.com>
537
538         * gtk/gtkcalendar.c (calendar_realize_arrows): Fix an 
539         unintentional case of width-for-height... (#310133, Luis Villa)
540
541 2005-07-13  Kristian Rietveld  <kris@gtk.org>
542
543         * gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
544         the MIN of width and max_width here, not width and max_width != -1.
545         (fixes #144480, reported by Mikael Magnusson).
546
547 2005-07-13  Matthias Clasen  <mclasen@redhat.com>
548
549         * gtk/gtkicontheme.c (load_themes): Don't keep the caches
550         for unthemed directories in a separate list, instead append
551         them at the end of the dir_mtimes list, so that we can check
552         them for staleness like the other caches.  (#310221, Mark 
553         McLoughlin)
554
555         * configure.in: Check that we have a new enough Cairo.
556
557 2005-07-13  Robert Ögren  <gtk@roboros.com>
558
559         Fix handling of Aiptek and Aiptek-like graphical tablets such as Trust
560         on Windows. (#167004, thanks to "pnohant" for testing)
561
562         Code cleanup: Remove the unused and unmaintained code for using a
563         non-system tablet context (USE_SYSCONTEXT ifdef:s), suggested
564         by Tor Lillqvist.
565
566         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Handle
567         tablet drivers that don't support WTI_DDCTXS/WTI_DSCTXS gracefully.
568         Sligthly reorganize and simplify the code to support this.
569         (_gdk_input_wintab_init_check, _gdk_input_other_event): Remove
570         USE_SYSCONTEXT ifdef:s and the code for the case it was not defined.
571         (gdk_input_window_find_within): Removed.
572
573 2005-07-13  Matthias Clasen  <mclasen@redhat.com>
574
575         * gdk/win32/bdfcursor.c: Add Copyright/License information.
576         
577 2005-07-13  Kristian Rietveld  <kris@gtk.org>
578
579         * gtk/gtktreeview.c (validate_row): when !separator, don't add
580         the focus_line_width to width/height (happens in
581         _column_cell_get_size), but do add the vertical-separator to height,
582         we weren't taking this into account before.
583
584         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
585         take vertical-separator into account. (#309137, Ross Burton).
586
587 2005-07-13  Matthias Clasen  <mclasen@redhat.com>
588
589         * tests/treestoretest.c: 
590         * tests/testxinerama.c: 
591         * tests/testtreeview.c: 
592         * tests/testtreefocus.c: 
593         * tests/testtreeflow.c:
594         * tests/testtreeedit.c: 
595         * tests/testtreecolumns.c: 
596         * tests/testtext.c: 
597         * tests/testtextbuffer.c: 
598         * tests/testspinbutton.c: 
599         * tests/testsocket_common.c: 
600         * tests/testsocket_child.c: 
601         * tests/testsocket.c: 
602         * tests/testmultiscreen.c: 
603         * tests/testmultidisplay.c: 
604         * tests/testmerge.c: 
605         * tests/testmenus.c: 
606         * tests/testmenubars.c: 
607         * tests/testicontheme.c: 
608         * tests/testfilechooser.c: 
609         * tests/testentrycompletion.c: 
610         * tests/testdnd.c: 
611         * tests/testcombochange.c: 
612         * tests/testactions.c: 
613         * tests/testcombo.c: 
614         * tests/simple.c: 
615         * gtk/gtktextutil.c: 
616         * gtk/gtktexttypes.h: 
617         * gtk/gtktexttypes.c: 
618         * gtk/gtktexttagprivate.h: 
619         * gtk/gtktextsegment.h: 
620         * gtk/gtktextiterprivate.h: 
621         * gtk/gtktextchildprivate.h: 
622         * gtk/gtktextbtree.h: Add Copyright/License information.
623
624         * gtk/gtkicontheme.c (gtk_icon_theme_get_default) 
625         (gtk_icon_theme_get_for_screen): Add a warning about
626         unreffing icon themes.  (#310163, Rodney Dawes)
627
628 2005-07-13  Kristian Rietveld  <kris@gtk.org>
629
630         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach): quit
631         maintaining the iter on every iteration, only get the iter when
632         we are about to call the foreach_func. Gives us a 10x speedup,
633         since maintaining iters is a lot more expensive than maintaining
634         paths. We lose a bit of sanity checking though. Thanks go to
635         Billy Biggs for pointing this out.
636
637 2005-07-12  Matthias Clasen  <mclasen@redhat.com>
638
639         * tests/testcairo.c (draw): Fix the same confusion here, too.
640
641         * gdk/gdkgc.c (make_stipple_tile_surface): Fix 
642         cairo_content_t <-> cairo_format_t confusion.  (#310086,
643         Carlos Garnacho Parro)
644
645         * gtk/gtkfilesystemunix.c 
646         (gtk_file_system_unix_volume_get_display_name): Follow
647         the Nautilus change and rename "Filesystem" to "File System",
648         string change.  (#310047, Vincent Noel)
649         
650 2005-07-12  Matthias Clasen  <mclasen@redhat.com>
651
652         * demos/gtk-demo/iconview.c: Rename this demo.
653
654         * demos/gtk-demo/iconview_edit.c: Add a demo for icon view
655         editing and drag-and-drop.
656
657         * demos/gtk-demo/geninclude.pl.in: Accept dashes in demo titles.
658
659 2005-07-12  Matthias Clasen  <mclasen@redhat.com>
660
661         * gtk/theme-bits/decompose-bits.c: 
662         * gtk/gtkfilechooserembed.c: 
663         * gtk/gtktextmarkprivate.h: 
664         * gtk/gtktexttagtable.h: 
665         * gtk/gtktexttagtable.c: 
666         * gtk/gtkrc.key.emacs: Add Copyright/License information.
667
668         * gdk/linux-fb/gdkrender-fb.c: 
669         * gdk/linux-fb/gdkpango-fb.c: 
670         * gdk/linux-fb/gdkdrawable-fb2.c: 
671         * gdk/linux-fb/gdkgc-fb.c: 
672         * gdk/linux-fb/gdkfbswitch.c: Add Copyright/License information.
673
674         * gdk/gdkwindow.h: 
675         * gdk/gdkvisual.h: 
676         * gdk/gdkselection.h: 
677         * gdk/gdkselection.c: 
678         * gdk/gdkregion.h: 
679         * gdk/gdkproperty.h: 
680         * gdk/gdkpixmap.h: 
681         * gdk/gdkpixbuf.h: 
682         * gdk/gdkkeyuni.c: 
683         * gdk/gdkintl.h: 
684         * gdk/gdkinput.h: 
685         * gdk/gdkimage.h: 
686         * gdk/gdkgc.h: 
687         * gdk/gdkfont.h: 
688         * gdk/gdkevents.h: 
689         * gdk/gdkdnd.h: 
690         * gdk/gdkcursor.h: 
691         * gdk/gdkcolor.h: Add Copyright/License information.
692
693 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
694
695         * modules/input/imm-extra.h: Add Copyright/License information.
696
697 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
698
699         * gtk/gtktexttag.c (gtk_text_tag_class_init) 
700         (gtk_text_tag_set_property): Remove the runtime warning about 
701         the invisible property, add a warning about possible remaining
702         problems to the documentation of the property.  (#66194)
703
704         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): Don't
705         ever go unconditionally to the buffer ends; that doesn't work
706         if the initial or final portion of the buffer are invisible.
707
708 2005-07-11  Kristian Rietveld  <kris@gtk.org>
709
710         * gtk/gtktreeview.c (gtk_tree_view_class_init): add binding entry
711         for ctrl + backspace (move focus to parent without affecting
712         selection),
713         (gtk_tree_view_real_select_cursor_parent): implement ctrl+backspace
714         and simplify the function a bit. (#309296, Kathy Fernandes).
715
716 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
717
718         Make gtk_window_present() move the window to the current
719         desktop, instead of letting the WM change the current
720         desktop to where the window is.  (#166379, Elijah Newren)
721         
722         * gdk/gdk.symbols: 
723         * gdk/x11/gdkx.h: 
724         * gdk/x11/gdkwindow-x11.c (gdk_x11_window_move_to_current_desktop): 
725         New function to move a window to the current desktop.
726         
727         * gtk/gtkwindow.c (gtk_window_present_with_time): Move the
728         window to the current desktop before giving it focus.  
729
730 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
731
732         When dragging text, use a drag icon showing the (ellipsized)
733         text that is being dragged: (#161132, Kevin Duffus, patch
734         by Carlos Garnacho Parro)
735         
736         * gtk/gtktextutil.h: 
737         * gtk/gtktextutil.c (_gtk_text_util_create_drag_icon): Add
738         a function to create a pixmap for use when dragging text.
739
740         * gtk/gtktextview.c (gtk_text_view_start_selection_dnd): 
741         * gtk/gtklabel.c (gtk_label_motion): 
742         * gtk/gtkentry.c (gtk_entry_motion_notify): Use a drag icon
743         showing the text being dragged.  
744
745 2005-07-11  Matthias Clasen  <mclasen@redhat.com>
746
747         * gtk/gtkentry.c (gtk_entry_move_forward_word) 
748         (gtk_entry_move_backward_word): Match the text view change
749         to allow selecting whitespace with double-click.
750
751         * gtk/gtktextview.c (extend_selection): Make double-clicking
752         between words select whitespace.  (#309860, Mike Miller, patch
753         by Paolo Borelli)
754
755         * gtk/gtkiconview.c: Documentation improvements.  (#309946, 
756         Torsten Schoenfeld)
757
758 2005-07-10  Kristian Rietveld  <kris@gtk.org>
759
760         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): remove
761         unneeded check for negative window_y.
762
763 2005-07-10  Kristian Rietveld  <kris@gtk.org>
764
765         * gtk/gtktreeview.c (gtk_tree_view_search_key_press_event): also move
766         to the next match when ctrl+g is pressed. (#156657, Matt T. Proud).
767
768 2005-07-10  Kristian Rietveld  <kris@gtk.org>
769
770         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_page_up_down): rework
771         function to make page up/down behave the same as in GtkTextView.
772         (Fixes #101220, Owen Taylor).
773
774 2005-07-09  Kristian Rietveld  <kris@gtk.org>
775
776         Fix #305737, patch from Tomislav Jonjic. This makes the
777         gtk_tree_store_insert* family of functions emit row_has_child_toggled
778         when needed (they didn't do that before).
779
780         * gtk/gtktreestore.c (gtk_tree_store_insert): emit
781         row_has_child_toggled when needed,
782         (gtk_tree_store_insert_before): fix a possible memleak,
783         emit row_has_child_toggled when needed,
784         (gtk_tree_store_insert_after): ditto.
785
786 2005-07-09  Kristian Rietveld  <kris@gtk.org>
787
788         * gtk/gtktreeview.c (gtk_tree_view_real_expand_row): when
789         open_all is TRUE, traverse the newly built tree to emit
790         row_expanded for the subitems. (rev 1.444, patch in #172319
791         broke this). Fixes #305582, reported by Billy Biggs.
792
793 2005-07-09  Tor Lillqvist  <tml@novell.com>
794
795         * configure.in: Look for windres on Win32. Drop build/* from
796         AC_CONFIG_FILES.
797
798         * Makefile.am: Drop build from SUBDIRS. 
799
800         * gdk/win32/rc/Makefile.am
801         * gdk/Makefile.am
802         * gtk/Makefile.am: Don't use the scripts in build/win32 to compile
803         the rc files into resource object files. (This means we lose the
804         build number increment magic, but I doubt it was that useful
805         anyway.) Instead use windres directly. To pass a normal .o file
806         produced by windres through libtool, which would want a .lo file,
807         pass it directly to the linker using a -Wl option.
808
809         * gdk/win32/rc/gdk.rc.in
810         * gtk/gtk-win32.rc.in: Replace BUILDNUMBER with 0.
811
812 2005-07-08  Kristian Rietveld  <kris@gtk.org>
813
814         Fixes #165034, reported by Jorn Baayen.
815
816         * gtk/gtkrbtree.[ch] (_gtk_rbtree_set_fixed_height): add a
817         mark_valid parameter (so we can mark all nodes as valid when we
818         are setting them to the fixed height).
819
820         * gtk/gtktreeview.c (initialized_fixed_height_mode): mark all
821         nodes as valid when setting the fixed height,
822         (do_validate_rows): update call to _set_fixed_height,
823         (gtk_tree_view_row_inserted): mark node as valid when fixed
824         height mode is enabled and a height has been set,
825         (gtk_tree_view_build_tree): if fixed height mode is enabled,
826         mark new nodes as valid in addition to setting the height.
827
828 2005-07-08  Matthias Clasen  <mclasen@redhat.com>
829
830         * configure.in: Bump version
831         
832         * === Released 2.7.2 ===
833
834         * NEWS: Updates
835
836         * gtk/gtkcelllayout.c (gtk_cell_layout_pack_start): 
837         (gtk_cell_layout_pack_end): Add a note about reusing cell
838         renderers.
839
840         * gtk/gtkdnd.c (gtk_drag_update_cursor): Pass a GdkDragAction to
841         gtk_drag_get_cursor.  (#309784, Sebastian Bacher)
842
843 2005-07-08  Tor Lillqvist  <tml@novell.com>
844
845         * gtk/gtkfilesel.c: Use g_get_host_name().
846
847 2005-07-07  Matthias Clasen  <mclasen@redhat.com>
848
849         * configure.in: Add -DHPPEX -DSHMLINK to CFLAGS for HP-UX.  
850         (#162979, Paul Cornett)
851
852         * gtk/gtkhscale.c (gtk_hscale_new_with_range): 
853         (gtk_vscale_new_with_range): Add some additional docs on 
854         precision here too.  (#309238, Steve Chaplin)
855
856         * gdk/x11/gdkmain-x11.c (generate_grab_broken_event): Don't
857         generate events on destroyed windows.
858
859         Implement Drag-and-Drop to the file list.  (#145121, Sven Neumann)
860         
861         * gtk/gtkfilechooserdefault.c (file_list_drag_data_received_cb) 
862         (file_list_drag_drop_cb, file_list_drag_motion_cb): New functions
863         to handle drag-and-drop on the file list.
864         (create_file_list): Set up drag-and-drop handlers on the file list.
865
866 2005-07-07  Matthias Clasen  <mclasen@redhat.com>
867
868         Fix #157787, reported by Jonathan Blandford: 
869         
870         * gtk/gtkfilechooserdefault.c 
871         (gtk_file_chooser_default_set_current_folder): Don't leave a 
872         "trail" behind when set_current_folder is called explicitly.
873         (gtk_file_chooser_default_update_current_folder): New function
874         that is called to update the current folder in response to
875         user actions.
876
877         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Add a boolean
878         keep_trail argument, and don't leave a "trail" behind unless
879         it is set.
880
881 2005-07-06  Manish Singh  <yosh@gimp.org>
882
883         * demos/gtk-demo/menus.c: change_orientation() should return void,
884         remove unused variable in do_menus().
885
886 2005-07-06  Tor Lillqvist  <tml@novell.com>
887
888         * gdk/win32/gdkcursor-win32.c
889         (gdk_win32_icon_to_pixbuf_libgtk_only): Don't create the GdkPixbuf
890         until we know that we have something to put in it.
891
892 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
893
894         * gtk/gtkspinbutton.c (gtk_spin_button_new_with_range): Add some
895         additional docs on precision.  (#309238, Steve Chaplin)
896
897         * modules/input/imime.c: Fix includes.  (#309462, Kazuki IWAMOTO)
898
899 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
900
901         * doc/tools/widgets.c: Actually generate a file-button
902         image.
903
904 2005-07-06  Tor Lillqvist  <tml@novell.com>
905
906         * gdk/win32/gdkcursor-win32.c: Add comment about the current named
907         cursor implementation, and what it maybe really should do.
908         (gdk_win32_icon_to_pixbuf_libgtk_only): New function, code moved
909         here from gtk/gtkfilesystemwin32.c:extract_icon().
910         (gdk_cursor_get_image): Use
911         gdk_win32_icon_to_pixbuf_libgtk_only().
912
913         * gdk/gdk.symbols
914         * gdk/win32/gdkwin32.h: Declare gdk_win32_icon_to_pixbuf_libgtk_only().
915
916         * gtk/gtkfilesystemwin32.c (extract_icon): Use
917         gdk_win32_icon_to_pixbuf_libgtk_only().
918
919 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
920
921         * gtk/gtkmenu.c (gtk_menu_grab_notify): Take window
922         groups into account.  (#309473, Diego Gonzalez)
923
924         * gtk/gtkwindow.[hc]: Add a non-exported function to
925         get the grab widget of a window group.
926
927 2005-07-05  Kristian Rietveld  <kris@gtk.org>
928
929         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): in the
930         'main' expose loop, add back the calls to _set_cell_data
931         removed earlier. (#309221, Matthias Clasen).
932
933 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
934
935         * demos/gtk-demo/menus.c: Demonstrate vertical menubars.
936
937         * gtk/gtk.symbols:
938         * gtk/gtkaboutdialog.[hc]: Add a wrap-license property
939         with getter and setter.  (#165012, Christian Rose,
940         based on a patch by Christian Persch)
941
942 2005-07-05  Matthias Clasen  <mclasen@redhat.com>
943
944         * gdk/Makefile.am: Distribute the keyname-table.h header 
945         and the files that are used to construct it.  (#309421,
946         J. Ali Harlow)
947
948 2005-07-04  Matthias Clasen  <mclasen@redhat.com>
949
950         * gtk/gtkmenubar.c (gtk_menu_bar_set_pack_direction) 
951         (gtk_menu_bar_set_child_pack_direction): Queue a resize
952         on the contained menuitems as well.  
953
954         * demos/gtk-demo/appwindow.c: Break some overlong lines. 
955
956 2005-07-03  Hans Breuer  <hans@breuer.org>
957
958         * **/makefile.msc[.in] : updated
959         * gtk/gtkiconcache.c : <io.h> for open()
960         * gtk/gtkstyle.c : use G_PI instead of M_PI
961
962         * gdk/win32/gdkcursor-win32.c : implement gdk_cursor_new_from_name()
963         by mapping the lower case win32 api name to the respective cursor.
964         E.g. pass "wait" to get the IDC_WAIT cursor. Also allows to load
965         cursors from named resources in the executable.
966         (gdk_cursor_get_image) : just return NULL for now.
967
968         * gdk/win32/gdkgeometry-win32.c : implement gdk_window_move_region()
969         by delegation to ScollWindowEx(), untested.
970
971         * gdk/win32/gdkwindow-win32.c : stub for gdk_window_set_urgency_hint()
972
973 2005-07-03  Matthias Clasen  <mclasen@redhat.com>
974
975         * gtk/gtkimagemenuitem.c: Hmm, when committing my vertical
976         menubar patch, I forgot the GtkImageMenuItem changes. And I
977         managed to do 2 releases without noticing that...
978
979         * gtk/gtksettings.c (gtk_settings_class_init): Correct the 
980         blurb for the icon-sizes setting. String change.  
981         (#309355, Benjamin Berg)
982
983 2005-07-01  Matthias Clasen  <mclasen@redhat.com>
984
985         * configure.in: Bump version.
986
987         * === Released 2.7.1 ===
988         
989         * NEWS: Updates
990
991 2005-07-01  Matthias Clasen  <mclasen@redhat.com>
992
993         * gtk/gtkfilesel.c (cmpl_init_state): Prevent an infinite
994         loop when G_FILENAME_ENCODING is invalid.  (#309280, Padraig Brady)
995
996 Thu Jun 30 14:17:24 2005  Manish Singh  <yosh@gimp.org>
997
998         * gdk/x11/gdkprivate-x11.h: declare _gdk_xgrab_check_button_event.
999
1000         * gtk/gtkbutton.c: fix signature of gtk_button_grab_broken.
1001
1002 2005-06-30  Matthias Clasen  <mclasen@redhat.com>
1003
1004         * gdk/x11/gdkvisual-x11.c (gdk_visual_decompose_mask): Avoid
1005         infinite loop if a mask is zero.  (#309222, David Saxton)
1006
1007         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_fetch_child): 
1008         Clarify the code, gcc 4 complains about predecrement in MAX().
1009
1010         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize): Don't
1011         prematurely unregister callbacks. 
1012
1013         * NEWS: Updates
1014
1015 2005-06-29  Matthias Clasen  <mclasen@redhat.com>
1016
1017         * gtk/gtkbutton.c (gtk_button_grab_broken): Handle broken
1018         grabs.
1019
1020         * gtk/gtkrange.c (gtk_range_grab_broken): Handle broken 
1021         grabs.
1022
1023         * gdk/gdkevents.h: Add a boolean to specify wether the broken
1024         grab was implicit.
1025
1026         * gdk/x11/gdkdisplay-x11.c (gdk_display_pointer_is_grabbed): 
1027         As the documentation states, don't return TRUE for
1028         implicit grabs.
1029
1030         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add
1031         a boolean field to store wether a pointer grab is implicit.
1032
1033         * gdk/x11/gdkmain-x11.c (_gdk_xgrab_check_button_event): 
1034         Track implicit grabs.
1035
1036         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Call
1037         _gdk_xgrab_check_button_event for button events.
1038
1039 2005-06-28  Matthias Clasen  <mclasen@redhat.com>
1040
1041         * gtk/gtkiconview.c (gtk_icon_view_calculate_item_size2): 
1042         Make sure that cell boxes are always completely inside
1043         the item area. 
1044
1045 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
1046
1047         * demos/gtk-demo/main.c (create_tree): Make the list of
1048         demos scrollable.
1049
1050         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_line_end): 
1051         Fix positioning at the end of the line for lines ending
1052         in invisible characters.
1053         (gtk_text_layout_get_line_display): Set display->layout 
1054         to a PangoLayout, even for totally invisible lines. 
1055
1056         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): Ignore
1057         GrabBroken events which are caused by overgrabbing inside
1058         the application; menus rely on these for their operation.
1059         
1060         * gdk/gdkevents.h (struct _GdkEventGrabBroken): Add a 
1061         grab_window field.
1062
1063         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Set
1064         grab_window to NULL when generating GrabBroken events for
1065         WM_KILLFOCUS messages.
1066
1067         * gdk/x11/gdkmain-x11.c (_gdk_xgrab_check_unmap) 
1068         (_gdk_xgrab_check_destroy): Set grab_window to NULL when
1069         generating GrabBroken events when the grab window becomes
1070         unviewable or is destroyed.
1071
1072         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab, gdk_keyboard_grab): 
1073         Generate GrabBroken events when overriding a grab inside
1074         the application. In this case, set grab_window to the new
1075         grab_window.
1076         
1077 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
1078
1079         * gtk/gtkbutton.c (gtk_real_button_activate): Continue
1080         to activate even if we can't grab the keyboard.
1081         (gtk_button_finish_activate): Only ungrab when we have
1082         a keyboard grab.  (#172998, William Jon McCann)
1083
1084 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
1085
1086         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize): 
1087         Avoid a segfault. (#309054)
1088
1089 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
1090
1091         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add
1092         fields for grab timestamps.
1093
1094         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab, gdk_keyboard_grab): 
1095         Store grab timestamps when grabbing.
1096         
1097         * gdk/x11/gdkdisplay-x11.c (gdk_display_keyboard_ungrab) 
1098         (gdk_display_pointer_ungrab): Don't unset the grab_window
1099         if the timestamps indicate that the ungrab will fails.
1100
1101         * gtk/gtkmenu.c (gtk_menu_grab_notify): Cancel menus when 
1102         they are grab-shadowed by something thats not a 
1103         submenu.  (#145416, Euan MacGregor)
1104
1105 2005-06-27  Owen Taylor  <otaylor@redhat.com>
1106
1107         * gtk/gtk[hv]ruler.c (gtk_[hv]ruler_draw_ticks): 
1108         Fix indentation.
1109
1110 2005-06-27  Kjartan Maraas  <kmaraas@gnome.org>
1111
1112         * gtk/gtkhruler.c: (gtk_hruler_draw_ticks): Fix leaks
1113         * gtk/gtkvruler.c: (gtk_vruler_draw_ticks): Same
1114         Closes bug #308953.
1115
1116 2005-06-27  Matthias Clasen  <mclasen@redhat.com>
1117
1118         * gtk/gtkiconcache.c (_gtk_icon_cache_new_for_path): Use
1119         GMappedFile.
1120
1121         * configure.in: Require GLib 2.7.1
1122
1123 2005-06-26  Matthias Clasen  <mclasen@redhat.com>
1124
1125         * modules/input/gtkimcontextxim.c (gtk_im_context_xim_finalize): 
1126         Unregister XIM callbacks here.  (#309054)
1127
1128         * modules/input/gtkimcontextxim.h: Small cleanup.
1129
1130         * gtk/gtkmenu.c (gtk_menu_paint): Pay attention to the
1131         scroll offset when drawing the box.  (#308834, Tom von 
1132         Schwerdtner)
1133
1134 2005-06-26  Tor Lillqvist  <tml@novell.com>
1135
1136         * gdk/Makefile.am
1137         * gtk/Makefile.am: Current GNU tools do understand the PRIVATE
1138         keyword, so no need to remove those entries from the import
1139         library. libtool installs the .dll.a import library itself, so no
1140         need to do it here. Install the .def file.
1141
1142 Sun Jun 26 00:04:36 2005  Manish Singh  <yosh@gimp.org>
1143
1144         * gdk/gdkevents.c (gdk_event_get_time, gdk_event_get_state): add
1145         GDK_GRAB_BROKEN to the switch cases.
1146
1147         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): remove unused
1148         variables.
1149
1150         * gtk/gtkpaned.c (gtk_paned_grab_broken): return TRUE.
1151
1152 2005-06-26  Matthias Clasen  <mclasen@redhat.com>
1153
1154         * gtk/gtktreeview.c (gtk_tree_view_grab_broken): Stop column
1155         header drag operations if the grab is broken.
1156
1157         * gtk/gtkhsv.c (gtk_hsv_grab_broken): Stop the drag if
1158         the grab is broken.
1159
1160         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Don't do 
1161         explicitly ungrab pointer and keyboard. We're unmapping
1162         the grab window anyway. 
1163         (gtk_combo_box_popup): Handle grab failures.
1164
1165 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
1166
1167         * gdk/x11/gdkmain-x11.c (gdk_keyboard_grab, gdk_pointer_grab):
1168         Don't emit grab-broken for overgrabbing, until we figure
1169         out how to do that without breaking the menu code.
1170
1171 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
1172
1173         Add a GrabBroken event to GDK, and a grab-broken-event
1174         signal to GtkWidget.  (#107320, Simon Cooke, initial patch 
1175         by John Ehresman)
1176
1177         * gdk/gdkevents.h: Add a GDK_GRAB_BROKEN event type,
1178         define a GdkEventGrabBroken event struct.
1179
1180         * gdk/win32/gdkevents-win32.c (gdk_event_translate): 
1181         Generate GrabBroken events in response to WM_KILLFOCUS.
1182
1183         * gdk/x11/gdkmain-x11.c: Generate GrabBroken events
1184         when a grab is broken by the window becoming unviewable,
1185         or by another grab from the same client.
1186         
1187         * gtk/gtkwidget.h (GtkWidgetClass): Add grab_broken_event.
1188
1189         * gtk/gtkwidget.c (gtk_widget_event_internal): Translate
1190         GrabBroken events into grab_broken_event signals.
1191
1192         * gtk/gtkmain.c (gtk_main_do_event): Propagate GrabBroken
1193         events.
1194
1195         * gtk/gtkmenushell.c (gtk_menu_shell_grab_broken): Deactivate
1196         the menu when the grab is broken.
1197
1198         * gtk/gtkcolorsel.c (gtk_color_selection_grab_broken): Stop 
1199         the color picker if the grab is broken.
1200
1201         * gtk/gtkpaned.c (gtk_paned_grab_broken): Stop the drag if
1202         the grab is broken.
1203
1204 2005-06-25  Matthias Clasen  <mclasen@redhat.com>
1205
1206         Add some new stock items.  (#166480, Kristof Vansant)
1207         
1208         * gtk/stock-icons/stock_fullscreen_16.png: 
1209         * gtk/stock-icons/stock_fullscreen_24.png: 
1210         * gtk/stock-icons/stock_leave_fullscreen_16.png: 
1211         * gtk/stock-icons/stock_leave_fullscreen_24.png: 
1212         * gtk/stock-icons/stock_info_16.png: 
1213         * gtk/stock-icons/stock_info_24.png: New icons.
1214
1215         * gtk/stock-icons/Makefile.am: Add new icons.
1216
1217         * gtk/gtkstock.h: Define names for the new icons.
1218
1219         * gtk/gtkstock.c (builtin_items): Register new stock items.
1220         
1221         * gtk/gtkiconfactory.c (get_default_icons): Register new 
1222         stock icons.
1223
1224 2005-06-24  Owen Taylor  <otaylor@redhat.com>
1225
1226         * gdk/gdkrgb.c (gdk_rgb_select_conv): Fix up selection of
1227         conversion functions for MSB machines: convert_0888[_br]
1228         now work on bytes so are endian independent. 
1229         (Reported by David Zeuthen)
1230
1231 2005-06-24  Matthias Clasen  <mclasen@redhat.com>
1232
1233         * gtk/gtktextview.c (gtk_text_view_scroll_hpages): Don't
1234         jump to the next line if we are at the end of the line.  
1235         (gtk_text_view_move_cursor_internal): Make movement by
1236         paragraphs up/down symmetric.  (#307055, Behnam Esfahbod)
1237
1238 2005-06-23  Tor Lillqvist  <tml@novell.com>
1239
1240         Improve and simplify line segment rendering on Win32, especially
1241         the implementation of GDK_CAP_NOT_LAST, and dashed lines. Fixes
1242         bugs #306396 and #308413.
1243
1244         * gdk/win32/gdkprivate-win32.h (GdkGCWin32): Save the GdkGC's
1245         line_style, cap_style and join_style as such in the
1246         GdkGCWin32. Don't need to keep the pen_double_dash flag, we can
1247         check the line_style.
1248
1249         * gdk/win32/gdkgc-win32.c (fixup_pen): New internal function. Sets
1250         up the GDI pen type, style, end cap and join attributes to use
1251         based on the pen width, GDK line style, end cap style, and join
1252         style.
1253
1254         For a narrow (zero-width) GDK pen with the GDK_CAP_NOT_LAST end
1255         cap style, which typically are used for XOR drawing where it is
1256         essential that the last pixel is not drawn, use a GDI cosmetic
1257         pen. Only for a cosmetic pen does GDI not draw the last pixel. I
1258         deduced this by experimetation, the documentation is rather vague.
1259
1260         For other GDK pens use a geometric GDI pen. If the width is 0 or 1
1261         and the GDK end cap style is GDK_CAP_BUTT, and the line style is
1262         GDK_LINE_SOLID, use PS_ENDCAP_ROUND. This ensures that also
1263         single-pixel length lines are drawn. (For sngle-pixel width lines
1264         roundness as such is of course irrelevant.) For dashed lines, use
1265         PS_ENDCAP_FLAT.
1266
1267         For wide lines use PS_ENDCAP_FLAT, _ROUND or _SQUARE,
1268         respectively, for GDK_CAP_BUTT, GDK_CAP_ROUND and GDK_CAP_PROJECTING.
1269
1270         For one pixel on-off dashed lines, use PS_ALTERNATE, it seems to
1271         work better than PS_USERSTYLE. For other dashed lines, use
1272         PS_USERSTYLE and the dashes as set by the user (or the default
1273         four-pixel on-off style).
1274
1275         (gdk_win32_gc_values_to_win32values, gdk_win32_gc_set_dashes):
1276         Call fixup_pen() to do the pen settings after modifying some of
1277         the GDK GC attributes that affect pens.
1278
1279         * gdk/win32/gdkdrawable-win32.c (render_line_horizontal,
1280         render_line_vertical, draw_segments): Check GdkGCWin32::line_style
1281         instead of the the removed pen_double_dash member. Don't use
1282         PATCOPY unconditionally in the PatBlt() call, use a raster op
1283         code that depends on the GC function in use.
1284
1285         (draw_rectangle, draw_segments, draw_lines): Be more careful in
1286         deciding when to do the manual dash rendering.
1287
1288         (draw_segments): Don't do any manual "last point" drawing at
1289         all. The above changes takes care of narrow line segments being
1290         drawn correctly in most cases, at least on NT-based Windows.
1291
1292 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
1293
1294         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_get_folder): 
1295         Fix an error in the cache timeout logic.  (#166601, Morten
1296         Welinder)
1297
1298         * gtk/gtktreeview.c (gtk_tree_view_key_press): Change the
1299         keynav for header reordering and resizing to Alt-arrows and
1300         Shift-Alt-arrows, following a proposal by the keynav 
1301         authority. (#308666, Calum Benson)
1302
1303         * gtk/gtkiconcache.c (_gtk_icon_cache_new_for_path): Remove
1304         a leftover debugging envvar.  
1305
1306 2005-06-23  Owen Taylor  <otaylor@redhat.com>
1307
1308         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix the
1309         big endian case for 3-channel source. (Reported by
1310         David Zeuthen)
1311
1312 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
1313
1314         * gtk/gtkbutton.c (gtk_button_construct_child): Don't
1315         trigger warnings if there are extra references to the
1316         hbox.  (#308677, Dan Winship)
1317
1318         * gtk/gtkfilesystemunix.c (bookmark_list_write): Use
1319         g_file_set_contents().  (#308722, Morten Welinder)
1320
1321 2005-06-22  Matthias Clasen  <mclasen@redhat.com>
1322
1323         * gdk/x11/gdkdnd-x11.c (xdnd_finished_filter): Set the
1324         time field in the event.  (#308573, Morten Welinder)
1325
1326         * gtk/gtkfilesystemunix.c: Remove gratitious differences
1327         between the stable branch and HEAD, which sneaked in with
1328         the bookmark renaming.  
1329
1330 2005-06-22  Kjartan Maraas  <kmaraas@gnome.org>
1331
1332         * gtk/gtkhsv.c: (gtk_hsv_expose): Don't leak the cairo context
1333         Closes bug #308581.
1334
1335 2005-06-21  Matthias Clasen  <mclasen@redhat.com>
1336
1337         * gtk/gtkarrow.c:
1338         * gtk/gtkimage.c:
1339         * gtk/gtklabel.c:
1340         * gtk/gtkpixmap.c: Modify all of the GtkMisc widgets to round down
1341         on centering calculations to match the behaviour of other parts
1342         of GTK+. (#307419, Ryan Lortie)
1343
1344 2005-06-21  Matthias Clasen  <mclasen@redhat.com>
1345
1346         * gtk/gtkdnd.c (gtk_drag_source_set): Connect to 
1347         button-release-event as well, to handle touchscreen 
1348         scenarios better.  (#171490, Markku Vire)
1349
1350         * gtk/*.h: Trivial cleanups. (#169647, #303455, 
1351         Fabricio Barros Cabral, Benoit Carpentier)
1352
1353         * gdk/gdk.symbols: 
1354         * gdk/gdkwindow.h: 
1355         * gdk/x11/gdkgeometry-x11.c (gdk_window_move_region): New
1356         function which can be used to implement scrolling in 
1357         non-window widgets.  (#135165, Søren Sandmann)
1358
1359 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
1360
1361         * gtk/gtkiconcache.c: Handle MAP_FAILED.  (#308449, Georg
1362         Schwarz)
1363
1364 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
1365
1366         * configure.in: Bump version number.
1367
1368         * === Released 2.7.0 ===
1369
1370 2005-06-20  Matthias Clasen  <mclasen@redhat.com>
1371
1372         * gtk/gtk.symbols:
1373         * gtk/gtkwindow.h:
1374         * gtk/gtkwindow.c (gtk_window_present_with_time): Variant of
1375         gtk_window_present which takes a timestamp.  (#166379, Elijah Newren)
1376
1377 2005-06-19  Matthias Clasen  <mclasen@redhat.com>
1378         
1379         * gtk/gtk.symbols: Add a forgotten symbol
1380
1381         * NEWS: Updates
1382
1383 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1384
1385         * gtk/gtktreeview.c (gtk_tree_view_clamp_node_visible): added a
1386         check which avoids processing updates on bin_window and scrolling
1387         if the node is already visible. (#170600, Billy Biggs).
1388
1389 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1390
1391         * gtk/gtktreeview.c (validate_visible_area): only keep the
1392         row at the same position if the full row is visible. (#304623,
1393         Jorn Baayen).
1394
1395 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1396
1397         * gtk/gtktreeview.c (gtk_tree_view_size_allocate): set dy to zero
1398         if treeview's height is smaller than the current page_size (just
1399         like we do elsewhere).
1400
1401 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1402
1403         Make mousewheel scrolling possible in typeahead mode, suggestion
1404         from Reinout van Schouwen (#307898).
1405
1406         * gtk/gtktreeview.c (gtk_tree_view_ensure_interactive_directory):
1407         connect treeview search window to scroll_event signal,
1408         (gtk_tree_view_search_scroll_event): implement.
1409
1410 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1411
1412         * gtk/gtktreeview.c (gtk_tree_view_search_button_press_event): pass
1413         the event on to treeview, so it has a change of selecting a row, etc.
1414         (#169677, Kirk Bridger).
1415
1416 2005-06-19  Kristian Rietveld  <kris@gtk.org>
1417
1418         This commit includes a fix for #169463, Stefan Kost.
1419
1420         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_get_size):
1421         when cell_area is set, return cell_area width/height as width/height,
1422         so the focus rectangle will be drawn correctly.
1423
1424         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): drop unneeded get
1425         of focus-line-width property,
1426         (validate_row): take focus_line_width into account.
1427
1428         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
1429         also take focus_line_width into account when calculating the cell_area
1430         y and height (before, we only took it into account when calculating
1431         x and width).
1432
1433 2005-06-19  Matthias Clasen  <mclasen@redhat.com>
1434
1435         * gtk/gtk.symbols:
1436         * gtk/gtksizegroup.[hc]: Add an ignore-hidden property
1437         with getter and setter.  (#171612, Christian Neumair)
1438
1439 2005-06-18  Matthias Clasen  <mclasen@redhat.com>
1440
1441         * gtk/gtkuimanager.c (gtk_ui_manager_add_ui): Make this 
1442         work for inserting before/after an existing menuitem or
1443         toolitem.  (#155946, Christian Persch)
1444
1445         * tests/testmerge.c (delayed_toggle_dynamic): Test the 
1446         "insert after" functionality of gtk_ui_manager_add_ui.
1447
1448         * gtk/gtkuimanager.c: Allow to construct menu tool buttons.
1449         (#300678, Sven Neumann)
1450         
1451         * demos/gtk-demo/appwindow.c: Demonstrate menu tool buttons
1452         constructed with GtkUIManager.
1453
1454         * gtk/gtk.symbols: 
1455         * gtk/gtkimage.h: 
1456         * gtk/gtkimage.c (gtk_image_clear): Make this function
1457         public.  (#64792, Havoc Pennington)
1458
1459 2005-06-18  Kristian Rietveld  <kris@gtk.org>
1460
1461         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): undo merging
1462         of the separate loop setting cell data with cell drawing loop
1463         (introduced in revision 1.280), since this breaks focus handling
1464         wrt special cells.
1465
1466 Sat Jun 18 04:22:51 2005  Manish Singh  <yosh@gimp.org>
1467
1468         * gdk/gdkcursor.h: remove GDK_CURSOR and GDK_IS_CURSOR, instance
1469         checks don't work on boxed types.
1470
1471         * gdk/x11/gdkcursor-x11.c: 
1472         * gdk/gdkcursor.c: make return_if_fail checks != NULL instead of
1473         GDK_IS_CURSOR.
1474         
1475 Sat Jun 18 04:21:58 2005  Manish Singh  <yosh@gimp.org>
1476
1477         * gtk/gtktreeview.c (do_presize_handler): remove unused variable
1478         height_old.
1479
1480 2005-06-18  Matthias Clasen  <mclasen@redhat.com>
1481
1482         * gtk/gtkcellrenderertoggle.c:
1483         * gtk/gtktextview.c:
1484         * gtk/gtktreeview.c: Typo fixes in comments.
1485
1486         * gtk/gtkpaned.c (gtk_paned_add): Barf if more than
1487         2 children are added.  (#308111, Morten Welinder)
1488
1489         * gtk/gtkcalendar.c (gtk_calendar_init): _NL_FIRST_WEEKDAY is
1490         1-based.  (#163842, Pierre Ossman)
1491
1492 2005-06-17  Kristian Rietveld  <kris@gtk.org>
1493
1494         Fix #160281, testcase from Peter Bloomfield.
1495
1496         * gtk/gtktreeview.c (do_presize_handler): always size request
1497         and update adjustments in fixed height mode,
1498         (gtk_tree_view_build_tree): if a fixed height is set, set this
1499         height on newly added nodes.
1500
1501 2005-06-17  Tor Lillqvist  <tml@novell.com>
1502
1503         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Set the actions
1504         and suggested_action fields in the GdkDragContext to
1505         GDK_ACTION_COPY. Otherwise apps that check the suggested_action
1506         field, like eog, won't accept dropped files.
1507
1508 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
1509
1510         Support the ICCCM urgency hint.  (#61858, Havoc Pennington)
1511         
1512         * gtk/gtk.symbols: 
1513         * gtk/gtkwindow.[hc]: Add a GtkWindow::urgency-hint property
1514         with getter and setter.
1515
1516         * gdk/gdk.symbols: 
1517         * gdk/gdkwindow.h: 
1518         * gdk/x11/gdkwindow-x11.c (gdk_window_set_urgency_hint): 
1519         Add a setter for the urgency hint.
1520
1521         * gdk/x11/gdkwindow-x11.h (struct _GdkToplevelX11): Store
1522         urgency hint here.
1523
1524         * gdk/x11/gdkwindow-x11.c (update_wm_hints): Set the urgency
1525         hint in the WM_HINTS property when appropriate.
1526
1527 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
1528
1529         * gdk/gdkcursor.h: Define GDK_IS_CURSOR() and GDK_CURSOR().
1530
1531         * gdk/x11/gdkcursor-x11.c: 
1532         * gdk/gdkcursor.c: Improve some return_if_fail checks,
1533         and add the missing non-Xcursor fallback for 
1534         _gdk_x11_cursor_update_theme(), noticed by Jeroen 
1535         Zwartepoorte.
1536
1537         * gtk/gtkbutton.c (gtk_button_class_init): Document
1538         several button signals as not useful.
1539
1540         * gtk/gtkentrycompletion.c (gtk_entry_completion_complete): 
1541         Resize the popup if necessary.  (#308076, Vincent Noel)
1542
1543         * gtk/gtkwindow.c (gtk_window_real_set_focus): Queue a
1544         draw on the old and new focus widgets, if their defaultness
1545         changes.  (#305607, Billy Biggs)
1546
1547 2005-06-17  Kristian Rietveld  <kris@gtk.org>
1548
1549         * gtk/gtktreeview.c (validate_visible_area): make sure the row
1550         above 'above_path' is always in a validated state, so it does
1551         not mess up scrolling. (#303319, testcase from Billy Biggs).
1552
1553 2005-06-17  Matthias Clasen  <mclasen@redhat.com>
1554
1555         * gdk/x11/gdkprivate-x11.h: 
1556         * gdk/x11/gdkcursor-x11.c: Handle cursor theme changes
1557         for cached cursors which are not associated with a window
1558         at the time of the theme change, by storing a serial
1559         number in each cursor, and updating the theme_serial 
1560         counter whenever the cursor theme changes.
1561         
1562         * gdk/x11/gdkcursor-x11.c (_gdk_x11_cursor_update_theme): 
1563         Private function to update a cursor to the current
1564         cursor theme if necessary.
1565
1566         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab): 
1567         * gdk/x11/gdkwindow-x11.c (gdk_window_set_cursor): Call
1568         _gdk_x11_cursor_update_theme() here.
1569
1570 2005-06-17  Owen Taylor  <otaylor@redhat.com>
1571
1572         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Fix
1573         #if G_BYTE_ORDER == GDK_LSB_FIRST.
1574
1575 2005-06-17  Kristian Rietveld  <kris@gtk.org>
1576
1577         * gtk/gtktreeview.c (validate_visible_area): don't try to update
1578         the top_row rowref ourselves here, but just have _dy_to_top_row()
1579         do it,
1580         (gtk_tree_view_scroll_to_cell): handle scrolling via
1581         validate_visible_area() if the treeview is not visible or needs
1582         reallocation. (#165246, Nickolay V. Shmyrev).
1583
1584 2005-06-17  Kristian Rietveld  <kris@gtk.org>
1585
1586         Fixes #307914 (Alexander Larsson), fixing some breakage caused
1587         by my previous commit.
1588
1589         * gtk/gtktreeview.c (validate_visible_area): force dy to be zero
1590         when it fits on a single page,
1591         (scroll_sync_handler): same here.
1592
1593 Thu Jun 16 15:33:42 2005  Manish Singh  <yosh@gimp.org>
1594
1595         * gdk/x11/gdkcursor-x11.c (update_cursor): remove unused variable.
1596
1597         * gdk/x11/gdkwindow-x11.c (_gdk_x11_window_get_cursor): use
1598         g_return_val_if_fail.
1599
1600         * gtk/gtkdnd.c (gtk_drag_get_cursor): initialize hot_x and hot_y
1601         for all cases.
1602
1603         * gtk/gtkfilechooserdefault.c (button_new): gtk_button_set_image
1604         takes a GtkWidget, not a GtkImage.
1605
1606 2005-06-16  Matthias Clasen  <mclasen@redhat.com>
1607
1608         * gtk/gtkfilechooserdefault.c (button_new): Simplify
1609         the code and respect the show-button-images setting.
1610         (#307941, Vincent Noel)
1611
1612         * gtk/gtkdnd.c: Update the RGBA cursor if an
1613         icon is set after the cursor has been constructed.
1614         Also handle repeated setting of icons correctly.
1615
1616 2005-06-16  Matthias Clasen  <mclasen@redhat.com>
1617
1618         * gtk/gtkbutton.c (gtk_button_set_image): Add some more
1619         docs.  (#307818, Christian Persch)
1620
1621 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
1622
1623         * gdk/gdkwindow.c (gdk_window_process_updates_internal):
1624         Initialize all fields of the expose event.  (#151693,
1625         Jim Evins)
1626
1627 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
1628
1629         * gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image): Get
1630         red and blue in place.
1631
1632         * gtk/gtkwindow.c (gtk_window_parse_geometry): Fox doc
1633         formatting, pointed out by Kjartan Maraas.
1634
1635         * gtk/gtksettings.c: Add two new settings, 
1636         gtk-cursor-theme-name and gtk-cursor-theme-size to
1637         control the cursor theme.
1638
1639         * gdk/x11/gdkevents-x11.c: Add two new X settings,
1640         Gtk/CursorThemeName and Gtk/CursorThemeSize, and map
1641         these to the gtk settings.
1642
1643         * tests/testgtk.c (create_cursors): Add a cursor theme
1644         testcase.
1645
1646         * gdk/x11/gdkwindow-x11.[hc]: Keep a reference to the 
1647         GdkCursor and add a private getter for it, so that we can 
1648         update the cursor when the cursor theme changes.
1649         
1650         * gdk/gdk.symbols: 
1651         * gdk/x11/gdkx.h: 
1652         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): 
1653         New function to change the cursor theme.
1654
1655         * gdk/x11/gdkwindow-x11.c: Remove a lot of pointless
1656         g_return_if_fail() non-NULL checks.
1657
1658 2005-06-15  Matthias Clasen  <mclasen@redhat.com>
1659
1660         * gdk/abicheck.sh: Use uniq to filter out duplicates.
1661         * gdk/gdk.symbols: Fix a define.
1662
1663 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
1664
1665         * gtk/gtkwindow.c (gtk_window_parse_geometry):
1666         Fix up the example.  (#307699, Michal Suchanek)
1667
1668 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
1669
1670         * gtk/gtkcalendar.c: Update num_marked_dates as we
1671         used to do.  (#307689, Thorsten Schoenfeld)
1672  
1673 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
1674
1675         Merged from gtk-2-6:
1676
1677         Fix #302087:
1678
1679         * gtk/gtkfilechooserdefault.c (list_selection_changed): Emit
1680         "selection-changed" and do the normal housekeeping even if we are
1681         in SAVE mode and there is nothing selected.  We didn't emit that
1682         signal if we were in SAVE mode and unselect_all() got called.
1683         (gtk_file_chooser_default_unselect_all): Call
1684         pending_select_paths_free() so that we cancel any asynchronous
1685         selections.
1686         (gtk_file_chooser_default_set_current_name): Likewise.
1687
1688 2005-06-14  Federico Mena Quintero  <federico@ximian.com>
1689
1690         Merged from gtk-2-6:
1691
1692         Fixes #307640:
1693
1694         * gtk/gtkfilechooserdefault.c
1695         (gtk_file_chooser_default_should_respond): Oops, I broke SAVE
1696         mode.  If the parent path is a folder, only create a subfolder if
1697         we are in CREATE_FOLDER mode; if we are in SAVE mode, just return
1698         and respond.  Also, pick up the case where the user types
1699         "dirname/" instead of "dirname".
1700         (check_save_entry): Make the return type void.  Add some return
1701         parameters so that we can do more thorough checking.
1702         (gtk_file_chooser_default_get_paths): If the file part is empty
1703         and we are in SAVE mode, return an empty selection.
1704
1705 2005-06-15  Kristian Rietveld  <kris@gtk.org>
1706
1707         Patch for #163214 (reported by Tommi Komulainen) and fixes some
1708         other scrolling/validation related bugs along the why.
1709
1710         * gtk/gtktreeview.c (gtk_tree_view_size_request): run
1711         do_validate_rows once and don't queue a size request there,
1712         (gtk_tree_view_size_allocate): don't update vadj value without
1713         reason, sync top_row/dy after the window sizes and adjustments
1714         are in sync again,
1715         (validate_visible_area): always update dy when scrolling,
1716         manually set top_row here after changing the vadj (don't depend
1717         on _adjustment_changed and top_row/dy sync to do this), since we
1718         now always set top_row here correctly, we can always free
1719         scroll_to_path at the end which avoids infinite expose loops,
1720         (do_validate_rows): add queue_resize boolean, remove top_row/dy
1721         sync here, we cannot do it safely at this place since the
1722         window sizes and adjustments are out of sync,
1723         (validate_rows), (validate_rows_handler): update call to
1724         do_validate_rows().
1725
1726 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
1727
1728         * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_name): Add a 
1729         stub for the no-Xcursor case. (noticed by Luis Villa)
1730
1731         Use named cursors for the DND cursors, the names are "dnd-none",
1732         "dnd-copy", "dnd-link", "dnd-move" and "dnd-ask". Also use an RGBA 
1733         cursor instead of cursor+window when possible. This saves 
1734         roundtrips during the drag operation, and makes translucent icons 
1735         possible.
1736         
1737         * gtk/gtkdndcursors.h: New file, containing inlined pixbufs
1738         for the default dnd cursors.
1739
1740         * gtk/gtkdnd.c (struct _GtkDragSourceInfo): Store the cursors
1741         used during the drag here, also store the icon pixbuf here. 
1742
1743         * gtk/gtkdnd.c (drag_cursors): Store the cursor names here. Also
1744         switch the default cursors from xbm to inlined pixbufs. 
1745
1746         * gtk/gtkdnd.c (gtk_drag_get_cursor): This function now takes the
1747         GtkDragSourceInfo as well, since it has to composite the 
1748         drag-specific cursors. The cursors combined from the image of
1749         the themed cursor and the icon_pixbuf stored in the info.
1750
1751         * gtk/gtkdnd.c (gtk_drag_begin_internal): Don't set the default
1752         icon if there is an icon_pixbuf, which will be composited into
1753         the cursor later.
1754
1755         * gtk/gtkdnd.c (set_icon_stock_pixbuf): If appropriate, store
1756         the pixbuf in the info struct for later compositing into the
1757         cursor instead of creating an icon window.
1758         
1759         * gtk/gtkdnd.c (gtk_drag_drop_finished): If we used an
1760         RGBA cursor for the drag, and need to display the cancel
1761         animation, construct the icon window here.
1762
1763         * gtk/gtkdnd.c (gtk_drag_source_info_destroy): Unref the 
1764         drag-specific cursors and the icon_pixbuf when done with
1765         the drag.
1766
1767 2005-06-14  Matthias Clasen  <mclasen@redhat.com>
1768
1769         * gtk/gtkcolorsel.c (make_picker_cursor): Use a named cursor
1770         with the name "color-picker", when available.
1771
1772         * gdk/gdk.symbols: 
1773         * gdk/gdkcursor.h: 
1774         * gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image) 
1775         (gdk_cursor_new_from_name): New functions to construct named
1776         cursors and to get the image used for a cursor.  
1777
1778 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
1779
1780         * gtk/gtkpathbar.[hc]: Rework the way in which rerooting of the
1781         path bar is done, implementing the following principles:
1782         (#137289, patch by Benjamin Otte)
1783         
1784         1. Re-root only if $HOME is an ancestor of the current path.
1785
1786         2. When re-rooting, make sure the Left arrow appears in the path 
1787         bar, so that you can navigate up from $HOME to /.  In that case, 
1788         make sure the Right arrow doesn't appear if the sub-hierarchy from 
1789         $HOME to the cwd fits in the window.
1790
1791         3. Make sure that hitting Alt-Up takes you always one folder up, 
1792         even when the path bar is re-rooted.
1793
1794         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
1795         Try harder not to modify readonly strings. (#307541, Torsten Schoenfeld)
1796
1797         * gtk/gtkfilechooserbutton.c (model_update_current_folder): 
1798         Free the data of the row before overwriting it.  (#307490,
1799         Kjartan Maraas)
1800
1801 2005-06-13  Kjartan Maraas  <kmaraas@gnome.org>
1802
1803         * gtk/gtkcalendar.c: (calendar_paint_arrow): Don't
1804         leak the cairo context. Closes bug #307426.
1805
1806 2005-06-13  Matthias Clasen  <mclasen@redhat.com>
1807
1808         Make invisible text work a bit better (#66194, patch by
1809         Jeroen Zwartepoorte)
1810         
1811         * gtk/gtk.symbols:
1812         * gtk/gtktextiter.[hc]: Add function to move by
1813         visible lines.
1814
1815         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): 
1816         Skip invisible text when moving by paragraphs.
1817
1818         * gtk/gtktextlayout.c (gtk_text_layout_move_iter_visually): 
1819         Skip invisible lines here too.
1820
1821 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
1822
1823         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
1824         Don't leak the format names.  (#307190, Morten Welinder)
1825
1826 2005-06-12  Kjartan Maraas  <kmaraas@gnome.org>
1827
1828         * gdk/x11/gdkasync.c: (send_event_handler): Plug
1829         a leak. Closes bug #307281.
1830
1831 2005-06-12  Matthias Clasen  <mclasen@redhat.com>
1832
1833         * gtk/gtkcalendar.c (calendar_paint_header): 
1834         (gtk_calendar_size_request): Allow localization of the
1835         format in which the year is displayed.  (#135451, Paisa 
1836         Seeluangsawat)
1837
1838         * gdk/*.h: Cleanup.  (#169648, Fabricio Barros Cabral)
1839
1840         * gdk/gdkcairo.c: Small doc additions.
1841
1842         * gtk/gtktreeview.c (gtk_tree_view_maybe_begin_dragging_row): 
1843         Check start_button_mask before starting a drag.  (#149058, 
1844         Andreas Volz)
1845
1846         * gtk/gtkfilesystemunix.c: Support .hidden files.  (#129170,
1847         Sayamindu Dasgupta, patch by Jan Arne Petersen)
1848
1849 2005-06-11  Matthias Clasen  <mclasen@redhat.com>
1850
1851         * NEWS: Updates.
1852
1853         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): More docs
1854         provided by Owen Taylor.
1855
1856         * gtk/gtk.symbols: 
1857         * gtk/gtkiconview.h: 
1858         * gtk/gtkiconview.c (gtk_icon_view_get_visible_range): 
1859         Add a function to determine what parts of the model are
1860         visible.  (#306726, Jonathan Blandford)
1861
1862         * gtk/gtkfilesystemunix.c (create_file_info): Treat backup
1863         files the same way as hidden files, to be closer to what
1864         Nautilus does.  (#136196, Sean Middleditch)
1865
1866 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
1867
1868         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
1869         Don't modify strings returned from gettext().
1870
1871 Fri Jun 10 19:06:03 2005  Manish Singh  <yosh@gimp.org>
1872
1873         * gtk/gtktextdisplay.c (render_para): don't use deprecated
1874         gdk_gc_unref function.
1875
1876 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
1877
1878         Allow setting paragraph background.  (#81045, Gustavo
1879         Carneiro, patch by Jeroen Zwartepoorte)
1880         
1881         * gtk/gtktextlayout.c (set_para_values): Propagate 
1882         pg_bg_color to the display struct.
1883         (gtk_text_layout_free_line_display): Free it here.
1884
1885         * gtk/gtktextdisplay.c (render_para): If pg_bg_color
1886         is set, draw a rectangle in that color behind
1887         the paragraph.
1888
1889         * gtk/gtktexttag.c (gtk_text_tag_class_init): Add 
1890         paragraph-background, paragraph-background-gdk and
1891         paragraph-background-set properties.
1892         (set_pg_bg_color): A setter for paragraph-background.
1893
1894         * gtk/gtktextlayout.h (struct _GtkTextLineDisplay): Add
1895         pg_bg_color.
1896
1897         * gtk/gtktexttag.h (struct _GtkTextAttributes): Add
1898         pg_bg_color.
1899         (struct _GtkTextTag): Add pg_bg_color_set.
1900
1901 2005-06-10  Kjartan Maraas  <kmaraas@gnome.org>
1902
1903         * gdk/gdkcairo.c: (gdk_cairo_set_source_pixbuf): Destroy the
1904         cairo surface when done with it. Plugs a fairly large leak in
1905         some cases.
1906         ==6014== 1999824 (115640 direct, 1884184 indirect) bytes in
1907         826 blocks are definitely lost in loss record 25239 of 25250
1908         Like this from nautilus.
1909
1910 2005-06-10  Michael Natterer  <mitch@imendio.com>
1911
1912         * gtk/gtk.symbols
1913         * gtk/gtkaction.[ch] (gtk_action_get_accel_closure): new function
1914         to get an action's accel_closure (Fixes #141750 and #148106).
1915
1916 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
1917
1918         * gdk/gen-keyname-table.pl: Generate N_() calls for
1919         translatable key names.
1920
1921         * gdk/keynames.txt: Mark some key names as translatable.
1922         
1923         * gdk/keyname-table.h: Regenerated.
1924
1925         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): Add
1926         some context to the msg ids for keyboard modifiers and
1927         key names.
1928         (_gtk_accel_label_class_get_accelerator_label): Try to
1929         translate key names.  (#300224, Christian Rose)
1930
1931 2005-06-10  Federico Mena Quintero  <federico@ximian.com>
1932
1933         Merged from gtk-2-6:
1934
1935         Fixes #162358:
1936
1937         * gtk/gtkfilechooserdefault.c (update_chooser_entry): Don't return
1938         immediately if we are in CREATE_FOLDER mode, so that we can fill
1939         the entry with the newly-selected folder.
1940         (gtk_file_chooser_default_set_property): Warn against turning on
1941         multiple selection for CREATE_FOLDER mode, or about setting that
1942         action while multiple selection is on.
1943         (update_chooser_entry): Change the entry's contents as well if we
1944         are in CREATE_FOLDER mode.  If nothing is selected, clear the
1945         chooser entry.
1946         (trap_activate_cb): Don't trap enter/space if modifiers are
1947         pressed.  This lets one use Ctrl-space to toggle rows in multiple
1948         selection mode.
1949         (gtk_file_chooser_default_should_respond): Clean up the if-chain
1950         mess of special cases by using an array to determine what to do.
1951         Also, for the save-entry case in CREATE_FOLDER mode, actually fix
1952         the bug where the file chooser would switch to an existing folder
1953         rather than confirming with it, and create the folder ourselves.
1954         (error_creating_folder_over_existing_file_dialog): New function.
1955
1956         * gtk/gtkfilechooserentry.c (check_completion_callback): Only
1957         insert the common prefix if we are in an "open" mode.  Use a
1958         helper function.
1959         (append_common_prefix): New helper function; code moved over from
1960         check_completion_callback().
1961         (find_common_prefix): New helper function.
1962         (gtk_file_chooser_entry_focus): Append the common prefix if the
1963         user requests it explicitly.
1964
1965 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
1966
1967         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_expand): 
1968         * gtk/gtktoolbar.c (gtk_toolbar_get_show_arrow): 
1969         * gtk/gtktextview.c (gtk_text_view_get_iter_at_position): 
1970         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
1971         * gtk/gtkspinbutton.c (gtk_spin_button_get_adjustment): 
1972         * gtk/gtkscrolledwindow.h: 
1973         * gtk/gtkmenushell.c (gtk_menu_shell_get_take_focus): 
1974
1975         * gtk/gtkiconview.c (gtk_icon_view_set_margin): 
1976         * gtk/gtkicontheme.c (gtk_icon_info_load_icon): 
1977         * gtk/gtkcalendar.c (gtk_calendar_thaw): Doc fixes.
1978
1979 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
1980
1981         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
1982
1983         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add docs.
1984         (#306212, Steve Chaplin, docs provided by Billy Biggs)
1985
1986         * gtk/gtktextbtree.c (_gtk_text_btree_char_is_invisible): Small 
1987         cleanup.  (#305539, Paolo Borelli)
1988
1989 2005-06-09  Rodrigo Moya <rodrigo@novell.com>
1990
1991         * configure.in: added cairo to list of $GTK_PACKAGES.
1992
1993 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
1994
1995         * gdk/x11/gdkdnd-x11.c (motif_drop_start, xdnd_drop_filter): Update
1996         the user time on the window when a drop happens.  (#169364, Alexander
1997         Hunziker, patch by Elijah Newren)
1998
1999         * gdk/x11/gdkwindow-x11.c: Small markup fixes.
2000
2001         * gtk/gtk.symbols: 
2002         * gtk/gtkiconview.h: 
2003         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_path): New function
2004         to scroll to a path.  (#306838, Jonathan Blandford)
2005
2006 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
2007
2008         * gtk/gtkiconview.c (gtk_icon_view_set_cursor): Scroll to the
2009         item.  (#306839, Jonathan Blandford)
2010
2011         * gtk/gtktreemodel.c (gtk_tree_path_new_from_string): Check for
2012         negative before appending the index, to avoid double error
2013         message.  (#306393, Morten Welinder)
2014
2015         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
2016         Don't crash if search_window is NULL.  (#304914, Victor Osadci,
2017         testcase by Olaf Vitters)
2018
2019         * gtk/gtkimage.c: Make the file property readable.  
2020         (#170674, Lorenzo Gil Sanchez)
2021
2022         
2023 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
2024
2025         * gtk/gtkfilesystem.c (gtk_file_info_get_display_key): Use
2026         g_utf8_collate_key_for_filename().
2027
2028 2005-06-07  Kjartan Maraas  <kmaraas@gnome.org>
2029
2030         * gtk/gtkfilechooserbutton.c: (update_label_and_image):
2031         Merge leak fix from stable. Bug 306754.
2032
2033 2005-06-05  Tor Lillqvist  <tml@novell.com>
2034
2035         * gdk/win32/gdkscreen-win32.c
2036         (_gdk_windowing_substitute_screen_number): Return NULL unless
2037         screen number is zero. We have only one screen on Win32.
2038         (gdk_screen_make_display_name): Call gdk_display_get_name() and
2039         return that.
2040         
2041         * modules/engines/Makefile.am
2042         * modules/input/Makefile.am: Decide whether to build the
2043         ms-windows theme engine based on the GDK backend, not based on
2044         platform. (I.e., if building for Cygwin with the X11 backend, we
2045         shouldn't build the ms-windows engine, but if building for Cygwin
2046         but with the Win32 backend, we should.) Ditto for the IME
2047         (Windows) input module. (#305832)
2048
2049 2005-06-04  Tor Lillqvist  <tml@novell.com>
2050
2051         * gdk/win32/gdkcursor-win32.c
2052         * gdk/win32/gdkwindow-win32.c
2053         * gdk/win32/gdkprivate-win32.h: Support full-colour cursors.
2054         Support cursors with alpha on XP. Use code in common with the
2055         support for alpha icons that already was present. (#306101, Tim
2056         Evans)
2057
2058         * modules/engines/ms-windows/msw_style.c: Render insensitive icons
2059         in a way that more closely matches Windows. (#305986, Tim Evans).
2060
2061         * modules/engines/ms-windows/Makefile.am (LDADDS): Link with
2062         gdk-pixbuf.
2063
2064 2005-06-03  Dom Lachowicz <cinamod@hotmail.com>
2065
2066         * modules/engines/ms-windows/msw_style.c: Re-sync with gtk-wimp
2067         * modules/engines/ms-windows/xp_theme.c: Ditto
2068         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Ditto
2069
2070 Thu May 26 16:43:27 2005 Manish Singh  <yosh@gimp.org>
2071
2072         * gtk/gtkentrycompletion.h: Add declarations for
2073         gtk_entry_completion_{get,set}_popup_single_match.
2074
2075 2005-05-26  Matthias Clasen  <mclasen@redhat.com>
2076
2077         * gtk/gtk.symbols: 
2078         * gtk/gtkentrycompletion.c: Add a property to suppress the
2079         popup for single matches.  (#154711)
2080
2081         * gtk/gtkentry.c (gtk_entry_completion_timeout): Respect it here.
2082
2083         * gtk/gtkfilechooserentry.c (_gtk_file_chooser_entry_set_action): 
2084         Use it here.
2085
2086         * gtk/gtktextbtree.c (_gtk_text_btree_tag): Queue the 
2087         redisplay after modifying the tag in the btree, otherwise 
2088         we end up showing the old tags until the next redraw comes 
2089         around.   (#143537, Gary Kramlich, Peter Wainwright)
2090
2091         * gtk/gtkcombobox.c (gtk_combo_box_list_auto_scroll): Make 
2092         autoscrolling work at the bottom of the screen.
2093
2094 2005-05-26  Maciej Katafiasz  <email@mathrick.org>
2095
2096         * docs/reference/gtk/tmpl/gtkentry.sgml:
2097         Point to GtkTextView instead of GtkText. Fixes bug #305535
2098
2099 2005-05-26  Sven Neumann  <sven@gimp.org>
2100
2101         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): use a less
2102         aggressive PNG compression level (bug #305340).
2103
2104 2005-05-26  Tor Lillqvist  <tml@novell.com>
2105
2106         * gdk/win32/gdkdrawable-win32.c (_gdk_win32_blit): If blitting
2107         from the root window, take the multi-monitor offset into
2108         account. (#305511)
2109
2110 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
2111
2112         * demos/gtk-demo/appwindow.c (do_appwindow): Set the window
2113         icon by name.
2114
2115         * gtk/gtkfilesystem.c (gtk_file_folder_is_finished_loading): 
2116         Remove another C99ism.
2117
2118         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Draw the 
2119         background of rows insensitive when the treeview is insensitive.
2120         (pointed out by Billy Biggs)
2121
2122         * demos/gtk-demo/clipboard.c: Demonstrate image copy-and-paste
2123         and DND, and clipboard persistency.
2124
2125         * gtk/gtkselection.c (gtk_target_list_add_image_targets): 
2126         Make sure png comes first, otherwise dnd may use bmp by
2127         default, loosing transparency.
2128
2129 2005-05-25  Michael Natterer  <mitch@imendio.com>
2130
2131         * gtk/gtktextview.c (blink_cb): block the text_layout's "changed"
2132         handler when changing cursor visibility because it would expose
2133         the whole paragraph where the cursor is. Instead, expose the
2134         cursors' areas manually. (#173047).
2135
2136         (text_window_invalidate_cursors): new function which exposes the
2137         cursors.
2138
2139         * gtk/gtkstyle.c (draw_insertion_cursor): added comment that the
2140         same cursor size calculation is in text_window_invalidate_cursors().
2141
2142 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
2143
2144         * demos/gtk-demo/editable_cells.c (create_items_model): Also
2145         demonstrate GtkCellRendererProgress.
2146
2147         * demos/gtk-demo/Makefile.am (demos): 
2148         * demos/gtk-demo/combobox.c: Add a demo showing combo box 
2149         variations.
2150
2151         * demos/gtk-demo/Makefile.am (demos): 
2152         * demos/gtk-demo/pickers.c: Add a demo showing all picker widgets.
2153
2154 2005-05-24  Matthias Clasen  <mclasen@redhat.com>
2155
2156         * demos/gtk-demo/iconview.c (do_iconview): Fix a typo.
2157
2158 2005-05-24  Tor Lillqvist  <tml@novell.com>
2159
2160         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Handle
2161         gtk-alternative-button-order (setting it to TRUE).
2162
2163 2005-05-23  Matthias Clasen  <mclasen@redhat.com>
2164
2165         * gtk/gtktreeview.c (gtk_tree_view_search_init): Remove
2166         an unused variable.  (#305130, Jaap A. Haitsma)
2167
2168         * gtk/gtkfilechooserdefault.c (filter_create): Don't grab
2169         the focus away from the file list when operating the filter
2170         combo with the pointer.  (#304844, Sven Neumann)
2171
2172 2005-05-23  Tor Lillqvist  <tml@novell.com>
2173
2174         * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to
2175         GDK_Menu. (#172383, Ivan Wong)
2176
2177         * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one
2178         of the special cases this function takes care of, use it as
2179         such. This takes care of for instance the Bengali Virama, see bug
2180         #165723.
2181
2182 2005-05-20  Matthias Clasen  <mclasen@redhat.com>
2183
2184         * gtk/gtkimcontextsimple.c (check_table): Avoid a possible
2185         buffer overrun.  (#142444, Leonard Michlmayr)
2186
2187         * gtk/gtkfilesystem.c: Remove C99-isms (#304879, 
2188         Kazuki IWAMOTO)
2189
2190 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
2191
2192         * gtk/gtkfilechooser.c (gtk_file_chooser_remove_shortcut_folder_uri): 
2193         Use the correct function to conver the uri to a path.  (#304565,
2194         Ismael Juma)
2195
2196         * gtk/gtkfilechooserbutton.c (dialog_response_cb): Handle the
2197         Cancel button properly.  (#304234, Sven Neumann)
2198
2199 2005-05-18  Anders Carlsson  <andersca@imendio.com>
2200
2201         * gtk/gtktextview.c: (gtk_text_view_flush_scroll),
2202         (gtk_text_view_update_adjustments), (gtk_text_view_value_changed):
2203         * gtk/gtktextview.h:
2204         If the horizontal adjustment changes because of a change in the
2205         layout width, then do a complete redraw. This is because there
2206         might be right-aligned or centered text that needs to be redrawn.
2207
2208 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
2209         
2210         * gtk/gtkwidget.c (gtk_widget_add_events): Try harder to set
2211         the event masks of descendent windows.  (#169821, Tommi Komulainen)
2212
2213         * gtk/gtktreeview.c (gtk_tree_view_get_drop_column) 
2214         (gtk_tree_view_set_column_drag_info): Fix some errors in the
2215         handling of drop columns.  (#143355, John Finlay)
2216
2217         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
2218         Remove the no longer needed workaround.
2219
2220         * gtk/gtkwidget.c (widget_add_child_draw_rectangle): Only collect
2221         allocations of mapped children.
2222
2223         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): 
2224         Add a bug reference.
2225
2226 2005-05-18  Tor Lillqvist  <tml@novell.com>
2227
2228         * gdk/win32/gdkevents-win32.c
2229         * gdk/win32/gdkkeys-win32.c
2230         * gdk/win32/gdkprivate-win32.h: Check the KF_EXTENDED bit in
2231         lParam of WM_KEY* messages to distinguish between left and right
2232         Control and Alt keys. Unfortunately, the right Shift key doesnt
2233         set KF_EXTENDED, so to distinguish between left and right Shift
2234         keys, check the scan code. (#304584)
2235
2236 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
2237
2238         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Warn if
2239         length overflows.  (#161520, Ian Wienand)
2240
2241         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name): Fix
2242         parameter names to make gtk-doc happy.
2243
2244         * gtk/gtkscale.c (gtk_scale_class_init): Fix the default
2245         values of draw-value and value-pos to be the values we
2246         actually use in _init. (#304547, Mikael Hallendal)
2247
2248         * gtk/gtkcellrendererpixbuf.c: Support named icons in
2249         cells by adding a icon-name property. (#165777, Anders
2250         Carlsson)
2251
2252         * gtk/gtk.symbols:
2253         * gtk/gtktoolbutton.h: 
2254         * gtk/gtktoolbutton.c (gtk_tool_button_set_icon_name) 
2255         (gtk_tool_button_get_icon_name): Support named icons in 
2256         tool buttons by adding a icon-name property. (#116577, 
2257         Christian Neumair)
2258
2259         * gtk/gtk.symbols: 
2260         * gtk/gtkdnd.h: 
2261         * gtk/gtkdnd.c (gtk_drag_source_set_icon_name) 
2262         (gtk_drag_set_icon_name): New functions to support themed 
2263         drag icons.  (#116577, Christian Neumair)
2264
2265 2005-05-17  Owen Taylor  <otaylor@redhat.com>
2266
2267         * gdk/x11/gdkdrawable-x11.c (gdk_x11_ref_cairo_surface): 
2268         Update to changed cairo interface.
2269
2270         * gdk/x11/gdkdrawable-x11.[ch]:
2271         Add _gdk_x11_drawable_update_size()
2272         
2273         * gdk/x11/gdkwindow-x11.c (gdk_window_resize) 
2274         (gdk_window_move_resize)
2275         * gdk/x11/gdkevents-x11.c (gdk_event_translate): 
2276         Call _gdk_x11_drawable_update_size().
2277
2278 2005-05-17  Matthias Clasen  <mclasen@redhat.com>
2279
2280         * gtk/gtktextview.c (cursor_blinks): Don't blink the cursor
2281         if the text view is not editable.  
2282
2283         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): Keep
2284         the popup posted if the button is released over the cellview.
2285         This matches the behaviour of other combo box implementations.  
2286         (#171378)
2287         
2288         * gdk/gdkwindow.c (gdk_window_set_bg_pattern): Adjust offsets
2289         when recursing.  (#153682, Felipe Heidrich)
2290
2291 2005-05-16  Matthias Clasen  <mclasen@redhat.com>
2292
2293         * gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up 
2294         and GDK_Page_Down twice.  (#168333, Hazael Maldonado Torres)
2295
2296         * gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if 
2297         the entry is not editable.  (#304171, Nikos Kouremenos)
2298         
2299         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor): 
2300         Make sure the action of the button and the dialog are in sync,
2301         when the dialog is provided by the app.  (#303987, David A Knight)
2302
2303         * gdk/gdkpango.c (gdk_pango_renderer_get_default): Fix a typo
2304         in the docs.  (#303940, Masao Mutoh)
2305
2306         * configure.in (GTK_DOC_CHECK): Check for gtk-doc 1.4.
2307
2308         * gtk/gtktoggleaction.c (connect_proxy): Be more careful when
2309         casting.  (#304089, Philip Langdale)
2310
2311         * gtk/gtkstatusbar.c (gtk_statusbar_size_allocate): Only shrink
2312         the label if we need to.  (#169390, Felix Riemann)
2313
2314 Sat May 14 00:07:46 2005  Manish Singh  <yosh@gimp.org>
2315
2316         * gdk/gdkdraw.c
2317         * gdk/gdkpango.c: #include gdkcairo.h for gdk_cairo_create()
2318         declaration.
2319
2320         * gtk/gtkiconview.c (gtk_icon_view_create_drag_icon): actually
2321         call gdk_cairo_set_source_color() with a color.
2322
2323         * gtk/gtkimage.c (gtk_image_expose): remove unused stock_id variable.
2324
2325         * tests/testiconview.c (main): cast args of drag functions to the
2326         appropriate type.
2327
2328 2005-05-13  Owen Taylor  <otaylor@redhat.com>
2329
2330         * gdk/x11/gdkdrawable-x11.c: Update for cairo-xlib API change.
2331
2332         * gdk/x11/gdkpixmap-x11.[ch] gdk/gdk.symbols: Export 
2333         gdk_pixmap_impl_x11_get_type(), needed in gdkdrawable-x11.c.
2334         
2335 2005-05-11  Owen Taylor  <otaylor@redhat.com>
2336
2337         * tests/testgtk.c (on_alpha_window_expose): Fix to use
2338         gdk_cairo_create(). (create_alpha_window): Hook up "response"
2339         to close the window.
2340
2341 2005-05-11  Owen Taylor  <otaylor@redhat.com>
2342
2343         * gtk/gtkcolorbutton.c: Use a GtkAlignment rather than a GtkDrawingArea
2344         to draw the swatch in to avoid having an extraneous window.
2345         
2346         * gtk/gtkcolorsel.c (color_sample_draw_sample): Actually se tthe
2347         color when !has_opacity.
2348
2349 2005-05-10  Owen Taylor  <otaylor@redhat.com>
2350
2351         * gdk/gdkcairo.[ch] gdk/gdkcolor.[ch] gdk/Makefile.am: Add source
2352         files for Cairo convenience functionality.
2353
2354         * gdk/gdkcairo.h (gdk_cairo_rectangle, gdk_cairo_region): Add a
2355         convenience functions to add GdkRectangle, GdkRegion to a cairo path.
2356
2357         * gdk/gdkwindow.c gdk/gdkgc.c gtk/gtkcolorsel.c gtk/gtkiconview.c 
2358         gtk/gtkstyle.c: Use gdk_cairo_rectangle/region().
2359
2360         * gdk/gdkcairo.[ch] gdk/gdkdrawable.h gdk/gdkdraw.c: Rename
2361         gdk_drawable_create_cairo_context() to gdk_cairo_create().
2362
2363         * gdk/gdkcairo.c gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c:
2364         Rename gdk_pixbuf_set_as_cairo_source() to 
2365         gdk_cairo_set_source_pixbuf().
2366
2367         * gdk/gdkdraw.c gdk/gdkpango.c gtk/gtkcolorsel.c gtk/gtkhruler.c
2368         gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkstyle.c gtk/gtkvruler.c:
2369         Adjust for renames.
2370
2371         * gdk/gdk.symbols: Update.
2372
2373         * gtk/gtkwidget.c (gtk_widget_queue_shallow_draw): Fix 
2374         coordinate system problem that was causing the wrong portions
2375         to be invalidated.
2376
2377         * gtk/gtkcellrenderer.c (gtk_cell_renderer_render)
2378         gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render)
2379         gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_render)
2380         gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render)
2381         gtk/gtkcellview.c (gtk_cell_view_expose)
2382         gtk/gtkdnd.c (gtk_drag_highlight_expose)
2383         gtk/gtkentry.c (gtk_entry_draw_text) 
2384         gtk/gtktextview.c (text_window_invalidate_rect): Some cairoization.
2385
2386         * gtk/gtkcalendar.[ch]: Beat into something roughly resembling
2387         GTK+ style ... use instance-private data and standard names for
2388         private structure, etc. Move function docs inline.
2389
2390         * gtk/gtkcalendar.[ch]: Switch to drawing everything in
2391         expose. Switch drawing to Cairo.
2392
2393         * gtk/gtkcalendar.c (gtk_calendar_freeze): Deprecate
2394         gtk_calendar_freeze/thaw
2395
2396 2005-05-10  Tor Lillqvist  <tml@novell.com>
2397
2398         * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Check
2399         that GDK_IS_SCREEN(screen) (like the X11 backend does), not screen
2400         == gdk_screen_get_default(), as that might return NULL when this
2401         function is called.
2402
2403 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
2404
2405         * gtk/gtkalignment.c (gtk_alignment_size_allocate): Flip the
2406         padding in RTL mode.  (#303572, Maciej Katafiasz)
2407
2408 2005-05-09  Owen Taylor  <otaylor@redhat.com>
2409
2410         * gdk/gdkrgb.c (gdk_rgb_convert_0888_br, gdk_rgb_convert_8880_br): 
2411         Fill in unused bits so they can be used for the depth-32 target case.
2412         Rewrite so that that gives a marginal speedup rather than a
2413         marginal slowdown. (on x86)
2414
2415         * gdk/gdkscreen.h gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkvisual-x11.c:
2416         Add gdk_screen_get_rgba_colormap/visual to get a visual for
2417         windows with an alpha channel, if one exists.
2418
2419         * gdk/win32/gdkscreen-win32.c gdk/linux-fb/gdkscreen-fb.c:
2420         Stub out gdk_screen_get_rgba_colormap/visual.
2421
2422         * gdk/x11/gdkcolor-x11.c (gdk_colormap_alloc_colors): computation of
2423         "unused" wasn't right for depth == 32, since it depended on
2424         shifting by 32.
2425
2426         * gdk/gdkrgb.c: Fill in alpha bits with 1s. (Based on patch from
2427         Keith Packard,
2428         http://mail.gnome.org/archives/gtk-devel-list/2004-June/msg00080.html)
2429
2430         * gdk/x11/gdkdrawable-x11.c (gdk_x11_drawable_get_picture):
2431         Implement again, without using Xft.
2432
2433         * tests/testgtk.c: Add a test for windows with an alpha channel.
2434
2435 2005-05-09  Matthias Clasen  <mclasen@redhat.com>
2436
2437         * autogen.sh: Revert accidental commit.
2438
2439 2005-05-08  Matthias Clasen  <mclasen@redhat.com>
2440
2441         * gdk/gdkcolor.c (gdk_cairo_set_source_color): 
2442         * gdk/gdkimage.h: 
2443         * gdk/gdkdraw.c: 
2444         * gdk/gdkcolor.h: 
2445         * gdk/gdkcursor.h: 
2446         * gdk/x11/gdkcolor-x11.c: Small documentation additions.
2447
2448 2005-05-07  Matthias Clasen  <mclasen@redhat.com>
2449
2450         * gtk/gtkscrolledwindow.h: 
2451         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_hscrollbar): 
2452         (gtk_scrolled_window_get_cscrollbar): Change the return 
2453         type to GtkWidget*, proposed by Owen Taylor. 
2454
2455         * gdk/x11/gdkscreen-x11.c (gdk_screen_get_width_mm) 
2456         (gdk_screen_get_height_mm): Fix typos in the docs.  (#303389,
2457         Masao Mutoh)
2458
2459 2005-05-07  Matthias Clasen <mclasen@redhat.com>
2460
2461         * gtk/gtkiconview.c: Fix a copy-and-paste accident, spotted
2462         by Owen Taylor.
2463
2464 2005-05-07  Owen Taylor  <otaylor@redhat.com>
2465
2466         * gdk/gdkgc.c (gc_get_foreground): Get the foreground color, not
2467         the background color.
2468
2469 2005-05-07  Owen Taylor  <otaylor@redhat.com>
2470
2471         * gdk/gdkpixbuf-render.c gdk/gdkpixbuf.h (gdk_pixbuf_set_as_cairo_source): 
2472         Change prototype to match cairo_set_source_surface().
2473
2474         * gdk/gdkdraw.c gdk/gdkgc.c gdk/gdkpixbuf-render.c gdk/gdkwindow.c
2475         gtk/gtkhsv.c tests/testcairo.c.
2476
2477 2005-05-06  Federico Mena Quintero  <federico@ximian.com>
2478
2479         Merged from gtk-2-6:
2480
2481         * gtk/gtkfilesystemunix.c (fill_in_mime_type): Don't fill the mime
2482         types if this is an AFS directory.
2483         (fill_in_names): If we are in an AFS directory, set the MIME type
2484         blindly to "x-directory/normal".
2485
2486 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
2487
2488         * gtk/gtknotebook.c (gtk_notebook_insert_page_menu): Always
2489         initialize child-visible to FALSE, otherwise we may end up
2490         with the wrong page visible initially.  (#302283, Patrik Fimml)
2491
2492         * gtk/gtktreeview.c (gtk_tree_view_draw_arrow): Make expanders
2493         appear insensitive in insensitive treeviews. 
2494
2495 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
2496
2497         * gtk/gtktoolbar.c: Fix a typo in the docs.  (#303024, 
2498         Morten Welinder)
2499
2500 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
2501
2502         * gtk/gtk.symbols:
2503         * gtk/gtkiconview.[hc]: Add DND support similar to the DND
2504         support in the tree view.  (#150270)
2505
2506 2005-05-05  Matthias Clasen  <mclasen@redhat.com>
2507
2508         * gtk/gtktreednd.h: 
2509         * gtk/gtkwidget.h: Small cleanups.
2510
2511         * gtk/gtktreeview.c (gtk_tree_view_get_dest_row_at_pos): Fix
2512         a typo.
2513
2514 2005-05-04  Owen Taylor  <otaylor@redhat.com>
2515
2516         * gdk/x11/gdkevents-x11.c gdk/x11/gdkwindow-x11.h: Fix a bug
2517         in focus tracking when we move between has_pointer_focus and 
2518         has_focus_window directly. (#109246, Billy Biggs, Niko Tyni 
2519         and others)
2520
2521         * gdk/x11/gdkevents-x11.c: Also fix some confusion that could
2522         happen in the case of no window manager + keyboard grabs, by
2523         moving to a more consistent model of when we pay attention to
2524         mode=NotifyGrab/NotifyUngrab events.
2525         
2526         * docs/focus_tracking.txt: Extensive writeup about how to track
2527         focus under X11.
2528
2529 Wed May  4 13:21:41 2005  Søren Sandmann  <sandmann@redhat.com>
2530
2531         * tests/testcairo.c (draw): Replace cairo_show_surface() uses with
2532         cairo_set_source_surface()/cairo_paint();
2533
2534 2005-05-04  Tor Lillqvist  <tml@novell.com>
2535
2536         * gdk/win32/gdkdrawable-win32.c (generic_draw, blit_from_pixmap)
2537         * gdk/win32/gdkgc-win32.c (gdk_win32_gc_values_to_win32values,
2538         _gdk_win32_gc_new, _gdk_windowing_gc_set_clip_region,
2539         gdk_win32_hdc_get): Minor fixes to make Win32 backend compile
2540         again.
2541
2542 2005-05-03  Matthias Clasen  <mclasen@redhat.com>
2543
2544         * gtk/gtkfilesystem.c: 
2545         * gtk/gtkcelleditable.c: 
2546         * gtk/gtktreemodel.c: Avoid getting the interface struct
2547         twice in the same function.  (#300513, Billy Biggs)
2548
2549         * gtk/gtkscrolledwindow.h:
2550         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_get_vscrollbar): 
2551         * gtk/gtk.symbols: Add getters for the scrollbars.  (#167181,
2552         Billy Biggs)    
2553
2554         * gtk/gtkdialog.h: 
2555         * gtk/gtkdialog.c (gtk_dialog_get_response_for_widget): 
2556         Make this function public.  (#170748, Morten Welinder)
2557
2558 2005-05-02  Federico Mena Quintero  <federico@ximian.com>
2559
2560         Merged from gtk-2-6:
2561
2562         Fixes #301068:
2563
2564         * gtk/gtkfilesystemunix.c (struct _GtkFileSystemUnix): Add fields
2565         to store struct stat for /afs and /net, and boolean fields to say
2566         whether these are valid.
2567         (struct _GtkFileFolderUnix): Added a boolean is_network_dir field.
2568         (gtk_file_system_unix_get_folder): Fill in the is_network_dir
2569         field of the folder structure.
2570         (fill_in_names): If the folder is a network directory, create a
2571         fake struct stat for its entries.
2572         (fill_in_stats): Don't stat() the children of network directories.
2573
2574         * gtk/gtkfilechooserdefault.c (list_mtime_data_func): If the mtime
2575         is 0, use "Unknown" for the cell's displayed text.
2576
2577 2005-04-28  Owen Taylor  <otaylor@redhat.com>
2578
2579         * gtk/gtkwidget.c: Add a draw-border style property to allow
2580         themes to draw outside the widget's allocation.
2581
2582         * gdk/gdkwindow.c gtk/gtkstyle.c: Remove some save/restore pairs
2583         that were working around the clip-leakage bug in Cairo.
2584
2585         * gtk/gtkstyle.c: Use cairo_fill_preserve() rathe than
2586         save/fill/restore.
2587
2588         * gdk/gdkgc.c gdk/gdkinternals.h: Add _gdk_gc_update_context()
2589         That updates a Cairo context to match a GC.
2590
2591         * gdk/gdkdraw.c: Use _gdk_gc_update_context() to add support
2592         for tiles/stipples/clipping to gdk_draw_glyphs(), 
2593         gdk_draw_trapezoids().
2594
2595         * gdk/gdkpango.c: Use _gdk_gc_update_context() instead of internal
2596         implementation of stipples. Use one cairo_t across the entire
2597         drawing operation. Replace cairo_matrix_create() with 
2598         stack-allocated matrices.
2599
2600         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c 
2601         gdk/win32/gdkgc-win32.c: Save various aspects of the 
2602         GC state (fill, tile, stipple, foreground, background, clip region)
2603         in instance-private-data for future use. Add getters.
2604         Get rid of _gdk_windowing_gc_get_foreground() function implemented 
2605         by the backends.
2606
2607         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
2608         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Add
2609         _gdk_gc_init() to do initial setup of the GC from values;
2610         fixes some problems from drawable redirection.
2611
2612         * gdk/gdkgc.c gdk/gdkinternals.h gdk/x11/gdkgc-x11.c
2613         gdk/win32/gdkgc-win32.c gdk/linux-fb/gdkgc-fb.c: Move 
2614         gdk_gc_copy() and gdk_gc_set_clip_{region,rectangle}() into 
2615         the generic code, add _gdk_windowing_gc_copy(), 
2616         _gdk_windowing_gc_set_clip_region() to do backend specific
2617         stuff.
2618
2619         * gdk/x11/{gdkprivate-x11.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
2620         gdk/win32/{gdkprivate-win32.h,gdkgc-x11.c.c,gdkdrawable-x11.c}
2621         gdk/linux-fb/{gdkprivate-fb.h,gdkgc-fb.c.c,gdkdrawable-fb.c}:
2622         Don't duplicate state that now is stored by the generic code.
2623
2624         * gdk/gdk.symbols Update
2625
2626 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
2627
2628         * tests/testiconview.c: Test cell renderers.
2629
2630         * gtk/gtk.symbols: Add new functions.
2631
2632         * gtk/gtkiconview.[hc]: Implement GtkCellLayout and use
2633         cell renderers for drawing and editing. (#148144, #160242)
2634
2635 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
2636
2637         * gtk/gtkcellrenderertext.c (get_size): Return a sufficient
2638         width for cases where pango_layout_get_pixel_extents() returns
2639         a rectangle with nonzero x. 
2640
2641         * gtk/gtkselection.c: Small doc fixes.
2642
2643         * gtk/gtkmenushell.c (gtk_menu_shell_set_take_focus): 
2644         (gtk_menu_shell_get_take_focus): Fix up the docs a bit.
2645
2646 2005-05-02  Michael Natterer  <mitch@imendio.com>
2647
2648         * gtk/gtkmain.c (do_post_parse_initialization): return silently if
2649         "gtk_initialized" is TRUE. Re-enables calling GTK's init functions
2650         multiple times when using gtk_get_option_group(), just as one can
2651         call gtk_init() multiple times without doing any harm.
2652
2653 2005-05-01  Matthias Clasen  <mclasen@redhat.com>
2654
2655         * gtk/gtktextview.c (gtk_text_view_expose_event): Propagate
2656         the event to unanchored children in the text window.  
2657         (#302494, Stephen Kennedy)
2658
2659 2005-04-30  Tor Lillqvist  <tml@novell.com>
2660
2661         * gdk/win32/gdkdnd-win32.c (gdk_dropfiles_filter): Take
2662         multi-monitor offset into account. (#302525)
2663
2664 2005-04-29  Matthias Clasen  <mclasen@redhat.com>
2665
2666         * gtk/gtkradioaction.c: Make the docs build.  (#302230,
2667         Ali Akcaagac)
2668
2669         * gtk/gtkiconview.c (gtk_icon_view_map): Get rid of this
2670         function, instead show the bin_window when it is created.
2671
2672         * gtk/gtkradiobutton.c (gtk_radio_button_focus): Don't 
2673         grab focus to unrealized widgets.  (#302240, Philip Langdale)
2674
2675         * gtk/gtktreeview.c (gtk_tree_view_state_changed): Set
2676         background upon state changes.  (#301651, Billy Biggs)
2677         (gtk_tree_view_get_path_at_pos): Take RTL into account
2678         when iterating over the columns.  (#302163)
2679         
2680         * configure.in: Check for nm.
2681
2682         * gtk/Makefile.am: Use $(NM), not nm directly. (#301299, 
2683         Nguyen Thai Ngoc Duy)
2684
2685         * gtk/gtkiconview.c (gtk_icon_view_move_cursor_start_end): Use
2686         the internal unselect_all function, since we need the unselection
2687         to happen even in browse mode.  (#300995, Mathias Hasselmann)
2688
2689         * gtk/gtkuimanager.c (update_node): Use g_object_notify() instead
2690         of triggering a ::notify by re-setting the property.  (#300982,
2691         Sven Neumann)
2692
2693         * gtk/gtkaction.c (connect_proxy): Use gtk_action_sync_tooltip().
2694
2695         * gtk/gtkiconview.c (gtk_icon_view_scroll_to_item): Also
2696         scroll horizontally when necessary, and keep the northwest
2697         corner of the item visible.  (#300913, Mathias Hasselmann)
2698
2699         * tests/testiconview.c: Add some more tests.
2700
2701         * gtk/gtkiconview.c (gtk_icon_view_select_path): Don't crash
2702         if the path does not point to a row in the model.  (#300909,
2703         Mathias Hasselmann)
2704         (gtk_icon_view_rows_reordered): Re-layout here.  (#301009, 
2705         Mathias Hasselmann)
2706
2707         * tests/testtext.c: Add some more attribute tests.
2708
2709         * gtk/gtktexttag.c (gtk_text_tag_class_init): Correct the documentation
2710         of the rise property. String change, but it is more important to
2711         be correct than to be translated.  (#301740)
2712
2713 2005-04-25  Tor Lillqvist  <tml@novell.com>
2714
2715         * gtk/gtkfilesystemwin32.c
2716         (gtk_file_system_win32_volume_get_display_name): Get volume name
2717         also on Win9x. (#301798, Daniel Atallah)
2718         (canonicalize_filename): Add explicit braces to silence compiler
2719         warning.
2720
2721 2005-04-22  Tor Lillqvist  <tml@novell.com>
2722
2723         * gtk/gtkmain.c: Initailize gettext before use. Calling
2724         bindtextdomain() and bind_textdomain_codeset() in
2725         do_post_parse_initialization() is too late. Put the calls in a new
2726         function gettext_initialization(), and call that from
2727         gtk_init_with_args() and gtk_parse_args(). Fixes #170948 for
2728         GTK+'s part, but the same problem occurs also at least in
2729         atk. Thanks to Robert Ögren, Daniel Atallah and Kevin Stange.
2730
2731 2005-04-19  Ivan, Wong Yat Cheung  <email@ivanwong.info>
2732
2733         * gdk/win32/gdkfont-win32.c (gdk_font_load_internal): Match
2734         character height instead of cell height. Fix #301228.
2735
2736 2005-04-18  Federico Mena Quintero  <federico@ximian.com>
2737
2738         Merged from gtk-2-6:
2739
2740         * gtk/gtkfilechooserdefault.c (remove_selected_bookmarks): Remove
2741         obsolete assertion that the selected row can't be a volume; this
2742         is handled by the "removable" column now.  Fixes #301017.
2743
2744 2005-04-18  Owen Taylor  <otaylor@redhat.com>
2745
2746         * gtk/gtkstyle.c gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c
2747         * gdk/gdkcolor.c gdk/gdkwindow.c gdk/gdkpixbuf-render.c
2748         gdk/gdkpango.c tests/testcairo.c: Update to new Cairo API for
2749         setting color and opacity. (#301066, Vincent Noel)
2750  
2751 2005-04-15  Federico Mena Quintero  <federico@ximian.com>
2752
2753         Merged from gtk-2-6:
2754
2755         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
2756         Patch from Christian Neumair <chris@gnome-de.org>; only select the
2757         first row if we are in OPEN mode.  The only other case we were
2758         letting pass through was SELECT_FOLDER, but selecting the first
2759         row when changing folders confuses people when folders are
2760         actually being selected.  Fixes #171885.
2761
2762 2005-04-13  Matthias Clasen  <mclasen@redhat.com>
2763
2764         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
2765         Revert the fix for #169870, adjust the documentation instead. 
2766
2767         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
2768         Revert the fix for #170727.     
2769
2770 2005-04-11  Ivan, Wong Yat Cheung  <email@ivanwong.info>
2771
2772         Fix #300218:
2773
2774         * gdk/win32/gdkselection-win32.c (gdk_selection_convert): Fix
2775         C99ism.
2776
2777         * gtk/updateiconcache.c: Guard inclusion of unistd.h and
2778         utime.h.
2779
2780 2005-04-09  Matthias Clasen  <mclasen@redhat.com>
2781
2782         * gdk/x11/gdkinput-xfree.c:
2783         * gdk/x11/gdkinput-none.c:
2784         * gdk/gtk.symbols: Some more fixes necessary to 
2785         make building with gcc 4 work.
2786
2787         Add 16x16 versions of the zoom icons and of 
2788         GTK_STOCK_INDEX. Some of the images were taken from 
2789         the hicolor icon theme, and were originally created 
2790         by Jakub Steiner and Tuomas Kuosmanen.  (#167515, 
2791         Vincent Noel)
2792         
2793         * gtk/stock-icons/stock_index_16.png:
2794         * gtk/stock-icons/stock_zoom_1_16.png:
2795         * gtk/stock-icons/stock_zoom_fit_16.png:
2796         * gtk/stock-icons/stock_zoom_in_16.png:
2797         * gtk/stock-icons/stock_zoom_out_16.png: New images.
2798         
2799         * gtk/stock-icons/Makefile.am: Add the new images. 
2800
2801         * gtk/gtkimage.c (gtk_image_calc_size, gtk_image_expose): 
2802         Don't display too many broken images.  (#169870, Roman
2803         Kagan, patch by Ivan Wong)
2804
2805         * gtk/gtkwidget.c (gtk_widget_unparent): Remove debugging
2806         output.  (#300013, Tommi Komulainen)
2807
2808 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
2809
2810         * gtk/gtkimage.c (gtk_image_expose, gtk_image_calc_size): 
2811         If a stock_id is unknown, display the missing image. (#169870,
2812         Steven Walter)
2813
2814         * gtk/gtkiconcache.c (icon_name_hash): Use the same function 
2815         as in updateiconcache.c.  (spotted by Morten Welinder)
2816
2817 2005-04-08  Carl Worth  <cworth@cworth.org>
2818
2819         * gdk/gdkpango.c: (emboss_context): Simplify matrix manipulation
2820         now that cairo exposes the cairo_matrix_t structure.
2821         
2822         * gdk/gdkpixbuf-render.c: (gdk_pixbuf_set_as_cairo_source): Track
2823         cairo API change in signedness of data argument.
2824
2825 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
2826
2827         * gtk/gtkcombobox.c (gtk_combo_box_popdown): Make this
2828         work when called from gtk_combo_box_destroy().  (#172999,
2829         Christian Persch)
2830
2831 2005-04-08  Matthias Clasen  <mclasen@redhat.com>
2832
2833         Fix double-click to autosize treeview columns. This was
2834         probably broken since 2.2 ! (#169675)
2835         
2836         * gtk/gtktreeview.c (gtk_tree_view_button_press): Leave the
2837         "user-resized" state of the column on a double-click to
2838         autosize.
2839         (gtk_tree_view_button_press, gtk_tree_view_motion_resize_column): 
2840         Enter the "user-resized" state of the column only if a drag
2841         actually changes the column width, not on any click.
2842
2843 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
2844
2845         * gtk/gtkmenu.c (gtk_menu_paint): Allow setting background
2846         images on menus.  (#169532, Benjamin Otte)
2847         
2848         * gtk/updateiconcache.c (write_card16, write_card32): Avoid
2849         unaligned access.  (#172947)
2850
2851         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): 
2852         Consistently use the term "Bookmarks" in the UI.  (#166906,
2853         Sebastian Bacher)
2854
2855         Some fixes from Morten Welinder (#172947):
2856         
2857         * gtk/updateiconcache.c (icon_name_hash): Make this compiler- 
2858         and platform-independent.
2859         (is_cache_up_to_date): Don't compare mtimes is a stat call failed.
2860         (build_cache): Error out if a stat fails.  
2861
2862 2005-04-07  Matthias Clasen  <mclasen@redhat.com>
2863
2864         * gtk/gtktreeview.c (gtk_tree_view_set_expander_column): Add 
2865         a hint about hiding expanders.
2866
2867         * gtk/updateiconcache.c (is_cache_up_to_date): Return 
2868         TRUE if the cache is newer than the directory.  (#172852,
2869         Jacob Kroon)
2870
2871         * configure.in: Replace an explicit pkg-config by 
2872         $PKG_CONFIG.  (#168074, Hans-Wolfgang Loidl)
2873         
2874         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): 
2875         Ignore regions which fall completely outside the line.  
2876         (#165862, Felipe Heidrich)
2877
2878 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
2879
2880         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Document
2881         -1 as possible value.  
2882         (gtk_tree_view_enable_model_drag_source) 
2883         (gtk_tree_view_enable_model_drag_dest): Pass the target list 
2884         to the underlying dnd implementation, otherwise we miss the 
2885         target info in the drag-data-received signal.  (#164085, Jorn
2886         Baayen)
2887
2888 2005-04-06  Matthias Clasen  <mclasen@redhat.com>
2889
2890         * gtk/gtktreeview.c (gtk_tree_view_motion_resize_column) 
2891         (gtk_tree_view_bin_expose): Avoid a few unnecessary calls
2892         to gdk_window_get_pointer(). (#168015, Billy Biggs)
2893
2894         * po/.cvsignore, po-properties/.cvsignore: Remove
2895         Makefile.in.in.  (#171092, Stepan Kasal)
2896
2897         * gtk/gtkrc.c (gtk_rc_parse_style): Don't modify 
2898         scanner->value, copy it first.  (#165693, Tommi Komulainen)
2899
2900 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
2901
2902         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_grab_focus): 
2903         * gtk/gtkcombobox.c (gtk_combo_box_grab_focus): Implement
2904         grab_focus for GtkComboBox and GtkComboBoxEntry.  (#171912,
2905         Gustavo Carneiro)
2906
2907         * gtk/gtkicontheme.c: Store icon caches along with the
2908         mtimes of the toplevel directories. The previous
2909         mechanism of a hashtable-per-theme caused duplicate icon
2910         caches for the same toplevel directory to be created.  
2911         (#170030)
2912
2913 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
2914
2915         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_build_level): 
2916         Fix a typo in a warning.
2917
2918         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Protect
2919         the license and credits buttons from being affected by 
2920         gtk_widget_show_all().  (#172724)
2921
2922 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
2923
2924         * gtk/gtkmenushell.c (gtk_menu_shell_activate_item): Keep a 
2925         reference to the item.  (#167920, Hazael Maldonado Torres)
2926
2927         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Add some
2928         more docs on interactive search.
2929
2930 2005-04-05  Tor Lillqvist  <tml@novell.com>
2931
2932         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Handle 16 colour
2933         display mode. For some reason, in this mode GetDeviceCaps(BITSPIXEL)
2934         returns 1 (but GetDeviceCaps(NUMCOLORS) does return 16). (#143415)
2935
2936         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Don't force
2937         24bpp GdkVisual on 32bpp displays. (#140706)
2938
2939 Mon Apr  4 19:13:23 2005  Jonathan Blandford  <jrb@redhat.com>
2940
2941         Fix for #172319, Tristan Van Berkom:
2942         
2943         * gtk/gtktreeview.c (gtk_tree_view_expand_all): change to use
2944         gtk_tree_view_real_expand_row() instead of doing this by hand.
2945
2946 2005-04-04  Johan Dahlin  <johan@gnome.org>
2947
2948         * gtk/gtktextbuffer.c: (gtk_text_buffer_class_init),
2949         (gtk_text_buffer_set_property), (gtk_text_buffer_get_property),
2950         (gtk_text_buffer_set_text): Add GtkTextBuffer::text (#172631)
2951
2952 Mon Apr  4 14:33:55 2005  Manish Singh  <yosh@gimp.org>
2953
2954         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text):
2955         cast combo->priv->entry to GTK_ENTRY()
2956
2957         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
2958         cast completion->priv->tree_view to GTK_TREE_VIEW()
2959
2960 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
2961
2962         * gtk/gtktextbuffer.c: Some trivial doc fixes.
2963
2964         * gtk/gtkwidget.c (gtk_widget_set_redraw_on_allocate): Improve 
2965         the wording of the doc comment.  (#172422, Vincent Untz)
2966
2967 2005-04-04  Owen Taylor  <otaylor@redhat.com>
2968
2969         * gtk/gtkstyle.c (gtk_default_draw_expander): Covert expander
2970         drawing to Cairo. Also always draw the entire triangle instead
2971         of just drawing the center for prelight. (Fixes inconsistent
2972         drawing in GtkTreeView.)
2973
2974 2005-04-04  Johan Dahlin  <johan@gnome.org>
2975
2976         * gtk/gtk.symbols: Remove symbols accidentally added.
2977         * gtk/gtkentryprivate.h: Add boolean property popup_set_width
2978         * gtk/gtktoggletoolbutton.c: (gtk_toggle_tool_button_class_init):
2979         Use object_class instead of gobject_class
2980
2981 Mon Apr  4 12:14:35 2005  Søren Sandmann  <sandmann@redhat.com>
2982
2983         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Translate x, y into
2984         widget coordinates instead of root coordinates. Patch from Jorn
2985         Baayen. (#172236)
2986
2987 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
2988
2989         * gtk/gtktoolbar.c: Add a tooltips property.
2990
2991         * gtk/gtkradiomenuitem.c (gtk_radio_menu_item_class_init): 
2992         * gtk/gtkruler.c (gtk_ruler_class_init): Add docs.
2993
2994         * gtk/gtktoggletoolbutton.c: Add an active property.
2995
2996 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
2997
2998         Allow completion popups to be wider than the entry. (#131916, 
2999         Ross Burton)
3000         
3001         * gtk/gtkentrycompletion.[hc]: Add a boolean popup-set-width property.
3002
3003         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
3004         Don't force the popup to have the same width as the entry if 
3005         popup-set-width is FALSE.
3006
3007         * gtk/gtk.symbols: Add new functions.
3008
3009 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
3010
3011         * gtk/gtkactiongroup.c (gtk_action_group_add_action_with_accel): 
3012         Use gtk_accel_map_change_entry(), so that reusing the same
3013         action name works.  (#170727, Paolo Borelli)
3014
3015 2005-04-04  Tor Lillqvist  <tml@novell.com>
3016
3017         * gdk/win32/gdkmain.c (_gdk_win32_cf_to_string): New debugging
3018         function, to log a clipboard format name symbolically.
3019         (_gdk_win32_data_to_string): Also new, to log random data bytes.
3020
3021         Implement delayed rendering on Win32, specifically for transfering
3022         images through the clipboard from GTK+ apps to other
3023         apps (#168173, implementation by Ivan Wong):
3024
3025         * gdk/win32/gdkevents-win32.c (gdk_event_translate): 
3026         Handle WM_RENDERFORMAT.
3027
3028         * gdk/win32/gdkprivate-win32.h
3029         * gdk/win32/gdkglobals-win32.c: Add _format_atom_table,
3030         _delayed_rendering_data and _image_bmp.
3031
3032         * gdk/win32/gdkmain-win32.c: Initialize _image_bmp.
3033
3034         * gdk/win32/gdkproperty-win32.c (gdk_property_change):
3035         Accept formats other than GDK_TARGET_STRING or _utf8_string, and
3036         assume they are handled through delayed rendering.
3037
3038         * gdk/win32/gdkselection-win32.c (gdk_selection_convert):
3039         Return all available formats (including those registered by GTK+
3040         apps) on request_targets.
3041         (gdk_selection_property_get): We should append a zero byte like
3042         X11 does.
3043         (gdk_win32_selection_add_targets): New function, for
3044         gtkselection's use. Win32 requires that the clipboard owner
3045         registers all valid formats even if the owner wants delayed
3046         rendering.
3047         (_gdk_win32_selection_convert_to_dib): New function. Convert
3048         images to DIB using gdk-pixbuf.
3049
3050         * gdk/win32/gdkwin32.h: Declare gdk_win32_selection_add_targets().
3051
3052         * gtk/gtkselection.c (gtk_selection_add_target,
3053         gtk_selection_add_targets): Call gdk_win32_selection_add_targets()
3054         to register target formats.
3055
3056         * gdk/gdk.symbols: Add gdk_win32_selection_add_targets().
3057
3058 2005-04-03  Hans Breuer  <hans@breuer.org>
3059
3060         [merged from gtk-2-6 branch]
3061         * gdk/win32/gdkdrawable-win32.c : let dash_offset shift the start of
3062         the line pattern not the start of the line. Fixes bug #171641.
3063
3064         * gtk/makefile.msc.in : follow .symbols changes
3065
3066         * gdk/win32/gdkwindow-win32.c : declare and resolve GetAncestor()
3067         dynamically. (It is not available in _WIN_VER <= 0x0400)
3068
3069         * gdk/win32/makefile.msc : removed gdkpango-win32.obj
3070
3071         * gtk/gtkhsv.c gtk/gtkstyle.c : use G_PI instead of M_PI
3072
3073         [also applied to gtk-2-6 branch]
3074         * gdk/makefile.msc gdk-pixbuf/makefile.msc : handle gdk*alias.def
3075
3076         * gdk/makefile.msc.in : add gtkmnemonichash.obj
3077
3078         * test/testgtk.c(set_parent_signal) : use g_message instead of
3079         g_print to keep the 'testgtk --bench=all' output clean
3080
3081 2005-04-03  Matthias Clasen  <mclasen@redhat.com>
3082
3083         * gtk/gtkruler.c: Add a "metric" property.
3084
3085         * gtk/gtkradiomenuitem.c: Add a "group" property like
3086         the one found in radio buttons.
3087
3088         * gtk/gtkradiobutton.c (gtk_radio_button_class_init): Fix
3089         a typo in the docs.
3090         (gtk_radio_button_set_group): Add change notification.
3091         
3092 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
3093
3094         * gtk/gtkselection.c: Move documentation inline, document
3095         if add_target functions append or prepend.  (#172350, 
3096         Jon-Kare Hellan)
3097
3098 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
3099
3100         Make gtk_combo_box_get_active_text do the right thing for
3101         GtkComboBoxEntry (#171373, Robert Staudinger)
3102         
3103         * gtk/gtkcombobox.h: Add a get_active_text vfunc.
3104         
3105         * gtk/gtkcombobox.c (gtk_combo_box_real_get_active_text): And
3106         implement it here.
3107
3108         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_get_active_text): 
3109         Implement get_active_text by always returning the content of 
3110         the entry.
3111
3112 2005-03-31  Sven Neumann  <sven@gimp.org>
3113
3114         Merged from gtk-2-6:
3115
3116         * gtk/gtkbutton.c
3117         * gtk/gtkiconview.c: fixed gtk-doc comments.
3118
3119 2005-03-31  Michael Natterer  <mitch@gimp.org>
3120
3121         Allow to pop up menus without grabbing the keyboard. Useful for
3122         stuff like virtual keyboards. Fixes bug #159890
3123
3124         * gtk/gtk.symbols
3125         * gtk/gtkmenushell.[ch]: added boolean property "take-focus"
3126         and public API gtk_menu_shell_set/get_take_focus().
3127
3128         * gtk/gtkmenu.c (gtk_menu_popup)
3129         (popup_grab_on_window): don't grab the keyboard if take_focus
3130         is FALSE.
3131
3132         * gtk/gtkmenuitem.c (_gtk_menu_item_popup_submen): propagate the
3133         parent menu_shell's take_focus property to the submenu which is
3134         about to be popped up.
3135
3136 2005-03-30  Federico Mena Quintero  <federico@ximian.com>
3137
3138         Merged from gtk-2-6:
3139
3140         Fix #170755:
3141
3142         * gtk/gtktreeview.c (gtk_tree_view_row_changed): Only stop editing
3143         if the row which changed is the same as the row being edited.
3144
3145 2005-03-30  Matthias Clasen  <mclasen@redhat.com>
3146
3147         * gtk/gtktreeview.c (gtk_tree_view_real_start_interactive_search): 
3148         Make enable_search control only typeahead, not C-f.  (#170435,
3149         Sven Neumann)
3150         (gtk_tree_view_start_interactive_search): Pass keybinding == TRUE.
3151
3152         * gdk/gdkpixbuf.h: Include cairo.h
3153
3154         * gtk/gtkclipboard.c (gtk_clipboard_set_can_store): 
3155         Don't accept n_targets == -1.
3156         (clipboard_unset): unref the old_data, not the
3157         user_data which we have just cleared.  (#172038, Sven
3158         Neumann)
3159
3160         * gtk/gtkcombobox.c (gtk_combo_box_popup): Don't 
3161         segfault if somebody tries to popup an unrealized
3162         combo box.  (#172031, Felipe Heidrich)
3163
3164 2005-03-30  Tor Lillqvist  <tml@novell.com>
3165
3166         * gdk/win32/gdkevents-win32.c (build_pointer_event_state): The
3167         state field should represent the state before the event, like on
3168         X11. (#169753)
3169         (gdk_event_translate): Fix event filter handling. If an event
3170         filter (global, client message filter, of window-specific) returns
3171         GDK_FILTER_CONTINUE, continue as if nothing happened. If it
3172         returns GDK_FILTER_REMOVE or GDK_FILTER_TRANSLATE, return TRUE
3173         from gdk_event_translate() which means that DefWindowProc() will
3174         not be called.
3175         (gdk_event_translate): Fix client message handling. Append a
3176         GDK_CLIENT_EVENT unless there is a filter that matches and returns
3177         something other than GDK_FILTER_CONTINUE. (#135552)
3178
3179 2005-03-29  Matthias Clasen  <mclasen@redhat.com>
3180
3181         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_set_visible_func): 
3182         Document the need to refilter if parameters of the visibility function
3183         change.  (#169516, Olivier Sessink)     
3184
3185 Mon Mar 28 15:13:42 2005  Søren Sandmann  <sandmann@redhat.com>
3186
3187         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Don't
3188         invalidate areas that are covered by mapped input-output child
3189         windows. Bug 141380.
3190
3191 2005-03-28  Jeroen Zwartepoorte  <jeroen.zwartepoorte@gmail.com>
3192
3193         * gtk/gtkfilechooserdefault.c: (update_preview_widget_visibility): Make
3194         the preview label ellipsize so the dialog layout stays constant.
3195         (#171398)
3196
3197 2005-03-28  Matthias Clasen  <mclasen@redhat.com>
3198
3199         * gtk/gtktreeview.c (gtk_tree_view_key_press): Don't pop up
3200         the context menu of the search entry if it is not visible.
3201         (#169534, Billy Biggs)
3202
3203 2005-03-27  Tor Lillqvist  <tml@novell.com>
3204
3205         * configure.in: Apparently AC_LIBTOOL_WIN32_DLL isn't deprecated
3206         after all, and in fact necessary with HEAD libtool.
3207
3208 2005-03-26  Matthias Clasen  <mclasen@redhat.com>
3209
3210         * gtk/*.c: 
3211         * gdk/gdkdisplaymanager.c: 
3212         Use canonical names for g_object_notify() as well. 
3213
3214 2005-03-24  Tor Lillqvist  <tml@novell.com>
3215
3216         * configure.in (GTK_EXTRA_CFLAGS): Include the -mms-bitfields flag
3217         in GTK_EXTRA_CFLAGS on Win32, so that it gets included in the
3218         gtk+-2.0.pc file and automatically used by dependents. MSVC users
3219         who use pkg-config will have to manually edit it out from
3220         gtk+-2.0.pc, sorry. Maybe pkg-config should be enhanced to support
3221         some kind of conditionals in .pc files?
3222
3223 2005-03-23  Matthias Clasen  <mclasen@redhat.com>
3224
3225         * gtk/gtkfilechooserbutton.c (update_combo_box): Remove
3226         a call whose result was unused and leaked.  (#170776,
3227         Kjartan Maraas)
3228
3229         Some cleanups to the GtkDialog code:  (#170746, 
3230         Morten Welinder)
3231         * gtk/gtkdialog.c (action_widget_activated): Simplify,
3232         use _gtk_dialog_get_response_for_widget.
3233         (gtk_dialog_add_action_widget): Use the correct signal
3234         id for non-buttons.
3235         (gtk_dialog_set_response_sensitive): 
3236         (gtk_dialog_set_default_response): Use get_response_data.
3237         (gtk_dialog_run): Don't disconnect the signals if the
3238         dialog was destroyed while running.
3239
3240 Tue Mar 22 14:16:31 2005  Manish Singh  <yosh@gimp.org>
3241
3242         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label):
3243         Use g_return_if_fail, not g_return_val_if_fail.
3244
3245 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
3246
3247         Implement bookmark renaming  (#136216, Sean Middleditch)
3248         
3249         * gtk/gtkfilesystem.h (struct _GtkFileSystemIface): Add 
3250         get_bookmark_label and set_bookmark_label vfuncs.
3251
3252         * gtk/gtkfilesystem.h:
3253         * gtk/gtkfilesystem.c (gtk_file_system_set_bookmark_label): 
3254         (gtk_file_system_get_bookmark_label): Wrappers for the
3255         vfuncs.
3256
3257         * gtk/gtk.symbols: Add new exported symbols.
3258
3259         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_set_bookmark_label): 
3260         (gtk_file_system_unix_get_bookmark_label): Implementations
3261         for the Unix backend.
3262
3263         * gtk/gtkfilechooserdefault.c: Add a context menu to
3264         the bookmarks pane, and allow to rename bookmarks.
3265
3266 2005-03-22  Matthias Clasen  <mclasen@redhat.com>
3267
3268         * gtk/gtkpathbar.c (gtk_path_bar_unmap): 
3269         * gtk/gtkspinbutton.c (gtk_spin_button_unmap): 
3270         * gtk/gtknotebook.c (gtk_notebook_unmap): 
3271         * gtk/gtkrange.c (gtk_range_unmap): Stop scrolling when
3272         the widget is unmapped.  (#168791, Ryan Lortie)
3273
3274 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
3275
3276         * gtk/gtkprivate.h: Define macros GTK_PARAM_READABLE,
3277         GTK_PARAM_WRITABLE, GTK_PARAM_READWRITE which are like
3278         their G_ counterparts, but also mark the name, nick
3279         and blurb as static.
3280
3281         * gtk/*.c: Mark param spec strings as static, using
3282         the new macros.
3283
3284         * gtk/gtkspinbutton.h: Fix a typo.
3285
3286 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
3287
3288         * gtk/gtkcellrendererprogress.c: 
3289         * gtk/gtkcellrendererpixbuf.c: 
3290         * gtk/gtkcellrenderercombo.c: 
3291         * gtk/gtkcellrenderer.c: 
3292         * gtk/gtkcalendar.c: 
3293         * gtk/gtkbutton.c: 
3294         * gtk/gtkbox.c: 
3295         * gtk/gtkbbox.c: 
3296         * gtk/gtkaspectframe.c: 
3297         * gtk/gtkarrow.c: 
3298         * gtk/gtkalignment.c: 
3299         * gtk/gtkactiongroup.c: 
3300         * gtk/gtkaction.c:
3301         * gtk/gtkaccellabel.c: 
3302         * gtk/gtkaboutdialog.c: Mark param spec strings as static.
3303
3304         * gdk/gdkpango.c (gdk_pango_renderer_class_init): 
3305         * gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Mark
3306         param spec strings as static.
3307
3308 2005-03-21  Tor Lillqvist  <tml@novell.com>
3309
3310         * modules/engines/ms-windows/*.c: Silence gcc warnings (unused
3311         variables, unhandled enum value in switch). Use g_object_unref()
3312         instead of deprecated gdk_gc_unref() and gdk_drawable_unref().
3313
3314         * modules/engines/ms-windows/xp_theme.c (xp_theme_map_gtk_state): 
3315         Add missing "case" keyword.
3316
3317         * modules/engines/ms-windows/Makefile.am: Link with -lgdi32
3318         explicitly.
3319
3320 2005-03-20  Tor Lillqvist  <tml@novell.com>
3321
3322         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Return the
3323         Terminal Services session number, window station name (always
3324         "WinSta0" in interactive processes), and desktop name (typically
3325         "Default"), concatenated with backslash separators.
3326         (gdk_display_open): Accept only NULL or the string
3327         gdk_display_get_name() returns as display name.
3328
3329 2005-03-20  Matthias Clasen  <mclasen@redhat.com>
3330
3331         Make PLT-reduction work with gcc4, and don't include
3332         everything in gdkalias.h:
3333         
3334         * gtk/grk.symbols: Group symbols by header and source file.
3335         * gtk/makegtkalias.pl: Protect definitions by the same 
3336         preprocessor symbols used to guard the headers. Move
3337         the alias declarations to a separate file which is 
3338         produced when calling makegtkalias.pl -def
3339         * gdk/Makefile.am (gtkaliasdef.c): Add a rule to generate 
3340         this file.
3341         * gtk/*.c: Include gtkalias.h after the other headers, 
3342         include gtkaliasdef.c at the bottom.
3343         * gtk/*.h: Small cleanups.
3344
3345 Fri Mar 18 23:59:49 2005  Soeren Sandmann  <sandmann@redhat.com>
3346
3347         * gtk/gtkmenutoolbutton.c (arrow_button_button_press_event_cb):
3348         Make right-clicks not pop up the menu.
3349
3350 2005-03-18  Owen Taylor  <otaylor@redhat.com>
3351
3352         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_drawable_finish): 
3353         Call cairo_surface_finish()
3354
3355         * gdk/gdkinternals.c gdk/x11/gdkdrawable-x11.c: Remoev
3356         _gdk_windowing_set_surface_device_offset().
3357
3358 2005-03-18  Tor Lillqvist  <tml@novell.com>
3359
3360         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
3361         WM_MOUSEMOVE, don't check if this process owns the active
3362         window. This makes cross-application widget embedding work better.
3363         On WM_MOVE, don't bother checking for window visibility.
3364
3365         * gdk/win32/gdkim-win32.c: Remove bogus empty doc comment. Remove
3366         unused variables. Add some casts to silence gcc.
3367
3368 2005-02-24  Owen Taylor  <otaylor@redhat.com>
3369
3370         * gdk/gdkwindow.c: Use cairo_set_device_offset().
3371
3372         * gdk/win32/gdkdrawable-win32.[ch] gdk/win32/gdkwindow-win32.c
3373         gdk/win32/gdkpixmap-win32.c: 
3374         Add_gdk_win32_drawable_acquire/release_dc() to get a DC for the 
3375         drawable. Add _gdk_drawable_win32_finish() to clean up resources
3376         when a drawable is destroyed.
3377
3378         * gdk/win32/gdkgc-win32.c gdk/win32/gdkdrawable-win32.c
3379         (blit_from_pixmap) gdk/win32/gdkprivate-win32.h : Use 
3380         acquire/release_dc when getting a DC to use with a GC or for 
3381         blitting from a pixmap.
3382
3383         * gdk/win32/gdkdrawable-win32.[ch]: Implement ref_cairo_surface()
3384
3385         * gdk/win32/gdkpango-win32.c gdk/win32/gdkdrawable-win32.c Makefile.am:
3386         Remove gdk_screen_get_pango_context(), draw_glyph[_transformed]
3387         implementations.
3388
3389         * gdk/win32/gdkdrawable-win32.c: Remove 
3390         gdk_draw_rectangle_alpha_libgtk_only()
3391
3392 2005-03-17  Owen Taylor  <otaylor@redhat.com>
3393
3394         * gdk/gdkpango.c: Fix get_stipple_surface to actually work, set
3395         EXTEND_REPEAT on the stipple pattern.
3396
3397 2005-03-17  Matthias Clasen  <mclasen@redhat.com>
3398
3399         * gtk/gtklabel.c (gtk_label_set_markup): Fix formatting
3400         in example in the docs.  (#170611, Jianfei Wang)
3401
3402         * gtk/gtkiconview.c (gtk_icon_view_size_allocate): Clamp
3403         adjustment values on resize.  (#170567, Tomislav Jonjic)
3404
3405         * gtk/gtkicontheme.c (theme_lookup_icon): Don't crash
3406         if there is no cache.  (#170652, Diego Gonzalez)
3407         
3408         * gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix): 
3409         Make inline completion insert the prefix at the
3410         right spot.  (#170146, Doug Quale)
3411
3412 2005-03-17  Tor Lillqvist  <tml@novell.com>
3413
3414         * gdk/gdkkeynames.c: gdk_key is a typedef, not a struct tag.
3415
3416 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
3417
3418         * gtk/gtkprogressbar.c (gtk_progress_bar_get_ellipsize): 
3419         Typo fix in the docs.
3420         
3421         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_set_arrow_tooltip): 
3422         Typo fix in the docs.
3423
3424         * gtk/gtkiconview.c (gtk_icon_view_set_columns) 
3425         (gtk_icon_view_get_columns, gtk_icon_view_set_item_width) 
3426         (gtk_icon_view_get_item_width, gtk_icon_view_set_spacing) 
3427         (gtk_icon_view_get_spacing, gtk_icon_view_set_row_spacing) 
3428         (gtk_icon_view_set_column_spacing) 
3429         (gtk_icon_view_get_row_spacing, gtk_icon_view_get_margin) 
3430         (gtk_icon_view_set_margin): Add docs.
3431         
3432         * gtk/gtkcellview.c (gtk_cell_view_get_displayed_row): 
3433         Add docs.
3434
3435 2005-03-15  Owen Taylor  <otaylor@redhat.com>
3436
3437         * gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkpixmap.c gdk/gdkwindow.c 
3438         gdk/x11/gdkdrawable-x11.c gdk/x11/gdkpixmap-x11.c gdk/x11/gdkwindow-x11.c
3439         gdk/gdkinternals.h: Switch set_cairo_target() virtual function to
3440         ref_cairo_surface()
3441
3442         * gdk/gdkdrawable.h gdk/gdkdraw.h: Switch set_cairo_target() virtual
3443         function to create_cairo_context()
3444
3445         * gdk/gdkwindow.c: Clear double buffer pixmaps with Cairo.
3446
3447         * gdk/x11/gdkwindow-x11.c: Keep all components in GdkWindowObject.bg_color,
3448         not just the pixel.
3449
3450         * tests/testcairo.c: Update for create_cairo_context()
3451
3452         * gdk/gdkdraw.c (gdk_draw_trapezoids, gdk_draw_glyphs[_transformed]):
3453         Reimplement in terms of Cairo, bypass the vtable entries.
3454
3455         * gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
3456         gdk/x11/gdkgc-x11.c gdk/x11/gdkpango-x11.c
3457         gdk/x11/gdkprivate-x11.h gdk/x11/Makefile.am: Remove
3458         implementation of draw_trapezoids / draw_glyphs[_transformed].
3459
3460         * gdk/gdkpango.c: Switch GdkPangoRenderer to use Cairo
3461
3462         * gdk/gdkpango.c gdk/x11/gdkpango-x11.c: Move
3463         gdk_pango_context_get_for_screen() into the backend independent code.
3464
3465         * gdk/x11/gdkdrawable-x11.[ch]: Remove Xft use, use RENDER directly
3466         for drawing images.
3467
3468         * gdk/gdkdrawable.h gdk/x11/gdkdrawable-x11.c: Remove
3469         gdk_draw_rectangle_alpha_libgtk_only.
3470
3471         * gdk/gdkpixbuf.h gdk/gdkpixbuf-render.c: Add 
3472         gdk_pixbuf_set_as_cairo_source()
3473
3474         * gdk/gdk.symbols: Update
3475
3476         * gtk/gtkcolorsel.c gtk/gtkhsv.c gtk/gtkiconview.c gtk/gtkruler.[ch]
3477         gtk/gtk[hv]ruler.c: Convert to Cairo rendering.
3478
3479         * gtk/gtkstyle.c (gtk_default_draw_check, gtk_default_draw_focus,
3480         gtk_default_draw_option): Switch to Cairo. Simplify the checkbutton,
3481         radio button style for now to get something more scalable.
3482
3483         *  gtk/gtksettings.c: #if 0 out the code to use PangoXft for hinting/
3484         antialiasing/dpi settings.
3485
3486 2005-03-16  Matthias Clasen  <mclasen@redhat.com>
3487
3488         * demos/gtk-demo/editable_cells.c: Also demonstrate
3489         GtkCellRenderer::editing-started and separators.
3490
3491 Tue Mar 15 20:34:33 2005  Manish Singh  <yosh@gimp.org>
3492
3493         * gdk/x11/gdkinput-xfree.c: #include gdkaliasdef.c here too.
3494
3495 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
3496
3497         Make PLT-reduction work with gcc4, and don't include
3498         everything in gdkalias.h:
3499
3500         * gdk/gdk.symbols: Group symbols by header and source file.
3501         * gdk/makegdkalias.pl: Protect definitions by the same
3502         preprocessor symbols used to guard the headers. Move
3503         the alias declarations to a separate file which is
3504         produced when calling makegdkalias.pl -def
3505         * gdk/Makefile.am (gdkaliasdef.c): Add a rule to generate this
3506         file.
3507         * gdk/*.c, gdk/x11/*.c: Include gdkalias.h after the other
3508         headers, include gdkaliasdef.c at the bottom.
3509
3510 2005-03-16  Tor Lillqvist  <tml@novell.com>
3511
3512         * gdk/win32/gdkdisplay-win32.c (_win32_on_clipboard_change): Print
3513         debugging output only if asked for, not always.
3514
3515         * gdk/win32/*.c: Use the %+d%+d format for coordinate pairs in
3516         debugging printout instead of +%d+%d. Misc other additions and
3517         cosmetic improvements to debugging printouts. Use API_CALL() and
3518         GDI_CALL() macros in more places.
3519
3520         * gdk/win32/gdkwindow-win32.c (gdk_window_move, gdk_window_resize,
3521         gdk_window_move_resize): To detect child windows, check whether
3522         the real parent is not the desktop window, instead of relying on
3523         the GDK window type being GDK_WINDOW_CHILD. Foreign GtkPlug
3524         windows have a GDK window type GDK_WINDOW_FOREIGN, but are still
3525         de facto child windows.
3526
3527         * gdk/win32/gdkprivate-win32.h
3528         * gdk/win32/*.c: Drop global variable _gdk_root_window, just call
3529         GetDesktopWindow(). Rename the GdkWindow* _gdk_parent_root to
3530         _gdk_root.
3531
3532         * gdk/win32/gdkwindow-win32.h (GdkWindowImplWin32): Add
3533         toplevel_window_type field.
3534
3535         * gdk/win32/gdkwindow-win32.c: As there is only one root window in
3536         GDK on Win32, we can compare directly to _gdk_root instead of
3537         checking the window type.
3538         (gdk_window_reparent): When reparenting a child of the desktop
3539         clear out the window decorations. Correspondingly, when
3540         reparenting to the desktop, add decorations. As in the X11
3541         backend, save the window type of a toplevel window when
3542         reparenting, in case it is reparented back to toplevel.
3543
3544 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
3545
3546         * gtk/gtkradioaction.c (gtk_radio_action_get_group): Add an
3547         example for manually setting up a group of actions.
3548
3549         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
3550         Document that inline completion requires text-column to be set.
3551         (gtk_entry_completion_compute_prefix): Return NULL if text-column
3552         is not set.
3553
3554         * gtk/gtkentry.c (check_completion_callback): Call 
3555         gtk_entry_completion_complete() before inserting the prefix,
3556         otherwise the prefix may depend on (random) state of the
3557         filter model.  
3558
3559 2005-03-15  Anders Carlsson  <andersca@imendio.com>
3560
3561         * docs/iconcache.txt:
3562         Update spec.
3563         
3564         * gtk/gtkiconcache.c: (find_image_offset),
3565         (_gtk_icon_cache_get_icon_flags), (_gtk_icon_cache_add_icons),
3566         (_gtk_icon_cache_get_icon), (_gtk_icon_cache_get_icon_data):
3567         * gtk/gtkiconcache.h:
3568         Update to be able to fetch pixbuf data and icon metadata.
3569         
3570         * gtk/gtkicontheme.c: (theme_lookup_icon), (gtk_icon_info_free),
3571         (icon_info_ensure_scale_and_pixbuf):
3572         Use new cache functions.
3573         
3574         * gtk/updateiconcache.c: (foreach_remove_func), (load_icon_data),
3575         (maybe_cache_image_data), (scan_directory), (write_pixdata),
3576         (get_image_meta_data_size), (get_image_pixel_data_size),
3577         (get_image_data_size), (get_single_node_size), (get_bucket_size),
3578         (write_bucket), (main):
3579         Update to write pixbuf data as well as information from .icon
3580         files.
3581         
3582 2005-03-15  Tor Lillqvist  <tml@novell.com>
3583
3584         * gdk/win32/gdkmain-win32.c (_gdk_win32_key_to_string): New
3585         debugging function. As GetKeyNameText() returns a localized key
3586         name we need to convert it to UTF-8.
3587
3588         * gdk/win32/gdkprivate-win32.h: Declare it.
3589
3590         * gdk/win32/gdkevents-win32.c: Use it.
3591
3592         * gdk/win32/gdkwindow-win32.c (gdk_window_new_internal): Fix
3593         handling of children of foreign windows. They should be child
3594         windows from Windows's perspective, even if they are toplevel GDK
3595         windows.
3596
3597 2005-03-13  Ivan, Wong Yat Cheung  <email@ivanwong.info>
3598
3599         * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): A further fix
3600         for big window support. Now also the test in testgtk works.
3601
3602 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
3603
3604         * gtk/gtkaboutdialog.c (add_credits_page): Don't crash on
3605         style changes.  (#169334, Yury Puzis)
3606
3607         * gtk/gtkicontheme.c (gtk_icon_theme_set_custom_theme): Fix
3608         the doc comments.  (#169967, Masao Mutoh)
3609
3610 2005-03-12  Ivan, Wong Yat Cheung  <email@ivanwong.info>
3611
3612         Big window fix for Win32. Big windows are still emulated within
3613         16-bit coordinate limits, though. Big windows now work on NT-based
3614         Windows. (#169989)
3615
3616         * gdk/win32/gdkgc-win32.c (_gdk_win32_gdkregion_to_hrgn): Use
3617         32-bit coordinates.
3618
3619         * gdk/win32/gdkgeometry-win32.c: Largely rewrite.
3620
3621         * gdk/win32/gdkwindow-win32.c: Minor related changes.
3622         
3623 2005-03-10  Matthias Clasen  <mclasen@redhat.com>
3624
3625         * gtk/gtkliststore.c (gtk_list_store_insert_with_valuesv): 
3626         Fix a doc typo.  (#169873, Johan Dahlin)
3627
3628         * gtk/gtkdialog.c (gtk_dialog_map): Don't
3629         try to focus the default_widget if there is 
3630         none.  (#169881, Thomas Leonard)
3631
3632 Wed Mar  9 19:20:44 2005  Manish Singh  <yosh@gimp.org>
3633
3634         * configure.in: Remove inadvertent gail references, require
3635         Pango 1.9.0
3636
3637 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
3638
3639         * configure.in: Require GLib 2.7.0
3640
3641 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
3642
3643         * gtk/gtkwidget.h (struct _GtkWidget): Typo fixes in comments.
3644         (#169728, Morten Welinder, Owen Taylor)
3645
3646         * gtk/gtkwidget.c (gtk_widget_add_mnemonic_label): Fix a typo
3647         in the docs.  (#169729, Morten Welinder)
3648
3649         * gtk/gtkimage.c (gtk_image_class_init): Fix a typo.
3650
3651         * gtk/gtkiconview.c (gtk_icon_view_set_model): Queue a resize 
3652         when the model is unset.  (#169528, Tomislav Jonjic)
3653
3654 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
3655
3656         * gtk/gtkviewport.c (gtk_viewport_class_init): 
3657         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): 
3658         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_class_init): 
3659         * gtk/gtktipsquery.c (gtk_tips_query_class_init): 
3660         * gtk/gtktext.c (gtk_text_class_init): 
3661         * gtk/gtkstatusbar.c (gtk_statusbar_class_init): 
3662         * gtk/gtkspinbutton.c (gtk_spin_button_class_init): 
3663         * gtk/gtktoggleaction.c (gtk_toggle_action_class_init): 
3664         * gtk/gtkoptionmenu.c (gtk_option_menu_class_init): 
3665         * gtk/gtkoldeditable.c (gtk_old_editable_class_init): 
3666         * gtk/gtkmessagedialog.c (gtk_message_dialog_class_init): 
3667         * gtk/gtktoolbutton.c (gtk_tool_button_class_init): 
3668         * gtk/gtktoolitem.c (gtk_tool_item_class_init): 
3669         * gtk/gtkimage.c (gtk_image_class_init): 
3670         * gtk/gtkruler.c (gtk_ruler_class_init): 
3671         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
3672         * gtk/gtkprogressbar.c (gtk_progress_bar_class_init): 
3673         * gtk/gtkprogress.c (gtk_progress_class_init): 
3674         * gtk/gtkmenu.c (gtk_menu_class_init): 
3675         * gtk/gtkscale.c (gtk_scale_class_init): 
3676         * gtk/gtkpaned.c (gtk_paned_class_init): 
3677         * gtk/gtkhandlebox.c (gtk_handle_box_class_init): 
3678         * gtk/gtkfontbutton.c (gtk_font_button_class_init): 
3679         * gtk/gtkfontsel.c (gtk_font_selection_class_init): 
3680         * gtk/gtkfilesel.c (gtk_file_selection_class_init): 
3681         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
3682         * gtk/gtkcurve.c (gtk_curve_class_init): 
3683         * gtk/gtkcombo.c (gtk_combo_class_init): 
3684         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
3685         * gtk/gtkcolorbutton.c (gtk_color_button_class_init): 
3686         * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): 
3687         * gtk/gtkmenuitem.c (gtk_menu_item_class_init): 
3688         * gtk/gtkcheckbutton.c (gtk_check_button_class_init): 
3689         * gtk/gtktogglebutton.c (gtk_toggle_button_class_init): 
3690         * gtk/gtkcellview.c (gtk_cell_view_class_init): 
3691         * gtk/gtktoolbar.c (gtk_toolbar_class_init): 
3692         * gtk/gtkmenubar.c (gtk_menu_bar_class_init): 
3693         * gtk/gtkclist.c (gtk_clist_class_init): 
3694         * gtk/gtkctree.c (gtk_ctree_class_init): 
3695         * gtk/gtkcolorsel.c (gtk_color_selection_class_init): 
3696         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init): 
3697         * gtk/gtkcellrenderercombo.c (gtk_cell_renderer_combo_class_init): 
3698         * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_class_init): 
3699         * gtk/gtkcalendar.c (gtk_calendar_class_init): 
3700         * gtk/gtkbbox.c (gtk_button_box_class_init): 
3701         * gtk/gtktable.c (gtk_table_class_init): 
3702         * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): 
3703         * gtk/gtkframe.c (gtk_frame_class_init): 
3704         * gtk/gtkaction.c (gtk_action_class_init): 
3705         * gtk/gtkaccellabel.c (gtk_accel_label_class_init): 
3706         * gtk/gtkaboutdialog.c (gtk_about_dialog_class_init): 
3707         * gtk/gtkdialog.c (gtk_dialog_class_init): More of the same.
3708
3709 2005-03-08  Matthias Clasen  <mclasen@redhat.com>
3710
3711         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): 
3712         * gtk/gtkrange.c (gtk_range_class_init): 
3713         * gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init): 
3714         * gtk/gtktexttag.c (gtk_text_tag_class_init): 
3715         * gtk/gtktextview.c (gtk_text_view_class_init): 
3716         * gtk/gtkscrollbar.c (gtk_scrollbar_class_init): 
3717         * gtk/gtknotebook.c (gtk_notebook_class_init): 
3718         * gtk/gtkentry.c (gtk_entry_class_init): 
3719         * gtk/gtkexpander.c (gtk_expander_class_init): 
3720         * gtk/gtkarrow.c (gtk_arrow_class_init): 
3721         * gtk/gtkalignment.c (gtk_alignment_class_init): 
3722         * gtk/gtkbutton.c (gtk_button_class_init): 
3723         * gtk/gtklabel.c (gtk_label_class_init): 
3724         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init): 
3725         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
3726         * gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init): 
3727         * gtk/gtktreeview.c (gtk_tree_view_class_init): 
3728         * gtk/gtkbox.c (gtk_box_class_init): 
3729         * gtk/gtkwindow.c (gtk_window_class_init, gtk_window_class_init): 
3730         * gtk/gtkcontainer.c (gtk_container_class_init): 
3731         * gtk/gtkwidget.c (gtk_widget_class_init): 
3732         * gtk/gtkobject.c (gtk_object_class_init): Use canonical names
3733         when registering param specs.
3734
3735         * demos/gtk-demo/editable_cells.c: Use GtkCellRendererCombo
3736         (#169607, Mark McLoughlin)
3737         
3738         * gtk/gtk.symbols: Add the new attributes here, too.
3739
3740         * gtk/gtkwidget.h: 
3741         * gtk/gtktreeview.h: 
3742         * gtk/gtktreeviewcolumn.h: 
3743         * gtk/gtktextbuffer.h: 
3744         * gtk/gtkobject.h: 
3745         * gtk/gtkfilechooserdialog.h: 
3746         * gtk/gtkdialog.h: 
3747         * gtk/gtkcontainer.h: 
3748         * gtk/gtkcelllayout.h: 
3749         * gtk/gtkaboutdialog.h: Use G_GNUC_NULL_TERMINATED where
3750         appropriate.  (#165682, Marc Meissner)
3751
3752 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
3753
3754         Convert the gdk keyval-keyname tables to a big string
3755         + offsets. (#168901)
3756         
3757         * gdk/gen-keyname-table.pl: Perl script inspired by
3758         pango/tools/gen-color-table.pl to create the 
3759         gdk_keys_by_keyval and gdk_keys_by_name tables as lists
3760         of offsets pointing into a big const string.
3761         
3762         * gdk/keynames.txt: List of keyval-keyname pairs.
3763         * gdk/keyname-table.h: Generated tables.
3764
3765         * gdk/gdkkeynames.c: Include keyname-table.h and don't
3766         generate the inverse table at runtime.
3767
3768 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
3769
3770         * gtk/gtkstyle.c: Document which parameters may be NULL.  
3771         (#166855, Frank Naumann)
3772
3773 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
3774
3775         * AUTHORS: Add original authors of incorporated software.
3776
3777 Thu Mar  3 16:59:44 2005  Manish Singh  <yosh@gimp.org>
3778
3779         * configure.in: URL escape the '+' in gtk+ in the bugzilla URL.
3780
3781 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
3782
3783         * gtk/gtksettings.c (gtk_settings_get_property): 
3784         * gtk/gtkrc.c (gtk_rc_parse_assignment): Don't leak 
3785         the values here.  (#169047, Philip Langdale)
3786
3787         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
3788         Don't warn if a stock icon cannot be found.  (#168830,
3789         Sven Neumann)
3790
3791 2005-03-03  Matthias Clasen  <mclasen@redhat.com>
3792
3793         * gtk/gtkwidget.c (gtk_widget_reparent_subwindows): 
3794         Avoid warnings if gtk_widget_reparent() is called at
3795         unusual times.  (#168966, Christian Persch)
3796
3797 Tue Mar  1 14:04:08 2005  Manish Singh  <yosh@gimp.org>
3798
3799         * gdk/x11/gdkproperty-x11.c (virtual_atom_check_init): Cast to avoid
3800         const warnings on data structure seeding.
3801
3802 Tue Mar  1 13:53:56 2005  Manish Singh  <yosh@gimp.org>
3803
3804         * gtk/xdgmime/xdgmime.[ch]: revert previous change, maintain ABI.
3805
3806 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
3807
3808         * gtk/gtkmenutoolbutton.c (button_state_changed_cb): 
3809         Fix prelighting.  (#157392, Vincent Noel, patch by
3810         Christian Persch)
3811
3812         * gtk/gtkicontheme.c (theme_lookup_icon): Make 
3813         icon data caching work again.  (#168851, Alexander Larsson)
3814
3815         * gdk-pixbuf/gdk-pixbuf.c:
3816         * gdk-pixbuf/gdk-pixbuf-features.h.in:
3817         Revert the previous change, since it breaks
3818         bin compat.
3819
3820 2005-03-01  Matthias Clasen  <mclasen@redhat.com>
3821
3822         * gdk/gdkkeyuni.c
3823         * gdk/gdkpixbuf-drawable.c
3824         * gdk/gdkrgb.c
3825         * gdk/x11/gdkdnd-x11.c
3826         * gdk/x11/gdkevents-x11.c
3827         * gdk/x11/gdkproperty-x11.c
3828         * gdk/x11/gdkvisual-x11.c
3829         * gdk-pixbuf/gdk-pixbuf.c
3830         * gdk-pixbuf/gdk-pixbuf-features.h.in
3831         * gtk/gtkaction.c
3832         * gtk/gtkbindings.c
3833         * gtk/gtkcolorbutton.c
3834         * gtk/gtkcombo.c
3835         * gtk/gtkcontainer.c
3836         * gtk/gtkfilechooserdefault.c
3837         * gtk/gtkfilesel.c
3838         * gtk/gtkgamma.c
3839         * gtk/gtkiconview.c
3840         * gtk/gtkinputdialog.c
3841         * gtk/gtkitemfactory.c
3842         * gtk/gtkmenu.c
3843         * gtk/gtktextview.c
3844         * gtk/gtktooltips.c
3845         * gtk/gtktreedatalist.c
3846         * gtk/gtkuimanager.c
3847         * gtk/tree_minus.xpm
3848         * gtk/tree_plus.xpm
3849         * gtk/xdgmime/xdgmime.c
3850         * gtk/xdgmime/xdgmime.h: 
3851         Move constant data to .rodata.
3852
3853 2005-02-27  Matthias Clasen  <mclasen@redhat.com>
3854
3855         * gtk/gtkaction.c (connect_proxy): Improve the handling
3856         of buttons as action proxys.  (#165534, Milosz Derezynski)
3857
3858         * gtk/gtklabel.c (gtk_label_size_request): Fix a typo.
3859         (#168646, Vincent Untz)
3860
3861         * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
3862         Unset "focus-on-click" for the save folder combo.  (#168688,
3863         Sven Neumann)
3864
3865 2005-02-25  Matthias Clasen  <mclasen@redhat.com>
3866
3867         * demos/testpixbuf.c (main): Remove a C++ comment.  (#168531, 
3868         Paul Cornett)
3869
3870         * gtk/gtkcombobox.c (gtk_combo_box_menu_fill_level): Don't leak a 
3871         path here.  (#168443, Morten Welinder)
3872
3873 2005-02-24  Robert Ögren  <gtk@roboros.com>
3874
3875         Implement better handling of Wintab tablet context overlap on
3876         Win32. (#167298)
3877
3878         * gdk/win32/gdkinput-win32.c (_gdk_input_set_tablet_active): New
3879         function that brings any tablet contexts to the top of the overlap
3880         order.
3881         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_set_tablet_active ()
3882         * gdk/win32/gdkevents-win32.c (gdk_event_translate):
3883         Call _gdk_input_set_tablet_active when a window is activated (on
3884         WM_ACTIVATE)
3885
3886 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
3887
3888         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_select_path): 
3889         Don't leak parent_path.  (#168435, Morten Welinder)
3890
3891 Thu Feb 24 14:20:16 2005  Søren Sandmann  <sandmann@redhat.com>
3892
3893         * gtk/gtkstyle.c: Add
3894
3895         g_return_if_fail (style->depth == gdk_drawable_get_depth(window));
3896
3897         all over the place.
3898
3899 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
3900
3901         * gtk/gtkcombobox.c: Consistently use gtk_tree_row_reference_valid().
3902         (gtk_combo_box_model_row_deleted): Update the displayed row in 
3903         the cell_view.  (#167842, Gustavo Carneiro)
3904
3905 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
3906
3907         Fix #167259, reported by  Christian Persch:
3908         
3909         * gtk/gtkwidget.c (gtk_widget_unparent): Unmap the reparented 
3910         widget, even if we avoid the unrealizing. 
3911         (gtk_widget_reparent_subwindows): Make reparenting work for
3912         !NO_WINDOW widgets which have other windows which are siblings
3913         of widget->window (as e.g. GtkSpinButton).
3914
3915 2005-02-24  Matthias Clasen  <mclasen@redhat.com>
3916
3917         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_changed): 
3918         Don't emit a warning if a parent node is filtered out. (#164726,
3919         Olivier Sessink)
3920
3921 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
3922
3923         * gtk/gtklabel.c (gtk_label_style_set): Revert the last 
3924         change, since gtk_widget_set_style_internal() already
3925         queues a resize.
3926
3927 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
3928
3929         * gtk/gtklabel.c (gtk_label_style_set): Queue a resize, since
3930         fonts may have changed.  (#164128, Phil Blundell)
3931
3932         * gtk/gtkaboutdialog.c (gtk_about_dialog_init) 
3933         (gtk_about_dialog_new): Move initialization code from _new to 
3934         _init.  (#168249, Murray Cumming) 
3935
3936 Wed Feb 23 17:34:01 2005  Jonathan Blandford  <jrb@redhat.com>
3937
3938         * gtk/gtktreeview.c (gtk_tree_view_node_queue_redraw): Patch from
3939         jorn@nl.linux.org (Jorn Baayen) to notice changes to fixed-height
3940         widgets.
3941
3942 2005-02-23  Tor Lillqvist  <tml@novell.com>
3943
3944         * gdk/win32/gdkkeys-win32.c (update_keymap): Workaround for bug in
3945         MapVirtualKey(VK_DIVIDE, 0) in some Windows versions. (#142998)
3946
3947 Tue Feb 22 13:49:09 2005  Manish Singh  <yosh@gimp.org>
3948
3949         * gtk/updateiconcache.c: #include <config.h>
3950
3951 2005-02-22  Federico Mena Quintero  <federico@ximian.com>
3952
3953         Merged from gtk-2-6:
3954
3955         Fix #164940, patch by Ben Maurer and Tommi Komulainen.
3956
3957         * gdk/gdkrgb.c (gdk_rgb_convert_565_d): Constify the "dmp" variable.
3958         (gdk_rgb_convert_565_d): Likewise.
3959         (DM_565): Made a static const precomputed array to avoid
3960         allocating it at runtime.
3961         (gdk_rgb_preprocess_dm_565): #ifdef out.
3962
3963 2005-02-20  Matthias Clasen  <mclasen@redhat.com>
3964
3965         * gtk/gtkwindow.c: 
3966         * gtk/gtkclipboard.c: Fix links to freedesktop.org specs
3967         in the documentation.
3968
3969         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
3970         Set have_render_with_trapezoids to GDK_YES when we have 
3971         a new enough Render extension.  (#167965,Billy Biggs) 
3972
3973         * gtk/gtkwindow.c (gtk_window_present): Use the timestamp of
3974         the last user interaction when focusing the window.  (#166379, 
3975         Elijah Newren)
3976
3977 Thu Feb 17 14:58:16 2005  Manish Singh  <yosh@gimp.org>
3978
3979         * gtk/gtkuimanager.c (start_element_handler): make sure expand
3980         is initialized, cast to GTK_SEPARATOR_TOOL_ITEM.
3981
3982 Thu Feb 17 14:52:57 2005  Manish Singh  <yosh@gimp.org>
3983
3984         * gtk/gtkcombobox.c: Pass gtk_widget_get_toplevel() a GTK_WIDGET.
3985
3986 2005-02-16  Matthias Clasen  <mclasen@redhat.com>
3987
3988         * docs/iconcache.txt: Add some information about the
3989         icon cache format (since I can't locate it at freedesktop.org)
3990
3991         Fixes for #143829, Tommi Komulainen, Christian Persch:
3992         
3993         * gtk/gtktreeview.c (gtk_tree_view_destroy): Remove the
3994         typeselect_flush_timeout when destroying the widgets
3995         it is operating on.  
3996         (gtk_tree_view_ensure_interactive_directory): Add the 
3997         popup to the window group of the toplevel it belongs to.
3998
3999         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget) 
4000         (gtk_combo_box_popup): Do the same here. 
4001
4002 2005-02-14  Matthias Clasen  <mclasen@redhat.com>
4003
4004         * configure.in: Kill --enable-ansi  (#164394)
4005
4006 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
4007
4008         * gtk/gtkpathbar.c (gtk_path_bar_finalize): Stop scrolling 
4009         when the pathbar goes away.  (#167094, Rodney Dawes)
4010         (change_icon_theme): Use GTK_ICON_SIZE_MENU here as 
4011         well  (Vincent Noel)
4012
4013 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
4014
4015         Support vertical menubars  (#166632): 
4016         
4017         * gtk/gtkenums.h (GtkPackDirection): New enumeration for pack 
4018         directions, with values for left-to-right, right-to-left, 
4019         top-to-bottom and bottom-to-top.
4020
4021         * gtk/gtk.symbols: 
4022         * gtk/gtkmenubar.h: 
4023         * gtk/gtkmenubar.c: Add two properties, pack-direction and
4024         child-pack-direction, which specify how children and 
4025         grandchildren of a menubar are packed, with getters and setters. 
4026
4027         * gtk/gtkmenubar.c (gtk_menu_bar_set_property): 
4028         (gtk_menu_bar_get_property): Implement set_property and get_property.
4029
4030         * gtk/gtkmenubar.c (gtk_menu_bar_size_request): 
4031         (gtk_menu_bar_size_allocate): Take pack direction into account.
4032
4033         * gtk/gtkmenubar.c (gtk_menu_bar_move_current): Implement 
4034         move_current here move all the menubar-specific direction 
4035         tweaking from the generic menushell implementation here.
4036
4037         * gtk/gtkmenu.c (gtk_menu_move_current): Move  menu-specific 
4038         direction tweaking from the generic menushell implementation here.
4039
4040         * gtk/gtkmenuitem.c (gtk_menu_item_size_request): 
4041         (gtk_menu_bar_size_allocate): Take pack direction into account.
4042
4043         * gtk/gtkimagemenuitem.c (gtk_image_menu_item_size_request) 
4044         (gtk_image_menu_item_size_allocate): 
4045         (gtk_image_menu_item_toggle_size_request): Take child pack 
4046         direction into account and pack the image vertically if
4047         necessary.
4048
4049         * gtk/gtkmenushell.c (gtk_menu_shell_real_select_item):
4050         Set the submenu direction to left-right for menuitems in 
4051         vertical menubars.
4052         (gtk_real_menu_shell_move_current): Simplify by moving
4053         direction tweaking to menu- and menubar-specific 
4054         implementations. Take pack direction into account when
4055         doing fallbacks.
4056
4057         * tests/testmenubars.c: Test menubars in various packing
4058         direction combinations.
4059
4060         * tests/Makefile.am (noinst_PROGRAMS): Add testmenubars.
4061
4062 2005-02-11  Matthias Clasen  <mclasen@redhat.com>
4063
4064         Complete the fix for #165770, Vincent Noel:
4065         
4066         * gtk/gtkfilechooserbutton.c (FALLBACK_ICON_SIZE): Make the
4067         fallback size be 16, to be equal to the default for
4068         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
4069         (gtk_file_chooser_button_init):
4070         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
4071         GTK_ICON_SIZE_SMALL_TOOLBAR. 
4072
4073 2005-02-09  Matthias Clasen  <mclasen@redhat.com>
4074
4075         * gtk/gtkmenushell.c (gtk_real_menu_shell_move_current): Fix RTL
4076         keynav for going from menubar to menu.
4077
4078 2005-02-08  Christian Rose  <menthos@menthos.com>
4079
4080         * configure.in: Added "xh" to ALL_LINGUAS.
4081
4082 2005-02-08  Matthias Clasen  <mclasen@redhat.com>
4083
4084         * gtk/gtkuimanager.c (start_element_handler): Accept 
4085         the "expand" attribute and set a flag in the node if it
4086         is set to "true".
4087         (update_node): If the expand flag is set, make separator
4088         toolitems non-drawn and expanding.  (#166489, Christian Persch)
4089
4090 2005-02-05  Hans Breuer  <hans@breuer.org>
4091
4092         * gdk/makefile.msc gdk/win32/makefile.msc gtk/makefile.msc.in :
4093         build with Cairo dependency. The patch to acually use Cairo
4094         on win32 will be on gtk-devel-list soon.
4095         * tests/makefile.msc : add testcairo building
4096
4097         * gtk/stock-icons/makefile.msc : split command line into two to
4098         work with the shells default
4099
4100 Fri Feb  4 14:16:31 2005  Manish Singh  <yosh@gimp.org>
4101
4102         * gtk/gtkaccelgroup.c (substitute_underscores): remove unused
4103         function.
4104
4105         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
4106         Add some extra parens for bitop order of operations disambiguiation.
4107
4108         * gtk/gtkstock.c: Fix const confusion, make our own copy of the 
4109         domain when setting a translate function.
4110
4111         * tests/testcombo.c: removed unused variable.
4112
4113 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
4114
4115         * gtk/gtkstock.c (gtk_stock_lookup): Handle item->translation_domain
4116         being NULL.  (#166179, Diego Gonzalez)
4117
4118 2005-02-04  Owen Taylor  <otaylor@redhat.com>
4119
4120         * configure.in: Revert gtk_binary_version to 2.4.0. Fix
4121         up comment to talk only about backwards compat, not
4122         forward/backwards compat. (#166293, reported by Vincent Noel)
4123
4124 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
4125
4126         * gtk/gtkpaned.c (gtk_paned_compute_position): Work better
4127         when there is not enough space. This avoids a nasty size
4128         allocation loop in the file chooser.  (#154007, reported 
4129         by Milosz Derezynski, patch by Robert Ögren)
4130
4131 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
4132
4133         * gtk/gtkentry.c (gtk_entry_create_layout): Avoid spurious
4134         selection of RTL direction if the widget does not have 
4135         focus.  (#164125, Frederic Crozat)
4136
4137 Thu Feb  3 19:15:55 2005  Manish Singh  <yosh@gimp.org>
4138
4139         * gdk/x11/gdkdrawable-x11.c: #include cairo-xlib.h
4140
4141 2005-02-03  Owen Taylor  <otaylor@redhat.com>
4142
4143         * gdk/gdkdrawable.[ch] gdkpixmap.c gdkwindow.c: Add
4144         gdk_drawable_set_cairo_target().
4145
4146         * tests/testtreeflow.c (enum): Use grand not rand as a variable
4147         name because one of the cairo headers is pulling in stdlib.h.
4148
4149         * tests/testcairo.c tests/Makefile.am: Add a simple cairo based
4150         example.
4151
4152         * configure.in: Bump release to 2.7.0, gtk_binary_version to 2.7.0.
4153
4154         * Require libpangocairo for all backends.
4155
4156 2005-02-03  Tor Lillqvist  <tml@novell.com>
4157
4158         * modules/input/gtkimcontextime.c (get_pango_attr_list): Use the
4159         wide character version of ImmGetCompositionString() here,
4160         too. (#165278, Takuro Ashie)
4161
4162 2005-02-03  Matthias Clasen  <mclasen@redhat.com>
4163
4164         * gtk/gtkmenu.c (gtk_menu_handle_scrolling): Don't do
4165         one roundtrip per motion event.  (#166173, pointed out
4166         by Chris Lee, patch by Søren Sandmann)
4167
4168         * gtk/gtk.symbols: 
4169         * gtk/gtkstock.h: 
4170         * gtk/gtkstock.c (gtk_stock_set_translate_func): 
4171         New function which allows to change the function used for
4172         translation stock labels, on a per-domain basis. Use this
4173         functionality to switch the GTK+ stock items to use Q_()
4174         prefixed msgids.  (#166179, Funda Wang)
4175         
4176         * gdk/gdkkeynames.c: Make the gdk_key array const (#166075,
4177         Tommi Komulainen)
4178
4179 2005-02-02  Federico Mena Quintero  <federico@ximian.com>
4180
4181         Merged from gtk-2-6:
4182
4183         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
4184         Don't select the first row if the chooser is not mapped.  This
4185         happens when it's acting on behalf of GtkFileChooserButton.  Also,
4186         don't select the first row if we are in SAVE or CREATE_FOLDER
4187         modes --- I had missed that (see the ChangeLog entry from
4188         2005-01-18).  Fixes #165264.
4189
4190 2005-02-02  Tor Lillqvist  <tml@novell.com>
4191
4192         Implement lazy extended input initialization on Win32, by Robert
4193         Ögren. Fixes #163163, possibly #162334. Lazy initialization would
4194         be a good idea in any case even if it didn't fix any visible
4195         problems, though.
4196
4197         The Wacom tablet driver seems to get confused if Wintab is
4198         initialized but no window is shown before the process exits. This
4199         is the case for some GIMP plug-ins, for instance. 
4200
4201         * gdk/win32/gdkinput-win32.c (_gdk_input_wintab_init_check): Made
4202         non-static (and renamed).
4203         (_gdk_input_init): Don't call _gdk_input_wintab_init_check().
4204
4205         * gdk/win32/gdkinput-win32.h: Declare _gdk_input_wintab_init_check().
4206
4207         * gdk/win32/gdkinput.c (gdk_devices_list,
4208         gdk_display_list_devices, gdk_input_set_extension_events): Call
4209         _gdk_input_wintab_init_check() here instead.
4210
4211 2005-02-02  Ivan, Wong Yat Cheung  <email@ivanwong.info>
4212
4213         * gdk/win32/gdkselection.c: Use a FIFO list for storing GdkSelProp
4214         of a single window so that gtk_clipboard_request_contents() can be
4215         called inside a GtkClipboardReceivedFunc(). (#163844)
4216
4217 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
4218
4219         * gtk/gtkicontheme.c (gtk_icon_theme_init): Look for icons
4220         in XDG_DATA_DIRS/pixmaps.  (#165950, Thomas Zajic)
4221
4222         * gtk/gtkwindow.c (gtk_window_set_icon_name): Set info->icon_list
4223         to NULL after freeing it.  (#165800, Damon Chaplin)
4224
4225 2005-02-01  Michael Natterer  <mitch@gimp.org>
4226
4227         * configure.in: depend on stable pango-1.8, not unstable 1.7
4228
4229 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
4230
4231         Merged from gtk-2-6:
4232
4233         * gtk/gtkfilechooserdefault.c
4234         (browse_files_model_finished_loading_cb): Don't
4235         g_assert_not_reached() if we are in any other state.  Another code
4236         path may have triggered a folder reload.  Fixes #165556.
4237
4238 2005-02-01  Federico Mena Quintero  <federico@ximian.com>
4239
4240         Merged from gtk-2-6:
4241
4242         Fix #165770:
4243
4244         * gtk/gtkfilechooserdefault.c (FALLBACK_ICON_SIZE): Make the
4245         fallback size be 16, to be equal to the default for
4246         GTK_ICON_SIZE_MENU (in gtkiconfactory.c:init_icon_sizes()).
4247         (change_icon_theme): Use GTK_ICON_SIZE_MENU instead of
4248         GTK_ICON_SIZE_SMALL_TOOLBAR.
4249
4250 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
4251
4252         * */*.c: Fix many instances of "the the" in docs and
4253         comments.  (#165815, Masao Mutoh)
4254
4255         * gtk/updateiconcache.c (main): Add a --quiet option.
4256
4257 2005-02-01  Tor Lillqvist  <tml@novell.com>
4258
4259         * gdk/win32/gdkkeys-win32.c (handle_special, set_shift_vks,
4260         reset_after_dead, handle_dead): New functions, code blocks
4261         refactored out of update_keymap(). No functionality change.
4262
4263         (update_keymap): Use ToUnicodeEx() when available (on NT-based
4264         Windows) instead of ToAsciiEx(). Makes keyboard input work in
4265         Unicode-only input locales that don't have any ANSI codepage, for
4266         instance Hindi and Bengali. Use _gdk_input_codepage only on
4267         Win9x. (#165723)
4268
4269         * gdk/win32/gdkevents-win32.c (gdk_event_translate): On
4270         WM_INPUTLANGCHANGE, use GetLocaleInfo() instead of
4271         TranslateCharsetInfo() to get the input locale's corresponding
4272         codepage, if any.
4273
4274 2005-01-31  Matthias Clasen  <mclasen@redhat.com>
4275
4276         * modules/input/gtkimcontextxim.c: Use NULL, not 0 to terminate 
4277         NULL-terminated va lists.  (#165683)
4278
4279 2005-01-29  Matthias Clasen  <mclasen@redhat.com>
4280
4281         * gtk/gtkseparatortoolitem.c (gtk_separator_tool_item_set_draw): 
4282         Typo fix.  (#165581, Masao Mutoh)
4283
4284 Thu Jan 27 14:25:45 2005  Manish Singh  <yosh@gimp.org>
4285
4286         * README.cvs-commits: update ancient IRC info.
4287
4288 2005-01-27  Federico Mena Quintero  <federico@ximian.com>
4289
4290         Merged from gtk-2-6:
4291
4292         * gtk/gtkfilechooserdefault.c
4293         (gtk_file_chooser_default_select_path): Oops, don't assert that we
4294         can't reach the end of the function; this happens if we are still
4295         loading but don't need a path change.  Fixes #165213.
4296
4297 2005-01-27  Matthias Clasen  <mclasen@redhat.com>
4298
4299         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render): 
4300         Make wrapping work in RTL mode.  
4301
4302         * gtk/gtkaboutdialog.c: Some visual tweaks to the about dialog,
4303         obey HIG spacing a bit more, add a hand cursor when over the
4304         link button.  (#163979, Jorn Baayen)
4305
4306 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
4307
4308         * gtk/gtkentrycompletion.c (gtk_entry_completion_class_init): 
4309         Don't allow -1 as minimum-key-length.
4310         (gtk_entry_completion_set_model): Add missing notification.
4311         (gtk_entry_completion_set_minimum_key_length): Add missing
4312         notification, allow setting minimum-key-length to 0.  (#165194,
4313         Vincent Ladeuil)
4314
4315 2005-01-26  Matthias Clasen  <mclasen@redhat.com>
4316
4317         * gtk/gtkaboutdialog.c (display_license_dialog): Make sure
4318         the license dialog is initially displayed without a horizontal
4319         scrollbar.  
4320         (gtk_about_dialog_class_init): Document the fact that the 
4321         license text is not wrapped.  (#165012, Christian Rose)
4322
4323 2005-01-25  Matthias Clasen  <mclasen@redhat.com>
4324
4325         * gtk/gtkbutton.c (gtk_button_set_image): Fix docs.  (#165180,
4326         Jeff Franks)
4327
4328         * gdk/x11/gdkwindow-x11.c (gdk_window_configure_finished): Fix 
4329         docs.  (#165163, Jeff Franks)
4330         
4331         * gtk/gtkimage.c (gtk_image_get_property): Use the correct setter
4332         for a string GValue.  (#165203, Damon Chaplin)
4333
4334 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
4335
4336         * gdk/x11/gdkdisplay-x11.c (_gdk_windowing_set_default_display): 
4337         Initialize user_time from DESKTOP_STARTUP_ID.  (#165131,
4338         Elijah Newren)
4339
4340 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
4341
4342         * gtk/gtkfilechooserdefault.c: Removed leftover comments.
4343
4344 2005-01-24  Federico Mena Quintero  <federico@ximian.com>
4345
4346         Merged from gtk-2-6:
4347
4348         Fix #147785 and clean up the loading code:
4349
4350         * gtk/gtkfilechooserdefault.c (LoadState): Make the set of states
4351         be EMPTY, PRELOAD, LOADING, FINISHED.
4352         (gtk_file_chooser_default_init): Start in the LOAD_EMPTY state.
4353         (struct _GtkFileChooserDefault): Added a pending_select_paths
4354         field.
4355         (load_remove_timer): Add the new states.
4356         (load_setup_timer): Likewise.
4357         (load_timeout_cb): Likewise.  Switch to the LOAD_LOADING state.
4358         (browse_files_model_finished_loading_cb): Switch to the
4359         LOAD_FINISHED state.
4360         (enum PendingOp): Removed.
4361         (struct _GtkFileChooserDefault): Removed the pending_op and
4362         pending_select_path fields.
4363         (pending_select_paths_free): New utility function.
4364         (pending_select_paths_add): New utility function.
4365         (gtk_file_chooser_default_finalize): Call
4366         pending_select_paths_free().
4367         (pending_op_queue): Removed.
4368         (pending_op_process): Removed.
4369         (pending_select_paths_process): New function.
4370         (browse_files_model_finished_loading_cb): Call
4371         pending_select_paths_process().
4372         (center_selected_row_foreach_cb): Handle multiple selection by
4373         only centering the first row.
4374         (get_is_file_filtered): Constify.
4375         (gtk_file_chooser_default_select_path): Queue into a list of paths
4376         to select if we are not finished loading.
4377         (show_and_select_paths): New utility function.
4378         (up_folder_handler): Use pending_select_paths_add().
4379         (gtk_file_chooser_default_should_respond): Do not call
4380         pending_op_queue(); free the pending_selected_paths instead.
4381         (gtk_file_chooser_default_initial_focus): Don't queue a pending
4382         operation, and don't select the first row unconditionally --- this
4383         will happen when the folder is done loading.
4384         (shortcuts_row_activated_cb): Free the pending_select_paths.
4385         (pending_select_paths_store_selection): New utility function.
4386         (gtk_file_chooser_default_map): Call
4387         pending_select_paths_store_selection() to save the selection
4388         before reloading the folder.
4389         (select_func): Umm?  Call gtk_tree_selection_select_iter().  Don't
4390         move the cursor here; it will be done when processing the pending paths.
4391
4392         * tests/testfilechooser.c (main): Add a button to the command
4393         window to unmap and remap the file chooser.
4394
4395 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
4396
4397         * docs/tutorial/gtk-tut.sgml:
4398         * docs/tutorial/gtk_tut.sgml:
4399         * docs/reference/gtk/tmpl/gtkliststore.sgml:
4400         * gtk/gtkactiongroup.c:
4401         * gtk/gtksizegroup.c:
4402         * gtk/gtksizegroup.h:
4403         * gtk/gtktogglebutton.c: Replace "effect" by "affect" where
4404         appropriate.  (#165108, Dan Winship)
4405
4406 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
4407
4408         * gtk/gtkwidget.c (gtk_widget_class_init): Document 
4409         GtkWidget::style-set.  (#164222, Alex Graveley)
4410         
4411 2005-01-22  Matthias Clasen  <mclasen@redhat.com>
4412
4413         * gdk/gdkdisplay.h (gdk_display_add_client_message_filter_full): 
4414         Remove the accidentally added prototype for this unimplemented 
4415         function.  (#164893, Jeff Franks)
4416
4417         * gtk/gtktreeview.c (gtk_tree_view_leave_notify): Avoid spurious
4418         drags.  (#164884)
4419
4420 2005-01-23  Tor Lillqvist  <tml@novell.com>
4421
4422         * gdk/win32/gdkkeys-win32.c (update_keymap): Handle Greek tonos
4423         dead accent key. (#164859, reported and fix verified by Daniel
4424         Atallah.)
4425
4426         * gtk/gtkimcontextsimple.c (gtk_compose_seqs): Handle
4427         GDK_Greek_accentdieresis (tonos and dialytika) combining with iota
4428         and upsilon.
4429
4430         * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_volume_get_display_name): 
4431         Don't call GetVolumeInformation() for network drives. They might
4432         be disconnected, and calling GetVolumeInformation() will then
4433         cause long delays. (#164448, reported by Dave Neary.) It seems to
4434         be very hard to reliably find out whether a network drive is
4435         connected or not, so it's easier to just not try getting the
4436         volume name for them. See the bug report for discussion.
4437
4438         Make volume name display formats translatable.
4439
4440         Fix for #163702, from Ivan Wong: 
4441         
4442         * gdk/win32/gdkprivate-win32.h 
4443         * gdk/win32/gdkglobals-win32.c: New flag _ignore_destroy_clipboard.
4444         
4445         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle
4446         WM_DESTROYCLIPBOARD. Unless _ignore_destroy_clipboard, generate a
4447         GDK_SELECTION_CLEAR event.
4448
4449         * gdk/win32/gdkselection-win32.c
4450         (gdk_selection_owner_set_for_display): Set _ignore_destroy_clipboard
4451         when emptying the clipboard ourselves.
4452
4453         (gdk_selection_send_notify_for_display): Remove the artifical
4454         GDK_SELECTION_CLEAR event generation.
4455
4456 2005-01-21  Matthias Clasen  <mclasen@redhat.com>
4457
4458         * gtk/gtkwidget.c (gtk_widget_get_accessible): More details
4459         provided by Bill Haneman.
4460
4461 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
4462
4463         * gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs.  (#164725,
4464         George Kraft IV)
4465
4466         * gtk/gtkdialog.c (gtk_dialog_map): Don't loop forever
4467         here, even if the only focusable widgets are labels.
4468
4469 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
4470
4471         Support tinting in GtkCellRendererPixbuf (#162903, Jorn Baayen):
4472         
4473         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init) 
4474         Add a follow-state property which when TRUE causes the pixbuf
4475         to be tinted according to state.
4476
4477         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
4478         Use follow-state and colorize the pixbuf when appropriate.      
4479         
4480 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
4481
4482         Support wrapping in GtkCellRendererText  (#163608):
4483         
4484         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
4485         Add wrap-mode and wrap-width properties which cause a 
4486         text cell to break to a specified width when set.
4487
4488         * gtk/gtkcellrenderertext.c (get_layout): Use wrap-mode
4489         and wrap-width when they are set.
4490
4491 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
4492
4493         * gtk/gtkmodules.c (load_module): Don't reverse the order
4494         of modules when putting them in gtk_modules.  (#162676, Dennis
4495         Cranston, patch by Remus Draica)
4496
4497         * gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash 
4498         if the tree is empty.  (#164669, Priit Laes)
4499
4500 Wed Jan 19 18:57:02 2005  Manish Singh  <yosh@gimp.org>
4501
4502         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Call
4503         GDK_DISPLAY_XDISPLAY with a display, not a window. Clean up the
4504         function a bit too.
4505
4506 Wed Jan 19 17:17:31 2005  Manish Singh  <yosh@gimp.org>
4507
4508         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Squash
4509         strict aliasing warning in _NET_VIRTUAL_ROOTS code.
4510
4511 2005-01-19  Tor Lillqvist  <tml@novell.com>
4512
4513         * gdk/win32/gdkkeys-win32.c (update_keymap,
4514         gdk_keymap_translate_keyboard_state): Handle keyboards with
4515         ShiftLock (and not CapsLock) correctly. (#161814)
4516
4517 2005-01-19  Matthias Clasen  <mclasen@redhat.com>
4518
4519         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond):
4520         In save mode, don't return paths containing nonexisting 
4521         directories.  (#162443, Jean Marie Favreau)
4522
4523         * gtk/gtkobject.c (gtk_object_add_arg_type): Use GLib limit 
4524         macros to avoid sparse warnings. Pointed out by Kjartan Maraas.
4525
4526         * gdk/x11/gdkdisplay-x11.c: Precache the _NET_VIRTUAL_ROOTS
4527         atom.
4528
4529         * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): 
4530         Support _NET_VIRTUAL_ROOTS.  (#163910, Carsten Haitzler)
4531         
4532         * gdk/gdk.symbols: 
4533         * gdk/x11/gdkx.h: 
4534         * gdk/x11/gdkdisplay-x11.c (gdk_x11_display_get_user_time): 
4535         Add a function to obtain the last user interaction 
4536         time.  (#163119, Elijah Newren)
4537
4538 Tue Jan 18 13:56:09 2005  Manish Singh  <yosh@gimp.org>
4539
4540         * gtk/gtkfilechooserdefault.c (pending_op_queue): Actually assign
4541         PENDING_OP_NONE.
4542
4543 Tue Jan 18 13:46:46 2005  Manish Singh  <yosh@gimp.org>
4544
4545         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids):
4546         disambiguate nested if/else.
4547
4548 2005-01-18  Federico Mena Quintero  <federico@ximian.com>
4549
4550         Merged from gtk-2-6:
4551
4552         * gtk/gtkfilechooserdefault.c (pending_op_queue): Don't queue an
4553         operation to select the first file if we are in SAVE or
4554         CREATE_FOLDER modes.  Executing that operation would overwrite the
4555         contents of the save-name entry.
4556
4557 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
4558
4559         * gdk/gdkdisplay.h: 
4560         * gdk/x11/gdkwindow-x11.c (gdk_display_warp_pointer): 
4561         * gdk/win32/gdkwindow-win32.c (gdk_display_warp_pointer): Add
4562         pointer warping to GDK.  (#160437)
4563
4564         * gtk/gtkcolorsel.c (key_press): Use gdk_display_warp_pointer.
4565
4566 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
4567
4568         * gtk/gtkstyle.c (gtk_default_draw_check) 
4569         (gtk_default_draw_option, gtk_default_draw_handle): Add some
4570         more NULL checks, patch by Michael Natterer.
4571
4572 Tue Jan 18 10:55:47 2005  Søren Sandmann  <sandmann@redhat.com>
4573
4574         * gtk/gtkstyle.c (gtk_default_draw_handle): Check for NULL detail
4575         and NULL widget.
4576
4577         * gtk/gtkstyle.c (gtk_default_draw_box): Check for NULL detail and
4578         NULL widget.  (#164477, Michael Natterer)
4579
4580 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
4581
4582         Avoid X errors when running against servers which
4583         implement XRender < 0.4.  (#164427, Albert Chin)
4584         
4585         * gdk/x11/gdkprivate-x11.h:
4586         * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
4587         New function to check for trapezoid support in XRender.
4588         (gdk_x11_draw_trapezoids, _gdk_x11_drawable_draw_xtrapezoids): 
4589         Use it here.
4590         
4591         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add a 
4592         separate have_render_with_trapezoids field.
4593
4594         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize it.
4595
4596 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
4597
4598         * gtk/gtkiconview.c: Remove debug output. (#164376, Jens Finke)
4599
4600 Mon Jan 17 16:44:36 2005  Jonathan Blandford  <jrb@redhat.com>
4601
4602         * docs/Makefile.am (EXTRA_DIST): add tree-column-sizing.png to
4603         dist.
4604
4605 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
4606
4607         * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmarks): Save
4608         and restore the selected row in the bookmark list and the
4609         save folder combo.  (#164290)
4610
4611 2005-01-16  Matthias Clasen  <mclasen@redhat.com>
4612
4613         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_new_with_backend):
4614         Fix argument order in docs.  
4615
4616 2005-01-15  Matthias Clasen  <mclasen@redhat.com>
4617
4618         * gtk/gtktextview.c (gtk_text_view_check_keymap_direction): 
4619         * gtk/gtkentry.c (gtk_entry_create_layout): Prefer LTR over RTL 
4620         if the keymap is neutral.  (#164125, Phil Blundell)
4621
4622 2005-01-14  Matthias Clasen  <mclasen@redhat.com>
4623
4624         * gtk/gtktreeview.c (gtk_tree_view_set_search_column): Allow to
4625         reset the property to its default value -1. 
4626         (gtk_tree_view_get_search_column): Return the default value in
4627         the g_return_val_if_fail() check.  (#163864, Richard Hult)
4628
4629         * gtk/gtkcellrendererprogress.c (gtk_cell_renderer_progress_set_value): 
4630         Add a translator hint.  (#163889)
4631
4632         * configure.in: Check for _NL_TIME_FIRST_WEEKDAY too, since it
4633         is an enum value, not a define. Pointed out by Tommi Komulainen.
4634         * gtk/gtkcalendar.c (gtk_calendar_init): Adapt.
4635
4636 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
4637
4638         * configure.in: Check for nl_langinfo()
4639         * gtk/gtkcalendar.c (gtk_calendar_init): Use nl_langinfo() when it's
4640         available to determine first day of week   (#163842, Vincent Untz)
4641
4642         * gtk/gtkuimanager.c (gtk_ui_manager_get_widget): Add hints about 
4643         the lifecycle of widgets.  (#159503, Christian Persch)
4644
4645         * demos/gtk-demo/main.c (create_text): Use monospace for the 
4646         source code view.  (#163526, Theerud Lawtrakul)
4647
4648         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Use R as mnemonic
4649         for the Credits button to avoid duplicate.  (#163465, Tim-Philipp 
4650         Müller)
4651         
4652         * configure.in: Add an OS_LINUX conditional.
4653
4654         * gdk/Makefile.am (TESTS):
4655         * gdk-pixbuf/Makefile.am (TESTS):
4656         * gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
4657         Roger Leigh)
4658
4659 2005-01-13  Matthias Clasen <mclasen@redhat.com>
4660
4661         * gtk/gtktreeview.c: (gtk_tree_view_class_init),
4662         (gtk_tree_view_set_headers_clickable): Make the headers-visible
4663         property readwrite instead of just writable, and remove the
4664         g_return_if_fail check that there is a model when setting this
4665         property. Also improve the blurb.  (#163851, Richard Hult)
4666
4667 2005-01-12  Owen Taylor <otaylor@redhat.com>
4668
4669         * configure.in: Remove GLIB_DIVERT_BEFORE_HELP() on
4670         initialization of gdktarget, that was causing it to be
4671         evaluated before host was set. Simplify --with-gdktarget help
4672         message.
4673
4674         * gtk/Makefile.am: Use grep | head -n 1 instead of grep -m 1 
4675         which doesn't work with slightly older versions of GNU grep 
4676         in install-libtool-import-lib rule.
4677         
4678 2005-01-12  Tor Lillqvist  <tlillqvist@novell.com>
4679
4680         Fix for #162790, by Iwan Wong:
4681         
4682         * gdk/win32/gdkdrawable-win32.c: Implement dashed lines
4683         correctly. Simplify the interface to render_line_horizontal() and
4684         render_line_vertical(). Need to draw lines "manually" also on
4685         NT-based Windowses if we have a dash offset or are drawing
4686         double-dashed lines.
4687
4688         * gdk/win32/gdkprivate-win32.h: Keep also the dash offset,
4689         double-dash flag, and a brush for the background colour (used by
4690         the odd dashes in the double-dash line style) in the GdkGCWin32
4691         struct.
4692
4693         * gdk/win32/gdkgc-win32.c: Set up above new fields.
4694
4695 2005-01-10  Federico Mena Quintero  <federico@ximian.com>
4696
4697         Fix #162617.
4698
4699         * gtk/gtkfilesystemunix.c (STAT_NEEDED_MASK): Take out
4700         GTK_FILE_INFO_IS_HIDDEN; we don't need to stat() to know this.
4701         (gtk_file_system_unix_get_folder): Make error reporting more
4702         accurate.  Don't bail out if we can't read the directory.
4703         (fill_in_stats): Don't return an error; just assume we don't have
4704         stat info for this folder's files.
4705         (fill_in_names): Don't create the hash table for the names if we
4706         can't open the directory.
4707         (gtk_file_folder_unix_list_children): Don't emit the
4708         "finished-loading" signal --- we don't do asynchronous loads, so
4709         we are always finished loading.
4710         (gtk_file_folder_unix_get_info): Use helper functions; handle the
4711         case where we can't stat '/'.
4712         (get_icon_type_from_path): Don't call fill_in_stats() here; only
4713         use the info we have.
4714         (fill_in_mime_type): Don't return an error.  Don't do anything if
4715         we don't have the stat info.
4716
4717 2005-01-10  Owen Taylor  <otaylor@redhat.com>
4718
4719         * Makefile.am (EXTRA_DIST): Adding missing ChangeLog.pre*
4720         to EXTRA_DIST.
4721
4722 2005-01-10  Matthias Clasen  <mclasen@redhat.com>
4723
4724         * gtk/gtkaccelgroup.c (gtk_accel_group_class_init): Document
4725         signals.  (#163319, Murray Cumming)
4726
4727 2005-01-09  Tor Lillqvist  <tlillqvist@novell.com>
4728
4729         * gdk/win32/gdkwindow-win32.c (gdk_window_set_cursor): Set current
4730         cursor also when changing the cursor of a window that is the first
4731         ancestor of the window containing the pointer that has a cursor
4732         defined. (#163035, Ivan Wong)
4733
4734 2005-01-09  Anders Carlsson <andersca@gnome.org>
4735
4736         * gtk/gtkcellrenderertext.c: (get_size):
4737         * gtk/gtklabel.c: (gtk_label_size_request):
4738         * gtk/gtkprogressbar.c: (gtk_progress_bar_size_request):
4739         Don't pass NULL to pango_context_get_metrics. Use 
4740         pango_context_get_language instead, which is way faster.
4741         
4742 2005-01-08  Matthias Clasen  <mclasen@redhat.com>
4743
4744         * configure.in: Bump version
4745
4746         * === Released 2.6.1 ===
4747         
4748         * gdk-pixbuf-2.0.pc.in: Require gmodule-no-export-2.0
4749
4750 2005-01-07  Tor Lillqvist  <tml@iki.fi>
4751
4752         * gdk/win32/gdkselection-win32.c (_gdk_selection_property_store):
4753         Fix braino. (#163232, Arnaud Charlet)
4754
4755 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
4756
4757         * gtk/gtkiconview.c: Make markup_column work, and fix some
4758         layout issues when either icon or text is missing.  (#163065)
4759
4760 2005-01-06  Federico Mena Quintero  <federico@ximian.com>
4761
4762         * gtk/gtkfilechooserdefault.c (file_list_build_popup_menu): Add an
4763         "Open _Location" item.  Fixes #148839.
4764
4765 2005-01-06  Matthias Clasen  <mclasen@redhat.com>
4766
4767         * README.in: Fix a typo.  (#163128, kentaro fukuchi)
4768
4769 2005-01-06  James M. Cape  <jcape@ignore-your.tv>
4770
4771         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new)
4772         (gtk_file_chooser_button_new_with_backend): Use default title if
4773         NULL is passed.
4774
4775         * docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml: Make examples
4776         match API.
4777
4778 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
4779
4780         Fix #161409:
4781
4782         * gtk/gtkfilechooserdefault.c (shortcuts_row_activated_cb): Queue
4783         a pending operation to select the first row.
4784
4785 2005-01-05  Federico Mena Quintero  <federico@ximian.com>
4786
4787         * gtk/gtkpathbar.c (_gtk_path_bar_set_path): Don't call
4788         button_data_free() explicitly; the button is weak-reffed and the
4789         callback will free the button data.  Fixes #163010.
4790         (_gtk_path_bar_set_path): Don't ref/sink the button.  And for the
4791         failure case, call gtk_widget_destroy() on it.
4792
4793         * gtk/gtkfilechooserdefault.c (check_is_folder): Use
4794         gtk_file_system_get_folder() again (see the ChangeLog entry from
4795         2004-08-25).  We can't first get the parent folder and then
4796         request the info for the path in question, as the parent folder
4797         may not be readable.  See bug #162617.
4798         (gtk_file_chooser_default_set_current_folder): Assert that the
4799         passed-in path is not null.
4800         (shortcuts_find_current_folder): Likewise.
4801         (shortcuts_add_current_folder): Likewise.
4802         (set_list_model): Likewise.
4803         (gtk_file_chooser_default_map): Only reload the current folder if
4804         it exists.
4805         (bookmarks_check_add_sensitivity): Check for the current folder
4806         being NULL.
4807         (browse_files_select_first_row): Don't set the cursor if there is
4808         no model loaded.
4809
4810 2005-01-05  Matthias Clasen  <mclasen@redhat.com>
4811
4812         * gtk/gtkfilechooserdefault.c: Don't construct errors from 
4813         the GTK_FILE_SYSTEM_ERROR domain. Partial fix for #162911.
4814         (get_file_info, check_is_folder): Translate errors from
4815         the filesystem into the GTK_FILE_CHOOSER_ERROR domain. Rest
4816         of the fix for #162911, noticed by Murray Cumming.
4817
4818 Wed Jan  5 11:42:49 2005  Søren Sandmann  <sandmann@redhat.com>
4819
4820         * gtk/gtkviewport.c (gtk_viewport_realize):
4821         * gtk/gtktextview.c ((text_window_realize): Set the background of
4822         the windows to None instead of adding EXPOSURE_MASK, as suggested
4823         by Owen in #162112.
4824
4825         * gdk/x11/gdkevents-x11.c (gdk_wm_protocols_filter): Update 
4826         the user time when receiving a WM_DELETE message.  (#162980, 
4827         Elijah Newren)
4828         
4829 Tue Jan  4 16:52:14 2005  Jonathan Blandford  <jrb@redhat.com>
4830
4831         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_event):
4832         only reorder on button 1, part of #141937
4833
4834 Tue Jan  4 11:36:43 2005  Søren Sandmann  <sandmann@redhat.com>
4835
4836         Bug 162112.
4837         
4838         * gtk/gtktextview.c (text_window_realize): Add GDK_EXPOSURE_MASK
4839         to win->window's event_mask
4840
4841         * gtk/gtkviewport.c (gtk_viewport_realize): Add GDK_EXPOSURE_MASK
4842         to viewport->view_window.
4843
4844 2005-01-04  Matthias Clasen  <mclasen@redhat.com>
4845
4846         * demos/testpixbuf.c (main): Remove the size_prepared callback,
4847         to test incremental display.
4848         (new_testrgb_window): Return the drawing area, not the window,
4849         since we want to queue draws on the drawing area.
4850
4851 2005-01-03  Matthias Clasen  <mclasen@redhat.com>
4852
4853         * examples/*: Re-extract.
4854
4855         * docs/tutorial/gtk-tut.sgml: Small corrections.
4856         
4857         * docs/tutorial/gtk-tut.sgml: Some updates for the drawing
4858         section.  (#161414, Robert Ancell)
4859
4860         * docs/tutorial/gtk-tut.sgml: Make it build.
4861
4862         * gtk/gtkdialog.c (gtk_dialog_run): Some clarification
4863         regarding modality.  (#112903, Dave Bordoley)
4864
4865         * gtk/gtkfixed.c (gtk_fixed_set_has_window): 
4866         Add a little motivation.  (#145556, Tommi Komulainen)
4867
4868         * docs/tutorial/gtk-tut.sgml: Clarify section on 
4869         g_signal_connect_swapped.   (#120543, David Bourguignon)
4870
4871         Make gtk_icon_theme_load_icon() work independent of
4872         icon factory initialization.  (#162791, Tristan Van Berkom)
4873         
4874         * gtk/gtkiconfactory.[hc]: Rename ensure_default_icons to
4875         _gtk_icon_factory_ensure_default_icons, and make it non-static.
4876
4877         * gtk/gtkicontheme.c (find_builtin_icon): ..and call it here.
4878
4879 2005-01-02  Matthias Clasen  <mclasen@redhat.com>
4880
4881         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_remove_shortcut_folder): 
4882         Don't add a shortcut here.  (#162752, Tor Lillqvist)
4883
4884 2005-01-02  Tor Lillqvist  <tml@iki.fi>
4885
4886         * gtk/Makefile.am (libgtk_target_ldflags): Add -lole32, needed for
4887         CoTaskMemFree in get_special_folder() below.
4888
4889         * gtk/gtkfilesystem.h: Implement case-insensitive path compare on
4890         Win32 using _gtk_file_system_win32_path_compare().
4891
4892         * gtk/gtk.symbols: Add _gtk_file_system_win32_path_compare.
4893
4894         * gtk/gtkfilechooserbutton.c (model_add_special)
4895         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Use
4896         _gtk_file_system_win32_get_desktop() to get correct Desktop folder
4897         on Win32. (#144003)
4898
4899         * gtk/gtkfilesystemwin32.c: Remove unnecessary includes. Do
4900         consider all drives "mounted", including floppies. Trying to
4901         inspect the contents of a nonexistent floppy will cause errors
4902         later that are handled normally, no need to avoid them
4903         completely. Keep the drive type in the GtkFileSystemVolume.
4904         Support UNC paths. (#161797, #137874) Fix error message
4905         capitalizations as in gtkfilesystemunix.c.
4906
4907         (gtk_file_system_win32_init): Start one timeout per
4908         GtkFileSystemWin32.
4909
4910         (gtk_file_system_win32_finalize): Remove the timeout.
4911
4912         (get_special_folder): Copied from GLib.
4913
4914         (_gtk_file_system_win32_get_desktop): New function, uses
4915         get_special_folder().
4916
4917         (gtk_file_system_win32_list_volumes): Don't start a timeout at
4918         each call to this function. Don't assume A: and B: are floppies.
4919
4920         (gtk_file_system_win32_get_volume_for_path): Don't assume all
4921         volumes are drive roots, i.e. support share roots of UNC paths
4922         (\\server\share).
4923
4924         (gtk_file_system_win32_get_folder): Don't assume errno is set
4925         after g_file_test() returns FALSE. It isn't on Win32 (and even on
4926         Unix I don't think one should assume anything about errno after
4927         g_file_test()).
4928
4929         (gtk_file_system_win32_volume_get_is_mounted): Always return TRUE.
4930
4931         (gtk_file_system_win32_volume_get_display_name): Don't call
4932         GetVolumeInformation() on drives A: or B: if they are removable,
4933         as they might then be floppies, causing an unnecessary
4934         delay. (#157820)
4935
4936         (gtk_file_system_win32_volume_render_icon): Use network icon for
4937         unrecognized drive types.
4938
4939         (canonicalize_filename, gtk_file_system_win32_parse): Don't get
4940         confused by UNC paths.
4941
4942         (bookmarks_serialize): Use _gtk_file_system_win32_path_compare()
4943         for case-insensitive UTF-8 path comparison.
4944
4945         (extract_icon): Use SHGetFileInfo() which is faster than
4946         ExtractAssociatedIcon(). Icon extraction is still slow, though,
4947         needs work.
4948
4949         (win32_pseudo_mime_lookup): Don't use the same icon for all
4950         shortcuts or executables. Cache only other file type icons.
4951
4952         (gtk_file_system_win32_render_icon): Use network stock icon for
4953         remote drives and UNC server share roots. Compare home directory
4954         case-insensitively. Do lookup icons also for executable files,
4955         after all, it's these files that can have individual icons in the
4956         first place. Yes, it can be slow. Needs work.
4957
4958         (filename_is_drive_root): Require also the slash after the colon.
4959
4960         (filename_is_server_share): New function.
4961
4962         (_gtk_file_system_win32_path_compare): New function, does
4963         case-folded UTF-8 comparison.
4964
4965         * gtk/gtkfilesystemwin32.h: Declare
4966         _gtk_file_system_win32_path_compare().
4967
4968 2005-01-01  Matthias Clasen  <mclasen@redhat.com>
4969
4970         * gtk/gtkbutton.c (gtk_button_set_image): Allow unsetting the
4971         custom image by passing NULL.
4972         (gtk_button_init): Initialize image_is_stock to TRUE, fixing
4973         a problem with changing stock labels.  (#162273, Marcin 
4974         Krzyzanowski)
4975
4976 2005-01-01  Tor Lillqvist  <tml@iki.fi>
4977
4978         * gtk/gtkmodules.c (get_module_path)
4979         * gtk/gtkrc.c (gtk_rc_make_default_dir, gtk_rc_get_im_module_file,
4980         gtk_rc_get_theme_dir, gtk_rc_add_initial_default_files): With
4981         g_getenv() now returning UTF-8 on Win32, no need to call
4982         g_locale_to_utf8().
4983
4984 2004-12-31  Matthias Clasen  <mclasen@redhat.com>
4985
4986         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval) 
4987         (_gtk_key_hash_lookup): Don't sort a list of values as if
4988         it was a list of entries. This fixes crashes during mnemonic
4989         activation in the presence of multiple keymaps. (#162488, 
4990         Christian Persch)
4991
4992 2004-12-30  Matthias Clasen  <mclasen@redhat.com>
4993
4994         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): Fix
4995         state propagation when making an insensitive combo box sensitive
4996         again.  (#162524, Carlos Garnacho Parro)
4997
4998         * gtk/gtkfilechooserdefault.c: Use secondary text for error 
4999         dialogs.
5000
5001         * gtk/gtkfilesystemunix.c: Clean up some cases of errno handling
5002         (#162496, noted by Tor Lillqvist), and use g_filename_display_name()
5003         for error messages. Also mark some error messages for translation,
5004         fix capitalization of error messages.
5005
5006         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property): 
5007         Use g_value_get_boolean() for ellipsize_set.  (#162447, 
5008         Brian Tarricone)
5009
5010 2004-12-30  Tor Lillqvist  <tml@iki.fi>
5011
5012         * gtk/gtkicontheme.c (gtk_icon_theme_init): Use /usr/share/pixmaps
5013         only on Unix.
5014
5015 2004-12-28  Matthias Clasen  <mclasen@redhat.com>
5016
5017         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Inherit
5018         submenu direction from the parent menu.
5019
5020         * gtk/gtkmenushell.c (gtk_menu_shell_select_submenu_first): 
5021         Return a boolean indicating whether an item in the submenu
5022         was selected.
5023         (gtk_real_menu_shell_move_current): When going in child 
5024         direction, don't get stuck at completely insensitive 
5025         submenus.  (#162055, Billy Biggs)       
5026
5027 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
5028
5029         Make the clipboard image API more robust (#162357, 
5030         Torsten Schoenfeld):
5031         
5032         * gtk/gtkclipboard.c (clipboard_image_received_func): Don't
5033         ref the pixbuf if it is NULL.
5034
5035         * gtk/gtkselection.c (gtk_selection_data_set_pixbuf): 
5036         NULL-terminate the varargs in the call to 
5037         gdk_pixbuf_save_to_buffer(). 
5038         (gtk_selection_data_get_pixbuf): Only use a pixbuf loader 
5039         if there is data to load.
5040
5041 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
5042
5043         * gdk/x11/gdkinput-x11.c (_gdk_input_common_other_event): 
5044         Set x_root and y_root in button and motion events from 
5045         extended input devices.  (#148715, Robert Ögren)
5046
5047         * gtk/gtktreeview.c (gtk_tree_view_class_init): Fix a 
5048         typo.  (#162339, Alessio Dessi)
5049
5050         * gtk/gtkadjustment.c (gtk_adjustment_class_init): Document
5051         properties as new since 2.4.  (#156101, Billy Biggs)
5052
5053         * configure.in: Add a warning about the linux-fb 
5054         target.  (#155488, Zeeshan Ali)
5055
5056         * gtk/gtkmain.c (gtk_init_with_args): Typo fix.  (#162278,
5057         Torsten Schoenfeld)
5058
5059 2004-12-26  Matthias Clasen  <mclasen@redhat.com>
5060
5061         * gtk/gtkfilechooser.c (gtk_file_chooser_set_action): 
5062         Typo fix.  (#162219, Masao Mutoh)
5063         (gtk_file_chooser_set_preview_widget_active): 
5064         Another typo.  (#162218, Masao Mutoh)
5065
5066 2004-12-23  Matthias Clasen  <mclasen@redhat.com>
5067
5068         * gtk/gtkliststore.c (gtk_list_store_iter_children): 
5069         Return TRUE if there are children.  (#162134, Iñigo Serna,
5070         patch by John Finlay)
5071
5072         * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): 
5073         Transfer state from the button to the cell view to get
5074         prelighting right.  (#156327, Ricardo Veguilla)
5075
5076 Wed Dec 22 14:22:19 2004  Søren Sandmann  <sandmann@redhat.com>
5077
5078         * tests/testtoolbar.c (timeout_cb): Add sensitivity-changing
5079         timeout. Written by Christian Persch.
5080
5081 Wed Dec 22 14:14:02 2004  Søren Sandmann  <sandmann@redhat.com>
5082
5083         Bug #161561
5084         
5085         * gdk/x11/gdkwindow-x11.c (tmp_{re,un}set_bg): Only set/reset the
5086         background for windows that get expose events. 
5087
5088         * gdk/gdkwindow.c (gdk_window_process_updates_internal): Remove
5089         hack to repaint !expose windows.
5090
5091 Wed Dec 22 11:35:41 2004  Søren Sandmann  <sandmann@redhat.com>
5092
5093         Bug #147497, make menu items activate immediately when you release
5094         the button.
5095         
5096         * gtk/gtkmenu.c (gtk_menu_enter_notify, menu_motion_notify): Make
5097         items activate immediately.
5098
5099         * gtk/gtkmenu.c (definitely_within_item): New function
5100         * gtk/gtkmenu.c (check_threshold): New function
5101
5102 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
5103
5104         * gtk/gtklabel.c (gtk_label_setup_mnemonic): Don't forget to
5105         null the mnemonic_menu when unsetting a mnemonic, reported
5106         by Owen Taylor.
5107
5108 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
5109
5110         * gtk/gtkliststore.c (generate_order): Generate the order the
5111         way it is supposed to be, order[new_pos] == old_pos.
5112         (gtk_list_store_reorder): Invert the order before using it.
5113
5114 2004-12-22  Matthias Clasen  <mclasen@redhat.com>
5115
5116         Fix sorting of list stores.  (#161886, Marcin Krzyzanowski)
5117
5118         * gtk/gtkliststore.c (generate_order): Generate the order the
5119         way it is supposed to be, order[new_pos] == old_pos.
5120         (gtk_list_store_reorder): Invert the order before using it.
5121
5122         * gtk/gtkiconview.c (gtk_icon_view_rows_reordered): Adapt to the
5123         list store fix.
5124
5125 Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>
5126
5127         * gtk/queryimmodules.c (main): print out the version and binary
5128         name in the header comment.  Problem reported by Seth Nickell.
5129
5130 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
5131
5132         * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Pass a
5133         root path to gtk_tree_model_rows_reordered().  (#161720,
5134         Marcin Krzyzanowski)
5135
5136         * gtk/gtkactiongroup.c (gtk_action_group_translate_string): Don't 
5137         translate NULL messages.  (#161789, Morten Welinder)
5138
5139         * gtk/gtkmessagedialog.c (setup_primary_label_font): Don't show
5140         the secondary label on show_all().  (#161707, Christian Persch)
5141
5142 2004-12-19  Tor Lillqvist  <tml@iki.fi>
5143
5144         * gdk/win32/gdkdnd-win32.c (resolve_link, gdk_dropfiles_filter):
5145         Use wide character API when available. Use UTF-8 for filenames.
5146
5147         * gdk/win32/gdkselection-win32.c (_gdk_dropfiles_store): Include
5148         the string's trailing zero byte in the property's length, just for
5149         safety.
5150
5151 2004-12-18  Matthias Clasen  <mclasen@redhat.com>
5152
5153         * gtk/gtkfilechooserentry.c (check_completion_callback) 
5154         (load_directory_callback): Add missing GDK_THREADS_ENTER/LEAVE.
5155
5156         * gtk/gtkfilechooserdefault.c (edited_idle_cb) 
5157         (shortcuts_drag_outside_idle_cb): Add missing 
5158         GDK_THREADS_ENTER/LEAVE.  (#161604)
5159         
5160         * gtk/gtkfilechooserdefault.c (selection_check_foreach_cb): 
5161         (list_select_func): Don't call gtk_file_info_get_is_folder()
5162         on NULL. 
5163
5164         * gtk/gtkaboutdialog.c (gtk_about_dialog_get_logo_icon_name): 
5165         (gtk_about_dialog_init): Add missing initializations.  (#161646,
5166         Torsten Schoenfeld)
5167