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