]> Pileus Git - ~andy/gtk/blob - ChangeLog
Updated Korean translation.
[~andy/gtk] / ChangeLog
1 2006-06-23  Christian Rose  <menthos@menthos.com>
2
3         * configure.in: Added "ur" to ALL_LINGUAS.
4
5 2006-06-22  Matthias Clasen  <mclasen@redhat.com>
6
7         Fix #345663, reported by Kazuki Iwamoto
8         
9         * gtk/gtkaction.c: Include gtkiconfactory.h
10
11         * gtk/gtkactiongroup.c: Include gtkicontheme.h
12
13 2006-06-22  Michael Natterer  <mitch@imendio.com>
14
15         * gtk/gtktextview.c (gtk_text_view_size_allocate): keep the cursor
16         visible when the size changes. Fixes bug #344874.
17
18 2006-06-22  Matthias Clasen  <mclasen@redhat.com>
19
20         * gtk/gtkpintjob.h: Add a note about updating the registration.
21         * gtk/gtkprintjob.c (gtk_print_capabilites_get_type): Add missing
22         capabilitites. 
23
24         * modules/printbackends/cups/gtkprintbackendcups.c: Remove
25         an unused variable and make it compile with Cups 1.1.  (#345644,
26         Joseph Sacco)
27
28 2006-06-21  Matthias Clasen  <mclasen@redhat.com>
29
30         * configure.in: Bump version
31         
32         * === Released 2.9.4 ===
33
34         * modules/printbackends/file/gtkprintbackendfile.c: 
35         Apply a patch by Christian Persch to support PostScript and PDF
36         output.
37
38         * gtk/gtkprinteroptionwidget.c (radio_changed_cb): Don't free
39         the value.
40
41 2006-06-21  Matthias Clasen  <mclasen@redhat.com>
42
43         Apply a patch by John Palmieri to use buffered io using
44         GIOChannels, clean up error handling and support Cups 1.2
45         api in the printing code.
46
47         * acconfig.h:
48         * configure.in: Detect Cups 1.2
49
50         * gtk/gtkdebug.h:
51         * gtk/gtkmain.c: Add a printing debug key.
52
53         * gtk/gtkprintbackend.[hc]: Remove the GError parameter from
54         gtk_print_backend_print_stream, and take a  GIOChannel instead
55         of an fd.
56
57         * gtk/gtkprinter-private.h:
58         * gtk/gtkprinter.c: Replace the fd parameter of 
59         _gtk_printer_create_cairo_surface by a GIOChannel.
60
61         * gtk/gtkprintjob.[hc]: Remove the GError parameter from
62         gtk_print_job_send and make it return void.
63
64         * gtk/gtkprintoperation-unix.c:
65         * gtk/gtkprintjob.c: Adjust callers, add some debugging support.
66
67         * modules/printbackends/Makefile.am: Fix DIST_SUBDIRS.
68
69         * modules/printbackends/cups/Makefile.am:
70         * modules/printbackends/lpr/Makefile.am: Add debug CFLAGS.
71         
72         * modules/printbackends/cups/gtkcupsutils.[hc]: 
73         * modules/printbackends/cups/gtkprintbackendcups.c:
74         * modules/printbackends/file/gtkprintbackendfile.c:
75         * modules/printbackends/lpr/gtkprintbackendfile.c: Adapt to
76         the GIOChannel and GError changes, add debug output
77         
78 2006-06-21  Matthias Clasen  <mclasen@redhat.com>
79
80         * gtk/gtkprinter.c (gtk_enumerate_printers): Remove an 
81         unused variable.
82
83         * NEWS: Updates
84
85         * gtk/gtktreeview.c (gtk_tree_view_class_init): Fix the registration
86         of the grid-lines property  (#345456, Murray Cumming) 
87         
88 2006-06-21  Kristian Rietveld  <kris@imendio.com>
89
90         Allocate space for the grid lines when they are enabled.
91
92         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): make sure the cell
93         area does not overlap with the grid lines, also draw the line for
94         "the next cell" in the last loop iteration, make sure the cursor falls
95         in between the grid lines,
96         (validate_row): request extra space for the grid lines.
97
98 2006-06-21  Matthias Clasen  <mclasen@redhat.com>
99
100         * gtk/gtkprintbackend.h: 
101         * gtk/gtkprintbackend.c (gtk_print_backend_print_stream): Add an
102         GError parameter.
103
104         * modules/printbackends/file/gtkprintbackendfile.c 
105         (gtk_print_backend_file_print_stream): 
106         * modules/printbackends/lpr/gtkprintbackendlpr.c 
107         (gtk_print_backend_lpr_print_stream): 
108         * modules/printbackends/cups/gtkprintbackendcups.c 
109         (gtk_print_backend_cups_print_stream): 
110         * gtk/gtkprintjob.c (gtk_print_job_send): Update all callers and
111         implementations.
112
113         * modules/printbackends/cups/gtkprintbackendcups.c: Remove the
114         GError parameter from cups_request_execute(), and various other
115         cleanups.
116
117 2006-06-20  Matthias Clasen  <mclasen@redhat.com>
118
119         * gtk/gtkprintjob.c (gtk_print_job_class_init): Make 
120         track-print-status a property.
121
122 2006-06-20  Murray Cumming  <murrayc@murrayc.com>
123
124         * gtk/gtkprintoperation.c: (gtk_print_operation_class_init): 
125         Correctly register the done signal - it sends an enum, not an int.
126
127 2006-06-20  Christian Persch  <chpe@cvs.gnome.org>
128         
129         * configure.in
130         * gtk/Makefile.am
131         * modules/printbackends/Makefile.am
132         A modules/printbackends/file/.cvsignore
133         A modules/printbackends/file/Makefile.am
134         A modules/printbackends/file/gtkprintbackendfile.c
135         A modules/printbackends/file/gtkprintbackendfile.h
136         R modules/printbackends/pdf/*:
137         Rename "pdf" backend to "file" backend. Step 2 from bug #339592.
138
139 2006-06-20  Christian Persch  <chpe@cvs.gnome.org>
140
141         * gtk/gtkprinteroptionwidget.c: (filesave_changed_cb),
142         (alternative_set), (construct_widgets): Convert input to filename
143         encoding and construct an URI from that.
144         * gtk/gtkprintsettings.h: Add OUTPUT_FILE_FORMAT and OUTPUT_URI keys.
145         * modules/printbackends/pdf/gtkprintbackendpdf.c: Use those defines.
146         Step 1 from bug #339592.
147
148 2006-06-20  Matthias Clasen  <mclasen@redhat.com>
149
150         * gtk/gtkprintjob.c (gtk_print_job_set_source_file): Add to docs.
151
152         Fix handling of stock items without icons in action-based
153         ui.  (#342458, Callum McKenzie)
154         
155         * gtk/gtkactiongroup.c (gtk_action_group_add_actions_full): Set
156         the stock id even if there is no icon for it.
157
158         * gtk/gtkaction.c (connect_proxy): 
159         * gtk/gtktoolbutton.c (gtk_tool_button_construct_contents): Only
160         construct a stock icon if the stock item has an icon.
161
162 2006-06-20  Matthias Clasen  <mclasen@redhat.com>
163
164         * gtk/gtktreeview.c (gtk_tree_view_set_column_drag_info): Better 
165         fix.
166
167         * gtk/gtk.symbols: 
168         * gtk/gtkprintsettings.h: 
169         * gtk/gtkprintsettings.c: Remove unused print-to-file setting.
170
171 2006-06-20  Carlos Garnacho  <carlosg@gnome.org>
172
173         * gtk/gtknotebook.c (gtk_notebook_stop_reorder): unset the pressed
174         button here.
175         (gtk_notebook_grab_notify): stop reorder when the widget becomes
176         shadowed. Fixes bug #335873
177
178 2006-06-18  Christian Persch  <chpe@cvs.gnome.org>
179
180         * gtk/gtkdialog.c: (gtk_dialog_class_init): Set default action area
181         spacing to HIG-compliant 6px. Bug #345106, follow-up from bug #163850.
182
183 2006-06-20  Matthias Clasen  <mclasen@redhat.com>
184
185         * gtk/gtkiconview.c (gtk_icon_view_enable_model_drag_dest): 
186         Small doc fix.  (#345176, Claudio Saavedra)
187
188         * gdk/x11/gdkwindow-x11.c (gdk_window_set_functions): Update
189         the docs. (#345194, Yevgen Muntyan)
190
191 2006-06-19  Matthias Clasen  <mclasen@redhat.com>
192
193         * gtk/gtktreeview.c (gtk_tree_view_set_grid_lines): Don't leak
194         dash_list.
195         (gtk_tree_view_set_column_drag_info): Don't crash if the 
196         column_drop_func says always no.  (#344850, Christian Weiske)
197         
198         Make transparent tray icons work.  (#320034, based on a 
199         patch by Dan Winship)
200         
201         * gtk/gtktrayicon-x11.c (gtk_tray_icon_init): Make trayicons
202         app-paintable and non-double buffered. 
203
204         * gtk/gtkrc.c (_gtk_rc_init): Give tray icons a parent-relative
205         background in the default style.
206
207 2006-06-19  Matthias Clasen  <mclasen@redhat.com>
208
209         * gtk/updateiconcache.c: Marks strings for translation.  (#314278,
210         Claudio Saavedra)
211
212         * gtk/gtkentrycompletion.c (gtk_entry_completion_compute_prefix): Don't
213         call g_str_has_prefix on a NULL strung.  (#344897, Tommi Komulainen)
214
215         * gtk/gtkfilechooserdefault.c: 
216         Avoid a near-duplicate string and add some
217         translator comments.  (#345320, #345321, Hendrik Richter)
218
219 2006-06-19  Federico Mena Quintero  <federico@novell.com>
220
221         * gtk/gtkfilechooser.c (gtk_file_chooser_get_current_folder)
222         (gtk_file_chooser_get_current_folder_uri): Clarify the use of
223         these functions, to avoid the case where a chooser is in
224         SELECT_FOLDER mode and people mistakenly use _get_current_folder()
225         to get the selection:  they should use _get_filename() instead.
226
227 2006-06-19  Alexander Larsson  <alexl@redhat.com>
228
229         * gtk/gtk.symbols:
230         * gtk/gtklabel.[ch]:
231         Add gtk_label_set_line_wrap_mode, gtk_label_get_line_wrap_mode, and
232         a wrap-mode property that lets you set the PangoWrapMode.
233
234 2006-06-19  Matthias Clasen  <mclasen@redhat.com>
235
236         * gtk/gtk.symbols: Add new functions
237
238         * gtk/gtkprinter.h: 
239         * gtk/gtkprinter.c (gtk_enumerate_printers): New function
240         to list all printers (#344074, Felipe Heidrich)
241
242         * gtk/gtkprinter-private.h: 
243         * gtk/gtkprinter.c (_gtk_printer_get_options) 
244
245         * gtk/gtkprintbackend.h: Add a capabilities argument to the 
246         printer_get_options method and to the _gtk_printer_get_options
247         function
248         
249         * modules/printbackends/lpr/gtkprintbackendlpr.c 
250         (lpr_printer_get_options): 
251         * modules/printbackends/pdf/gtkprintbackendpdf.c 
252         (pdf_printer_get_options): 
253         * modules/printbackends/cups/gtkprintbackendcups.c 
254         (cups_printer_get_options): 
255         * gtk/gtkprintunixdialog.c (selected_printer_changed): Adjust
256         callers and implementations.
257
258         * gtk/gtkprintjob.h: Add a GENERATE_PS capability. 
259         * gtk/gtkprintunixdialog.c (is_printer_active): And use it here.
260
261 2006-06-18  Matthias Clasen  <mclasen@redhat.com>
262
263         * tests/testnouiprint.c (main): Don't open a display connection.
264
265         * gtk/gtkprintbackend.c (gtk_print_backend_load_modules): Make
266         this work without a display connection.  (339702, Alexander Larsson)
267
268         * gtk/gtkwindow.c (gtk_window_move): Small doc addition. 
269         (#345275, Behdad Esfahbod)
270
271 2006-06-17  Matthias Clasen  <mclasen@redhat.com>
272
273         * modules/printbackends/pdf/gtkprintbackendpdf.c:
274         * modules/printbackends/lpr/gtkprintbackendlpr.c: Fix a typo:
275         s/Extention/Extension/. 
276         
277         * gtk/gtkprintunixdialog.c: Clean up the handling of 
278         printer-specific options. There is just one extension point on the
279         main tab now, and all options in the GtkPrintDialogExtension
280         group are put there. 
281
282         * gtk/gtkprinteroption.h: 
283         * gtk/gtkprinteroption.c: Add GTK_PRINTER_OPTION_TYPE_ALTERNATIVE
284         which is semantically the same as PICKONE, but is intended to 
285         show all options all the time.
286         
287         * gtk/gtkprinteroptionwidget.c: Implement ALTERNATIVE as radio
288         group.
289
290 2006-06-16  Matthias Clasen  <mclasen@redhat.com>
291
292         * modules/printbackends/cups/gtkprintbackendcups.c:
293         * modules/printbackends/lpr/gtkprintbackendlpr.c: Use a stock icon
294         for printers.
295
296         * gtk/gtkprintunixdialog.c (add_option_to_table): Don't grow
297         additional columns.
298
299         * gtk/gtkprintbackend.h: Add a GtkPrintSettings parameter to the
300         printer_create_cairo_surface method.
301         
302         * modules/printbackends/pdf/gtkprintbackendpdf.c: 
303         * modules/printbackends/cups/gtkprintbackendcups.c: 
304         * modules/printbackends/lpr/gtkprintbackendlpr.c: 
305         * gtk/gtkprinter.c (_gtk_printer_create_cairo_surface): 
306         * gtk/gtkprinter-private.h: 
307         * gtk/gtkprintjob.c (gtk_print_job_get_surface): Adapt all users.
308
309         * gtk/gtkentrycompletion.c (gtk_entry_completion_finalize): Don't
310         leak match data.  (#345107,  Christian Weiske)
311
312         * gtk/gtkprintunixdialog.c (populate_dialog): Move the conflict
313         label out of the button box.  (#339456, Christian Persch)
314
315         * gtk/gtksizegroup.c (compute_dimension): Ignore unmapped widgets
316         when ignore_hidden is TRUE.  (#344707, Christian Persch)
317
318         * configure.in: Require cvs glib.
319
320         * gtk/gtkprintoperation-unix.c: 
321         (_gtk_print_operation_platform_backend_create_preview_surface): 
322         Don't use a temporary directory for preview files, since it
323         is not clear who cleans it up. Instead, use g_mkstemp() directly
324         to create a temp pdf file, and make the preview app responsible
325         for cleaning it up.
326
327         * gtk/gtkprintbackend.c: Move the registration of the 
328         gtk-print-preview-command setting from gtkprintbackend.c to 
329         gtkprintoperation-unix.c, to make sure it is registered before
330         the first use. Also, document the two settings.
331
332         * tests/print-editor.c: Add a "Preview" menu item.
333
334         * gtk/gtkprintoperation-unix.c (handle_print_response): When starting
335         a preview from the print dialog, set the action to PREVIEW.
336
337         * gtk/gtkprintoperation.c: Cosmetic changes.
338
339 2006-06-16 Matthias Clasens  <mclasen@redhat.com>
340
341         * gtk/gtkprintoperation-unix.c: Mark the preview filename
342         as translatable (#345093, Christian Persch)
343
344 Fri Jun 16 11:49:53 2006  Tim Janik  <timj@imendio.com>
345
346         * fixed #337882 by applying patches from Tommi Komulainen:
347
348         * gtk/gtkprogressbar.c:
349         (gtk_progress_bar_paint_activity):
350         (gtk_progress_bar_get_activity): Move activity bar offset and size
351         calculations to separate function.
352         (gtk_progress_bar_paint_text): Allow caller to specify offset for the
353         prelight part in addition to width.
354         (gtk_progress_bar_paint): Paint the text also in activity mode, #337882.
355
356         * gtk/gtkprogressbar.c: (gtk_progress_bar_paint_text): Paint the
357         prelighted text on top of the normal rather than side by side, to
358         simplify painting text in activity mode.
359
360 2006-06-16  Matthias Clasen  <mclasen@redhat.com>
361
362         * modules/printbackends/cups/gtkprintbackendcups.c: Include
363         gtkprinter-private.h  (#345038, Christian Persch)
364  
365 2006-06-15  Matthias Clasen  <mclasen@redhat.com>
366
367         * modules/printbackends/pdf/gtkprintbackendpdf.c: Use the
368         stock floppy icon.
369
370         * gtk/gtkprintoperation-unix.c: Set the GENERATE_PDF capability
371         when creating a print dialog.  (noted by Yevgen Muntyan)
372
373 2006-06-15  Carlos Garnacho  <carlosg@gnome.org>
374
375         * gtk/gtknotebook.c (gtk_notebook_motion_notify): use
376         gdk_window_get_pointer() to get pointer coordinates, but limit its
377         calls to a maximum of 45 times per second for not being too
378         CPU/network abusive. stop drag operation if (event->state &
379         GDK_BUTTON1_MASK) is FALSE to prevent tabs from "adhering" to the
380         pointer. Fixes bug #341571
381         (gtk_notebook_calculate_tabs_allocation), (gtk_notebook_button_press):
382         get rid of the "tab jumps to pointer" sensation when beginning a drag
383         by using the pointer offset in the tab when the drag begins as an
384         anchor.
385         (gtk_notebook_redraw_tabs_union): remove, it wasn't worth the little
386         performance gain and could draw artifacts under some circumstances.
387         (gtk_notebook_drag_end): do not reparent the detached tab label until
388         the animation has ended.
389
390 2006-06-15  Bastien Nocera  <hadess@hadess.net>
391
392         * configure.in: Update the Cairo requirements (#345008)
393
394 2006-06-15  Matthias Clasen  <mclasen@redhat.com>
395
396         * gtk/gtkprintoperationpreview.c 
397         (gtk_print_operation_preview_base_init): Fix errors in the
398         signal definitions.  (#344891, Marko Anastasov)
399
400 2006-06-14  Michael Emmel  <mike.emmel@gmail.com>
401         
402         * configure.in: updated mininum  dfb to 0.9.24
403         * gdk/directfb/gdkdirectfb.h: added more directfb wrapper functions
404         * gdk/directfb/gdkdrawable-directfb.c: wrapper functions and patch from 
405          Claudio Ciccani <klan@users.sf.net> to use a subsurface for cairo
406     * gdk/directfb/gdkvisual-directfb.c: changed initalization sequence
407     * gdk/directfb/gdkwindow-directfb.c: corrected reparent for toplevels
408     * gdk/directfb/gdkdisplay-directfb.c: changed initilization sequence
409         to a more rational order
410
411 2006-06-14  Federico Mena Quintero  <federico@novell.com>
412
413         * perf/gtkwidgetprofiler.c (gtk_widget_profiler_profile_expose):
414         New function; it lets us time the expose sequence of a widget.
415         (create_widget): New helper function.
416         (map_widget): New helper function.
417         (profile_boot): Use create_widget() instead of doing it by hand.
418         (profile_map_expose): Use map_widget() instead of doing it by hand.
419
420         * perf/main.c (main): Call gtk_widget_profiler_profile_expose() as well.
421
422 2006-06-14  Matthias Clasen  <mclasen@redhat.com>
423
424         * gtk/gtkpagesetupunixdialog.c: Use GKeyFile for the custom
425         filename storage.  (#344867, Christian Persch)
426
427         * gtk/gtkselection.c: Call init_atoms before using atoms
428         in several functions.  (#344743, John Finlay)
429
430         * gtk/gtktreeview.c (gtk_tree_view_set_search_position+_func):
431         Allow NULL to reset to default.  (#344838, John Finlay)
432
433         * gtk/gtkprintjob.h: Collect booleans into a bitfield
434         (#344765, Christian Persch)
435
436 2006-06-13  Matthias Clasen  <mclasen@redhat.com>
437
438         * configure.in: Bump version
439
440 2006-06-12  Matthias Clasen  <mclasen@redhat.com>
441
442         * === Released 2.9.3 ===
443
444         * NEWS: Updates
445         
446         * gtk/gtk.symbols: Add gtk_tree_view_grid_lines_get_type.
447
448         * configure.in: Set interface age to 0
449
450 2006-06-12  Kristian Rietveld  <kris@imendio.com>
451
452         Introduce grid and tree lines in GtkTreeView. (#106406,
453         Martyn Russell).
454
455         * gtk/gtktreeprivate.h: add new fields to GtkTreePrivate.
456
457         * gtk/gtkenums.h: add GtkTreeViewGridLines.
458
459         * gtk/gtktreeview.[ch] (gtk_tree_view_set_grid_lines),
460         (gtk_tree_view_get_grid_lines),
461         (gtk_tree_view_set_enable_tree_lines),
462         (gtk_tree_view_get_enable_tree_lines): new API,
463         (gtk_tree_view_class_init): new properties,
464         (gtk_tree_view_init), (gtk_tree_view_{get,set}_property),
465         (gtk_tree_view_realize), (gtk_tree_view_draw_grid_lines),
466         (gtk_tree_view_bin_expose): implement.
467
468         * gtk/gtk.symbols: update.
469
470 2006-06-12  Matthias Clasen  <mclasen@redhat.com>
471
472         * gtk/gtkprintunixdialog.c (is_printer_active): Use 
473         gtk_printer_accepts_ps here.
474
475         * modules/printbackends/pdf/gtkprintbackendpdf.c (gtk_print_backend_pdf_init):
476         Mark the virtual "Print to PDF" printer as not accepting PS.
477
478         * gtk/gtk.symbols:
479         * gtk/gtkprinter.h: 
480         * gtk/gtkprinter.c: Add two new properties accepts-pdf and
481         accepts-ps (with getters) to allow learning supported formats.
482
483         * gtk/gtkprintjob.h: Add a GTK_PRINT_CAPABILITY_GENERATE_PDF
484         capability.
485         
486         * gtk/gtkprintunixdialog.c: Use it here to hide "Print to PDF" 
487         from the printer list.  (#339592, Christian Persch)
488         
489         * gtk/gtkfilechooserdefault.c: Add support for pasting
490         filenames into the filechooser.  (#153212, Bastian Nocera)
491
492 2006-06-12  Kristian Rietveld  <kris@gtk.org>
493
494         * gtk/gtktreemodelfilter.[ch]
495         (gtk_tree_model_filter_convert_child_iter_to_iter),
496         (gtk_tree_model_filter_convert_child_path_to_path): report status
497         in return value instead of spewing assertions.  (#335729, Yevgen
498         Muntyan).
499
500 2006-06-12  Matthias Clasen  <mclasen@redhat.com>
501
502         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_finalize): 
503         Clean up user data.  (#344624, Christian Weiske)
504
505         * NEWS: Updates
506
507         * gtk/gtkprintjob.c:
508         * gtk/gtkprintbackend.c: 
509         * gtk/gtkpagesetupunixdialog.c: 
510         * gtk/gtkprintunixdialog.c: Cosmetic cleanups.
511
512 2006-06-11  Matthias Clasen  <mclasen@redhat.com>
513
514         * gtk/gtkassistant.c: Add an accessible implementation in
515         order to make the buttons visible to a11y tools.  (pointed out
516         by David Malcolm, #343945)
517
518         * gtk/gtkprintoperation-win32.c: Store scale as a percentage.
519         (#344560, Christian Persch)
520
521         * gtk/gtkprogressbar.h: Add a dirty flag to GtkProgressBar.n/ 
522         * gtk/gtkprogressbar.c: Defer updating of the offscreen
523         pixmap until expose.  (#344543, Chris Wilson)
524
525 2006-06-11  Emmanuele Bassi  <ebassi@gnome.org>
526
527         * gtk/gtkrecentchooserdefault.c
528         (get_is_recent_filtered):
529         * gtk/gtkrecentchoosermenu.c
530         (get_is_recent_filtered):
531         Do not leak the groups string vector. (#344607,
532         John Finlay)
533
534 2006-06-11  Tor Lillqvist  <tml@novell.com>
535
536         * gtk/gtkprintoperation-win32.c: Fix MSVC build problem. (#339739,
537         Kazuki Iwamoto)
538
539         * gdk/win32/gdkproperty-win32.c (gdk_property_change): Convert \n
540         to \r\n also when storing CF_UNICODETEXT (UTF-16) in the
541         Clipboard. (#344496)
542
543 2006-06-10  Matthias Clasen <mclasen@redhat.com>
544
545         * gtk/gtkrecentchooserwidget.c 
546         (gtk_recent_chooser_widget_new_for_manager):
547         * gtk/gtkrecentchoosermenu.c
548         (gtk_recent_chooser_menu_new_for_manager): 
549         Allow NULL to mean the default manager.  (#344530, 
550         John Finlay)
551
552         * gtk/gtkprintoperation-unix.c (page_setup_data_free):
553         Check if rdata->page_setup is set before unreffing it. 
554         (#344518, Christian Persch)
555
556         * gtk/gtkprintoperation.h: Remove an extra comma.  (#344528, 
557         Elijah Newren)
558
559         * modules/printbackends/gtkprintbackendpdf.c 
560         (gtk_print_backend_pdf_print_stream): Use the passed in 
561         destroy notify.  (#344513, Christian Persch)
562
563         * configure.in: Require cairo 1.1.7
564
565         * gtk/gtkprintoperation.c:
566         * modules/printbackends/pdf/gtkprintbackendpdf.c: Use
567         cairo_pdf_surface_set_dpi by cairo_surface_set_fallback_resolution.
568         (#344512, Elijah Newren)
569
570         * gdk-2.0-uninstalled.pc.in: Make compiling against uninstalled
571         gdk work.  (#344386, Masatake Yamamoto)
572
573         * gtk/gtkprintoperation.c: Register create_custom_widget as 
574         an object-returning signal.  (#344505, Marko Anastasov, patch
575         by Christian Persch)
576
577         * gtk/gtkmarshalers.list: Add the right marshaller.
578
579         * gtk/gtk.symbols:
580         * gtk/gtkprintjob.[hc]: Register GtkPrintCapabilities as a
581         flags type.  (#344504, Marko Anastasov)
582
583 2006-06-09  Benjamin Berg  <benjamin@sipsolutions.net>
584
585         * gtk/gtkmenuitem.c: (get_offsets): Take GtkMenu::horizontal-padding
586         into account when placing submenus (#344290)
587
588 2006-06-09  Michael Natterer  <mitch@imendio.com>
589
590         * gtk/gtkrange.c: added new style properties "trough-side-details"
591         and "draw-trough-under-steppers" and fixed the "stepper-spacing"
592         style property. Fixes bugs #342339 and #342249.
593
594         "draw-trough-under-steppers", when set to FALSE, starts trough
595         drawing next to the steppers instead of drawing the trough "below"
596         (around) the steppers. If "stepper-spacing" is set to any value
597         larger than zero, "draw-trough-under-steppers" is set to FALSE
598         automatically to avoid rendering an area that looks clickable but
599         isn't.
600
601         (gtk_range_calc_layout): honor draw-trough-under-steppers.
602         Don't reserve stepper-spacing on sides of the range that don't
603         have steppers.
604
605         (gtk_range_expose): changed drawing accordingly. Implement
606         "trough-side-details" which enables drawing of the upper and lower
607         parts of the trough with different details. This is useful for
608         theme engines which want to draw these parts differently.
609
610         (coord_to_value): correctly take all rendering options into
611         account. stepper-spacing > 0 caused jumping and otherwise
612         strangely behaving ranges before.
613
614         (other functions): changed accordingly.
615
616 2006-06-09  Tor Lillqvist  <tml@novell.com>
617
618         * gdk/win32/gdkdrawable-win32.c (_gdk_win32_drawable_release_dc):
619         Call ReleaseDC() on DCs acquired with GetDC() (for windows), and
620         DeleteDC() on DCs acquired with CreateCompatibleDC() (for
621         bitmaps). According to MSDN, this is the correct thing to do, even
622         if always using DeleteDC() seems to have worked fine in
623         practice. (#337491, Chris Wilson)
624
625 2006-06-08  Matthias Clasen  <mclasen@redhat.com>
626
627         * tests/testprint.c: Update for api changes.
628
629         * gtk/gtkprintoperation.c: Fix some copy-and-paste errors,
630         and rename the pdf-target property to export-filename.
631
632         * gtk/gtkfilechooserdefault.c: Turn off profiling code.
633
634         * tests/print-editor.c: Update for api changes.
635
636         * gtk/gtk.h: Include gtkprintoperationpreview.h
637
638         * gtk/gtkprintoperationpreview.c (gtk_print_operation_preview_is_selected): 
639         Use g_return_val_if_fail (#344288, Kazuki Iwamoto)
640
641         * gtk/gtkprintbackend.h: Don't include gtkprinter-private.h here.
642
643         * gtk/gtkprintunixdialog.c: 
644         * gtk/gtkprintoperation-unix.c: 
645         * gtk/gtkprintjob.c: 
646         * gtk/gtkprintbackend.c: Instead include it here.
647
648         * gtk/gtk.symbols: 
649         * gtk/gtkprintoperation.h: 
650         * gtk/gtkprintoperation.c: Rename pdf_target to export_filename.
651
652 2006-06-08  Matthias Clasen  <mclasen@redhat.com>
653
654         * gtk/gtkprintoperation.h (GtkPrintOperationResult): Get
655         rid of GTK_PRINT_OPERATION_RESULT_PREVIEW.
656         
657         * gtk/gtkprintoperation-unix.c: 
658         * gtk/gtkprintoperation.c: Update all users.
659
660 2006-06-08  Tor Lillqvist  <tml@novell.com>
661
662         * gdk/win32/gdkevents-win32.c (gdk_event_translate):
663         [WM_WINDOWPOSCHANGED] Replace identical code as in
664         handle_configure_event() with call to that function.
665         [WM_SIZING] Fix implementation of aspect ratio hints. (#344244)
666         The hints are for the geometry of the client area, not of the
667         window including decorations. Improve resizing behaviour in the
668         presence of aspect hints, to be more in line with typical X window
669         managers.
670
671 2006-06-08  Matthias Clasen  <mclasen@redhat.com>
672
673         * gtk/gtktoolbutton.c (gtk_tool_button_style_set): Give
674         GtkToolButton the same treatment.
675
676         * gtk/gtkbutton.c (gtk_button_style_set): Don't call
677         construct_child here, since some apps make assumptions 
678         about the lifecycle of the constructed label.  
679
680 2006-06-08  Alexander Larsson  <alexl@redhat.com>
681
682         * gtk/gtkprintoperation-unix.c (finish_print):
683         Fix up unix fallout from previous change.
684
685 2006-06-08  Alexander Larsson  <alexl@redhat.com>
686
687         * gtk/gtkprintoperation-win32.c:
688         Update windows to build with new APIs and first cut
689         at preview work.
690         
691         * gtk/gtkprintoperation-private.h:
692         * gtk/gtkprintoperation-unix.c:
693         * gtk/gtkprintoperation.c
694         Various updates needed when making the preview work on win32.
695
696         * tests/print-editor.c:
697         Print, don't preview.
698
699 2006-06-07  Matthias Clasen  <mclasen@redhat.com>
700
701         * gtk/gtkentry.c (popup_targets_received): Make Delete
702         menuitem insensitive if entry is not editable.  (#344232, 
703         Milosz Derezynski)
704
705         * gtk/gtkprintoperation.c: Add some docs. 
706
707         * gtk/gtk.symbols: Add gtk_print_operation_set_allow_async.
708
709         * gtk/gtkprintoperation.h: Remove gtk_print_operation_run_async.
710
711         * tests/testnotebookdnd.c: Update callers.
712
713         * gtk/gtknotebook.h:
714         * gtk/gtknotebook.c (gtk_notebook_set_window_creation_hook):
715         Add a destroy notify for the callback data.  (#344209, 
716         Murray Cumming)
717
718 2006-06-07  Jürg Billeter  <j@bitron.ch>
719
720         * gtk/Makefile.am: Fix building gtkbuiltincache.h without system GTK+.
721
722 2006-06-07  Alexander Larsson  <alexl@redhat.com>
723
724         * gtk/gtk.symbols:
725         * gtk/gtkprintoperation-private.h:
726         * gtk/gtkprintoperation-unix.c:
727         * gtk/gtkprintoperation.[ch]:
728         Clean up APIs:
729         Make async a setting instead of separate calls.
730         Combine settings like show_dialog, show_preview and pdf_target into
731         an action enum that you pass to gtk_print_dialog_run().
732         
733         * tests/print-editor.c:
734         * tests/testnouiprint.c:
735         * tests/testprint.c:
736         * demos/gtk-demo/printing.c:
737         Update to new APIs
738
739 2006-06-07  Bastien Nocera  <hadess@hadess.net>
740
741         * configure.in: Update the ATK requirements (#344148)
742
743 2006-06-07  Matthias Clasen  <mclasen@redhat.com>
744
745         * modules/printbackends/cups/gtkprintercups.c 
746         (gtk_printer_cups_finalize):  Fix a C99ism.
747         (#344123, Jens Ganseuer)
748
749 2006-06-06  Behdad Esfahbod  <behdad@gnome.org>
750
751         * gdk/gdkpango.c (gdk_pango_layout_line_get_clip_region): Correct
752         rounding of rect members.  Improved docs.  (#337603)
753
754 2006-06-06  Matthias Clasen  <mclasen@redhat.com>
755
756         * gtk/gtkicontheme.c: Small optimization
757
758 2006-06-05  Matthias Clasen  <mclasen@redhat.com>
759
760         * configure.in: Bump version
761
762         * === Released 2.9.2 ===
763
764         * configure.in: Set interface age to 0.
765
766         * NEWS: Updates
767
768         * gtk/gtkprintoperationpreview.c: Include gtkalias.h
769
770         * gtk/gtk.symbols: Add some forgotten new functions.
771
772 2006-06-04  Matthias Clasen  <mclasen@redhat.com>
773
774         * gtk/gtknotebook.c (gtk_notebook_calculate_shown_tabs):
775         (gtk_notebook_calc_tabs): Fix borderline cases in tab
776         visibility calculation.  (#168105, Carlos Garnacho Parro)
777
778         * gdk/x11/gdkfont-x11.c (_gdk_font_destroy): Remove the right
779         XID from the xid table.  (#341327, Sampo Savolainen, Tim Janik)
780
781 2006-06-04  Behdad Esfahbod  <behdad@gnome.org>
782
783         * gtk/gtkprintoperationpreview.h: Add missing G_END_DECLS (#343838)
784
785 2006-06-03  Richard Hult  <richard@imendio.com>                                 
786
787         * gdk/quartz/Makefile.am:                                               
788         * gdk/quartz/gdkspawn-quartz.c: Add spawn functions, copied from the
789         win32 backend.
790
791 2006-06-02  Matthias Clasen  <mclasen@redhat.com>
792         
793         * gtk/gtkprintoperation-private.h:
794         * gtk/gtkprintoperation.h:
795         * gtk/gtkprintoperation.c: Add a show-preview property. 
796
797         * gtk/gtkprintoperation-unix.c: Implement it here.
798
799         * gtk/gtkprintoperation-unix.c: Cleanups
800
801 2006-06-02  Kristian Rietveld  <kris@imendio.com>
802
803         Rubber banding for GtkTreeView, #80127.  Uses same method as
804         GtkIconView.
805
806         * gtk/gtktreeview.c (gtk_tree_view_class_init),
807         (gtk_tree_view_init), (gtk_tree_view_get_property),
808         (gtk_tree_view_set_property), (gtk_tree_view_set_rubber_banding),
809         (gtk_tree_view_get_rubber_banding): add property,
810         (gtk_tree_view_button_press): start rubber banding if enabled and
811         press is on a non-selected node,
812         (gtk_tree_view_button_release): stop rubber banding,
813         (gtk_tree_view_motion_bin_window), (scrool_row_timeout): enable/update
814         the rubber band,
815         (gtk_tree_view_bin_expose): draw rubber band if active,
816         (gtk_tree_view_stop_rubberband),
817         (gtk_tree_view_update_rubber_band_selection_range),
818         (gtk_tree_view_update_rubber_band_selection),
819         (gtk_tree_view_update_rubber_band),
820         (gtk_tree_view_paint_rubber_band): new functions.
821
822         * gtk/gtktreeview.h: add new set/get function for rubber banding
823         property.
824
825         * gtk/gtktreeprivate.h: add a bunch of new private fields.
826
827 2006-06-02  Kristian Rietveld  <kris@imendio.com>
828
829         * gtk/gtktreeview.c (gtk_tree_view_leave_notify): revert fix of
830         #164884 because it's not a problem in gtk+ but in applications and
831         it breaks starting drags from the edge of a row.
832
833 2006-06-02  Kristian Rietveld  <kris@imendio.com>
834
835         Separate sensitive/selectable properties.
836
837         * gtk/gtktreeselection.c (tree_column_is_sensitive): remove,
838         (_gtk_tree_selection_row_is_selectable): remove checks to see if at
839         least one column is sensitive,
840         (gtk_tree_selection_real_select_node): remove code which enables
841         insensitive rows to always be unselected.
842
843         * gtk/gtktreeview.c (gtk_tree_view_row_changed): remove code
844         that unselects a node if it just became insensitive.
845
846         * gtk/gtkcombobox.c (gtkcombo_box_list_select_func): new function,
847         based on the at least one column sensitive check from
848         _gtk_tree_selection_row_is_selectable(),
849         (gtk_combo_box_list_setup): set selection function on tree selection.
850
851 2006-06-02  Kristian Rietveld  <kris@imendio.com>
852
853         * gtk/gtktreemodelfilter.c
854         (gtk_tree_model_filter_convert_child_path_to_path): need to use
855         gtk_tree_model_filter_get_iter_full() since the path returned
856         by gtk_real_tree_model_filter_convert_child_path_to_path() includes
857         invisible nodes.
858
859 2006-06-02  Matthias Clasen  <mclasen@redhat.com>
860
861         * gtk/gtkstatusicon.c (gtk_status_icon_get_geometry): Allow
862         to return partial information.  (#343625, Christian Persch)
863
864         * gtk/gtkwindow.c (gtk_window_key_release_event): Chain up
865         to key_release, not to key_press.  (#343677, Tommi Komulainen)
866
867 2006-06-02  Alexander Larsson  <alexl@redhat.com>
868
869         * gtk/Makefile.am:
870         Add gtkprintoperationpreview.[ch]
871         Set default preview command. Hardcoded for now.
872         
873         * gtk/gtkmarshalers.list:
874         Add BOOLEAN:OBJECT,OBJECT,OBJECT
875         
876         * gtk/gtkprintbackend.c:
877         Add preview command property.
878         
879         * gtk/gtkprintcontext.[ch]:
880         Make less dependent on PrintOperation for output settings
881         Externally set cairo_t and dpi. Resettable.
882         Create fontmap without metrics hinting (so that print preview
883         text layout doesn't depend on zoom level).
884         
885         * gtk/gtkprintoperation-private.h:
886         * gtk/gtkprintoperation-unix.c: 
887         * gtk/gtkprintoperation.[ch]:
888         Initial work on print preview API and default implementation
889         using an external preview app.
890         
891         * gtk/gtkprintoperation-win32.c:
892         Some needed updates. Not done, needs more work.
893         
894         * gtk/gtkprintoperationpreview.[ch]:
895         New interface used in print preview api.
896         
897         * gtk/gtkprintunixdialog.c:
898         Add print preview dialog.
899         
900         * tests/print-editor.c:
901         Test using an custom print preview widget.
902
903 2006-06-02  Emmanuele Bassi  <ebassi@gnome.org>
904
905         * gtk/gtkrecentmanager.c
906         (gtk_recent_info_get_application_info): Fix a typo (spotted by
907         Paolo Borelli and coverity).
908
909 2006-06-01  Matthias Clasen  <mclasen@redhat.com>
910         
911         * tests/testnotebookdnd.c: Small tweaks to test more things.
912
913         * gtk/gtktoolbutton.c (gtk_tool_button_class_init): Add
914         an icon-spacing style property for the same purpose.
915
916         * gtk/gtkbutton.c (gtk_button_class_init):  Add an image-spacing
917         style property that allows to adjust the spacing between image
918         and label in button.  (#320431, James Moger)
919
920         * gtk/gtkprintoperation-private.h: 
921         * gtk/gtkprintoperation.c: 
922         * gtk/gtkprintoperation-unix.c: Move the 
923         PrintPagesData.wait flag to GtkPrintOperationPrivate.is_sync.
924         Also use a recursive mainloop instead of manually looping.
925         
926         * gtk/gtkprintoperation.c: Add some examples to the docs.
927
928         * gtk/gtkprintbackend.c (gtk_print_backend_class_init): 
929         Intern signal names.
930
931         * gtk/gtkprintunixdialog.c: 
932         * gtk/gtkprintoperation-unix.c: Use canonical signal names.
933
934 2006-05-31  Matthias Clasen  <mclasen@redhat.com>
935
936         * gtk/gtkpagesetupunixdialog.c: Add docs, cleanup some
937         formatting.
938
939         * gtk/gtkprintoperation.c (print_pages_idle): Don't
940         treat manual_scale like a percentage, its a factor.
941
942         * gtk/gtktreeview.c (gtk_tree_view_class_init): Document
943         signals.  (#302556, Stefan Kost)
944
945 2006-05-31  Alexander Larsson  <alexl@redhat.com>
946
947         * gtk/gtk.symbols:
948         * demos/gtk-demo/printing.c:
949         * tests/print-editor.c:
950         * tests/testnouiprint.c:
951         * tests/testprint.c:
952         * tests/testprintfileoperation.c:
953         Further updates from the GtkPrintContext functions rename.
954         
955         * modules/printbackends/cups/gtkcupsutils.c:
956         Always set requesting-user-name when doing cups requests.
957
958 2006-05-31  Alexander Larsson  <alexl@redhat.com>
959
960         * gtk/gtkpagesetupunixdialog.c:
961         Remove request_details_tag with g_signal_handler_disconnect,
962         not g_source_remove. (#343475)
963
964 2006-05-31  Matthias Clasen  <mclasen@redhat.com>
965
966         * gtk/gtkprintcontext.h: 
967         * gtk/gtkprintcontext.c: 
968         * gtk/gtkprintoperation.c: 
969         * gtk/gtkprintoperation-unix.c: Change some function names to be 
970         longer and better. 
971         gtk_print_context_get_cairo -> gtk_print_context_get_cairo_context
972         gtk_print_context_get_fontmap -> gtk_print_context_get_pango_fontmap
973         gtk_print_context_create_context -> gtk_print_context_create_pango_context
974         gtk_print_context_create_layout -> gtk_print_context_create_pango_layout
975         Update all callers.
976
977         * gtk/gtkpagesetupunixdialog.c: Don't run the custom page
978         size dialog.  (#340444, Christian Persch)
979
980         * demos/gtk-demo/main.c (main): Display comments in friendly
981         DodgerBlue instead of scary red.  (#343444, Carol Spears)
982
983         * gtk/gtkfontbutton.c: 
984         * gtk/gtkcolorbutton.c: Clarify the docs of the color-set and
985         font-set signals.  (#343438, Olexiy Avramchenko)
986
987 2006-05-30  Matthias Clasen  <mclasen@redhat.com>
988
989         * gtk/gtkmain.c (gtk_grab_notify_foreach): Don't skip internal
990         children when emitting grab-notify.  (#343425, Markku Vire)
991
992         * gdk/gdkpixmap.c: 
993         * gdk/gdkwindow.c: Don't use G_DEFINE_TYPE, since the instance
994         struct name does not match the type name.  (#343453, Ed Catmur)
995
996         * gtk/gtk.symbols: 
997         * gtk/gtkbutton.h: 
998         * gtk/gtkbutton.c: Add a GtkButton::image-position property
999         with getter and setter, to allow constructing buttons with
1000         the image stacked on top of the label.  (#342930, Johan Dahlin)
1001
1002 2006-05-30  Johan Dahlin  <jdahlin@async.com.br>
1003
1004    * gtk/gtk.symbols:
1005    * gtk/gtkbutton.c: (gtk_button_class_init), (gtk_button_init),
1006    (gtk_button_set_property), (gtk_button_get_property),
1007    (gtk_button_construct_child), (gtk_button_set_image_spacing),
1008    (gtk_button_get_image_spacing):
1009    * gtk/gtkbutton.h:
1010    * gtk/gtktoolbutton.c: (gtk_tool_button_class_init),
1011    (gtk_tool_button_construct_contents),
1012    (gtk_tool_button_set_property), (gtk_tool_button_get_property),
1013    (_gtk_tool_button_get_button), (gtk_tool_button_set_icon_spacing),
1014    (gtk_tool_button_get_icon_spacing):
1015    * gtk/gtktoolbutton.h:
1016    Add GtkButton:image-spacing and GtkToolButton::icon-spacing.
1017    (#320431, James Moger)
1018
1019 2006-05-30  Kristian Rietveld  <kris@gtk.org>
1020
1021         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_button): only
1022         check sort column id if connected to sortable model.
1023
1024 2006-05-30  Behdad Esfahbod  <behdad@gnome.org>
1025
1026         * gdk/gdkpango.c (draw_error_underline): Fix offset to center the
1027         underline in requested rectangle. (Ported from pango fix.)
1028
1029 2006-05-29  Michael Natterer  <mitch@imendio.com>
1030
1031         * gtk/gtkdialog.h: removed forgotten declaration of
1032         _gtk_dialog_get_response_for_widget(), the function has been made
1033         public a long time ago.
1034
1035 2006-05-29  Michael Natterer  <mitch@imendio.com>
1036
1037         * gtk/gtktextview.c (gtk_text_view_target_list_notify): applied
1038         patch from Chris Wilson which replaces a useless loop with
1039         built-in access to free'd memory by a simple integer comparison.
1040         Fixes bug #342894.
1041
1042 2006-05-29  Kristian Rietveld  <kris@gtk.org>
1043
1044         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_up_down): select
1045         the current focus row if nothing is selected and ctrl is not pressed.
1046         (Fixes #324480, Murray Cumming/Srirama Sharma).
1047
1048 2006-05-28  Kristian Rietveld  <kris@gtk.org>
1049
1050         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_cell_focus): refactor
1051         to work correctly in RTL mode.
1052
1053         * gtk/gtktreeview.c (gtk_tree_view_move_cursor_left_right): make
1054         cursor movement to left/right work correctly in RTL mode.
1055
1056 2006-05-28  Behdad Esfahbod  <behdad@gnome.org>
1057
1058         * gdk/gdkrectangle.c (gdk_rectangle_union, gdk_rectangle_intersect):
1059         Note in docs that @dest can be the same as @src1 or @src2. (#343233,
1060         Christian Persch)
1061
1062 2006-05-28  Kristian Rietveld  <kris@gtk.org>
1063
1064         * gtk/gtkstyle.c (gtk_default_draw_flat_box): handle
1065         cell_even_ruled_sorted and cell_odd_ruled_sorted for the selected
1066         state.
1067
1068 2006-05-28  Kristian Rietveld  <kris@gtk.org>
1069
1070         * gtk/gtkenums.h: add GTK_ARROW_NONE.
1071
1072         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_update_column): always
1073         "show" the arrow if sort_column_id >= 0, only set arrow type if
1074         this column is the column we are currently sorting on. (#331338).
1075
1076 2006-05-27  Matthias Clasen  <mclasen@redhat.com>
1077
1078         * gtk/gtkrecentchoosermenu.c: Avoid trivial differences
1079         in translated strings.  (#343088, Clytie Siddall)
1080
1081 2006-05-28  Kristian Rietveld  <kris@gtk.org>
1082
1083         * gtk/gtktreeview.c (gtk_tree_view_build_tree): emit test_expand_row
1084         and test return value before expanding a branch. (Fixes #321523,
1085         reported by Daniel Lindenaar).
1086
1087 2006-05-28  Kristian Rietveld  <kris@gtk.org>
1088
1089         * gtk/gtktreeview.c (gtk_tree_view_insert_column): set the sizing
1090         type of the new column to FIXED,
1091         (gtk_tree_view_insert_column_with_attributes): likewise. (#341898,
1092         Dan Winship).
1093
1094 2006-05-27  Kristian Rietveld  <kris@gtk.org>
1095
1096         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_remove_node):
1097         only unref if elt->ref_count > 0,
1098         (gtk_tree_model_filter_row_deleted): likewise. (Fixes #340839,
1099         reported by Yevgen Muntyan).
1100
1101 2006-05-27  Kristian Rietveld  <kris@gtk.org>
1102
1103         Small refactoring. (#340428, Paolo Borelli).
1104
1105         * gtk/gtkliststore.c (gtk_list_store_set_valist_internal),
1106         (gtk_list_store_insert_with_valuesv): refactor code to determine
1107         iter compare func into gtk_list_store_get_compare_func().
1108
1109         * gtk/gtktreestore.c (gtk_tree_store_set_valist_internal),
1110         (gtk_tree_store_insert_with_valuesv): likewise.
1111
1112 2006-05-27  Kristian Rietveld  <kris@gtk.org>
1113
1114         * gtk/gtktreeview.c (gtk_tree_view_queue_draw_arrow): really fix
1115         #333284.
1116
1117 2006-05-27  Kristian Rietveld  <kris@gtk.org>
1118
1119         Editable cell window placement and RTL fixes.
1120
1121         * gtk/gtktreeview.c (gtk_tree_view_button_press),
1122         (gtk_tree_view_bin_expose), (gtk_tree_view_get_cell_area),
1123         (gtk_tree_view_create_row_drag_icon): Only add indentation to x
1124         if !rtl,
1125         (gtk_tree_view_create_row_drag_icon): Iterate over columns in reverse
1126         direction if in rtl mode.
1127
1128         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
1129         horizontal_separator is not part of the real background area width,
1130         add 2 * focus_line_width to real_cell_area.x and not
1131         real_background_area.x, fix up event coordinates check in the
1132         PACK_END loop, also set depth to zero at the end of the PACK_END
1133         loop,
1134         (_gtk_tree_view_get_neighbor_sizes): also add column_spacing for each
1135         visible cell.
1136
1137 2006-05-26  Matthias Clasen  <mclasen@redhat.com>
1138
1139         * gtk/stock-icons/24/gtk-orientation-landscape.png:
1140         * gtk/stock-icons/24/gtk-orientation-portrait.png:
1141         * gtk/stock-icons/24/gtk-orientation-reverse-landscape.png:
1142         * gtk/stock-icons/24/gtk-orientation-reverse-portrait.png:
1143         Cleaned up icons by Diana Fong.
1144
1145 2006-05-26  Kristian Rietveld  <kris@gtk.org>
1146
1147         * gtk/gtktreeview.c (gtk_tree_view_queue_draw_arrow): queue a redraw
1148         for the full width of the row, not just the width we got allocated.
1149         (Fixes #333284, reported by Benjamin Berg).
1150
1151 2006-05-26  Kristian Rietveld  <kris@gtk.org>
1152
1153         * gtk/gtktreeview.c (gtk_tree_view_top_row_to_dy): set dy to
1154         page_size + height in the event dy + page_size is about to become
1155         bigger than height.
1156
1157 2006-05-25  Matthias Clasen  <mclasen@redhat.com>
1158
1159         * gtk/gtk.symbols:
1160         * gtk/gtkstatusicon.h:
1161         * gtk/gtkstatusicon.c (gtk_status_icon_get_geometry):
1162         New function that can be used to e.g. position 
1163         notification bubbles wrt to the status icon.  
1164         (#341450, Christian Persch, Havoc Pennington)
1165
1166 2006-05-25  Matthias Clasen  <mclasen@redhat.com>
1167
1168         Make GTK+ work as an untrusted X client. (#136571,
1169         Ed Catmur)
1170
1171         * gdk/x11/gdkdisplay-x11.h:
1172         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): When 
1173         opening a display, determine if we are untrusted.
1174         
1175         * gdk/x11/gdkdisplay-x11.c (gdk_notify_startup_complete): 
1176         Just bail out when we are untrusted.
1177
1178         * gdk/x11/gdkwindow-x11.c (gdk_window_new): Work around
1179         a bug in the Xorg XSECURITY implementation by coercing
1180         toplevel InputOnly windows to InputOutput.
1181
1182         * gdk/x11/gdkwindow-x11.c (_gdk_windowing_get_pointer): 
1183         (_gdk_windowing_window_get_pointer): 
1184         When untrusted, call XQueryPointer on an auxiliary
1185         window, not on the root window.
1186         
1187         * gdk/x11/gdkwindow-x11.c (_gdk_windowing_window_at_pointer): 
1188         If untrusted, loop through all GDK-aware toplevels on all
1189         screens in the hope we hit one containing the pointer; 
1190         then use that as the basis of the current XQueryPointer 
1191         child recursion.
1192
1193         * gdk/x11/gdkmain-x11.c (gdk_pointer_grab): 
1194         (gdk_keyboard_grab): Ignore failed grabs when untrusted.
1195
1196         * gdk/x11/gdkdnd-x11.c (gdk_window_cache_new): Only
1197         cache our own toplevels when untrusted.
1198
1199         * gdk/x11/gdkdnd-x11.c (motif_send_enter): Don't try
1200         to do Motif DND as untrusted client.
1201
1202         * gdk/x11/gdkevents-x11.c (fetch_net_wm_check_window): 
1203         (gdk_x11_screen_get_window_manager_name): 
1204         (gdk_x11_screen_supports_net_wm_hint): 
1205         Bail out early if untrusted.
1206         
1207         * gtk/gtkcolorsel.c (grab_color_at_mouse): If getting 
1208         the color under the pointer by screenshooting the root 
1209         window fails, it tries to get the color from our own 
1210         window.
1211
1212         * gtk/gtkcolorsel.c (get_screen_color): Make the
1213         dropper_grab_widget a child of the dialog, not a 
1214         toplevel.
1215
1216         * gtk/gtkinvisible.c (gtk_invisible_realize): Respect
1217         a parent window that has been set before realizing.
1218
1219         * gtk/gtkwidget.c (gtk_widget_get_parent_window): 
1220         Always return a previously set parent window.
1221         
1222 2006-05-24  Matthias Clasen  <mclasen@redhat.com>
1223
1224         * gtk/gtkfontbutton.c (gtk_font_button_clicked): 
1225         * gtk/gtkcolorbutton.c (gtk_color_button_clicked): 
1226         Fix the handling of modality by copying what
1227         GtkFileChooserButton does.  (#342754, Yevgen Muntyan)
1228         
1229         * gtk/gtkprintunixdialog.c (create_main_page): Make
1230         the range entry insensitive if another range option
1231         is selected.  (#342783, Caolan McNamara)
1232         (update_dialog_from_capabilities): Make the collate
1233         check button insensitive unless multiple copies are
1234         printed  (#342781, Caolan McNamara)
1235
1236         * gtk/gtkwidget.c: Remove style properties when a widget
1237         class gets finalized, to make style properties work in
1238         dynamic types.  (#342513, Christian Persch)
1239
1240 2006-05-24  Henrique Romano  <henrique@async.com.br>
1241
1242         * gtk/gtkcellview.c: (gtk_cell_view_class_init),
1243         (gtk_cell_view_get_property), (gtk_cell_view_set_property):
1244         Add model property for GtkCellView, part of #172535.
1245
1246 2006-05-24  Matthias Clasen  <mclasen@redhat.com>
1247
1248         * gtk/gtkprintoperation.h: 
1249         * gtk/gtkprintoperation-private.h: 
1250         * gtk/gtk.symbols:
1251         * gtk/gtkprintoperation.c: Add a custom-tab-label property.
1252         
1253         * gtk/gtkprintoperation-unix.c (get_print_dialog): Use it
1254         here.  (#342752, Yevgen Muntyan)
1255
1256 2006-05-24  Alexander Larsson  <alexl@redhat.com>
1257
1258         * gtk/gtk.symbols:
1259         * gtk/gtkprintunixdialog.[ch]:
1260         Add gtk_print_unix_dialog_set_manual_capabilities that controls
1261         what widgets to enable in the dialog depending on the apps
1262         capabilities.
1263         
1264         * gtk/gtkprintbackend.[ch]:
1265         * gtk/gtkprinter-private.h:
1266         * gtk/gtkprinter.c:
1267         * gtk/gtkprintjob.h:
1268         Add printer_get_capabilities to backend.
1269         Move some fallback calls to the printbackend base class.
1270         
1271         * gtk/gtkprintoperation-unix.c:
1272         Set manual capabilities
1273         
1274         * modules/printbackends/cups/gtkprintbackendcups.c:
1275         Implement get_capabilities
1276         
1277         * modules/printbackends/lpr/gtkprintbackendlpr.c:
1278         * modules/printbackends/pdf/gtkprintbackendpdf.c:
1279         Move some methods to baseclass.
1280
1281 2006-05-23  Matthias Clasen  <mclasen@redhat.com>
1282
1283         * gtk/gtkprintoperation.c (print_pages): Do the begin-print
1284         emission in the idle, so that the print dialog goes away
1285         before begin-print.
1286
1287 2006-05-23  Matthias Clasen  <mclasen@redhat.com>
1288
1289         * gtk/gtk.symbols: 
1290         * gtk/gtkprintoperation.h: 
1291         * gtk/gtkprintoperation.c: Add a boolean show-progress  
1292         property, and show a progress dialog if it is set to TRUE.
1293
1294         * gtk/gtkprintoperation.c (pdf_end_run): 
1295         * gtk/gtkprintoperation-win32.c (win32_end_run): 
1296         * gtk/gtkprintoperation-unix.c (unix_end_run): 
1297         * gtk/gtkprintoperation-private.h: Add a cancelled
1298         parameter to end_run, and call it even if the print
1299         operation was cancelled.
1300
1301 2006-05-23  Alexander Larsson  <alexl@redhat.com>
1302
1303         * gtk/gtkprinteroptionwidget.c (filesave_changed_cb):
1304         Allow absolute filenames in filename entry.
1305         Patch from Yevgen Muntyan (#341679)
1306
1307 2006-05-23  Alexander Larsson  <alexl@redhat.com>
1308
1309         * gtk/gtk.symbols:
1310         * gtk/gtkprintunixdialog.[ch]:
1311         Add gtk_print_unix_dialog_add_custom_tab
1312         
1313         * gtk/gtkprintoperation-unix.c:
1314         Implement custom widgets for unix.
1315         Fix some warnings by including cairo-ps/pdf.h
1316         
1317         * gtk/gtkprintoperation-win32.c:
1318         Mark string for translation.
1319
1320 2006-05-22  Matthias Clasen  <mclasen@redhat.com>
1321
1322         * gtk/gtkprintoperation.c (gtk_print_operation_class_init): 
1323         Fix docs.
1324
1325 2006-05-22  Alexander Larsson  <alexl@redhat.com>
1326
1327         * gtk/gtkmain.c:
1328         Make sure grab-notify is emitted on toplevels as well as 
1329         child widgets.
1330
1331         * gtk/Makefile.am:
1332         * gtk/gtkwin32embedwidget.[ch]
1333         Add new widget used for win32 port to embed gtk+
1334         widgets in windows dialog.
1335
1336         * gtk/gtkmarshalers.list:
1337         Add POINTER:VOID
1338
1339         * gtk/gtkprintoperation-private.h:
1340         * gtk/gtkprintoperation.[ch]:
1341         Generic support for custom widgets in print dialog.
1342
1343         * gtk/gtkprintoperation-win32.c:
1344         Implement custom widget support for win32.
1345
1346         * tests/print-editor.c:
1347         Allow setting of font using custom widgets in the print dialog.
1348
1349 2006-05-22  Behdad Esfahbod  <behdad@gnome.org>
1350
1351         Rollback the following changes, to fix it the proper way in Pango:
1352
1353         * gdk/gdkinternals.h:
1354         * gdk/gdkscreen.c (gdk_screen_class_init), (gdk_screen_finalize),
1355         (update_fontmap_resolution), (gdk_screen_set_resolution):  Add new
1356         function _gdk_screen_get_font_map() and have one fontmap per screen,
1357         with the correct resolution set on it.
1358
1359         * gdk/gdkpango.c (gdk_pango_context_get_for_screen): Use
1360         _gdk_screen_get_font_map() instead of setting resolution on the
1361         PangoCairoContext.  (#342529)
1362
1363 2006-05-22  Emmanuele Bassi  <ebassi@gnome.org>
1364
1365         * gtk/gtkrecentmanager.h:
1366         * gtk/gtkrecentmanager.c
1367         (gtk_recent_info_get_application_info): Don't mask "time" with
1368         the "time" argument.
1369
1370 2006-05-22  Matthias Clasen  <mclasen@redhat.com>
1371
1372         * gdk/gdkcolor.h: gdk_color_parse returns boolean, not int.
1373         (#342569, Masatake Yamato)
1374
1375         * gtk/gtkprintunixdialog.c (dialog_set_scale): Don't return
1376         a value from a void function.
1377
1378         * gtk/gtkprinter.c (_gtk_printer_prepare_for_print) 
1379         (_gtk_printer_get_settings_from_options) 
1380         (_gtk_printer_request_details): Don't return values from void
1381         functions.
1382
1383         * gtk/gtkrecentchooserutils.c (delegate_unselect_uri): Don't
1384         return a value from a void function.
1385
1386         * gtk/gtkfilesystem.c (gtk_file_system_cancel_operation): Don't
1387         return a value from a void function.  Also, don't put 
1388         semicolons behind G_DEFINE_TYPE. (#342543)
1389
1390         * gtk/gtkwidget.c (gtk_widget_class_init): Add docs
1391         for new style properties.  (#342535, Mart Raudsepp)
1392
1393         * gdk/x11/gdkscreen-x11.c: Remove _gdk_x11_screen_request_cm_notification
1394
1395         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Directly call 
1396         gdk_display_request_selection_notification. 
1397
1398         * gdk/x11/gdkdisplay-x11.c: Several cleanups.
1399         
1400 2006-05-21  Behdad Esfahbod  <behdad@gnome.org>
1401
1402         * gdk/gdkinternals.h:
1403         * gdk/gdkscreen.c (gdk_screen_class_init), (gdk_screen_finalize),
1404         (update_fontmap_resolution), (gdk_screen_set_resolution):  Add new
1405         function _gdk_screen_get_font_map() and have one fontmap per screen,
1406         with the correct resolution set on it.
1407
1408         * gdk/gdkpango.c (gdk_pango_context_get_for_screen): Use
1409         _gdk_screen_get_font_map() instead of setting resolution on the
1410         PangoCairoContext.  (#342529)
1411
1412 2006-05-22  Tor Lillqvist  <tml@novell.com>
1413
1414         * gtk/gtkfilesystemwin32.c: Make it compile again. Doesn't work
1415         properly yet, though. There is lots of commonality between this
1416         file and gtkfilesystemunix.c that should really be factored out.
1417
1418 2006-05-19  Matthias Clasen  <mclasen@redhat.com>
1419
1420         * gtk/gtkpaned.c (gtk_paned_compute_position): Avoid warnings
1421         if a child is NULL.  (#342007, Patrick Monnerat)
1422         
1423         * gtk/gtk.symbols: 
1424         * gtk/gtkprintoperation.h: 
1425         * gtk/gtkprintoperation.c (gtk_print_operation_cancel): New function
1426         to cancel a running print operation.
1427
1428         * gtk/gtkprintoperation-private.h (struct _GtkPrintOperationPrivate): 
1429         Add a cancelled flag, use g types, use bitfields.
1430
1431         * gtk/gtkprintoperation.c (print_pages): Clean up after the idle
1432         in the synchronous case.
1433
1434         * gtk/gtknotebook.c (gtk_notebook_pages_allocate): Fix a 
1435         boundary case in scrolling where a tab was not shown.  (#168105,
1436         Hiroyuki Ikezoe, patch by Kouhei Sutou)
1437
1438 2006-05-19  Damon Chaplin  <damon@gnome.org>
1439
1440         * gtk/gtkfontsel.c (gtk_font_selection_init): use
1441         atk_relation_add_target() to add the targets, since it sets up weak
1442         references to avoid crashes. (#305530)
1443
1444 2006-05-18  Matthias Clasen  <mclasen@redhat.com>
1445
1446         * gtk/gtkprintoperation.h: 
1447         * gtk/gtkprintoperation.c: Add a GtkPrintOperation:: paginate signal 
1448         that gets emitted to paginate a document in chunks.
1449
1450         * gtk/gtkprintoperation-private.h: 
1451         * gtk/gtkmarshalers.list: Add necessary glue.
1452
1453         * gtk/gtkcalendar.c (gtk_calendar_drag_motion): Don't produce
1454         a stuck drag if shift is held.  (#341734, Sebastien Bacher) 
1455
1456         * gdk/x11/gdkdnd-x11.c (_gdk_drag_get_protocol_for_display): 
1457         Always set protocol.  (#342003, Tommi Komulainen)
1458
1459         * gtk/gtkimage.c (icon_theme_changed): Only unref the pixbuf
1460         if the image has the appropriate storage type.  (#342096, Tommi
1461         Komulainen)
1462
1463         * configure.in: Actually require GLib 2.11
1464         
1465         * gtk/gtkentry.c (gtk_entry_drag_data_received): Make drops
1466         end up at the right spot.  (#342072,  Yevgen Muntyan)
1467
1468 2006-05-18  Michael Natterer  <mitch@imendio.com>
1469
1470         * gtk/gtkrange.c: canonicalize the name of the "activate-slider"
1471         style property and use GTK_PARAM_READABLE instead of
1472         G_PARAM_READABLE. Moved one "activate_slider" variable to the
1473         local scope its used in.
1474
1475 2006-06-18  Michael Emmel  <mike.emmel@gmail.com>
1476
1477         * gdk/directfb/gdkscreen-directfb.c: 
1478         * added gdk_screen_is_composited to compile
1479         * Bug 342091
1480
1481 2006-05-17  Alexander Larsson  <alexl@redhat.com>
1482
1483         * gtk/gtkprintoperation-win32.c:
1484         Update to changed APIs.
1485
1486 2006-05-16  Matthias Clasen  <mclasen@redhat.com>
1487
1488         * configure.in: Bump version
1489
1490         * === Released 2.9.1 ====
1491
1492         * configure.in: Reset interface age
1493         
1494         * NEWS: Updates
1495
1496 Tue May 16 12:36:25 2006  Søren Sandmann  <sandmann@redhat.com>
1497
1498         * gtk/gtktoolbar.c (gtk_toolbar_size_allocate): Move getting the
1499         property out of the loop, and rename the variable 'max_expand'.
1500
1501         * gtk/gtktoolbar.c (gtk_toolbar_class_init): Fix the decription
1502         for the max-child-expand property. 
1503
1504 2006-05-16  Matthias Clasen  <mclasen@redhat.com>
1505
1506         * gtk/gtkprinter.c (gtk_printer_class_init): 
1507         * gtk/gtkprintjob.c (gtk_print_job_class_init): 
1508         * gtk/gtkprintoperation.c (gtk_print_operation_class_init): 
1509         Cosmetic cleanups.
1510
1511         * gtk/gtkpagesetupunixdialog.c (populate_dialog): Add labels
1512         for page orientations, also add the fourth one.  (#339589)
1513
1514         * gtk/stock-icons/24/gtk-orientation-reverse-portrait.png: New
1515         icon.
1516         
1517         * gtk/Makefile.am: Add it here.
1518         
1519         * gtk/gtkstock.[hc]: Add stock items for the page orientations.
1520
1521 2006-05-16  Michael Natterer  <mitch@imendio.com>
1522
1523         * gtk/gtktoolbar.c: added "max-child-expand" style property which
1524         limits the space taken by expanding tool items. Fixes bug #340722.
1525
1526 2006-05-16  Kristian Rietveld  <kris@imendio.com>
1527
1528         * gtk/gtkpathbar.c (gtk_path_bar_dispose): cancel all pending handles
1529         in the button list. (Fixes #341035, reported by William Jon McCann).
1530
1531 2006-05-16  Kristian Rietveld  <kris@imendio.com>
1532
1533         * gtk/gtkfilechooserdefault.c
1534         (show_and_select_paths_finished_loading): put the newly selected
1535         row(s) the in the middle of the view,
1536         (update_current_folder_get_info_cb),
1537         (gtk_file_chooser_default_update_current_folder): make sure reload
1538         state is set to RELOAD_HAS_FOLDER while loading the new folder,
1539         so _map() won't start loading the current working directory. (Fixes
1540         #341028, reported by Michael Natterer).
1541
1542 2006-05-15  Matthias Clasen  <mclasen@redhat.com>
1543
1544         * gtk/gtktreeview.c (gtk_tree_view_button_press): Fix
1545         an RTL problem with toggles in expander columns. 
1546         (#341896, Roozbeh Pournader) 
1547
1548 Mon May 15 15:12:05 2006  Søren Sandmann  <sandmann@redhat.com>
1549
1550         * gtk/gtklayout.c (gtk_layout_realize),
1551         * gtk/gtkiconview.c (gtk_icon_view_realize),
1552         * gtk/gtktreeview.c (gtk_tree_view_realize): Set the background of
1553         the clip windows to NULL, since they are generally invisible and
1554         don't have EXPOSURE set, which means they temp-unvlicker code
1555         doesn't apply to them.
1556
1557         * gdk/x11/gdkgeometry-x11.c (_gdk_window_move_resize_child): Unset
1558         the background of the parent window during resizing. Invalidate
1559         the uncoered area of the parent window. Bug 341332.
1560
1561 2006-05-15  Richard Hult  <richard@imendio.com>
1562
1563         * gdk/quartz/gdkevents-quartz.c (_gdk_events_init): Remove obsolete 
1564         comment.
1565         (poll_func): Remove assert and add a comment on how to fix properly.
1566         (gdk_events_pending): Implement.
1567
1568 2006-05-15  Matthias Clasen  <mclasen@redhat.com>
1569
1570         * gtk/gtkprintoperation.c: Reverse the order of
1571         ranges when printing in reverse.  (#341578)
1572
1573 2006-05-15  Alexander Larsson  <alexl@redhat.com>
1574         
1575         * gtk/gtkprintjob.[ch]:
1576         Added gtk_print_job_set/get_track_print_status
1577
1578         * gtk/gtkprintoperation-private.h:
1579         * gtk/gtkprintoperation.[ch]:
1580         Add gtk_print_operation_set_track_print_status.
1581         
1582         * gtk/gtkprintoperation-unix.c:
1583         Implement track_print_status on unix
1584         
1585         * gtk/gtkprintoperation-win32.c:
1586         Implement track_print_status on win32
1587         
1588         * gtk/gtk.symbols:
1589         Added symbols
1590         
1591         * modules/printbackends/cups/gtkprintbackendcups.c:
1592         Implement track_print_status for cups
1593         
1594         * tests/print-editor.c:
1595         Test track_print_status.
1596
1597 2006-05-15  Matthias Clasen  <mclasen@redhat.com>
1598
1599         * gtk/gtkprintoperation.c: Do page rendering in an idle when
1600         running asynchronous. 
1601
1602 2006-05-15  Alexander Larsson  <alexl@redhat.com>
1603
1604         * gtk/gtk.symbols: 
1605         * gtk/gtkprintbackend.[ch]: (_gtk_print_backend_create):
1606         Never unload print backends.
1607         Remove gtk_print_backend_unref_at_idle.
1608
1609         * modules/printbackends/cups/gtkprintbackendcups.c:
1610         (cups_dispatch_watch_finalize):
1611         Don't use the unref_at_idle hack since that caused
1612         deadlocks. Instead we never unload print backends, which
1613         is not really a big problem.
1614
1615 2006-05-14  Murray Cumming  <murrayc@murray.com>
1616
1617         * gtk/gtkframe.c: Restored the / at the start of the comment 
1618         block, to fix the build.
1619
1620 2006-05-13  Matthias Clasen  <mclasen@redhat.com>
1621
1622         * gtk/*.c:
1623         * gdk-pixbuf/*.c:
1624         * gdk/*.c: Remove erroneous ; after G_DEFINE_TYPE 
1625         macros.  (#341692, Yevgen Muntyan)
1626
1627         * gtk/gtktextbtree.c: 
1628         * gtk/gtktextview.c: Move some asserts to the right 
1629         place.  (#341661, #341665, Pascal Terjan)
1630
1631 2006-05-12  Matthias Clasen  <mclasen@redhat.com>
1632
1633         * gtk/gtknotebook.c: Fix some corner cases in the size
1634         allocation logic for tabs.  (#341577, Carlos Garnacho Parro)
1635
1636         * gtk/gtkprintunixdialog.c: Some fixes to capitalization of
1637         labels.  (#341558, Dennis Cranston)
1638
1639         * gtk/gtknotebook.c: Handle tab_label being NULL better.
1640         (#341455, William Jon McCann, patch by Carlos Garnacho Parro)
1641
1642         * gtk/gtkruler.c: Reinstate the ruler metrics strings, since
1643         they are used by glade, pointed out by Damon Chaplin.
1644
1645 2006-05-12  Alexander Larsson  <alexl@redhat.com>
1646
1647         * gtk/gtkwindow.c:
1648         Better handling of the window group on unsetting transient-for, since
1649         the transient parent might have changed group.
1650         
1651         * gtk/gtkmenu.c:
1652         Combine the handling of transient for the attach-widget and the
1653         window group handling by setting transient-to on popup/popdown only.
1654
1655         See bug #340401
1656         
1657         * gtk/gtkprintunixdialog.c:
1658         Remove part of old fix no longer needed.
1659
1660 2006-05-12  Alexander Larsson  <alexl@redhat.com>
1661
1662         * gtk/gtkprintoperation.c (gtk_print_operation_set_n_pages):
1663         Update g_object_notify to new property name.
1664
1665 2006-05-12  Alexander Larsson  <alexl@redhat.com>
1666
1667         * gtk/gtkrecentmanager.c:
1668         Fix build errors.
1669         
1670         * gtk/gtk.symbols:
1671         * demos/gtk-demo/printing.c:
1672         * gtk/gtkprintoperation-win32.c:
1673         * gtk/gtkprintoperation.[ch]:
1674         * gtk/gtkprintsettings.[ch]: 
1675         * modules/printbackends/cups/gtkprintbackendcups.c:
1676         * modules/printbackends/lpr/gtkprintbackendlpr.c:
1677         * modules/printbackends/pdf/gtkprintbackendpdf.c:
1678         * tests/print-editor.c:
1679         * tests/testnouiprint.c:
1680         * tests/testprint.c:
1681         * tests/testprintfileoperation.c:
1682         Rename functions from nr_of_pages to n_pages, and num_copies to
1683         n_copies to match other gtk+ names.
1684         
1685         * gtk/gtkmenu.c: (gtk_menu_popdown):
1686         Only re-set window group on popdown if we set it on popup (i.e.
1687         if there is a parent menu shell).
1688         Fixed part of bug #340401
1689
1690         * gtk/gtkwindow.c:
1691         Add (contruct) property "transient-for" to GtkWindow. This
1692         is needed for the fix to bug #340401.
1693         
1694         * gtk/gtkprintunixdialog.c:
1695         Use the transient-for property on construction and populate the dialog
1696         with widgets after that. This fixes bug #340401.
1697         More n_pages renames.
1698
1699 2006-05-11  Emmanuele Bassi  <ebassi@cvs.gnome.org>
1700
1701         * gtk/gtkrecentmanager.h: Remove the error parameter to the
1702         gtk_recent_manager_add() and gtk_recent_manager_add_full()
1703         functions; remove the unneeded error codes from the error
1704         enumeration.  (#336774).
1705
1706         * gtk/gtkrecentmanager.c: Make gtk_recent_manager_add() and
1707         gtk_recent_manager_add_full() complain loudly about wrong or
1708         missing meta-data, instead of using a GError.  (#336774)
1709
1710 2006-05-11  Matthias Clasen  <mclasen@redhat.com>
1711
1712         * demos/gtk-demo/Makefile.am (demos): Add it here.
1713
1714         * demos/gtk-demo/printing.c (do_printing): Add a GtkPrintOperation demo.
1715
1716 2006-05-11  Carlos Garcia Campos  <carlosgc@gnome.org>
1717
1718         * gtk/gtkfilechooserembed.c: use I_() instead of _() when creating
1719         response-requested signal. Fixes bug #341416
1720
1721 2006-05-11  Matthias Clasen  <mclasen@redhat.com>
1722
1723         * gdk/gdkkeysyms.h: Regenerated from Xorg 7.1 keysyms.h, using
1724         gdkkeysyms-update.pl.
1725
1726         * gdk/gdkkeysyms-update.pl: Script to sync gdkkeysyms.h
1727         with Xorg.  (#321896, Simos Xenitellis)
1728
1729         * gdk/Makefile.am (EXTRA_DIST): Add gdkkeysyms-update.pl
1730
1731         * gdk/gdkkeysyms.h: Consistently use lowercase in hex numbers.
1732
1733 2006-05-10  Carlos Garnacho  <carlosg@gnome.org>
1734
1735         * gtk/gtknotebook.c: check that tab_label is not NULL before checking
1736         that it's notebook's child. Closes #341247.
1737
1738 Wed May 10 15:57:53 2006  Tim Janik  <timj@imendio.com>
1739
1740         * applied unified patch for configurable scroll arrow sizes from
1741         bug #333632 and bug #325282.
1742
1743         * gtk/gtkwidget.c (gtk_widget_class_init): added ::scroll-arrow-hlength
1744         and ::scroll-arrow-vlength style properties. fixed upper limit for
1745         ::separator-width and ::separator-height to be MAXINT.
1746
1747         * gtk/gtkmenu.c: use GtkWidget::scroll-arrow-vlength to determine the
1748         scroll arrow size, instead of using a hard coded constant.
1749
1750         * gtk/gtknotebook.c: use GtkWidget::scroll-arrow-vlength and
1751         GtkWidget::scroll-arrow-hlength to determine scroll arrow sizes.
1752         added GtkNotebook::arrow-spacing style property to configure the
1753         spacing between scroll arrows.
1754
1755 2006-05-10  Matthias Clasen  <mclasen@redhat.com>
1756
1757         * gtk/gtkpagesetupunixdialog.c: Don't include langinfo.h
1758         unconditionally.  (#341217)
1759
1760 2006-05-10  John (J5) Palmieri  <johnp@redhat.com>
1761
1762         * modules/printbackends/cups/gtkprintbackendcups.c:
1763         make the _CUPS_MAP_ATTR_STR macro not dup the string so we don't
1764         leak 
1765
1766 2006-05-10  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
1767
1768         * gtk/paper_names.c: Correct #11 Envelope typo.
1769
1770 2006-05-09  Tor Lillqvist  <tml@novell.com>
1771
1772         * gdk/win32/gdkevents-win32.c (doesnt_want_scroll): Look at both
1773         GDK_SCROLL_MASK and GDK_BUTTON_PRESS_MASK. (#139628)
1774
1775 2006-05-09  Matthias Clasen  <mclasen@redhat.com>
1776
1777         * gtk/gtktextbuffer.c (gtk_text_buffer_class_init): Add a :cursor-position
1778         property.  (#334412, Yevgen Muntyan)
1779
1780         * gtk/gtk.symbols:
1781         * gtk/gtkmessagedialog.[hc]: Add an image property.  (#337306, Alex Graveley)
1782
1783 2006-05-09  Carlos Garnacho  <carlosg@gnome.org>
1784
1785         * gtk/gtknotebook.c: create an independent GdkWindow to behave nicely
1786         during reordering with tab_labels with their own window, also use
1787         gtk_drag_set_icon_widget() for the DnD icon to avoid drawing garbage
1788         from offscreen regions. Closes bug #335707.
1789         (gtk_notebook_tab_space), (gtk_notebook_calculate_shown_tabs),
1790         (gtk_notebook_calculate_tabs_allocation): new functions, 
1791         gtk_notebook_pages_allocate() functionality has been splitted into
1792         these.
1793
1794 2006-05-08  Matthias Clasen  <mclasen@redhat.com>
1795
1796         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_add_shortcut_folder): 
1797         * gtk/gtktextbufferserialize.c (parse_attr_element): Fix some typos in
1798         messages.  (#341091, Tino Meinen)
1799
1800         * gtk/gtkstatusicon.c: Some cleanups.
1801         
1802         * gtk/gtkstatusicon.c (gtk_status_icon_get_property): Silently return
1803         NULL if the storage type of the image does not match.  (#340516, Christian
1804         Persch)
1805
1806         * gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): Elide (_x) in the middle
1807         of the string, too.  (#323956, Abel Cheung)
1808
1809         * gtk/gtkuimanager.c (update_node): Fix tooltips. (#340527, Jon-Kare Hellan)
1810
1811         * configure.in: Require Pango 1.13.0
1812
1813         * gtk/gtknotebook.c: 
1814         * gtk/gtkwindow.c: 
1815         * gtk/gtkrange.c: Fix doc typos.
1816
1817 2006-05-08  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
1818
1819         * gtk/gtkprintunixdialog.c (gtk_print_unix_dialog_class_init):
1820         Corrected a duplicate word.
1821
1822         * gtk/gtkrecentmanager.c (gtk_recent_manager_add_full): Corrected
1823         a typo.
1824
1825 2006-05-07  Matthias Clasen  <mclasen@redhat.com>
1826
1827         * gtk/gtkrange.c (gtk_range_key_press):  Chain up, to
1828         make bindings work.  Noticed by Al Puzzuoli.
1829         
1830 2006-05-07  Matthias Clasen  <mclasen@redhat.com>
1831
1832         * gtk/gtkseparator.c: 
1833         * gtk/gtkscrollbar.c: 
1834         * gtk/gtkpaned.c: 
1835         * gtk/gtkoldeditable.c: 
1836         * gtk/gtkmisc.c: 
1837         * gtk/gtkitem.c: 
1838         * gtk/gtkimcontext.c: 
1839         * gtk/gtkrange.c:
1840         * gtk/gtkscale.c: Make types abstract again.
1841
1842 2006-05-06  Matthias Clasen   <mclasen@redhat.com>
1843         
1844         * gdk/gdkwindow.c (gdk_window_get_toplevels): Fix a wrong
1845         reference in the docs.  (#340870, Ed Catmur)
1846
1847 2006-05-05  Christian Persch  <chpe@cvs.gnome.org>
1848
1849         * modules/printbackends/cups/gtkprintbackendcups.c:
1850         * modules/printbackends/lpr/gtkprintbackendlpr.c:
1851         * modules/printbackends/pdf/gtkprintbackendpdf.c: Always register
1852           the type with the type module, even if it had been registered
1853           before. Fixes bug #340676.
1854
1855 2006-05-05  Matthias Clasen  <mclasen@redhat.com>
1856
1857         * gtk/gtkprintunixdialog.c: Use theme colors for 
1858         the page layout indicator, and do RTL flipping for
1859         the collate indicator.
1860
1861 2006-05-05  Matthias Clasen  <mclasen@redhat.com>
1862
1863         * configure.in: Require GLib 1.11.0
1864
1865         * configure.in: Bump version
1866
1867         * === Released 2.9.0 ===
1868
1869         * configure.in: Require cairo 1.1.6
1870
1871         * gtk/Makefile.am: Tweaks to make distcheck work.
1872
1873 2006-05-05  Alexander Larsson  <alexl@redhat.com>
1874
1875         * gtk/gtkprintoperation-unix.c:
1876         Implement per-page paper sizes.
1877         
1878         * gtk/gtkprintoperation.c:
1879         Implement per-page paper sizes for pdf output.
1880         Make gtk_print_operation_set_pdf_target() work again
1881         
1882         * tests/Makefile.am:
1883         * tests/testprint.c:
1884         * tests/testprintfileoperation.[ch]:
1885         Add more test code for printing support.
1886         This tests per-page paper sizes & orientation and
1887         deriving from GtkPrintOperation.
1888
1889 2006-05-04  Michael Emmel  <mike.emmel@gmail.com>
1890
1891         * gdk/directfb/gdkkeys-directfb.c: DIKI_ALTGR to compile with
1892         directfb 0.9.25.1
1893
1894 2006-05-04  Michael Natterer  <mitch@imendio.com>
1895
1896         * gtk/gtk.symbols: remove gtk_printer_set_backend so it compiles
1897         again.
1898
1899 2006-05-04  Alexander Larsson  <alexl@redhat.com>
1900
1901         * gtk/gtk.symbols:
1902         Added new symbols
1903         
1904         * gtk/gtkpagesetupunixdialog.c:
1905         * gtk/gtkprintunixdialog.c:
1906         Destroy backends when finalizing dialogs.
1907         Fix printer leak in selected_printer_changed.
1908         
1909         * gtk/gtkprintbackend.[ch]:
1910         Convert from interface to baseclass.
1911         Move printer hashtable here so that the baseclass can handle
1912         the slightly complicated ownership model.
1913         Add gtk_print_backend_destroy which runs the dispose method,
1914         causing the ref-cycles between the backend and its printers
1915         to be broken.
1916         Add gtk_print_backend_unref_at_idle().
1917         
1918         * gtk/gtkprinter.[ch]:
1919         GtkPrinter objects now ref their backend so that its always
1920         availible, since its needed for the printer object to work.
1921         This causes a reference-cycle that is broken using
1922         gtk_print_backend_destroy.
1923         Add gtk_printer_compare.
1924         
1925         * gtk/gtkprintoperation-private.h:
1926         * gtk/gtkprintoperation-unix.c:
1927         * gtk/gtkprintoperation.c:
1928         Implement !show_dialog for unix.
1929         Make sure the print data is fully spooled before returning
1930         from a sync run_dialog.
1931         
1932         
1933         * modules/printbackends/cups/gtkcupsutils.[ch]:
1934         Add gtk_cups_request_ipp_add_strings
1935         
1936         * modules/printbackends/cups/gtkprintbackendcups.c:
1937         * modules/printbackends/cups/gtkprintercups.c:
1938         * modules/printbackends/lpr/gtkprintbackendlpr.c:
1939         * modules/printbackends/pdf/gtkprintbackendpdf.c:
1940         Convert backends to derive instead of implementing interface.
1941         Move common code into baseclass.
1942         CUPS:
1943           Remove the printer polling in dispose, not finalize.
1944           In the cups watch, remove the backend at idle instead of
1945           immediately, since the unref can cause the module to be unloaded.
1946           Limit the number of printer attributes requested
1947           Get printer uri in initial printer listing so that we can use
1948           the printer object immediately.
1949         
1950         * tests/Makefile.am:
1951         * tests/testnouiprint.c:
1952         Add testcase for !show_dialog.
1953
1954 2006-05-04  Matthias Clasen  <mclasen@redhat.com>
1955
1956         * gtk/gtk.symbols:
1957         * gtk/gtkfilesystem.c:
1958         * gtk/gtkfilesystemunix.c:
1959         * gtk/gtkprintbackend.h:
1960         * gtk/gtkrecentchooserdefault.c:
1961         * gtk/gtkrecentchooserdefault.h:
1962         * gtk/paper_names_offsets.c: Make symbol list mstch reality.
1963         
1964         * gtk/Makefile.am: Fix a typo.
1965         
1966         * gdk/x11/Makefile.am (EXTRA_DIST): Add gdksettings.c
1967
1968 2006-05-03  Matthias Clasen  <mclasen@redhat.com>
1969
1970         * NEWS: Updates
1971
1972 2006-05-04  Murray Cumming <murrayc@murrayc.com>
1973
1974         * gtk/gtktreemodel.c: (gtk_tree_model_base_init): Changed the 
1975         language of the signals documentation slightly. Bug #340205.
1976
1977 2006-05-03  Federico Mena Quintero  <federico@novell.com>
1978
1979         Merged the federico-filename-entry branch, to fix bug #136541.
1980         Combined ChangeLogs:
1981
1982         2006-04-17  Federico Mena Quintero  <federico@novell.com>
1983
1984         * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
1985         Oops, we *do* need to check that we are in OPEN mode before
1986         selecting the first row in the file list.  See
1987         https://bugzilla.novell.com/show_bug.cgi?id=166906
1988         (gtk_file_chooser_default_get_paths): If we are in the case for
1989         the file list, and the list has no selected rows, jump to the case
1990         for the filename entry.  This is so that
1991
1992                1. The user types a filename in the SAVE filename entry
1993                   ("foo.txt").
1994
1995                2. He then double-clicks on a folder ("bar") in the file
1996                   list.
1997
1998         will yield the expected "bar/foo.txt" selection.
1999
2000         2006-03-29  Federico Mena Quintero  <federico@novell.com>
2001
2002         * gtk/gtkpathbar.c (gtk_path_bar_init): Reduce the inter-button
2003         spacing to 0.
2004
2005         * gtk/gtkfilechooserdefault.c (browse_widgets_create): Make the
2006         location label bold.
2007
2008         2006-03-29  Federico Mena Quintero  <federico@novell.com>
2009
2010         * gtk/gtkfilechooserdefault.c (location_mode_set): Just change the
2011         location_mode field if we are in SAVE/CREATE_FOLDER modes.
2012         (gtk_file_chooser_default_get_paths): Get the path based on the
2013         currently focused widget, or the last-focused widget.  This is
2014         what we should have been doing in the beginning, but it worked out
2015         fine because we didn't have the possibility of a filename entry in
2016         OPEN mode.
2017         (gtk_file_chooser_default_should_respond): Handle the case where
2018         the last focused widget is the location_entry.
2019
2020         2006-03-28  Federico Mena Quintero  <federico@novell.com>
2021
2022         * gtk/gtkfilechoosersettings.[ch]: New files with a simple
2023         framework for saving/loading settings from the file chooser in
2024         $XDG_CONFIG_HOME/gtk-2.0/gtkfilechooser.
2025
2026         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_unmap):
2027         Save the current settings.
2028         (settings_save): New helper function.  We save the location_mode
2029         and show_hidden flags.
2030         (gtk_file_chooser_default_map): Load the settings.
2031         (settings_load): New helper function.
2032
2033         * gtk/gtkfilechooserentry.c
2034         (_gtk_file_chooser_entry_set_file_part): Oops, don't modify
2035         in_change.  Our handlers are what set the file_part, so they
2036         *must* be run when we modify the text.
2037
2038         2006-03-27  Federico Mena Quintero  <federico@novell.com>
2039
2040         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserDefault):
2041         Removed the save_file_name_entry.  We'll make this be the same as
2042         the location_entry widget.
2043         (struct _GtkFileChooserDefault): Leave only location_button,
2044         location_entry_box, location_label, location_entry.  We'll use a
2045         single toggle button for the location entry, which will appear
2046         below the path bar.
2047         (struct _GtkFileChooserDefault): Added a
2048         processing_pending_selections flag.
2049
2050         * gtk/gtkfilechooserdefault.c (save_widgets_create): Destroy the
2051         old location_entry if necessary, and hide the location toggle
2052         widgets.
2053         (update_chooser_entry): In multiple selection mode, just clear the
2054         location_entry.
2055         (check_save_entry): Allow running in OPEN or SELECT_FOLDER modes
2056         if we are in LOCATION_MODE_FILENAME_ENTRY.
2057         (gtk_file_chooser_default_should_respond): Switch to a folder if
2058         the location_entry contains a folder name in OPEN and SAVE mode,
2059         not just SAVE mode.  If the entry doesn't contain a folder name,
2060         but is otherwise well-formed, and we are in OPEN mode, return that
2061         we should respond with that filename.
2062         (gtk_file_chooser_default_initial_focus): Focus the location_entry
2063         if appropriate.
2064         (browse_widgets_create): Create the location_entry_box and the
2065         location_label here.
2066         (update_appearance): Call location_mode_set() when switching back
2067         to OPEN/SELECT_FOLDER mode.  Hide the location_button when
2068         switching to SAVE/CREATE_FOLDER mode.
2069         (pending_select_paths_process): Turn the
2070         processing_pending_selections flag on and off around changes to
2071         the current selection.  Don't special-case OPEN mode anymore,
2072         since the new flag will take care of things in
2073         update_chooser_entry().
2074         (update_chooser_entry): Don't do anything if
2075         processing_pending_selections is TRUE.  This keeps the entry from
2076         being polluted when changing folders.
2077         (location_popup_handler): In OPEN/SELECT_FOLDER modes, toggle
2078         between the path bar and the entry.  In SAVE/CREATE_FOLDER modes, simply focus the
2079         location_entry.
2080         (update_from_entry): Removed.
2081         (location_entry_create): Removed.
2082         (open_location_cb): Removed.
2083         (file_list_build_popup_menu): Don't add an "Open _Location" menu item.
2084         (location_entry_set_initial_text): Don't do anything if
2085         current_folder is NULL.
2086
2087         * gtk/gtkfilechooserentry.c
2088         (_gtk_file_chooser_entry_set_file_part): Turn in_change on and off
2089         around the call to gtk_entry_set_text().  This makes completion
2090         not happen when the caller has explicitly set a name.
2091
2092         2006-03-24  Federico Mena Quintero  <federico@novell.com>
2093
2094         * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserDefault):
2095         Added fields location_mode_box, location_pathbar_radio,
2096         location_filename_radio, location_widget_box, location_label,
2097         location_entry.  The radio buttons will switch between the pathbar
2098         and the location entry; the other boxes are for layout purposes.
2099         (enum LocationMode): New enum.
2100         (struct _GtkFileChooserDefault): Added a location_mode field.
2101
2102         * gtk/gtkfilechooserdefault.c (browse_widgets_create): Create the
2103         location radio buttons to switch between the pathbar and the
2104         location entry.  Pack the browse_path_bar in the new
2105         location_widget_box instead of a generic hbox.
2106         (location_buttons_create): New function.
2107         (gtk_file_chooser_default_init): Initialize impl->location_mode.
2108         (location_switch_to_path_bar): New function.
2109         (location_switch_to_filename_entry): New function.
2110
2111         * gtk/gtkfilechooserbutton.c (model_add_special): The display_name
2112         should not be const.
2113
2114 2006-05-03  Matthias Clasen  <mclasen@redhat.com>
2115
2116         * gtk/gtkprintunixdialog.c: Replace the xpm collate icons
2117         by cairo drawing that respects themes.
2118
2119         * gdk/quartz/Makefile.am (libgdk_quartz_la_SOURCES): Add
2120         missing files.  (#340533, Ludovic Rousseau)
2121
2122         * gtk/gtkprintunixdialog.c (draw_page_cb): Don't leak the
2123         cairo context here.  (#340522, Christian Persch)
2124
2125         * gtk/gtkprintoperation-unix.c (unix_finish_send): Don't
2126         use gtk_dialog_run for the error dialog, and improve the
2127         dialog in other ways.  (#340510, Christian Persch)
2128
2129         * gtk/gtkpagesetupunixdialog.c: Beautify the custom
2130         paper size dialog.  (#339590, patch by Christian Persch)
2131         
2132         * gtk/gtkaccessible.c:
2133         * gtk/gtkclipboard.c:
2134         * gtk/gtkfilefilter.c:
2135         * gtk/gtkimmodule.c:
2136         * gtk/gtkmenubar.c: More G_DEFINE_TYPE conversion.
2137
2138         * gtk/gtkwidget.c: Make GtkWidget abstract again.
2139
2140 2006-05-02  Matthias Clasen  <mclasen@redhat.com>
2141
2142         * gtk/*.c: Use G_DEFINE_TYPE and g_type_register_static_simple()
2143         where applicable, for ~5000 lines of code reduction. This also
2144         reduces the size of the data section by ~9k. The overall library
2145         sizes shrinks a bit less, since the text section gets a bit
2146         larger.
2147
2148 2006-05-02  Kristian Rietveld  <kris@imendio.com>
2149
2150         * gtk/gtktreeview.c (gtk_tree_view_row_inserted): set tmpnode to
2151         the return value of the _gtk_rbtree_insert* functions, since that
2152         is the node we really want to check for visibilty.
2153
2154 2006-05-02  Matthias Clasen  <mclasen@redhat.com>
2155
2156         * gtk/gtkprinter.[hc]: Don't use virtual as a parameter name.
2157         (#340394, Christian Persch)
2158
2159 2006-05-02  Christian Persch  <chpe@cvs.gnome.org>
2160
2161         * gtk/gtkpagesetupunixdialog.c:
2162         * gtk/gtkprintcontext.c: 
2163         * gtk/gtkprinter.c:
2164         * gtk/gtkprinteroptionwidget.c:
2165         * gtk/gtkprintjob.c:
2166         * gtk/gtkprintoperation-unix.c:
2167         * gtk/gtkprintoperation.c:
2168         * gtk/gtkprintunixdialog.c: Use a priv variable when accessing priv
2169           multiple times in the same function. Bug #340288.
2170
2171 2006-05-02  Michael Natterer  <mitch@imendio.com>
2172
2173         * gtk/gtklabel.c (gtk_label_set_line_wrap): added note about the
2174         inablity to do height-for-width text layout and suggest to use
2175         gtk_widget_set_size_request() for getting a label that wraps at
2176         some specific position.
2177
2178 2006-05-02  Kristian Rietveld  <kris@imendio.com>
2179
2180         * ChangeLog.gtk-async-file-chooser: added ChangeLog entries from
2181         the kris-async-branch.
2182
2183         * Makefile.am: updated EXTRA_DIST
2184
2185 2006-05-02  Alexander Larsson  <alexl@redhat.com>
2186
2187         * ChangeLog.gtk-printing: 
2188         * Makefile.am (EXTRA_DIST):
2189         Add ChangeLog.gtk-printing
2190
2191 2006-05-01  Matthias Clasen  <mclasen@localhost.localdomain>
2192
2193         * NEWS: Updates
2194
2195 2006-05-02  Kristian Rietveld  <kris@imendio.com>
2196
2197
2198         * configure.in: Up ABI version to 2.10.0 (by Matthias' request).
2199
2200 2006-05-01  Kristian Rietveld  <kris@imendio.com>
2201
2202         Merge of the GTK+ asynchronous file chooser branch.  Please see
2203         the kris-asynch-branch for more detailed ChangeLog entries.
2204
2205         * configure.in: increase binary version to 2.9.0.
2206
2207         * gtk/gtk.symbols:
2208         * gtk/gtkfilechooser.c:
2209         * gtk/gtkfilechooserbutton.c:
2210         * gtk/gtkfilechooserdefault.c:
2211         * gtk/gtkfilechooserdialog.c:
2212         * gtk/gtkfilechooserembed.c:
2213         * gtk/gtkfilechooserembed.h:
2214         * gtk/gtkfilechooserentry.c:
2215         * gtk/gtkfilechooserentry.h:
2216         * gtk/gtkfilechooserprivate.h:
2217         * gtk/gtkfilesystem.c:
2218         * gtk/gtkfilesystem.h:
2219         * gtk/gtkfilesystemmodel.c:
2220         * gtk/gtkfilesystemmodel.h:
2221         * gtk/gtkfilesystemunix.c:
2222         * gtk/gtkpathbar.c:
2223         * gtk/gtkpathbar.h:
2224         Merge from kris-async-branch.
2225
2226 2006-05-01  Matthias Clasen  <mclasen@redhat.com>
2227
2228         * NEWS: Updates
2229
2230 2006-04-30  Matthias Clasen  <mclasen@redhat.com>
2231
2232         * gtk/gtktreemodel.c (gtk_tree_model_base_init): Document
2233         GtkTreeModel signals.
2234
2235 2006-04-19  Michael Emmel  <mike.emmel@gmail.com>
2236
2237         * gdk/directfb/gdkdrawable-directfb.c: removed all subtracting one on
2238         clipping
2239
2240 2006-04-30  Kristian Rietveld  <kris@imendio.com>
2241
2242         Fix for #340200, spotted by Torsten Schoenfeld.
2243
2244         * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): fix up logic
2245         calculating the level indentation,
2246         (gtk_tree_view_start_editing): remove code calculating the
2247         level indentation, since _get_cell_area() takes care of this for us.
2248
2249 2006-04-30  Matthias Clasen  <mclasen@redhat.com>
2250
2251         Fix problems with setting symbolic colors from rc files.
2252         (#338345, Benjamin Berg)
2253         
2254         * gtk/gtkrc.c (gtk_rc_settings_changed, gtk_rc_font_name_changed) 
2255         (gtk_rc_color_hash_changed, gtk_rc_reparse_all_for_settings): Don't
2256         freeze notification for settings changes while parsing; instead
2257         manually avoid recursion, and update the color hashes.
2258
2259 2006-04-30  Matthias Clasen  <mclasen@redhat.com>
2260
2261         * gtk/gtksettings.c (gtk_settings_class_init): Change the default
2262         value of the gtk-color-scheme setting to "".
2263
2264         * gtk/gtkprinteroption.c: 
2265         * gtk/gtkprinteroptionwidget.c: 
2266         * gtk/gtkprintunixdialog.c: Improve the print dialog layout,
2267         mark some more strings for translation.  (#340139, Christian Persch)
2268
2269         * gtk/gtkstatusicon.c (gtk_status_icon_class_init): Fix the definition
2270         of the ::size-changed signal, and improve its documentation.
2271         (#340112, Christian Persch)
2272
2273 2006-04-29  Behdad Esfahbod  <behdad@gnome.org>
2274
2275         * gtk/gtkwidget.c (gtk_widget_create_pango_layout)
2276         (gtk_widget_get/create_pango_context): Change colormap to font map in
2277         docs. (#340093)
2278
2279 2006-04-29  Matthias Clasen  <mclasen@redhat.com>
2280
2281         * gtk/gtk.symbols: 
2282         * gtk/gtkstatusicon.h: 
2283         * gtk/gtkstatusicon.c (gtk_status_icon_position_menu): Add a menu
2284         position function for use with popups on status icons.  (#334573, 
2285         Christian Persch)
2286
2287         * gtk/gtkwidget.c (gtk_widget_is_composited): Fix a C99ism.  (#340055,
2288         Kazuki Iwamoto)
2289
2290 2006-04-28  Matthias Clasen  <mclasen@redhat.com>
2291
2292         * gtk/gtkcellrenderertext.c (get_size): Use _static variants when
2293         copying and merging short-lived Pango layouts. (#340033, Morten Welinder)
2294
2295 2006-04-28  Behdad Esfahbod  <behdad@gnome.org>
2296
2297         * gtk/gtkwidget.c (gtk_widget_create_pango_layout): Fix typo in
2298         docs. (#340063)
2299
2300 2006-04-28  Matthias Clasen  <mclasen@redhat.com>
2301
2302         * gtk/gtktreeview.c (gtk_tree_view_drag_begin): Don't force
2303         the standard DND icon if the user has a custom DND source.  
2304         (#339522, Joe Wreschnig)
2305
2306 2006-04-28  Michael Natterer  <mitch@imendio.com>
2307
2308         * gtk/gtktextbuffer.c (create_clipboard_contents_buffer): keep a
2309         reference to the source buffer while the clipboard contents buffer
2310         exists, because it is needed for serializing the contents buffer.
2311         Makes copying from the contents buffer possible even after the
2312         resp. text view is destroyed (for example when there is a
2313         clipboard manager running on app exit) (bug #339195).
2314
2315 2006-04-27  Behdad Esfahbod  <behdad@gnome.org>
2316
2317         * gdk/gdkpango.c (gdk_pango_renderer_draw_glyphs): Cast to double
2318         before dividing by PANGO_SCALE. (#334582)
2319
2320 2006-04-27  Matthias Clasen  <mclasen@redhat.com>
2321
2322         * gtk/gtkentry.c (popup_position_func): Improve positioning
2323         of the menu when popped up by keynav.  (#334987, Christian
2324         Persch)
2325
2326         * gtk/gtkdnd.c (gtk_drag_set_icon_window): Handle the case
2327         of being called after the drag is cancelled.  (#339224, 
2328         Benjamin Otte)
2329
2330         * gdk/x11/gdkscreen-x11.c (_gdk_x11_screen_process_owner_change):
2331         Use XFixes only if it is available.  (#339839, Marko Anastasov)
2332
2333 2006-04-26  Federico Mena Quintero  <federico@novell.com>
2334
2335         * gtk/gtkdialog.c (gtk_dialog_close): Don't make this conditional
2336         on having a GTK_RESPONSE_CANCEL button -> end the idiocy.  Fixes
2337         bug #101293.
2338
2339 2006-04-26  Kristian Rietveld  <kris@imendio.com>
2340
2341         * gtk/gtktreeview.c (node_is_visible): new function,
2342         (validate_visible_area): when a node is validated, only queue a
2343         redraw for that node, not for the entire widget (a redraw for the
2344         entire widget is only needed when the sizes change, and
2345         _queue_resize() will take care of that),
2346         (do_validate_rows): do not queue a redraw, redraws are only needed
2347         for changes in the visible area and validate_visible_area() takes
2348         care of that,
2349         (gtk_tree_view_row_inserted): for fixed height mode, only queue
2350         a resize and redraw if the node is visible, else no redraw is needed.
2351
2352 2006-04-26  Kristian Rietveld  <kris@imendio.com>
2353
2354         If this new "row-ending-details" property is turned on, more
2355         detailed "details" will be passed to the theme engine for drawing
2356         the background, drop indicator and focus rectangle.  Requirement is
2357         that the theme engine supports these details. (#333760).
2358
2359         * gtk/gtktreeview.c (gtk_tree_view_class_init): add row-ending-details
2360         style property,
2361         (gtk_tree_view_bin_expose): pass more detailed detail to
2362         gtk_paint_flat_box() if the property is turned on,
2363         (gtk_tree_view_bin_expose): likewise for the drop indicator,
2364         (gtk_tree_view_bin_expose): likewise for the focus rectangle.
2365
2366 2006-04-26  Kristian Rietveld  <kris@imendio.com>
2367
2368         New "show-expanders" and "level-indentation" properties, which can
2369         be used for customizing the tree view.  (For example to do
2370         grouping as demonstrated in the test application).
2371         Discussion in #80869.
2372
2373         * gtk/gtktreeprivate.h: add level_indentation field.
2374
2375         * gtk/gtktreeview.c (gtk_tree_view_class_init),
2376         (gtk_tree_view_init), (gtk_tree_view_set_property),
2377         (gtk_tree_view_get_property): add the properties to the object,
2378         (gtk_tree_view_button_press), (do_prelight),
2379         (gtk_tree_view_bin_expose), (validate_row),
2380         (gtk_tree_view_discover_dirty_iter), (gtk_tree_view_get_cell_area),
2381         (gtk_tree_view_create_row_drag_icon): take the new properties
2382         into account,
2383         (gtk_tree_view_start_editing): fix cell placement code.
2384
2385         * tests/testgrouping.c: new test application, showing how to
2386         implement grouping.
2387
2388         * tests/Makefile.am: updated.
2389
2390 2006-04-25  Matthias Clasen  <mclasen@redhat.com>
2391
2392         * gdk/gdk.symbols: Add gdk_screen_is_composited
2393
2394         * gtk/gtkprintjob.c (gtk_print_job_set_source_file): Add docs.
2395
2396         * gtk/gtkprintoperation.c: Add docs.
2397
2398 Tue Apr 25 10:25:28 2006  Søren Sandmann  <sandmann@redhat.com>
2399
2400         * tests/testgtk.c (create_alpha_window): Create 'composited' label.
2401
2402         * tests/testgtk.c (on_composited_changed): New function, change
2403         the label to say whether the screen is composited or not.
2404
2405         * gtk/gtkwindow.c (gtk_window_on_composited_changed): When
2406         composited status change, invalidate the window and propagate the signal;.
2407
2408         * gtk/gtkwindow.c (gtk_window_map): Set the appropriate type hint
2409         if reset_type_hint is TRUE.
2410
2411         * gtk/gtkwindow.c (gtk_window_set_type_hint): If hint is one of
2412         the old hints, store a shadow copy in the public window->type_hint
2413         bitfield, otherwise set this field to normal. Set the private
2414         field to the type hint.
2415
2416         * gtk/gtkwindow.c (gtk_window_init): Initialize priv->type_hint. 
2417
2418         * gtk/gtkwindow.c (struct _GtkWindowPrivate): New field
2419         "reset_type_hint" indicating whether the type hint needs to be
2420         reset. New field type_hint containing a GdkWindowTypeHint.
2421
2422         * gtk/gtkwidget.c (propagate_composited_changed): New function to
2423         propagate changes in composited status.
2424         (gtk_widget_class_init): Add composited_changed signal.
2425         
2426         * gtk/gtkwidget.h (struct _GtkWidgetClass): New signal composited-changed.
2427
2428         * gtk/gtkwidget.c (gtk_widget_is_composited): New function.
2429
2430         * gtk/gtktooltips.c (gtk_tooltips_draw_tips): Set transient for.
2431
2432         * gtk/gtktooltips.c (gtk_tooltips_force_window): Set the type hint
2433
2434         * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Compute whether
2435         the item belongs to a menubar. Set the type_hint appropriately
2436         depending on the outcome.
2437
2438         * gtk/gtkmenu.c (gtk_menu_position): Set the default type hint here.
2439
2440         * gtk/gtkmenu.c (gtk_menu_attach_to_widget): connect to hierarchy
2441         changed on the attach widget.
2442
2443         * gtk/gtkmenu.c (attach_widget_hierarchy_changed): New function to
2444         set the transient_for property for menus.
2445
2446         * gtk/gtkdnd.c (set_icon_stock_pixbuf): Set the appropriate type hint.
2447
2448         * gtk/gtkcombo.c (gtk_combo_popup_list): Make the popup window
2449         transient for the toplevel.
2450
2451         * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Set
2452         transient-for, for the popup window.
2453
2454         * gdk/x11/gdkwindow-x11.c (gdk_window_get_type_hint): Support for
2455         new window types.
2456
2457         * gdk/x11/gdkwindow-x11.c (gdk_window_set_type_hint): Add support
2458         for new window types.
2459
2460         * gdk/x11/gdkscreen-x11.c (_gdk_x11_screen_process_owner_change):
2461         New function called whenever the compositing manager comes and goes.
2462
2463         * gdk/x11/gdkscreen-x11.c (gdk_screen_is_composited): New function.
2464
2465         * gdk/x11/gdkscreen-x11.c
2466         (_gdk_x11_screen_request_cm_notification, make_cm_atom,
2467         check_is_composited): New functions
2468
2469         * gdk/x11/gdkevents-x11.c (gdk_event_translate): Call
2470         _gdk_x11_screen_process_owner_change when an
2471         XFixesSelectionNotifyEvent is received.
2472
2473         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Call
2474         _gdk_x11_screen_request_cm_notification() on all screens.
2475
2476         * gdk/quartz/gdkscreen-quartz.c (gdk_screen_is_composited): Dummy
2477         implementation. 
2478
2479         * gdk/gdkscreen.c (gdk_screen_class_init): New signal,
2480         'composited-changed'.
2481
2482         * gdk/gdkwindow.h: Add new EWMH window types.
2483
2484         * gdk/win32/gdkscreen-win32.c (gdk_screen_is_composited) 
2485
2486 2006-04-25  Matthias Clasen  <mclasen@redhat.com>
2487         
2488         * modules/printbackends/cups/gtkprintbackendcups.c: 
2489         Add some more translatable PPD option names.
2490
2491 2006-04-24  Matthias Clasen  <mclasen@redhat.com>
2492
2493         * po/POTFILES.in:
2494         * po-properties/POTFILES.in: Updates
2495
2496         * gtk/paper_names.c: Declare PaperInfo here.
2497
2498         * gtk/gen-paper-names.c: Add a prefix to gettext msgids.
2499
2500         * gtk/paper_names_offsets.c: Regenerated.
2501         
2502         * gtk/gtkpapersize.c (gtk_paper_size_get_display_name):
2503         Use g_strip_context() to strip the prefix.
2504
2505 2006-04-24  Matthias Clasen  <mclasen@redhat.com>
2506         
2507         * gtk/gtkfontbutton.c: Small doc fixes.
2508
2509         * gtk/gtkprintunixdialog.h: 
2510         * gtk/gtkpagesetupunixdialog.h: Fix includes (#338665)
2511
2512         * gtk/gtkprintsettings.h (GtkPageRange): Declare in a way grokked by gtk-doc.
2513
2514         * gdk/gdkregion-generic.c: Documentation fixes.
2515
2516         * gdk/directfb/gdkmain-directfb.c: Make the comment not look like
2517         a doc comment.
2518
2519         * gtk/gtkprintunixdialog.c: Add docs.
2520
2521         * gtk/gtkstatusicon.c (gtk_status_icon_get_visible): Typo fix.
2522
2523 2006-04-24  Alexander Larsson  <alexl@redhat.com>
2524
2525         * gtk/gtkprinter.c:
2526         Don't ref the backend since the backend owns the printer.
2527
2528 2006-04-24  Alexander Larsson  <alexl@redhat.com>
2529
2530         * gtk/gtkpagesetupunixdialog.c (update_combo_sensitivity_from_printers):
2531         Remove spew.
2532
2533 2006-04-24  Alexander Larsson  <alexl@redhat.com>
2534
2535         * gtk/gtkprintunixdialog.c (create_page_setup_page):
2536         Even/Odd Pages -> Even/Odd Sheets
2537
2538 2006-04-24  Matthias Clasen  <mclasen@redhat.com>
2539
2540         * gtk/gtk.symbols:
2541         * gtk/gtkprintoperation.c (gtk_print_operation_run_async): Refactor the
2542         gtk_print_operation_run() code and add an _async version.
2543
2544         * gtk/gtkprintoperation-private.h:
2545         * gtk/gtkprintoperation-unix.c
2546         (_gtk_print_operation_platform_backend_run_dialog_async)
2547         (gtk_print_run_page_setup_dialog_async): Variants of the run functions
2548         which don't call gtk_dialog_run(), but only show the dialog and return,
2549         and handle the response in a signal handler.
2550
2551         * gtk/gtkprintoperation-win32.c (gtk_print_run_page_setup_dialog_async) 
2552         (_gtk_print_operation_platform_backend_run_dialog_async): Implement these 
2553         by calling the sync versions.
2554
2555         * gtk/gtkprintoperation-unix.c: Cleanups.
2556
2557         * gtk/gtkpagesetupunixdialog.c (gtk_page_setup_unix_dialog_get_page_setup):
2558         Remove redundant code.
2559
2560         * gtk/Makefile.am: Install gtkprintjob.h as Unix-specific print API.
2561
2562         * gtk/gtkprintoperation-unix.c (gtk_print_run_page_setup_dialog): 
2563         Return a copy of the original page setup if the dialog was canceled.
2564
2565 2006-04-24  Alexander Larsson  <alexl@redhat.com>
2566
2567         * gtk/gtkprintjob.h:
2568         Declare GtkPrintJob.
2569         
2570         * gtk/gtkprintunixdialog.c: (gtk_print_unix_dialog_get_settings):
2571         Change g_return_if_fail to g_return_val_if_fail.
2572
2573 2006-04-24  Alexander Larsson  <alexl@redhat.com>
2574
2575         * configure.in:
2576         Check for cairo-pdf.h.
2577         Check for cairo-ps.h on non-win32.
2578
2579 2006-04-24  Matthias Clasen  <mclasen@redhat.com>
2580
2581         * gtk/gtkclipboard.h: 
2582         * gtk/gtkprinter.c: 
2583         * gtk/gtkprintsettings.h: 
2584         * gtk/gtkprintsettings.c: Match parameter names with the headers.
2585
2586         * gtk/gtkprintoperation-unix.c (gtk_print_run_page_setup_dialog): 
2587         Add docs.
2588
2589         * gtk/gtktextbufferrichtext.c (gtk_text_buffer_deserialize): 
2590         * gtk/gtkstatusicon.c (gtk_status_icon_get_storage_type): 
2591         * gtk/gtktreeview.c (gtk_tree_view_set_search_position_func): 
2592         * gtk/gtktreeview.c (gtk_tree_view_get_headers_clickable): 
2593         * gtk/gtkcellrendererspin.c (gtk_cell_renderer_spin_new): 
2594         * gtk/gtkmenu.c (gtk_menu_get_for_attach_widget): Fix the docs.
2595
2596         * gtk/gtkprinter.h: Don't declare GtkPrintJob here.
2597         * gtk/gtkprinter-private.h: Instead include gtkprintjob.h.
2598
2599 2006-04-23  Matthias Clasen  <mclasen@redhat.com>
2600
2601         * gtk/gtkprinter-private.h: 
2602         * gtk/gtkprintbackend.h: 
2603         * gtk/gtkprinter.[hc]: 
2604         * gtk/gtkprintjob.[hc]: Use g types, add documentation, and some
2605         stylistic fixups.
2606
2607         * gtk/gtkaboutdialog.c (activate_url): Avoid a compiler warning.
2608
2609         * gtk/gtkpapersize.[hc]: Use g types, add documentation.
2610
2611         * gtk/gtkprintunixdialog.c (gtk_print_unix_dialog_get_settings): 
2612         Use g_return_val_if_fail in non-void functions.
2613
2614         * gtk/Makefile.am: Add gtkprintutils.[hc]
2615
2616         * gtk/gtkprintutils.[hc]: New files, move the unit conversion
2617         functions here.
2618
2619         * gtk/gtkpagesetupunixdialog.c: 
2620         * gtk/gtkprintsettings.c: 
2621         * gtk/gtkpagesetup.c: 
2622         * gtk/gtkpapersize.c: Replace all static copies of to_mm/from_mm
2623         by the copies in gtkprintutils.c.
2624
2625         * gtk/gtkpagesetup.[hc]: Use g types, add documentation.
2626
2627         * gtk/gtkprintsettings.c: More documentation
2628
2629 2006-04-22  Tor Lillqvist  <tml@novell.com>
2630
2631         * gtk/Makefile.am (gtk_private_h_sources): Small workaround for
2632         weird bug in some versions of Automake at least on Windows.
2633
2634 2006-04-21  Alexander Larsson  <alexl@redhat.com>
2635
2636         Merge the gtk-printing branch.
2637         For more detailed ChangeLog entries, see the ChangeLog.gtk-printing.
2638         
2639         * .cvsignore:
2640         * Makefile.am:
2641         * configure.in:
2642         * docs/tools/widgets.c:
2643         * gtk+-unix-print-2.0.pc.in:
2644         * gtk/Makefile.am:
2645         * gtk/gen-paper-names.c:
2646         * gtk/gtk.h:
2647         * gtk/gtk.symbols:
2648         * gtk/gtkenums.h:
2649         * gtk/gtkiconfactory.c:
2650         * gtk/gtkmarshalers.list:
2651         * gtk/gtkpagesetup.[ch]:
2652         * gtk/gtkpagesetupunixdialog.[ch]:
2653         * gtk/gtkpapersize.[ch]:
2654         * gtk/gtkprint-win32.[ch]:
2655         * gtk/gtkprintbackend.[ch]:
2656         * gtk/gtkprintcontext.[ch]:
2657         * gtk/gtkprinter-private.h:
2658         * gtk/gtkprinter.[ch]:
2659         * gtk/gtkprinteroption.[ch]:
2660         * gtk/gtkprinteroptionset.[ch]:
2661         * gtk/gtkprinteroptionwidget.[ch]:
2662         * gtk/gtkprintjob.[ch]:
2663         * gtk/gtkprintoperation-private.h:
2664         * gtk/gtkprintoperation-unix.c:
2665         * gtk/gtkprintoperation-win32.c:
2666         * gtk/gtkprintoperation.[ch]:
2667         * gtk/gtkprintsettings.[ch]:
2668         * gtk/gtkprintunixdialog.[ch]:
2669         * gtk/paper_names.c:
2670         * gtk/paper_names_offsets.c:
2671         Platform independent printing API and implementations
2672         for unix and windows.
2673
2674         * gtk/gtkstock.h:
2675         * gtk/stock-icons/24/gtk-orientation-landscape.png:
2676         * gtk/stock-icons/24/gtk-orientation-portrait.png:
2677         * gtk/stock-icons/24/gtk-orientation-reverse-landscape.png:
2678         Add stock icons for page orientation.
2679         
2680         * modules/Makefile.am:
2681         * modules/printbackends/Makefile.am:
2682         * modules/printbackends/cups/Makefile.am:
2683         * modules/printbackends/cups/gtkcupsutils.[ch]:
2684         * modules/printbackends/cups/gtkprintbackendcups.[ch]:
2685         * modules/printbackends/cups/gtkprintercups.[ch]:
2686
2687         Cups printing backend for unix.
2688         
2689         * modules/printbackends/lpr/Makefile.am:
2690         * modules/printbackends/lpr/gtkprintbackendlpr.[ch]:
2691         lpr printing backend for unix.
2692         
2693         * modules/printbackends/pdf/Makefile.am:
2694         * modules/printbackends/pdf/gtkprintbackendpdf.[ch]:
2695         print-to-pdf printing backend for unix.
2696         
2697         * tests/.cvsignore:
2698         * tests/Makefile.am:
2699         * tests/print-editor.c:
2700         Test application for printing.
2701
2702         * gdk/gdk.symbols:
2703         * gdk/win32/gdkevents-win32.c:
2704         * gdk/win32/gdkwin32.h:
2705         Add gdk_win32_set_modal_dialog_libgtk_only so that we can pump the
2706         mainloop while displaying a win32 common dialog.
2707
2708         * gdk/directfb/Makefile.am:
2709         Whitespace cleanup.
2710         
2711 2006-04-20  Paolo Borelli  <pborelli@katamail.com>
2712
2713         * gtk/gtkcombobox.c: plug small leak (#339132)
2714         * tests/testcombo.c: ditto
2715
2716 2006-04-19  Michael Emmel  <mike.emmel@gmail.com>
2717
2718         * gdk/directfb/gdkdrawable-directfb.c: fixed off by one error in
2719         clip patch from (#330824)
2720
2721 2006-04-19  Murray Cumming  <murrayc@murrayc.com>
2722
2723         * gtk/gtkfilechooserbutton.c: _GtkFileChooserButtonPrivate:
2724         Added has_title flag so we can remember whether a title has 
2725         been set.
2726         (gtk_file_chooser_button_constructor): If no title has been
2727         set then set it to the default title. This means that the 
2728         default title will be used if the dialog was instantiated with 
2729         g_object_new(), without using the gtk_file_chooser_button_new() 
2730         convenience function. This helps language bindings.
2731         (gtk_file_chooser_button_set_property): Set has_title when 
2732         setting the title.
2733
2734 2006-04-19  Tor Lillqvist  <tml@novell.com>
2735
2736         * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_NUMPAD[0-9]
2737         to GDK_KP_[0-9]. (#337562)
2738
2739 2006-04-18  Matthias Clasen  <mclasen@redhat.com>
2740
2741         * gtk/gtkrc.c: Allocate pixmap_path dynamically, rather than
2742         using a fixed array of size 128.
2743
2744         * gtk/gtkiconcache.c: Apply a patch by Paolo Borelli to factor
2745         out a strip_suffix() function and save some memory.  (#338307)
2746
2747 2006-04-18  Carlos Garnacho  <carlosg@gnome.org>
2748
2749         * gtk/gtknotebook.c (gtk_notebook_pages_allocate): removed wrong
2750         condition check that caused tab labels not to be drawn under certain
2751         circumstances. Bug #338734.
2752
2753 2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>
2754
2755         * configure.in: Remove obsolete entry for no_NO
2756         * po-properties/no.po: And the translation
2757         * po/no.po: And the translation.
2758
2759 2006-04-17  Matthias Clasen  <mclasen@redhat.com>
2760
2761         * demos/gtk-demo/colorsel.c (expose_event_callback): Small formatting
2762         fix.
2763
2764 2006-04-17  Christian Persch  <chpe@cvs.gnome.org>
2765
2766         * gtk/gtkdnd.c: (gtk_drag_dest_set), (gtk_drag_dest_set_proxy): Fix
2767         UMR in gtk_drag_dest_motion. Bug #338725.
2768
2769 2006-04-17  Matthias Clasen  <mclasen@redhat.com>
2770
2771         * gtk/gtksettings.c (gtk_settings_class_init): 
2772         * gtk/gtkentry.c (gtk_entry_class_init): Fix typos
2773         in property blurbs.  (#338772, Clytie Siddall)
2774
2775 2006-04-16  Richard Hult  <richard@imendio.com>
2776
2777         * gdk/quartz/gdkdrawable-quartz.c: (gdk_quartz_draw_drawable): Add check 
2778         for source being a window.
2779
2780         * gdk/quartz/gdkwindow-quartz.c: (_gdk_windowing_window_get_pointer):
2781         Don't assert on window not being the root window.
2782
2783 2006-04-16  Richard Hult  <richard@imendio.com>
2784
2785         * gdk/quartz/gdkdrawable-quartz.c: Remove leading cairo/ in include.
2786
2787 2006-04-16  Matthias Clasen <mclasen@redhat.com>
2788
2789         * gdk/x11/gdkwindow-x11.c (set_initial_hints ): Avoid a
2790         possible array overrun.  (Coverity)
2791
2792         * gtk/gtkcalendar.c (gtk_calendar_key_press): Avoid a
2793         possible array overrun.  (Coverity)
2794
2795         * gtk/gtktextbuffer.c (_gtk_text_buffer_remove_all_tags):
2796         Avoid a NULL dereference.  (Coverity)
2797
2798 2006-04-15  Matthias Clasen <mclasen@redhat.com>
2799
2800         * gtk/gtkrecentmanager.c: Make filename_warning() static,
2801         and use caseless matching when looking for file:/.  
2802         (#336772, Morten Welinder)
2803
2804 2006-04-13  Anders Carlsson  <andersca@imendio.com>
2805
2806         * gdk/quartz/gdkevents-quartz.c:
2807         (synthesize_enter_event):
2808         (synthesize_leave_event):
2809         (synthesize_crossing_events):
2810         Take grabs into account.
2811
2812         (find_window_for_event):
2813         Only return grabbed window when owner_events is FALSE.
2814
2815 2006-04-13  Matthias Clasen  <mclasen@redhat.com>
2816
2817         * gtk/gtktreeview.c (gtk_tree_view_header_focus): Reorganize slightly
2818         to avoid a possible NULL dereference.  (Coverity)
2819
2820 2006-04-12  Matthias Clasen  <mclasen@redhat.com>
2821
2822         * gtk/gtktreeview.c (gtk_tree_view_get_arrow_xrange): Don't
2823         allow passing NULL for x1 or x2, adjust callers.
2824
2825         * gtk/gtktreeviewcolumn.c (_gtk_tree_view_column_get_neighbor_sizes): 
2826         Reorganize to avoid a possible NULL pointer dereference.  (Coverity)
2827
2828         * gtk/gtknotebook.c (gtk_notebook_page_allocate): Reorganize
2829         to avoid a possible NULL dereference.  (Coverity)
2830
2831         * gdk/x11/gdkimage-x11.c (gdk_image_new_bitmap): Handle
2832         closed displays correctly.  (Coverity)
2833
2834         * contrib/gdk-pixbuf-xlib/Makefile.am:
2835         * modules/engines/pixbuf/Makefile.am
2836         * gdk-pixbuf/Makefile.am: Build fixes for Cygwin.  (#338262)
2837
2838         * gdk/x11/gdkselection-x11.c (make_list): Make this work
2839         for list == NULL.  (Coverity)
2840
2841         * gdk/x11/gdkkeys-x11.c (gdk_keymap_get_entries_for_keycode): 
2842         Rearrange the code a bit.
2843
2844         * gtk/gtktextlayout.c (gtk_text_layout_validate_yrange): 
2845         Handle _gtk_text_line_get_data() returning NULL in all
2846         cases.  (Coverity)
2847
2848         * gtk/gtkuimanager.c: Make find_menu_position and
2849         find_toolbar_position void.  (#338100)
2850
2851 2006-04-12  Anders Carlsson  <andersca@imendio.com>
2852
2853         * gdk/quartz/gdkkeys-quartz.c:
2854         Handle page up and page down.
2855
2856 2006-04-12  Anders Carlsson  <andersca@imendio.com>
2857
2858         * gdk/quartz/gdkdrawable-quartz.c:
2859         (_gdk_quartz_drawable_release_context):
2860         Don't flush if we're inside a begin_paint/end_paint pair.
2861         
2862         * gdk/quartz/gdkwindow-quartz.c:
2863         (gdk_window_impl_quartz_end_paint):
2864         Free clip region here.
2865
2866 2006-04-12  Matthias Clasen  <mclasen@redhat.com>
2867
2868         * gtk/gtkuimanager.c (start_element_handler): Don't pass
2869         a negative value as string length to get_child_node().  (Coverity)
2870
2871         * gtk/gtkicontheme.c (insert_theme): Handle dirs == NULL
2872         gracefully.  (Coverity)
2873
2874         * gtk/gtknotebook.c (gtk_notebook_remove): Silently do nothing
2875         if the widget is not a child.  (Coverity)
2876
2877 2006-04-11  Matthias Clasen  <mclasen@redhat.com>
2878
2879         * gdk/x11/gdkkeys-x11.c (get_xkb): Return early in error
2880         cases.  (Coverity)
2881
2882         * gtk/gtktextview.c (selection_motion_event_handler): Remove
2883         some unused variables.
2884
2885         * gtk/gtktreeview.c ((gtk_tree_view_search_position_func): Apply
2886         a patch from David Trowbridge to improve the positioning of the
2887         search popup.  (#338047)
2888
2889 2006-04-11  Emmanuele Bassi  <ebassi@cvs.gnome.org>
2890
2891         * gtk/gtkrecentmanager.c (gtk_recent_manager_init)
2892         (gtk_recent_manager_new): Remove the unneeded setting of the
2893         storage file inside the constructor. (Murray Cumming)
2894         (build_recent_items_list): Reset the dirty bit when done rebuilding
2895         the list from the storage file.
2896
2897 2006-04-11  Matthias Clasen  <mclasen@redhat.com>
2898
2899         * gtk/gtkscale.c (gtk_scale_get_layout_offsets): Silence
2900         compiler warnings.
2901
2902         * gtk/gtkinputdialog.c (gtk_input_dialog_set_mapping_mode): Don't
2903         dereference info before checking it for NULL.  (Coverity)
2904
2905 2006-04-11  Anders Carlsson  <andersca@mac.imendio.com>
2906
2907         * gdk/quartz/GdkQuartzView.c:
2908         (-[GdkQuartzView drawRect:]):
2909         * gdk/quartz/gdkdrawable-quartz.c:
2910         (gdk_quartz_ref_cairo_surface):
2911         (_gdk_quartz_drawable_get_context):
2912         (_gdk_quartz_drawable_release_context):
2913         * gdk/quartz/gdkwindow-quartz.c:
2914         (gdk_window_impl_quartz_finalize):
2915         (gdk_window_impl_quartz_class_init):
2916         (gdk_window_impl_quartz_begin_paint_region):
2917         (gdk_window_impl_quartz_end_paint):
2918         (gdk_window_impl_quartz_invalidate_maybe_recurse):
2919         (gdk_window_impl_quartz_process_updates):
2920         (gdk_window_impl_quartz_paintable_init):
2921         (_gdk_window_impl_quartz_get_type):
2922         * gdk/quartz/gdkwindow-quartz.h:
2923         Have GdkWindowImplQuartz implement GdkPaintable.
2924
2925 2006-04-10  Michael Natterer  <mitch@imendio.com>
2926
2927         * gtk/gtktextbufferrichtext.c (gtk_text_buffer_deserialize):
2928         pasted rich text should not be affected by tags that are active at
2929         the insertion point. Therefore, remove and remember all active
2930         tags, and re-apply them left and right of the inserted text after
2931         pasting. Fixes bug #337653.
2932
2933 2006-04-11  Anders Carlsson  <andersca@imendio.com>
2934
2935         * gdk/gdkinternals.h:
2936         * gdk/gdkwindow.c:
2937         (_gdk_paintable_get_type):
2938         (gdk_window_begin_paint_region):
2939         (gdk_window_end_paint):
2940         (gdk_window_process_updates):
2941         (gdk_window_invalidate_maybe_recurse):
2942         Add new GdkPaintable interface which implementation objects can 
2943         implement in order to override gdk painting functions.
2944
2945 2006-04-10 Vladimer Sichinava  <vlsichinava@gmail.com>
2946
2947         * configure.in: Added "ka" (Georgian) to ALL_LINGUAS
2948
2949 2006-04-07  Hans Breuer  <hans@breuer.org>
2950
2951         * gtk/makefile.msc.in tests/makefile.msc : updated
2952
2953 2006-04-06  Tor Lillqvist  <tml@novell.com>
2954
2955         Correct the appearance of non-square icons and cursors: pad them
2956         to square so that Windows won't stretch them.
2957
2958         * gdk/win32/gdkcursor-win32.c (create_alpha_bitmap)
2959         (create_color_bitmap): Always create square bitmaps, take only
2960         side length as argument.
2961         (pixbuf_to_hbitmaps_alpha_winxp, pixbuf_to_hbitmaps_normal):
2962         Corresponding changes.
2963
2964 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
2965
2966         * gtk/gtktextview.c (text_window_realize): Lower the window, to
2967         prevent late-constructed text windows from covering child 
2968         widgets.  (#336796, Yevgen Muntyan)
2969
2970         * gtk/gtkmain.c (gtk_grab_add, gtk_grab_remove, gtk_grab_notify) 
2971         (gtk_grab_notify_foreach): Rework the code which emits ::grab-notify
2972         signals to ensure that we emit enough signals. Also optimize the
2973         code to not do unnecessary tree walking.
2974
2975         * gtk/gtkwidget.c (gtk_widget_class_init): Document ::grab-notify.
2976
2977 2006-04-05  Paolo Borelli  <pborelli@katamail.com>
2978
2979         * gtk/gtktextiter.c (gtk_text_iter_ends_line): handle the case of \r
2980         and \n split across lines. Bug #337022.
2981         * tests/testtextbuffer.c: add unit test.
2982
2983 Tue Apr  4 12:25:36 2006  Søren Sandmann  <sandmann@redhat.com>
2984
2985         * gdk/x11/gdkimage-x11.c (gdk_image_class_init): Add "_private" to
2986         make it build.
2987
2988 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
2989
2990         * gdk/gdkdisplay.c: 
2991         * gdk/gdkdisplaymanager.c:
2992         * gdk/gdkdraw.c:
2993         * gdk/gdkkeys.c:
2994         * gdk/gdkpixmap.c:
2995         * gdk/gdkscreen.c:
2996         * gdk/gdkwindow.c:
2997         * gdk/x11/gdkcolor-x11.c:
2998         * gdk/x11/gdkdisplay-x11.c:
2999         * gdk/x11/gdkdnd-x11.c:
3000         * gdk/x11/gdkdrawable-x11.c:
3001         * gdk/x11/gdkgc-x11.c:
3002         * gdk/x11/gdkimage-x11.c:
3003         * gdk/x11/gdkinput.c:
3004         * gdk/x11/gdkpixmap-x11.c:
3005         * gdk/x11/gdkscreen-x11.c:
3006         * gdk/x11/gdkwindow-x11.c: Use G_DEFINE_TYPE.
3007
3008         * gdk/x11/gdkcolor-x11.c: 
3009         * gdk/x11/gdkdnd-x11.c:
3010         * gdk/x11/gdkimage-x11.c: Use instance private data.
3011
3012 2006-04-03  Matthias Clasen  <mclasen@redhat.com>
3013
3014         * gdk/gdkrgb.c: Get rid of a duplicate copy of the visual names.
3015
3016         * gtk/gtkmain.c: Make gtk_args const.
3017
3018         * gtk/gtkicontheme.c (pixbuf_supports_svg): Save one static.
3019
3020         * gtk/gtkrecentchooser.c (gtk_recent_chooser_error_quark):
3021         * gtk/gtkrecentmanager.c (gtk_recent_manager_error_quark):
3022         * gtk/gtkfilechooser.c (gtk_file_chooser_error_quark):
3023         * gtk/gtkfilesystem.c (gtk_file_system_error_quark):
3024         * gtk/gtkicontheme.c (gtk_icon_theme_error_quark): No point
3025         in making the error path fast by caching quarks. 
3026
3027         * gtk/gtkfilesel.c (no_stat_dirs): Avoid relocation.
3028
3029         * gdk/gdk.c: Here too.
3030
3031         * gdk/gdkinternals.h: 
3032         * gdk/x11/gdkmain-x11.c: 
3033         * gdk/win32/gdkmain-win32.c: 
3034         * gdk/directfb/gdkdisplay-directfb.c: 
3035         * gdk/quartz/gdkmain-quartz.c: Make _gdk_windowing_args const.
3036
3037         * gdk/win32/gdkpixmap-win32.c: Include gdkscreen.h  (#337032,
3038          Kazuki IWAMOTO)
3039
3040         * gtk/gtkprogressbar.c (gtk_progress_bar_set_text): Mention
3041         that %NULL is allowed.  (#336937, Christian Neumair)
3042
3043         * gtk/gtkmain.c: Get rid of an unnecessary static variable.
3044
3045         * gtk/gtktextlayout.c: Fix a warning.
3046         
3047         * gtk/gtktextsegment.h: 
3048         * gtk/gtktextsegment.c: 
3049         * gtk/gtktextchild.c:
3050         * gtk/gtktextbtree.c:
3051         * gtk/gtktextmark.c: 
3052         * gtk/gtktexttypes.h: Make the segment class pointers const.
3053
3054         * gtk/gtktextbufferserialize.c: Make parser struct const.
3055         
3056         * gtk/gtkuimanager.c: Make parser struct const.
3057
3058         * gtk/gtklinkbutton.c: Make the default colors const.
3059
3060         * gtk/gtkuimanager.c: Avoid relocations. 
3061
3062         * gtk/gtkxembed.c (_gtk_xembed_message_name): Reduce size of static
3063         buffer.
3064
3065         * gtk/gtktext.c (gtk_text_key_press): Avoid relocations.
3066
3067         * gtk/gtkrc.c (gtk_rc_add_initial_default_files) 
3068         (gtk_rc_add_default_file): Allocate the gtk_rc_default_files array
3069         dynamically.
3070
3071 2006-04-02  Matthias Clasen  <mclasen@redhat.com>
3072
3073         * gtk/gtkrc.c: Avoid relocations for the array of symbol names. 
3074
3075         * gtk/gtkruler.c: Remove unused strings from the ruler_metrics 
3076         structs, to avoid relocations.  (#336917, Stephane Chauveau)
3077
3078 2006-04-02  Emmanuele Bassi  <ebassi@cvs.gnome.org>
3079
3080         * gtk/gtkrecentmanager.c (gtk_recent_manager_set_filename): Build
3081         the items list after setting the storage file.
3082
3083         * gtk/gtkrecentmanager.c (display_closed): Use the right string
3084         for unsetting the default manager object from the screen.       
3085
3086 2006-04-01  Behdad Esfahbod  <behdad@gnome.org>
3087
3088         * gtk/gtkfilesel.c (gtk_file_selection_get_filename): Oops. (#336784)
3089
3090 2006-04-01  Behdad Esfahbod  <behdad@gnome.org>
3091
3092         * gtk/gtkfilesel.c (gtk_file_selection_get_filename): Use a GString
3093         instead of static buffer to reduce .bss by 8kb. (#336784)
3094
3095 2006-04-01  Dom Lachowicz <cinamod@hotmail.com>
3096
3097         * modules/engines/ms-windows/msw_style.c (draw_hline): Emulate WinXP's
3098         drawing of menu separators
3099         
3100 2006-03-31  Behdad Esfahbod  <behdad@gnome.org>
3101
3102         * gtk/gtkrecentmanager.c: Convert filenames to UTF-8 before printing
3103         them out in warning messages. (#336770, Morten Welinder)
3104
3105 2006-03-31  Behdad Esfahbod  <behdad@gnome.org>
3106
3107         * gtk/gtkrecentmanager.c (gtk_recent_info_last_application): Update
3108         last_stamp inside the look. (#336771, Morten Welinder)
3109
3110 2006-03-31  Behdad Esfahbod  <behdad@gnome.org>
3111
3112         * gtk/gtkrecentchoosermenu.c (gtk_recent_chooser_menu_get_property):
3113         Add missing break. (#336769, Morten Welinder)
3114
3115 2006-03-31  Behdad Esfahbod  <behdad@gnome.org>
3116
3117         * gtk/gtkfilesystem.c (gtk_file_system_get_bookmark_label):
3118         * gtk/gtklinkbutton.c (gtk_link_button_new_with_label): Return NULL
3119         instead of FALSE in g_return_val_if_fail in a pointer-returning
3120         function. (#336764, Morten Welinder)
3121
3122 2006-04-01  Gora Mohanty  <gmohanty@cvs.gnome.org>
3123
3124         * configure.in: Added 'or' (Oriya) to ALL_LINGUAS.
3125
3126 2006-03-31  Matthias Clasen  <mclasen@redhat.com>
3127
3128         * gtk/gtkrecentmanager.c (gtk_recent_info_get_age): Don't
3129         assert that the age is positive.  (#336773, Morten Welinder)
3130
3131 2006-03-31  Matthias Clasen  <mclasen@redhat.com>
3132
3133         * gtk/gtkicontheme.c (load_icon_data): Don't leak the keyfile 
3134         parser in the error case. 
3135         
3136         * gtk/gtkicontheme.c (load_icon_data, free_unthemed_icon) 
3137         (icon_data_free, load_themes):
3138         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon_data): Use the slice
3139         allocator for GtkIconData and UnthemedIcon structs.
3140
3141 2006-03-30  Behdad Esfahbod  <behdad@gnome.org>
3142
3143         * gtk/gtkcalendar.c: Fix translation comments for localizable
3144         digit formats. (fixes bug #336650)
3145
3146 2006-03-30  Matthias Clasen  <mclasen@redhat.com>
3147
3148         * gtk/gtkrecentmanager.h (struct _GtkRecentData): Fix the doc
3149         comment format.
3150
3151         * gtk/gtkrecentmanager.c (gtk_recent_manager_has_item) 
3152         (gtk_recent_manager_purge_items, gtk_recent_manager_lookup_item) 
3153         (gtk_recent_manager_get_limit, gtk_recent_manager_add_full) 
3154         (gtk_recent_manager_get_items, gtk_recent_manager_remove_item): 
3155
3156         * gtk/gtkrecentfilter.c (gtk_recent_filter_add_age): 
3157         * gtk/gtkrecentchooser.c (gtk_recent_chooser_set_show_numbers) 
3158         (gtk_recent_chooser_set_sort_func): 
3159         * gtk/gtknotebook.h (gtk_notebook_set_tab_detachable): Sync
3160         parameter names between .c and .h files to help gtk-doc.
3161
3162         * gdk/gdkregion-generic.c (gdk_region_get_clipbox): Reword
3163         docs to help gtk-doc.
3164
3165         * docs/tools/widgets.c (get_all_widgets): Add 
3166         GtkRecentChooserDialog.
3167
3168         * gtk/gtkdnd.c (gtk_drag_get_icon): Make sure to get an
3169         icon window when constructing the fallback_icon. This
3170         fixes a crash when dragging icons between screens in
3171         nautilus.  (#325751, Hylke van der Schaaf)
3172
3173 2006-03-30  Michael Emmel  <mike.emmel@gmail.com>
3174
3175         * gdk/directfb/gdkpixmap-directfb.c implement
3176             (gdk_pixmap_foreign_new_for_screen)
3177
3178 2006-03-30  Emmanuele Bassi  <ebassi@cvs.gnome.org>
3179
3180         Add documentation for the GtkLinkButton (#336592)
3181
3182         * docs/reference/tmpl/gtklinkbutton.sgml: Add description
3183         of the GtkLinkButton.
3184
3185         * docs/reference/gtk/migrating-GtkLinkButton.sgml: Guidelines
3186         for migrating code from GnomeHRef to the GtkLinkButton.
3187
3188         * docs/reference/gtk/gtk-docs.sgml:
3189         * docs/reference/gtk/Makefile.am: Build glue for the porting
3190         guide.
3191
3192 2006-03-29  Matthias Clasen <mclasen@redhat.com>
3193
3194         * gdk/gdk.symbols:
3195         * gdk/gdkpixmap.h:
3196         * gdk/win32/gdkpixmap-win32.c:
3197         * gdk/x11/gdkpixmap-x11.c (gdk_pixmap_foreign_new_for_screen):
3198         New function to allow wrapping a native pixmap without
3199         a server roundtrip.  (#334954, David Baron) 
3200
3201         * gtk/gtk.symbols:
3202         * gtk/gtkrecent*.c: Fix some symbol aliasing glitches.
3203
3204 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
3205
3206         * gtk/gtkrecentchoosermenu.c: Make gtkalias.h the last included file.
3207
3208 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
3209
3210         * gtk/gtk.symbols: Fix a typo that broke aliasing rules.
3211
3212 2006-03-29  Richard Hult  <richard@imendio.com>
3213
3214         * gdk/quartz/gdkproperty-quartz.c: Add missing CLIPBOARD atom.
3215
3216 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
3217
3218         * docs/reference/gtk/migrating-GtkRecentChooser.sgml: Add a migration
3219         guide for porting to the new GtkRecent stuff from the old EggRecent
3220         code.
3221
3222         * docs/reference/gtk/tmpl/gtkrecentchooser.sgml:
3223         * docs/reference/gtk/tmpl/gtkrecentchooserdialog.sgml:
3224         * docs/reference/gtk/tmpl/gtkrecentchoosermenu.sgml:
3225         * docs/reference/gtk/tmpl/gtkrecentchooserwidget.sgml:
3226         * docs/reference/gtk/tmpl/gtkrecentfilter.sgml:
3227         * docs/reference/gtk/tmpl/gtkrecentmanager.sgml: Add template files
3228         for the reference guide.
3229
3230         * docs/reference/gtk/gtk-docs.sgml:
3231         * docs/reference/gtk/gtk-sections.txt:
3232         * docs/reference/gtk/Makefile.am: Build glue for add GtkRecent to
3233         the reference guide.
3234
3235 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
3236
3237         * tests/Makefile.am:
3238         * tests/testrecentchooser.c: Add a test suite for GtkRecentChooser.
3239
3240 2006-03-29  Emmanuele Bassi  <ebassi@cvs.gnome.org>
3241
3242         Import GtkRecent* from libegg.
3243
3244         * gtk/gtkrecentmanager.[ch]: Add GtkRecentManager, an object
3245         for managing a list of recently used resources.
3246
3247         * gtk/gtkrecentchooser.[ch]:
3248         * gtk/gtkrecentchooserdefault.[ch]:
3249         * gtk/gtkrecentchooserdialog.[ch]:
3250         * gtk/gtkrecentchoosermenu.[ch]:
3251         * gtk/gtkrecentchooserprivate.h:
3252         * gtk/gtkrecentchooserutils.[ch]:
3253         * gtk/gtkrecentchooserwidget.[ch]: Add GtkRecentChooser, a
3254         GTypeInterface for widgets implementing viewers for recently
3255         used resources.
3256
3257         * gtk/gtkrecentfilter.[ch]: GtkRecentFilter, a filter object
3258         for GtkRecentChooser implementations.
3259
3260         * gtk/gtk.h:
3261         * gtk/gtk.symbols:
3262         * gtk/Makefile.am: Build glue for GtkRecent*.
3263
3264 2006-03-29  Matthias Clasen  <mclasen@redhat.com>
3265
3266         * gtk/gtknotebook.c (gtk_notebook_real_insert_page): Emit
3267         page-added before switch-page.  (#335691, Christian Persch)
3268
3269 2006-03-29  Matthias Clasen  <mclasen@redhat.com>
3270
3271         * gtk/gtkfilechooserdefault.c (queue_edited_idle): Handle
3272         double queuing, rather than asserting that it does not 
3273         happen.  (#330617)
3274
3275 2006-03-28  Matthias Clasen  <mclasen@redhat.com>       
3276
3277         * gtk/gtknotebook.c (gtk_notebook_set_tab_detachable): Fix
3278         docs syntax, also commit a patch from #335707 to improve
3279         notebook DND with window widgets.
3280
3281         * gtk/gtktextview.c (gtk_text_view_start_selection_drag): 
3282         (selection_motion_event_handler): Fix drag-selection after
3283         double-click.  (#323862, Benjamin Berg)
3284
3285         * gtk/gtktextview.c (get_iter_at_pointer): Factor this out
3286         into a function and use it in move_mark_to_pointer_and_scroll,
3287         drag_scan_timeout and selection_motion_event_handler.
3288         (Paolo Borelli)
3289
3290 2006-03-28  Matthias Clasen  <mclasen@redhat.com>
3291
3292         * gtk/gtktextview.c (gtk_text_view_do_popup) 
3293         (gtk_text_view_grab_notify): Move the call to 
3294         gtk_text_view_end_selection_drag() from gtk_text_view_do_popup
3295         to gtk_text_view_grab_notify, so that it works not only
3296         for the text views own popup, but also for other ways in which
3297         we might become grab-shadowed during a selection drag.
3298         (#74620, Li Yuan)
3299
3300 2006-03-28  Sven Herzberg  <herzi@gnome-de.org>
3301
3302         reviewed by: Tim Janik
3303         
3304         * gtk/gtkpixmap.c: (gtk_pixmap_set): only check for equal colormaps if
3305         the new pixmap is not NULL; fixes a warning when gtk_pixmap_set is
3306         called from gtk_pixmap_finalize (bug 336254)
3307
3308 2006-03-27  Anders Carlsson  <andersca@imendio.com>
3309
3310         * gdk/quartz/gdkevents-quartz.c:
3311         (select_thread_func):
3312         (got_fd_activity):
3313         (poll_func):
3314         (gdk_event_translate):
3315         Make the poll func work with real file descriptors.
3316         We do this by creating a thread which calls poll and then
3317         signals the main thread using a run loop source.
3318         
3319         * gtk/gtkclipboard-quartz.c:        
3320         (-[GtkClipboardOwner pasteboard:provideDataForType:]):
3321         Remove debugging output
3322
3323 2006-03-27  Matthias Clasen  <mclasen@redhat.com>
3324
3325         * gtk/gtkmnemonichash.c (_gtk_mnemonic_hash_activate): Check that 
3326         the widget is viewable.  (#336200, Bastian Nocera)
3327
3328 2006-03-27  Michael Natterer  <mitch@imendio.com>
3329
3330         * gtk/gtkmenu.c (gtk_menu_scroll_by): bail out if there is no need
3331         for scrolling (more obvious than adding additional conditions to
3332         the scroll offset calculation). Fixes bug #335912.
3333
3334 2006-03-27  Anders Carlsson  <andersca@imendio.com>
3335
3336         * gtk/Makefile.am:
3337         Add -xobjective-c to cflags.
3338         (#335956, Lllian Angel)
3339         
3340         * gtk/gtkdnd-quartz.c:
3341         (gtk_drag_dest_set_track_motion):
3342         (gtk_drag_dest_get_track_motion):
3343         Add stubs for new functions.
3344         (#335955, Lillian Angel)
3345         
3346 2006-03-27  Richard Hult  <richard@imendio.com>
3347
3348         * gdk/quartz: Add more stubs.
3349
3350 2006-03-27  Michael Natterer  <mitch@imendio.com>
3351
3352         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_get_property):
3353         add missing ')'.
3354
3355 2006-03-26  Matthias Clasen  <mclasen@redhat.com>
3356
3357         * gtk/Makefile.am: Fix a srcdir != builddir build problem.
3358         (#335915, Yevgen Muntyan)
3359
3360         * gtk/gtktextbuffer.c (gtk_text_buffer_get_property):
3361         * gtk/gtksettings.c (gtk_settings_get_property):
3362         * gtk/gtkuimanager.c (gtk_ui_manager_get_property): Fix leaks.
3363
3364         * gtk/gtktexttag.c (gtk_text_tag_get_property):
3365         * gtk/gtkcellrenderertext.c (gtk_cell_render_text_get_property):
3366         Avoid an unnecessary strdup.  (#336013)
3367
3368 2006-03-24  Matthias Clasen  <mclasen@redhat.com>
3369
3370         * gtk/gtktextview.c (gtk_text_view_value_changed): Don't call
3371         gdk_window_invalidate_rect() on unrealized widgets.  (#335717,
3372         Nicolas Setton)
3373
3374 Fri Mar 24 14:53:20 2006  Tim Janik  <timj@imendio.com>
3375
3376         * gtk/gtktreemodel.h: 
3377         * gtk/gtktextbtree.h: back out G_GNUC_WARN_UNUSED_RESULT on iterator
3378         functions which turned out to cause too much trouble.
3379
3380 2006-03-23  Matthias Clasen  <mclasen@redhat.com>
3381
3382         * AUTHORS: small update
3383
3384 2006-03-23  Matthias Clasen  <mclasen@redhat.com>
3385
3386         Support subclasses in RC files.  (#142417, Todd Berman, patch
3387         based on a patch by Benjamin Berg)
3388         
3389         * gtk/gtkrc.h: 
3390         * gtk/gtkrc.c: Support <classname> elements in widget_class paths 
3391         in rc files which match any classes derived from named class.
3392
3393         (_gtk_rc_init): Use the new syntax in the default rc string.
3394
3395         * gtk/gtkbindings.c: Support the new syntax for bindings too.
3396         
3397         * tests/testrc.c: Tests for widget_class path matching
3398
3399 2006-03-23  Carlos Garnacho  <carlosg@gnome.org>
3400
3401         * gtk/gtkdnd.c (gtk_drag_dest_motion): make sure that gdk_drag_event()
3402         is called when track_motion is TRUE to receive drag_motion and
3403         drag_leave events properly.
3404
3405 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
3406
3407         * gtk/gtknotebook.c (gtk_notebook_remove): Emit the ::page-removed
3408         signal after removing the page.  (#335238, Christian Persch)
3409
3410 2006-03-22  Carlos Garnacho  <carlosg@gnome.org>
3411
3412         * gtk/gtkexpander.c: Make it to expand when hovering during DnD
3413
3414 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
3415
3416         Improved DND support for GtkNotebook  (#332991, Carlos Garnacho)
3417         
3418         * gtk/gtk.symbols: 
3419         * gtk/gtkdnd.h: 
3420         * gtk/gtkdnd.c: Add a track_motion flag on GtkDragDest
3421         with getter and setter, for cases where the drag destination
3422         is interested in drag motion events independent of targets.
3423
3424         * gtk/gtksettings.c (gtk_settings_class_init): Add a setting
3425         for the timeout used when expanding during DND.
3426
3427         * gtk/gtknotebook.c: Use the track_motion flag to switch
3428         notebook tabs when hovering over tabs during DND.
3429         
3430 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
3431
3432         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Use fg_gc to
3433         draw the inter-row drop highlight. Also draw the line all the 
3434         way across, and flip it in RTL mode. (#334906, Ian McDonald)
3435
3436 2006-03-22  Johan Dahlin  <jdahlin@async.com.br>
3437
3438         * tests/testtreeview.c: Add a column that demonstrates how to use
3439         the new spinbutton cellrenderer.
3440
3441 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
3442
3443         * tests/prop-editor.c: 
3444         * tests/testtreeview.c: Remove pointless includes of config.h,
3445         to make it easier compilable against system GTK+.
3446
3447 2006-03-22  Michael Natterer  <mitch@imendio.com>
3448
3449         * gtk/gtkentry.c: renamed last-char-timeout to
3450         password-hint-timeout and store all its data in a struct attached
3451         as QData.
3452
3453         * gtk/gtkcellrendererspin.c: fix typo in #include.
3454
3455 2006-03-22  Carlos Garnacho  <carlosg@gnome.org>
3456
3457         * gtk/gtknotebook.c: send a GtkWidget** instead of a GtkNotebookPage*
3458         when doing tabs DnD, this allows DnD interaction with other widgets,
3459         added some docs for this too.
3460         * tests/testnotebookdnd.c: add some code to test it.
3461
3462 2006-03-22  Matthias Clasen  <mclasen@redhat.com>
3463
3464         * gtk/gtk.symbols: 
3465         * gtk/gtkcellrendererspin.h:
3466         * gtk/gtkcellrendererspin.c: Add a cell renderer which 
3467         uses a spinbutton to edit the value of a cell. (#156023,
3468         Daniel Kasak, Lorenzo Gil Sanchez, Carlos Garnacho)
3469
3470         * gtk/gtk.h: 
3471         * gtk/Makefile.am: Glue it in.
3472
3473 2006-03-21  Matthias Clasen  <mclasen@redhat.com>
3474
3475         * tests/testtreeview.c (drag_begin_cb): Test setting up
3476         drag icons for tree dnd.
3477
3478 2006-03-22  Michael Natterer  <mitch@imendio.com>
3479
3480         * gtk/gtkentry.c: applied modified patch from maemo-gtk which
3481         allows the most recently entered character in a hidden entry to be
3482         shown for a configurable period of time. Fixes bug #334560.
3483
3484 2006-03-22  Michael Natterer  <mitch@imendio.com>
3485
3486         * gtk/gtktextbuffer.h (enum GtkTextBufferTargetInfo): count down
3487         from G_MAXUINT to avoid clashes with application-added DND
3488         targets.
3489
3490         * gtk/gtktextview.c (gtk_text_view_init): set an empty
3491         GtkTargetList on the drag_dest so it is not NULL when a derived
3492         class' init() function is called.
3493
3494         (gtk_text_view_target_list_notify): copy the text buffer's paste
3495         targets into the view's destinstion target list (preserving
3496         application-added DND targets), instead of replacing the view's
3497         target list. Fixes bug #334399.
3498
3499 2006-03-21  Anders Carlsson  <andersca@imendio.com>
3500
3501         * gtk/Makefile.am:
3502         Add new files.
3503         
3504         * gtk/gtkclipboard-quartz.c: Added.
3505         * gtk/gtkdnd-quartz.c: Added.
3506         * gtk/gtkquartz.c: Added.
3507         * gtk/gtkquartz.h: Added.
3508         Add dnd and clipboard implementations.
3509
3510 2006-03-21  Michael Natterer  <mitch@imendio.com>
3511
3512         * gdk/quartz/Makefile.am: removing trailing \ fixes the build.
3513
3514 2006-03-21  Anders Carlsson  <andersca@imendio.com>
3515
3516         * gdk/quartz/gdkgeometry-quartz.c:
3517         (gdk_window_scroll):
3518         Implement gdk_window_scroll.
3519
3520 2006-03-21  Anders Carlsson  <andersca@imendio.com>
3521
3522         * gdk/quartz/GdkQuartzWindow.c:
3523         (drag_operation_to_drag_action):
3524         (drag_action_to_drag_operation):
3525         (update_context_from_dragging_info):
3526         (-[GdkQuartzWindow draggingEntered:]):
3527         (-[GdkQuartzWindow draggingEnded:]):
3528         (-[GdkQuartzWindow draggingExited:]):
3529         (-[GdkQuartzWindow draggingUpdated:]):
3530         (-[GdkQuartzWindow performDragOperation:]):
3531         (-[GdkQuartzWindow wantsPeriodicDraggingUpdates]):
3532         (-[GdkQuartzWindow draggedImage:endedAt:operation:]):
3533         * gdk/quartz/gdkdnd-quartz.c:
3534         (gdk_drag_context_finalize):
3535         (gdk_drag_context_init):
3536         (gdk_drag_context_class_init):
3537         (gdk_drag_begin):
3538         (gdk_drag_status):
3539         Add the GDK part of the DND implementation.
3540
3541         * gdk/quartz/Makefile.am:
3542         Add some missing headers.
3543         
3544         * gdk/quartz/gdkdrawable-quartz.h:
3545         * gdk/quartz/gdkprivate-quartz.h:
3546         * gdk/quartz/gdkquartz.h:
3547         * gdk/quartz/gdkwindow-quartz.c:
3548         (gdk_quartz_window_get_nsview):
3549         New function, for use by the GTK part of the DND implementation
3550
3551 2006-03-21  Anders Carlsson  <andersca@imendio.com>
3552
3553         * gdk/quartz/gdkdrawable-quartz.c:
3554         (gdk_quartz_ref_cairo_surface):
3555         (gdk_quartz_draw_rectangle):
3556         (gdk_quartz_draw_arc):
3557         (gdk_quartz_draw_polygon):
3558         (gdk_quartz_draw_drawable):
3559         (gdk_quartz_draw_segments):
3560         (gdk_quartz_draw_lines):
3561         (gdk_quartz_draw_pixbuf):
3562         (gdk_quartz_draw_image):
3563         (_gdk_quartz_drawable_get_context):
3564         * gdk/quartz/gdkdrawable-quartz.h:
3565         Offset coordinates by 0.5 pixels to get consistant results for both
3566         image contexts and screen contexts.
3567
3568 2006-03-21  Anders Carlsson  <andersca@imendio.com>
3569
3570         * gdk/quartz/GdkQuartzWindow.c 
3571         ([GdkQuartzWindow -windowDidMove:]): Synthesize GDK_CONFIGURE events
3572         when the window position changes.
3573
3574 2006-03-20  Matthias Clasen  <mclasen@redhat.com>
3575
3576         * gtk/gtkdnd.c (gtk_drag_get_cursor): Remove an unused variable.
3577
3578         * gtk/gtknotebook.c (gtk_notebook_remove_tab_label): Don't leave
3579         page->tab_label dangling.
3580         (gtk_notebook_real_remove): Use GTK_IN_DESTRUCTION to determine
3581         if we are being called during destruction of the notebook, rather
3582         than maintaining that information as a passed-in parameter.
3583         (gtk_notebook_destroy): Leave the removal of the children
3584         to the container destroy method.  (#319032, Yevgen Muntyan)
3585
3586 2006-03-20  Matthias Clasen  <mclasen@redhat.com>
3587
3588         * gtk/gtkcombobox.c (gtk_combo_box_remove): Use the existing
3589         GTK_IN_DESTRUCTION flag, rather than roll our own.
3590
3591 2006-03-20  Matthias Clasen  <mclasen@redhat.com>
3592         
3593         * gtk/gtk.symbols: 
3594         * gtk/gtkscrolledwindow.h: 
3595         * gtk/gtkscrolledwindow.c: Add a window-placement-set property
3596         and a gtk-scrolled-window-placement setting.  (#157025, Christian
3597         Neumair)
3598
3599 2006-03-20  Matthias Clasen  <mclasen@redhat.com>
3600
3601         * gtk/gtkmain.c (gtk_get_option_group): Make sure gettext
3602         is initialized before using it.  (#335129, Christian Persch)
3603
3604 2006-03-19  Matthias Clasen  <mclasen@redhat.com>
3605
3606         * MAINTAINERS: Add this, at the request of the GNOME sysadmin team.
3607
3608         * AUTHORS: Updates, typo fix
3609
3610         * gtk/gtkiconview.c (gtk_icon_view_set_cursor): Document that
3611         @cell must be one of the renderers of the icon view, warn if 
3612         it is not, and ignore @start_editing if @cell is not set.
3613         (#335001, Emmanuel Rodriguez)
3614
3615 2006-03-16  Matthias Clasen  <mclasen@redhat.com>
3616
3617         * configure.in: Add a missing comma.  (#334774, Peter Breitenlohner)
3618
3619         * gtk/gtkactiongroup.c (gtk_action_group_add_actions_full) 
3620         (gtk_action_group_add_toggle_actions_full) 
3621         (gtk_action_group_add_radio_actions_full): Check for a stock 
3622         icon, not a stock item, when deciding whether to use stock-id 
3623         or icon-name.  (#334760, Jody Goldberg)
3624
3625         * gtk/gtkimage.c (gtk_image_clear): Update the size of the image, 
3626         by swapping the implementations of gtk_image_clear and
3627         gtk_image_reset.  (#334657)
3628
3629         * README.in: Add a note about GtkNotebook signals.
3630
3631 2006-03-15  Matthias Clasen  <mclasen@redhat.com>
3632
3633         * gtk/gtkcombobox.c (gtk_combo_box_list_button_released) 
3634         (gtk_combo_box_list_key_press): Popdown the list before changing
3635         the active iter, otherwise people will be surprised by the
3636         grabs that are still in place when their ::changed handler
3637         runs. 
3638
3639 2006-03-15  Dom Lachowicz <cinamod@hotmail.com>
3640
3641         * modules/engines/ms-windows/msw_style.c: Override style->realize/
3642         style->unrealize, so that GTK+ doesn't automatically attempt to apply
3643         shading to the GC colors, causing a mismatch with the Win32 native
3644         colors. Problem found by (and suggested solution by) "Cosmic Integer"
3645
3646         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Make expander-size
3647         a bit closer to Microsoft's values (bug 325699, Brad Taylor)
3648         
3649 2006-03-14  Matthias Clasen  <mclasen@redhat.com>
3650
3651         * tests/testcellrenderertext.c: Add test cases for alignment.
3652
3653         * gtk/gtkcellrenderertext.c: Add an alignment property,
3654         and fix some cases where ellipsize_set was being used to
3655         mean "we're ellipsizing" even when ellipsize was set to NONE.  
3656         (#318761, Ross Burton)
3657
3658         * gtk/gtkimcontextsimple.c: Make return and release work again
3659         to commit a hex sequence. Additionally, make escape reset the
3660         im context when in a hex sequence.  (#334423, Behdad Esfahbod)
3661
3662 2006-03-13  Matthias Clasen  <mclasen@redhat.com>
3663
3664         Make actions work with named icons.  (#323484, Jorn Baayen)
3665         
3666         * gtk/gtkactiongroup.c: If the stock-id field of a GtkActionEntry
3667         does not contain a registered stock id, interpret it as an
3668         icon name.
3669
3670         * gtk/gtkaction.c: Add an icon-name property to actions and
3671         use it for icons if a stock-id is not specified.
3672
3673 2006-03-12  Matthias Clasen  <mclasen@redhat.com>
3674
3675         * gtk/gtkwindow.c (gtk_window_compute_configure_request): Don't
3676         for the creation of geometry info here.  (#114533)
3677
3678 2006-03-11  Tor Lillqvist  <tml@novell.com>
3679
3680         * gdk/win32/gdkdrawable-win32.c (draw_polygon): Use Polygon() for
3681         outlined polygons, too. Same idea as in draw_rectangle(): Set pen
3682         to NULL_PEN if drawing a filled polygon, set brush to HOLLOW_BRUSH
3683         if drawing a polygon outline. (#332662)
3684         (gdk_win32_draw_polygon): Corresponding simplification: no need to
3685         add an extra final copy of the starting point.
3686
3687 2006-03-11  Dom Lachowicz <cinamod@hotmail.com>
3688
3689         * modules/engines/ms-windows: Speed up the Windows theme
3690         considerably (#163724, John Ehresman)
3691         Be more careful about setting Pango font descriptions (#333372)
3692         
3693 2006-03-11  Matthias Clasen  <mclasen@redhat.com>
3694
3695         * gtk/gtkrange.c (gtk_range_key_press): Allow to cancel 
3696         a drag with ESC.  (#58389, Søren Sandmann)
3697
3698 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
3699
3700         * gtk/gtkrange.c: Add a style property ::activate_slider that
3701         allows themes to draw the slider active while dragged.  (#311992,
3702         Benjamin Berg)
3703
3704         * gtk/gtkcolorsel.c (gtk_color_selection_init): Fix two labels.
3705
3706         * gtk-engine-check-abi.sh: Add a script to check that theme
3707         engines don't export any extra functions. 
3708
3709 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
3710
3711         * gtk/gtkcolorsel.c (gtk_color_selection_init): Avoid a mnemonic
3712         conflict.  (#163850, Dennis Cranston)
3713
3714         * gtk/gtkaboutdialog.c (gtk_show_about_dialog): Make the behaviour
3715         of the about dialog consistent with other dialogs in gtk. If the
3716         dialog is constructed with gtk_about_dialog_new(), the creator
3717         is reponsible for handling the response by hiding or closing the
3718         dialog. gtk_show_about_dialog() handles it by hiding the dialog.
3719         (#333360, Daniel Drake)
3720
3721         * README.in: Mention this change.
3722
3723 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
3724
3725         Apply a patch from Dennis Cranston to make dialogs more
3726         consistent  (#163850)
3727         
3728         * gtk/gtkcolorsel.c (make_label_spinbutton): Left-align labels.
3729         
3730         * gtk/gtkfontsel.c (gtk_font_selection_init): 
3731         * gtk/gtkfontsel.c (gtk_font_selection_dialog_init): 
3732         * gtk/gtkcolorsel.c (gtk_color_selection_init): 
3733         * gtk/gtkcolorseldialog.c (gtk_color_selection_dialog_init): 
3734         * gtk/gtkinputdialog.c (gtk_input_dialog_init): Update the layout
3735         of the dialog to follow HIG recommendations. Also update labels.
3736
3737         * gtk/gtkmessagedialog.c (gtk_message_dialog_init): HIG-compatible 
3738         spacing.
3739         (gtk_message_dialog_font_size_change): Merged into 
3740          gtk_message_dialog_style_set.
3741
3742 2006-03-10  Matthias Clasen  <mclasen@redhat.com>
3743
3744         * gtk/gtkstyle.c: Remove g_return_if_fail() checks
3745         from static functions.
3746
3747 2006-03-10  Federico Mena Quintero  <federico@novell.com>
3748
3749         Make Shift-P and Shift-N activate typeahead in GtkTreeView
3750         (i.e. they are just normal capital letters).  Fixes bug #334098.
3751
3752         * gtk/gtktreeview.c (gtk_tree_view_add_move_binding): Add an
3753         "add_shifted_binding" argument which determines whether we'll add
3754         the same binding with GDK_SHIFT_MASK.
3755         (gtk_tree_view_class_init): Use add_shifted_binding=FALSE for GDK_p
3756         and GDK_n; use TRUE for all the rest.
3757
3758 2006-03-10  Michael Natterer  <mitch@imendio.com>
3759
3760         * gtk/gtkentry.[ch]: applied refactored patch from maemo-gtk that
3761         replaces the INNER_BORDER define by an "inner-border" style
3762         property of type GtkBorder. Additionally, add an "inner-border"
3763         object property plus API which allows to override any theme
3764         border, to allow pixel-perfect positioning of entries for inline
3765         editing. Fixes bug #333922.
3766
3767         * gtk/gtk.symbols: add the new public functions.
3768
3769 2006-03-09  Matthias Clasen  <mclasen@redhat.com>
3770
3771         * gtk/gtkcombobox.c (gtk_combo_box_class_init): Replace the
3772         popup-show and popup-hide signals with a readonly popup-shown
3773         property.  (#162531, Christian Persch)
3774
3775 2006-03-09  Ross Burton  <ross@openedhand.com>
3776
3777         * gtk/gtkwidget.c:
3778         * gtk/gtkrange.c:
3779         * gtk/gtktogglebutton.c:
3780         Turn off prelighting when gtk-touchscreen-mode is enabled (#135666)
3781
3782 Thu Mar  9 14:29:43 2006  Tim Janik  <timj@gtk.org>
3783
3784         * gtk/gtkobject.c (gtk_object_init): move the floating flag from
3785         the GInitiallyUnowned bit to GTK_FLOATING. fixes tests/floatingcheck.
3786         kudos to mitch for debugging this.
3787
3788 2006-03-09  Matthias Clasen <mclasen@redhat.com>
3789
3790         * Makefile.am: Add ChangeLog.pre-2.8 to EXTRA_DIST.
3791
3792 2006-03-09  Tor Lillqvist  <tml@novell.com>
3793
3794         * gtk/gtk.symbols: No gtk_tray_icon_get_type on Win32.
3795
3796 2006-03-08  Carlos Garnacho  <carlosg@gnome.org>
3797
3798         Rename ::tab-added and ::tab-removed signals to ::page-added and
3799         ::page-removed for not conflicting with other tab reordering
3800         implementations. Fixes bug #333743.
3801
3802         Also rename ::tab-reordered to ::page-reordered, and emit it in
3803         gtk_notebook_reorder_child () to make it behave consistently with the
3804         other two signals.
3805
3806         * gtk/gtknotebook.c (gtk_notebook_class_init): rename signals.
3807         (gtk_notebook_reorder_tab)
3808         (gtk_notebook_button_release)
3809         (gtk_notebook_remove)
3810         (gtk_notebook_real_insert_page): emit respectively renamed signals
3811         (gtk_notebook_reorder_child): also emit ::page-reordered here
3812
3813         * tests/testnotebookdnd.c: use renamed signals
3814
3815 2006-03-08  Michael Natterer  <mitch@imendio.com>
3816
3817         * gdk/gdkscreen.h
3818         * gdk/x11/gdkscreen-x11.c
3819         * gdk/gdk.symbols: added gdk_screen_get_active_window() and
3820         gdk_screen_get_window_stack() (patch from maemo-gtk).
3821         Fixes bug #320881.
3822
3823         * gdk/directfb/gdkscreen-directfb.c
3824         * gdk/quartz/gdkscreen-quartz.c
3825         * gdk/win32/gdkscreen-win32.c: added the functions as stubs.
3826
3827 2006-03-08  Michael Natterer  <mitch@imendio.com>
3828
3829         * tests/prop-editor.c (unichar_changed): zero-initialize the
3830         GValue before calling g_value_init().
3831
3832 2006-03-08  Michael Natterer  <mitch@imendio.com>
3833
3834         * gtk/gtkentry.c (gtk_entry_adjust_scroll): make sure that the
3835         text_area_width is always >= 0. Fixes bug #316712 (Dan Winship).
3836
3837 2006-03-07  Federico Mena Quintero  <federico@novell.com>
3838
3839         Cancel drags when the grabs get broken.  Fixes bug #333056:
3840
3841         * gtk/gtkdnd.c (gtk_drag_selection_received): The time argument is
3842         a guint, not guint32.
3843         (gtk_drag_source_event_cb): Return gboolean, not gint.
3844         (gtk_drag_anim_timeout): Likewise.
3845         (gtk_drag_motion_cb): Likewise.
3846         (gtk_drag_key_cb): Likewise.
3847         (gtk_drag_button_release_cb): Likewise.
3848         (gtk_drag_abort_timeout): Likewise.
3849         (gtk_drag_begin_internal): Connect to "grab-broken-event" on the
3850         ipc_widget.
3851         (gtk_drag_source_info_destroy): Disconnect from the
3852         "grab-broken-event" callback.
3853         (gtk_drag_end): Likewise.
3854         (gtk_drag_grab_broken_event_cb): New callback.  We cancel the drag
3855         if the grab was broken and not regrabbed by the DnD code.
3856
3857 2006-03-07  Federico Mena Quintero  <federico@novell.com>
3858
3859         * gtk/gtkfilechooserdefault.c (shortcuts_button_press_event_cb):
3860         Hack to let the treeview's button-press-event handler run before
3861         ours.  This lets the selection be updated before we pop up a
3862         context menu.
3863
3864 Tue Mar  7 17:16:34 2006  Tim Janik  <timj@gtk.org>
3865
3866         * configure.in: depend on glib-2.10.1.
3867
3868         * gtk/gtkobject.c: fixed up messing with non-GtkObject floating flags.
3869         this requires glib-2.10.1.
3870
3871 2006-03-07  Michael Natterer  <mitch@imendio.com>
3872
3873         Add infrastructure for copy/paste and DND of rich text for
3874         GtkTextBuffer. Fixes bug #324177.
3875
3876         * gtk/gtktextbufferrichtext.[ch]: new files implementing a
3877         per-buffer registry of rich text formats.
3878
3879         * gtk/gtk.h: #include gtktextbufferrichtext.h
3880
3881         * gtk/gtktextbufferserialize.[ch]: new files implementing an
3882         internal serialization format that can handle all of a text
3883         buffer's tags and pixbufs. It's not useful for anything except
3884         tranfer between instances of GtkTextBuffer (Anders Carlsson).
3885
3886         * gtk/Makefile.am: build the new files.
3887
3888         * gtk/gtkclipboard.[ch]: added convenience APIs for rich text,
3889         just as they exist for plain text and pixbufs.
3890
3891         * gtk/gtkselection.[ch]: added rich text convenience APIs here
3892         too.  Return the target list from gtk_target_list_ref(). Register
3893         GtkTargetList as boxed type. Added
3894         gtk_target_table_new_from_list() and gtk_target_table_free(),
3895         which make converting between GtkTargetList and arrays of
3896         GtkTargetEntry considerably easier.
3897
3898         * gtk/gtktextutil.[ch]: added _gtk_text_util_create_rich_drag_icon()
3899         which creates a fancy rich text icon (Matthias Clasen).
3900
3901         * gtk/gtktextbuffer.[ch]: use all the new stuff above and
3902         implement copy and paste of rich text. Added APIs for getting the
3903         target lists used for copy and paste. Added public enum
3904         GtkTextBufferTargetInfo which contains the "info" IDs associated
3905         with the entries of the target lists.
3906
3907         * gtk/gtktextview.c: use the new rich text APIs and
3908         GtkTextBuffer's new target list API to enable DND of rich text
3909         chunks.
3910
3911         * gtk/gtk.symbols: export all the new symbols added.
3912
3913         * tests/testtext.c: added rich text testing stuff.
3914
3915 2006-03-06  Matthias Clasen  <mclasen@redhat.com>
3916
3917         * gtk/gtktextview.c (text_window_invalidate_cursors): Take
3918         cursor width into account when calculating the area to 
3919         be invalidated.  (#333377, #323401 Steve Frécinaux)
3920
3921         * gtk/gtkmain.c (post_parse_hook): Set error when returning
3922         FALSE.  (#333268, Paolo Maggi, Christian Persch)
3923         
3924         * gtk/gtkpixmap.c (gtk_pixmap_set): Check that the pixmap
3925         has the right depth.  (#333363, Ed Catmur)
3926
3927 2006-03-05  Matthias Clasen  <mclasen@redhat.com>
3928
3929         * gtk/gtkiconview.c (adjust_wrap_width): Apply some
3930         arbitrary lower limit for the guessed wrap width. (#332466,
3931         Donald Straney)
3932
3933 2006-03-05  Matthias Clasen  <mclasen@redhat.com>
3934
3935         Fix handling of image-only buttons.  (#332985, Kalle 
3936         Vahlmann, #333555)
3937         
3938         * gtk/gtkbutton.c (gtk_button_construct_child): Don't
3939         return early if there an image to show.
3940         (show_image): Always return TRUE if there is no text.
3941
3942 2006-03-04  Matthias Clasen  <mclasen@redhat.com>
3943
3944         * gdk/x11/gdkinput-x11 (gdk_input_translate_coordinates):
3945         Adjust the handling of min values for the x and y axes of 
3946         extended input devices  (#324562, #142536, Denis Auroux and 
3947         Robert Ã–gren)
3948
3949         * gtk/gtkexpander.c (gtk_expander_paint_focus): Position
3950         the focus rectangle correctly in RTL mode.  (#333291,
3951         Benjamin Berg)
3952
3953 2006-03-03  Tor Lillqvist  <tml@novell.com>
3954
3955         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_commit_char)
3956         (gtk_im_context_simple_reset): Avoid emitting superfluous
3957         preedit_changed signals. Thanks to Matthias. (#319407)
3958
3959 2006-03-03  Michael Natterer  <mitch@imendio.com>
3960
3961         Applied modified patch from maemo-gtk which makes separators more
3962         themeable. Fixes bug #332022.
3963
3964         * gtk/gtkwidget.c: added style properties "wide-separators",
3965         "separator-width" and "separator-height".
3966
3967         * gtk/gtkhseparator.c
3968         * gtk/gtkvseparator.c
3969         * gtk/gtkmenuitem.c
3970         * gtk/gtktoolbar.c: honor the new settings and paint separators
3971         using gtk_paint_box() if wide-separators is true.
3972
3973 2006-03-02  Dom Lachowicz <cinamod@hotmail.com>
3974
3975         * modules/engines/ms-windows/msw_style.c: Fix combobox theming
3976         regression noted in bug 321301
3977         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Ditto
3978         
3979 2006-03-02  Matthias Clasen  <mclasen@redhat.com>
3980
3981         * gtk/gtkiconview.c (gtk_icon_view_layout) 
3982         (gtk_icon_view_row_inserted, gtk_icon_view_scroll_to_path): 
3983         Make scroll_to_path work for newly inserted items, by delaying
3984         the scroll until layout is done.  (#332923, Cory Dodt)
3985
3986         * gtk/gtkcolorbutton.c (render): Use GTK_WIDGET_IS_SENSITIVE,
3987         not GTK_WIDGET_SENSITIVE.  (#333133, Christian Persch)
3988
3989 2006-03-02  Ross Burton  <ross@openedhand.com>
3990
3991         * gtk/gtktooltips.c:
3992         Disable tooltips if gtk-touchscreen-mode is activated (#315112).
3993
3994 2006-03-01  Kristian Rietveld  <kris@imendio.com>
3995
3996         * gtk/gtktreeselection.c (row_is_selectable): rename to
3997         _gtk_tree_selection_row_is_selectable and export internally,
3998         (gtk_tree_selection_real_select_node): changed so it is always
3999         possible to unselect insensitive nodes, changed the logic a bit to
4000         be more clear.
4001
4002         * gtk/gtktreeprivate.h: add _gtk_tree_selection_row_is_selectable.
4003
4004         * gtk/gtktreeview.c (gtk_tree_view_row_changed): Unselect a row if
4005         it became insensitive.
4006
4007 2006-02-27  Federico Mena Quintero  <federico@novell.com>
4008
4009         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name): Check that
4010         the fontsel has a screen assigned before doing anything.  This
4011         will at least warn the caller of what is wrong, since we only
4012         populate the family_list until we get a screen.  Also, put the
4013         reference docs here.  Fixes bug #332756.
4014         (gtk_font_selection_dialog_get_font_name): Document this here.
4015         (gtk_font_selection_get_font_name): Document this here; mention
4016         that the font names get normalized, so the result of this function
4017         may not be the same as what you set with
4018         gtk_font_selection_set_font_name().
4019
4020 2006-02-27  Matthias Clasen  <mclasen@redhat.com>
4021
4022         * gtk/gtk.symbols:
4023         * gtk/gtktrayicon-x11.c: Fix symbol lists for make check.
4024
4025 2006-02-27  Michael Natterer  <mitch@imendio.com>
4026
4027         * gdk/x11/gdksettings.c: map "gtk-touchscreen-mode" to the
4028         "Gtk/TouchscreenMode" XSettings property, remove trailing
4029         whitespace.
4030
4031         * gdk/x11/checksettings.c: #include <string.h> and sprinkled some
4032         newlines.
4033
4034 Mon Feb 27 14:52:50 2006  Tim Janik  <timj@imendio.com>
4035
4036         * gdkevents-x11.c:
4037         * gdksettings.c: moved and renamed the gdk_settings_names and 
4038         gdk_settings_map.
4039
4040         * gdk/x11/checksettings.c: test program for the gdk_settings_map array.
4041
4042         * gdk/x11/Makefile.am: run checksettings as part of make check.
4043
4044 2006-02-27  Matthias Clasen  <mclasen@redhat.com>
4045
4046         * gtk/gtkdnd.c (gtk_drag_get_cursor): Comment out some unused
4047         code, and fix the reference point of composited drag cursors.
4048         (#320132, Christian Neumair)
4049
4050 Sun Feb 26 10:24:10 PST 2006  Michael Emmel  <mike.emmel@gmail.com>
4051         
4052         *gdk/directfb/README
4053         Updated README to remove old build instructions
4054
4055 Sat Feb 25 10:35:23 PST 2006  Michael Emmel  <mike.emmel@gmail.com>
4056         
4057         *gdk/directfb/gdkdisplay-directfb.c
4058         *gdk/directfb/gdkwindow-directfb.c
4059         Added stubs for shape window functions to fix compile problems
4060
4061 2006-02-24  Federico Mena Quintero  <federico@novell.com>
4062
4063         * gtk/gtkfilechooserdefault.c (shortcuts_list_create): Make the
4064         column header visible, and make it be "_Places".  Changed the
4065         accessible object name to Places as well.  Fixes bug #331306.
4066         (file_pane_create): Do not create the path bar and "create folder"
4067         button here...
4068         (browse_widgets_create): ... but create them here instead.  This
4069         moves the path bar to be above both the hpaned, giving it the full
4070         width of the dialog.  Fixes bug #327733.
4071
4072 Thu Feb 23 13:28:21 2006  Tim Janik  <timj@imendio.com>
4073
4074         * gdk/x11/gdkim-x11.c (_gdk_x11_initialize_locale): remove unconditional
4075         warnings about missing X locale support. Gdk properly handles this
4076         situation anyway.
4077
4078 Fri Feb 17 14:20:29 2006  Tim Janik  <timj@imendio.com>
4079
4080         * gtk/gtktreemodel.h: 
4081         * gtk/gtktextbtree.h: added G_GNUC_WARN_UNUSED_RESULT warnings for
4082         iterator functions, to avoid invalid iterators go unnoticed,
4083         suggested by Markku Vire <markku.vire@movial.fi>.
4084
4085 2006-02-23  Matthias Clasen  <mclasen@redhat.com>
4086
4087         * tests/Makefile.am: 
4088         * tests/testnotebookdnd.c: Add notebook DND tests.
4089
4090         * gtk/gtknotebook.h: Add a reorder_tab keynav signal and an
4091         insert_page vfunc to GtkNotebook.
4092
4093         * gtk/gtk.symbols:
4094         * gtk/gtknotebook.c: Support notebook DND. New API includes
4095         gtk_notebook_set_window_creation_hook, 
4096         gtk_notebook_[gs]et_group_id,
4097         gtk_notebook_[gs]et_tab_reorderable, 
4098         gtk_notebook_[gs]et_tab_detachable (#73240, Carlos Garnacho)
4099
4100 2006-02-23  Matthias Clasen  <mclasen@redhat.com>
4101
4102         * gtk/gtktextiter.c: Fix macro declaration
4103
4104         * gtk/gtkaboutdialog.c: Remove an accidentally included function.
4105
4106 2006-02-22  Matthias Clasen  <mclasen@redhat.com>
4107
4108         * gtk/gtktextbtree.c: 
4109         * gtk/gtktextiter.c: Minor optimizations.  (#332059, Arnaud Charlet)
4110
4111         * gtk/gtkradiobutton.c (gtk_radio_button_clicked): Emit notify::active
4112         here, when changing the value of this property.  (#331651)
4113
4114         * gtk/gtknotebook.c: Apply a patch by Paolo Borelli to
4115         make the tab menu keynavigatable.  (#331440)
4116
4117 2006-02-22  Matthias Clasen  <mclasen@redhat.com>
4118
4119         * gtk/gtkaboutdialog.c: Change Close buttons to GTK_RESPONSE_CANCEL
4120         so Escape works. (#331940, Daniel Drake)
4121
4122 2006-02-22  Michael Natterer  <mitch@imendio.com>
4123
4124         * gtk/gtksettings.c: added boolean property gtk-touchscreen-mode,
4125         which essentially means "there are no motion notify events", so
4126         widgets can't use the pointer hovering them for anything.
4127
4128         * gtk/gtkmenu.c: if gtk-touchscreen-mode is TRUE, scroll menus
4129         when clicking the scroll arrows, since hovering goes undetected.
4130         Fixes bug #323028.
4131
4132         Added boolean style property "double-arrows" which always makes
4133         both scroll arrows visible when the menu is too long.
4134         For pushed-in popup menus, both arrows are always shown
4135         (regardless of double-arrows), in order to fix user confusion
4136         about the blank area. Fixes bug #129463.
4137
4138 2006-02-21  Kristian Rietveld  <kris@imendio.com>
4139
4140         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered):
4141         Make sure we always update the virtual root, also when ->priv->root
4142         is still NULL.  (Markku Vire)
4143
4144 2006-02-21  Anders Carlsson  <andersca@imendio.com>
4145
4146         * gdk/quartz/gdkselection-quartz.c:
4147         (make_list):
4148         (gdk_text_property_to_utf8_list_for_display):
4149         Add these from the win32 backend.
4150
4151 2006-02-20  Matthias Clasen  <mclasen@redhat.com>
4152
4153         * gtk/gtknotebook.c: Properly update internal state
4154         when child visibility changes.  (#331785, Sebastien Bacher)
4155
4156         * gdk/gdkgc.c (_gdk_gc_update_context): Obtain the
4157         background color from the gc when it is needed.  (#331820)
4158
4159 2006-02-19  Matthias Clasen  <mclasen@redhat.com>
4160
4161         * gdk/gdkgc.c (_gdk_gc_update_context): Add a gc_changed
4162         argument, and avoid setting the clip region if the gc
4163         has not changed. 
4164
4165         * gdk/gdkgc.c: Update all callers.
4166
4167         * gdk/gdkpango.c (get_cairo_context): Avoid updating the
4168         context if nothing changed.
4169
4170 2006-02-20  Anders Carlsson  <andersca@imendio.com>
4171
4172         * gdk/quartz/gdkdisplay-quartz.c:
4173         (gdk_display_supports_shapes):
4174         (gdk_display_supports_input_shapes):
4175         * gdk/quartz/gdkwindow-quartz.c:
4176         (gdk_display_warp_pointer):
4177         (gdk_window_input_shape_combine_mask):
4178         (gdk_window_input_shape_combine_region):
4179         (gdk_window_set_child_input_shapes):
4180         (gdk_window_set_accept_focus):
4181         (gdk_window_merge_child_input_shapes):
4182         Add stubs for input shape functions.
4183
4184 2006-02-20  Anders Carlsson  <andersca@imendio.com>
4185
4186         * gdk/quartz/gdkevents-quartz.c:
4187         (get_keyboard_modifiers_from_nsevent):
4188         Fix typo so ctrl gets passed on to the gdk event.
4189         
4190         * gdk/quartz/gdkproperty-quartz.c:
4191         (gdk_atom_name):
4192         g_strdup the atom name.
4193
4194 2006-02-20  Tor Lillqvist  <tml@novell.com>
4195
4196         * gdk/win32/gdkdisplay-win32.c (gdk_display_supports_shapes):
4197         New function, return TRUE.
4198         (gdk_display_supports_input_shapes): New function, return FALSE.
4199
4200         * gdk/win32/gdkwindow-win32.c (do_shape_combine_region): New
4201         function. Factor out code from gdk_window_shape_combine_mask().
4202         (gdk_window_shape_combine_region): Actually do something. Convert
4203         region to a HRGN and call do_shape_combine_region().
4204         (gdk_window_input_shape_combine_mask)
4205         (gdk_window_input_shape_combine_region)
4206         (gdk_window_set_child_input_shapes)
4207         (gdk_window_merge_child_input_shapes): New functions, dummy
4208         implementations.
4209
4210 2006-02-20  Michael Natterer  <mitch@imendio.com>
4211
4212         * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): adding boolean
4213         have_shapes and have_input_shapes members fixes the build.
4214
4215 2006-02-20  Tor Lillqvist  <tml@novell.com>
4216
4217         * gdk/win32/gdkfont-win32.c: Replace all calls to g_strcasecmp()
4218         with g_ascii_strcasecmp().
4219
4220 2006-02-19  Matthias Clasen  <mclasen@redhat.com>
4221
4222         Support input shapes:  (#331070)
4223         
4224         * gdk/gdk.symbols: 
4225         * gdk/gdkdisplay.h: 
4226         * gdk/gdkwindow.h: 
4227         * gdk/x11/gdkdisplay-x11.c (gdk_display_supports_shapes) 
4228         (gdk_display_supports_input_shapes): Functions to determine
4229         if a display supports shaped windows or input shapes.
4230
4231         * gdk/x11/gdkwindow-x11.c (gdk_window_input_shape_combine_region): 
4232         (gdk_window_input_shape_combine_mask): 
4233         (gdk_window_set_child_input_shapes): 
4234         (gdk_window_merge_child_input_shapes): Input shape versions
4235         of the window shape API.
4236
4237         * gtk/gtk.symbols: 
4238         * gtk/gtkwidget.h: 
4239         * gtk/gtkwidget.c (gtk_widget_input_shape_combine_mask): 
4240         New function to set an input shape on a widget.
4241
4242 2006-02-19  Matthias Clasen  <mclasen@redhat.com>
4243
4244         * gtk/gtklinkbutton.c (gtk_link_button_class_init): Fix
4245         a cast.
4246
4247 2006-02-17  Matthias Clasen  <mclasen@redhat.com>
4248
4249         DND keynav support:
4250         
4251         * gtk/gtkdnd.c (gtk_drag_update_idle): Protect against 
4252         info->last_event being NULL.
4253         (gtk_drag_key_cb): Handle arrow keys to move the drag icon
4254         and space or enter to drop.
4255
4256 2006-02-17  Matthias Clasen  <mclasen@redhat.com>
4257
4258         * gdk/gdkregion-generic.c (gdk_region_union_with_rect):
4259         Be robust and reject rectangles with negative width or
4260         height.  (#331467, Benjamin Berg)
4261
4262
4263 2006-02-17  Kristian Rietveld  <kris@imendio.com>
4264
4265         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered):
4266         Only update the virtual root if the child path is an ancestor
4267         of the virtual root.  (Patch from Markku Vire).
4268
4269 2006-02-16  Federico Mena Quintero  <federico@novell.com>
4270
4271         * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_map): Call
4272         ::initial_focus() on the child before calling ::map() on our
4273         parent class.  This will prevent the shortcuts treeview from
4274         highlighting its first row as a result of getting assigned focus
4275         by gtk_dialog_map().
4276
4277 2006-02-14  Matthias Clasen  <mclasen@redhat.com>
4278
4279         * gtk/gtkwidget.c (gtk_widget_send_expose): Remove redundant
4280         check.  Pointed out by Bodo-Merle Sandor.
4281
4282         * gtk/gtkcolorbutton.c (gtk_color_button_[un]realize):
4283         Remove unnecessary checks.  
4284
4285 2006-02-12  Matthias Clasen  <mclasen@redhat.com>
4286
4287         * gtk/gtkicontheme.c (gtk_icon_theme_list_icons): Give working
4288         examples in the docs.  (#330944, John Spray)
4289
4290 2006-02-10  Matthias Clasen  <mclasen@redhat.com>
4291         
4292         * gtk/gtkiconview.c (gtk_icon_view_get_item_at_coords): Fix
4293         row_spacing/column_spacing confusion.  (#330732, Donald Straney)
4294
4295 2006-02-10  Matthias Clasen  <mclasen@redhat.com>
4296
4297         * gtk/gtkstyle.c: Add some docs. (#330073, Mart Raudsepp)
4298
4299         * gtk/gtkentrycompletion.c (gtk_entry_completion_match_selected): 
4300         Guard against NULL.  (#330177, Raphael Slinckx)
4301
4302 2006-02-10  Murray Cumming  <murrayc@murrayc.com>
4303
4304         * docs/reference/gtk/tmpl/gtkcomboboxentry.sgml: Mention that 
4305         the changed signal is emitted when typing - not just when 
4306         selecting from the list. Suggest use of GtkEntry::action to 
4307         etect end of typing.
4308          gtk/gtkcombobox.c: (gtk_combo_box_class_init): changed signal 
4309         ocumentation: Mention that the GtkComboBoxEntry emits it when 
4310         he users types, not just when he selects from the list.
4311
4312 2006-02-10  Murray Cumming  <murrayc@murrayc.com
4313
4314         * gtk/gtkassistant.h: Correct the declaration of the prepare 
4315         default signal handler to match its registration and use.
4316
4317 2006-02-09  Ross Burton  <ross@burtonini.com>
4318
4319         * gtk/gtkfontbutton.c:
4320         Work out the font size in floating point, and display the font
4321         size with %g instead of %d (#317590)
4322
4323 2006-02-09  Tor Lillqvist  <tml@novell.com>
4324
4325         * gdk/win32/gdkevents-win32.c (gdk_event_translate)
4326         <WM_MOUSELEAVE>: If we don't know where we went, and have
4327         generated a leave event, set current_window to the root
4328         window. This assures we will generate proper enter and leave
4329         events for popup windows. (#325521)
4330
4331 2006-02-08  John Ehresman  <jpe@wingware.com>
4332
4333         * gdk/win32/gdkevents-win32.c (gdk_event_translate)
4334         <WM_MOUSEACTIVATE>
4335         * gdk/win32/gdkwindow-win32.c (show_window_internal)
4336         (gdk_window_raise): Call SetWindowPos() instead of
4337         SetForegroundWindow() or BringWindowToTop() if the window
4338         shouldn't accept focus. (#327375)
4339         
4340 2006-02-08  John Ehresman  <jpe@wingware.com>
4341
4342         * gdk/win32/gdkwindow-win32.c: Let gdk_window_set_decorations()
4343         take precedence over anything derived from hints. Restructure
4344         related code and logic, add some new helper functions. (#327217)
4345
4346 2006-02-08  Matthias Clasen  <mclasen@redhat.com>
4347
4348         * gtk/gtkfilechooserbutton.c: Don't put relevant callss
4349         in g_assert().  (#329876, Kristian Rietveld)
4350
4351 2006-02-08  Tor Lillqvist  <tml@novell.com>
4352
4353         * gdk/win32/gdkevents-win32.c (gdk_pointer_grab)
4354         (gdk_display_pointer_ungrab, gdk_keyboard_grab)
4355         (gdk_display_keyboard_ungrab): Consistenly use assign_object()
4356         when assigning GdkWindow pointers so that the ref counting doesn't
4357         get off whack.
4358
4359         (handle_stuff_while_moving_or_resizing): Don't use deprecated API.
4360
4361         (gdk_event_translate) <WM_MOUSEMOVE>: When the pointer is grabbed
4362         with owner_events FALSE, generate enter and leave events only for
4363         the grab window. (#321054)
4364
4365 2006-02-08  Kristian Rietveld  <kris@imendio.com>
4366
4367         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_ref_path),
4368         (gtk_tree_model_filter_unref_path): free temporary paths after
4369         usage (patch from maemo-gtk),
4370         (gtk_tree_model_filter_clear_cache): fix little typo in the docs
4371         (patch from maemo-gtk).
4372
4373         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_deleted): remove
4374         stale FIXME.
4375
4376 2006-02-08  Matthias Clasen  <mclasen@redhat.com>
4377
4378         * gtk/gtkfilesystem.c (gtk_file_info_copy): Copy the display_key
4379         as well.  (#330389, Markku Vire)
4380
4381 2006-02-08  Tor Lillqvist  <tml@novell.com>
4382
4383         * gtk-zip.sh.in: Drop the timestamp from the zipfile names.
4384
4385 2006-02-07  Sven Neumann  <sven@gimp.org>
4386
4387         * gdk/directfb/AUTHORS: updated mine and Dok's email address.
4388
4389 2006-02-06  Kristian Rietveld  <kris@gtk.org>
4390
4391         * gtk/gtktreeview.c (gtk_tree_view_get_search_entry): fix compiler
4392         warning.
4393
4394 2006-02-05  Dom Lachowicz <cinamod@hotmail.com>
4395
4396         * gdk/gdkcairo.c (gdk_cairo_set_source_pixbuf): Bug #330022
4397         Wrong pixel values are computed when color = 0xFF and alpha = 0xFF
4398         
4399 2006-02-04  Michael Emmel  <mike.emmel@gmail.com>
4400         Added new directfb backend located in gdk/directfb
4401         plus patches to compile new backend
4402         compile with --with-gdktarget=directfb
4403
4404 2006-02-03  Federico Mena Quintero  <federico@ximian.com>
4405
4406         Work around https://bugs.freedesktop.org/show_bug.cgi?id=4320,
4407         which used to be our own
4408         http://bugzilla.gnome.org/show_bug.cgi?id=314616.  If one uses a
4409         pixmap for a pattern in Cairo, and sets the pattern to
4410         CAIRO_EXTEND_REPEAT; and if the destination surface is also a
4411         pixmap, Cairo does a slow copy instead of using XCopyArea().  So,
4412         we use the same code that we used in GTK+ 2.6 (pre-cairo), by
4413         filling the double-buffer pixmap with a tiled GC and
4414         XFillRectangle().
4415
4416         * gdk/gdkwindow.c (BackingRectMethod): New structure with a
4417         cairo_t and a GdkGC field.  Depending on which of these fields
4418         gets filled in, we'll use Cairo or GDK to clear the double-buffer
4419         pixmap when painting a window.
4420         (setup_backing_rect_method): Fill a BackingRectMethod as
4421         appropriate, depending on the window's configuration and our
4422         knowledge of whether Cairo is fast or slow when doing repeating
4423         patterns.
4424         (gdk_window_clear_backing_rect): Call
4425         setup_backing_rect_method().  Depending on what it returns, use
4426         Cairo to clear the double-buffer pixmap, or plain GDK.
4427
4428 2006-02-03  Matthias Clasen  <mclasen@redhat.com>
4429
4430         * gtk/gtklabel.c (get_layout_location): Fix handling
4431         of padding in RTL.  (#329099, Hooman Mesgary) 
4432
4433 2006-02-02  Matthias Clasen  <mclasen@redhat.com>
4434
4435         * gdk/x11/gdkdnd-x11.c (_gdk_drag_get_protocol_for_display):
4436         Make drops on the root window work again.  (#145243, Andrew S. Dixon)
4437
4438 2006-02-01  Matthias Clasen  <mclasen@redhat.com>
4439
4440         * gtk/gtkwidget.c (gtk_widget_class_init): Wrap dnd signal
4441         docs to 80 columns.
4442
4443 2006-01-31  Matthias Clasen  <mclasen@redhat.com>
4444
4445         * autogen.sh: Touch README and INSTALL here to pacify 
4446         automake.  (#329124, Kjartan Maraas, Tim Janik)
4447
4448 2006-01-31  Matthias Clasen  <mclasen@redhat.com>
4449
4450         * gtk/gtk.symbols:
4451         * gtk/gtkassistant.h: 
4452         * gtk/gtkassistant.c: Actually implement visibility handling,
4453         and add gtk_assistant_update_buttons_state.
4454
4455         * tests/testassistant.c: Test visibility handling.
4456
4457 2006-01-31  Kristian Rietveld  <kris@imendio.com>
4458
4459         * gtk/gtkstyle.c (gtk_default_draw_flat_box): Add support for row
4460         hinting for the selected state.
4461
4462 2006-01-30  Matthias Clasen  <mclasen@redhat.com>
4463
4464         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): 
4465         Make sure the tree view is realized, since we grab the
4466         focus to it.  (#329144, Wouter Bolsterlee)
4467
4468         * gtk/gtkspinbutton.h: 
4469         * gtk/gtkspinbutton.c: Add a wrapped signal.  (#322933,
4470         Carlos Garnacho Parro)
4471
4472         * gtk/gtkassistant.c: More generous spacing. (#328082,
4473         Christian Persch, patch by Carlos Garnacho)
4474         
4475         * gtk/gtktoggletoolbutton.c (gtk_toggle_tool_button_set_property): 
4476         Use the setter for active.  (#329208, Guillaume Cottenceau)
4477
4478         * docs/tools/widgets.c (get_all_widgets): Add GtkLinkButton
4479
4480         * gtk/gtkassistant.c (gtk_assistant_init): Move the
4481         last button to the left where it does not affect
4482         the positioning of forward/back.
4483
4484 2006-01-29  Matthias Clasen  <mclasen@redhat.com>
4485
4486         More GtkAssistant work, by Carlos Garnacho.
4487         
4488         * tests/testassistant.c: Additions.
4489
4490         * gtk/gtkassistant.c: Handle page visibility, other 
4491         small fixes.
4492
4493         * docs/tools/widgets.c: Add GtkAssistant.
4494
4495 2006-01-28  Behdad Esfahbod  <behdad@gnome.org>
4496
4497         * configure.in: If major.minor of required and available glib versions
4498         are the same, add -DG_DISABLE_DEPRECATED to GLIB_CFLAGS. (bug #328617)
4499
4500         * */Makefile.am: Remove hardcoded -DG_DISABLE_DEPRECATED.
4501
4502 2006-01-28  Dom Lachowicz <cinamod@hotmail.com>
4503
4504         * modules/engines/ms-windows/msw-style.c: Re-sync with gtk-wimp
4505         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Ditto
4506         
4507 2006-01-28  Matthias Clasen  <mclasen@redhat.com>
4508
4509         * gtk/gtk.symbols: 
4510         * gtk/gtklinkbutton.h: 
4511         * gtk/gtklinkbutton.c: Allow to set a global hook function
4512         thats called whenever a link button is clicked.
4513
4514         More work on GtkAssistant by Carlos Garnacho:
4515         
4516         * demos/gtk-demo/Makefile.am: 
4517         * demos/gtk-demo/assistant.c: Add a  GtkAssistant demo.
4518
4519         * gtk/gtkassistant.c: Handle focus, several small fixes to the
4520         flow computations.
4521
4522 2006-01-27  Federico Mena Quintero  <federico@ximian.com>
4523
4524         Fixes bug #328820:
4525
4526         * gtk/gtkfilechooserdefault.c
4527         (gtk_file_chooser_default_class_init): Make GDK_KP_Divide pop up
4528         the location dialog populated to "/".
4529         (tree_view_keybinding_cb): Likewise.
4530         (trap_activate_cb): Likewise.
4531
4532 2006-01-25  Behdad Esfahbod  <behdad@gnome.org>
4533
4534         * gtk/gtkcalendar.c (gtk_calendar_size_request): Use translated format
4535         strings for L10n in size calculation too.
4536
4537         * gtk/gtkcalendar.c (calendar_paint_week_numbers): Expand buffer to
4538         accomodate localized digits.
4539
4540 2006-01-26  Matthias Clasen  <mclasen@redhat.com>
4541
4542         * tests/prop-editor.c: Introspect child properties. too.
4543
4544 2006-01-25  Behdad Esfahbod  <behdad@gnome.org>
4545
4546         * gtk/gtkcalendar.c (calendar_paint_week_numbers, calendar_paint_day):
4547         Use contexed translated strings calendar:week:digits|%d and
4548         calendar:day:digits|%d to let translators choose localized digits for
4549         week and day numbers. (bug #317171, Hamed Malek)
4550
4551 2006-01-25  Behdad Esfahbod  <behdad@gnome.org>
4552
4553         * gtk/gtklabel.c (get_layout_location): Use logical extents of the
4554         layout instead of ink extents.  According to Pango docs, that's what
4555         should be used for placement.  Moreover, simply use
4556         pango_layout_get_pixel_size instead of getting the extents and
4557         dividing ourselves.
4558
4559 2006-01-25  Matthias Clasen  <mclasen@redhat.com>
4560
4561         * gtk/gtkentrycompletion.c: 
4562         * gtk/gtkentry.c: Be more careful when blocking signals. 
4563
4564         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): Only
4565         set the cursor size if it is != 0.
4566
4567         * gtk/gtksettings.c (gtk_settings_class_init): Change the default value
4568         of gtk-cursor-theme-size to 0, meaning "use default".
4569
4570 2006-01-24  Kristian Rietveld  <kris@gtk.org>
4571
4572         #322591, Jonathan Blandford.
4573
4574         * gtk/gtktreeview.[ch] (gtk_tree_view_get_search_entry),
4575         (gtk_tree_view_set_search_entry),
4576         (gtk_tree_view_get_search_position_func),
4577         (gtk_tree_view_set_search_position_func): New functions,
4578         and small adaptions to the tree view code to allow for setting
4579         the entry and search position function.
4580
4581         * gtk/gtktreeprivate.h: Removed GtkTreeViewSearchDialogPositionFunc
4582         typedef, which is now in gtktreeview.h as
4583         GtkTreeViewSearchPositionFunc.  Add/update fields.
4584
4585         * gtk/gtk.symbols: Add new functions.
4586
4587         * tests/testtreesort.c: Add a little test for _set_search_entry().
4588
4589 2006-01-23  Matthias Clasen  <mclasen@redhat.com>
4590
4591         Add GtkLinkButton, a port of GnomeHRef.  (#314808, Emmanuele Bassi)
4592         
4593         * gtk/gtklinkbutton.h: 
4594         * gtk/gtklinkbutton.c: New files.
4595
4596         * gtk/gtk.h:
4597         * gtk/gtk.symbols: 
4598         * gtk/Makefile.am: Glue.
4599
4600         * gtk/gtkaboutdialog.c: Use GtkLinkButton.
4601         
4602         * gtk/gtkwidget.c: Add link-color and visited-link-color style
4603         properties.  (#113649, Leena Gunda)
4604
4605         * gtk/gtkaboutdialog.c: Use the new style properties here instead
4606         of the about dialogs own link-color property. 
4607
4608 2006-01-23  Kristian Rietveld  <kris@gtk.org>
4609
4610         * gtk/gtktreemodel.c (gtk_tree_model_base_init): don't copy
4611         tree paths when emitting signals. (#325041, Matthias Clasen).
4612
4613 2006-01-23  Behdad Esfahbod  <behdad@gnome.org>
4614
4615         * gtk/gtklabel.c (get_layout_location): Fix misalignment of RTL
4616         text in ellipsized GtkLabel: use layout width if set, otherwise
4617         fallback to ink extents width. (#322042)
4618
4619 2006-01-23  Matthias Clasen  <mclasen@redhat.com>
4620
4621         * gtk/gtkassistant.c (compute_last_button_state): Only show the
4622         last button if we can jump to the end. 
4623         (gtk_assistant_init): Make the spacing and button order more
4624         HIG compliant.
4625
4626         Fix drawing issues in progress bars.  (#328081, Christian Persch)
4627         
4628         * gtk/gtkprogressbar.c (gtk_progress_bar_size_request): Always
4629         request enough space. 
4630         (gtk_progress_bar_paint_activity) 
4631         (gtk_progress_bar_paint_continuous) 
4632         (gtk_progress_bar_paint_discrete): Clip when drawing the bar.
4633
4634 2006-01-23  Michael Natterer  <mitch@imendio.com>
4635
4636         * gtk/gtkcolorbutton.c: move destruction of the private GdkGC
4637         from finalize() to unrealize(). Fixes BadMatch on display change
4638         (bug #85715).
4639
4640 2006-01-22  Kristian Rietveld  <kris@gtk.org>
4641
4642         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Revert previous
4643         commit after more searching in the bugzilla archives (see #309221).
4644
4645 2006-01-22  Kristian Rietveld  <kris@gtk.org>
4646
4647         * gtk/gtktreeview.c (gtk_tree_view_bin_expose): Remove second call
4648         to gtk_tree_view_column_cell_set_cell_data, since we also set the
4649         cell data before iterating over the columns for exposure. (Fixes
4650         #322471, Duncan Coutts).
4651
4652 2006-01-21  Matthias Clasen  <mclasen@redhat.com>
4653
4654         * tests/testassistant.c: Add some tests for GtkAssistant
4655
4656         * tests/Makefile.am: Glue
4657
4658 2006-01-20  Matthias Clasen  <mclasen@redhat.com>
4659
4660         * gtk/gtkassistant.c: Fix the docs to reflect the actual signal
4661         signatures.
4662
4663         * gtk/gtktextview.c (gtk_text_view_set_virtual_cursor_pos): Don't
4664         crash if layout is NULL.  (#327934, Christian Kirbach)
4665
4666 2006-01-20  Dan Winship  <danw@novell.com>
4667
4668         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_class_init,
4669         tree_view_keybinding_cb, trap_activate_cb): On "unix", pop up the
4670         "Open Location" window on "~" as well as "/". #153213
4671         (location_entry_create): Fix this so autocompletion still works
4672         correctly in that case.
4673
4674 2006-01-19  Matthias Clasen  <mclasen@redhat.com>
4675
4676         * configure.in: Explicitly link against Xrender.  
4677         (#327538, Christophe Belle)
4678         
4679         * gdk/x11/gdkprivate-x11.h (XID_FONT_BIT): 
4680         * gdk/x11/gdkfont-x11.c: 
4681         * gdk/x11/gdkxid.c: Use an unused high bit in the
4682         XID to mark fonts in the global xid hash table.
4683
4684         * gdk/x11/gdkcursor-x11.c (update_cursor): Skip fonts
4685         when iterating over the xid hash table, since calling
4686         GDK_IS_WINDOW () on an GdkFont can cause a segfault.
4687         (#327751, Ryan Lovett)
4688
4689 2006-01-19  Matthias Clasen  <mclasen@redhat.com>
4690         
4691         * gtk/gtkassistant.[hc]: Use a priv pointer for
4692         cheap access to the priv struct.  (#327725, Christian
4693         Persch)
4694
4695         * gtk/gtkassistant.h: Fix line endings.
4696
4697 2006-01-18  Matthias Clasen  <mclasen@redhat.com>
4698
4699         * gtk/gtkassistant.[hc]: Add GtkAssistant, a widget to
4700         construct multi-step wizards.  (#115348, Martyn Russell, 
4701         Matthias Clasen, Carlos Garnacho Parro)
4702
4703         * gtk/gtk.symbols:
4704         * gtk/Makefile.am: 
4705         * gtk/gtk.h: Necessary glue.
4706
4707 2006-01-18  Anders Carlsson  <andersca@imendio.com>
4708
4709         * gdk/quartz/gdkevents-quartz.c:
4710         (get_mm_from_pixels):
4711         (gdk_screen_get_width_mm):
4712         (gdk_screen_get_height_mm):
4713         Implement these functions.
4714         (#327228, Thomas Broyer).
4715
4716 2006-01-18  Anders Carlsson  <andersca@imendio.com>
4717
4718         * gdk/quartz/gdkdrawable-quartz.c:
4719         (gdk_quartz_draw_polygon):
4720         (gdk_quartz_draw_lines):
4721         Implement these functions.
4722         (#327226, Thomas Broyer)
4723         
4724 2006-01-18  Anders Carlsson  <andersca@imendio.com>
4725
4726         * gdk/quartz/gdkkeys-quartz.c:
4727         (maybe_update_keymap):
4728         Support non-MacRoman keyboard layouts.
4729         (#322585, Wolfgang Thaller)
4730         
4731 2006-01-18  Anders Carlsson  <andersca@imendio.com>
4732
4733         * gdk/quartz/gdkmain-quartz.c:
4734         (_gdk_windowing_init):
4735         Make the process a foreground application.
4736         (#322481, Wolfgang Thaller)
4737         
4738 2006-01-18  Matthias Clasen  <mclasen@redhat.com>
4739
4740         * gtk/gtkrbtree.c: 
4741         * gtk/gtktreemodel.c: Fix several g_new() calls which
4742         were using extra indirections or pointless casts.  
4743         (#327423, Morten Welinder)
4744
4745 Tue Jan 17 19:27:59 2006  Tim Janik  <timj@imendio.com>
4746
4747         * gtk/gtkprogress.c: fix adopted from maemo-gtk.
4748         gtk_progress_create_pixmap(): clear out the newly created offscreen 
4749         pixmap, so themes making use of transparency don't draw onto garbage.
4750
4751 2006-01-17  Michael Natterer  <mitch@imendio.com>
4752
4753         * gtk/gtkbutton.c: remove the "child-spacing" style property again
4754         and add "inner-border" instead. That's far more flexible and
4755         "child-spacing" was a bad name anyway.
4756
4757 2006-01-17  Michael Natterer  <mitch@imendio.com>
4758
4759         * configure.in (ALL_LINGUAS): remove "ang" again until all po
4760         files are there.
4761
4762 2006-01-16  Abel Cheung  <maddog@linuxhall.org>
4763
4764         * configure.in: Added "ang" "zh_HK" to ALL_LINGUAS.
4765
4766 2006-01-16  Matthias Clasen  <mclasen@redhat.com>
4767
4768         * README.in: Mention new pixbuf engine features.
4769
4770         * gtk/gtk.symbols: 
4771         * gtk/gtkradioaction.[hc]: Add a current-value property and a
4772         setter for it.  (#322735, Jorn Baayen)
4773         
4774 2006-01-16  Michael Natterer  <mitch@imendio.com>
4775
4776         * gtk/gtkbutton.c: applied patch from maemo-gtk which adds a
4777         child-spacing style property. Fixes bug #327202.
4778
4779 2006-01-16  Anders Carlsson  <andersca@imendio.com>
4780
4781         * gdk/quartz/gdkdisplay-quartz.c:
4782         * gdk/quartz/gdkevents-quartz.c:
4783         (gdk_keyboard_grab):
4784         (gdk_display_keyboard_ungrab):
4785         (gdk_keyboard_grab_info_libgtk_only):
4786         (find_window_for_event):
4787         Implement keyboard grabs.
4788         
4789         (_gdk_quartz_send_map_events):
4790         * gdk/quartz/gdkmain-quartz.c:
4791         * gdk/quartz/gdkprivate-quartz.h:
4792         New function that synthesizes map events.
4793         
4794         * gdk/quartz/gdkwindow-quartz.c:
4795         (_gdk_windowing_window_init):
4796         The root window is always visible.
4797         
4798         (all_parents_shown):
4799         (show_window_internal):
4800         Send map events.
4801         
4802         (gdk_window_hide):
4803         Ungrab keyboard and pointer
4804
4805 2006-01-15  Kristian Rietveld  <kris@gtk.org>
4806
4807         Fixes #324099, Tommi Komulainen.
4808
4809         * gtk/gtktreestore.[ch] (gtk_tree_store_insert_with_values),
4810         (gtk_tree_store_insert_with_valuesv): new functions, analog to
4811         those found in GtkListStore.
4812
4813         * gtk/gtktreestore.c (gtk_tree_store_real_set_value),
4814         (gtk_tree_store_set_valist), (gtk_tree_store_set_valist_internal),
4815         (gtk_tree_store_sort_iter_changed): refactored.
4816
4817         * gtk/gtk.symbols: updated.
4818
4819         * tests/treestoretest.c: added a test for this new functionality.
4820
4821 2006-01-14  Matthias Clasen  <mclasen@redhat.com>
4822
4823         * gtk/gtkentry.c (gtk_entry_drag_data_received): Remove 
4824         an unused variable.
4825
4826         * gtk/gtkiconfactory.c (get_default_icons): Register RTL 
4827         versions of the indent and unindent icons.  (#326857,
4828         Itai Bar-Haim)
4829
4830         * gtk/Makefile.am (STOCK_ICONS): And add them here.
4831
4832         Fix a crash with combo boxes in RESIZE_IMMEDIATE
4833         containers.  (#326806, Sebastian Bacher)
4834         
4835         * gtk/gtkcombobox.c (gtk_combo_box_size_allocate) 
4836         (gtk_combo_box_size_request): Don't call 
4837         gtk_combo_box_check_appearance() from here, as that 
4838         can lead to recursion. 
4839         (gtk_combo_box_init): Instead, call it here.
4840
4841 2006-01-14  Kristian Rietveld  <kris@gtk.org>
4842
4843         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_iter_children): fix
4844         a typo which caused this whole thing to not function ...
4845
4846 2006-01-14  Kristian Rietveld  <kris@gtk.org>
4847
4848         * gtk/gtktreeview.c (gtk_tree_view_size_allocate),
4849         (validate_visible_area): fixup adjustments and top_row if the
4850         current dy + page_size exceeds the new tree view height. (Fixes
4851         #316689, reported by Chris Lord).
4852
4853 2006-01-13  Matthias Clasen  <mclasen@redhat.com>
4854
4855         * */abicheck.sh: Make this work on more platforms.
4856
4857 2006-01-13  Kristian Rietveld  <kris@imendio.com>
4858
4859         * tests/testtreefocus.c (set_indicator_size), (main): add a little
4860         test for the newly introduced indicator-size property.
4861
4862 2006-01-13  Kristian Rietveld  <kris@imendio.com>
4863
4864         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_init):
4865         initialize the inconsistent field in the private structure,
4866         (gtk_cell_renderer_toggle_class_init),
4867         (gtk_cell_renderer_toggle_{set,get}_property),
4868         (gtk_cell_renderer_toggle_get_size): introduce a indicator-size
4869         property.
4870
4871 2006-01-13  Michael Natterer  <mitch@imendio.com>
4872
4873         * gtk/gtktreeview.c (gtk_tree_view_real_expand_row)
4874         (gtk_tree_view_real_collapse_row): don't animate the expander
4875         arrows if gtk-enable-animations is FALSE (bug #142582).
4876
4877 2006-01-12  Matthias Clasen  <mclasen@redhat.com>
4878
4879         * gtk/gtknotebook.c: Replace hardcoded values for tab-overlap and
4880         tab-curvature with style properties.  (#325282, Alexander Nedotsukov)
4881
4882         * gtk/gtktextview.c (gtk_text_view_commit_text) 
4883         (gtk_text_view_delete_from_cursor, gtk_text_view_backspace): 
4884         Reset the virtual cursor position.  (#326003, Evert Verhellen)
4885
4886         * gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add some docs
4887         about RGBA windows. (#326486, Benjamin Otte)
4888
4889 2006-01-12  Michael Natterer  <mitch@imendio.com>
4890
4891         * gdk/gdkimage.c (scratch_image_info_for_depth): connect to the
4892         display's "closed" signal and free the cached scratch images upon
4893         display closing (bug #85715).
4894
4895 2006-01-12  Michael Natterer  <mitch@imendio.com>
4896
4897         * gtk/gtkexpander.c (gtk_expander_set_expanded): skip the
4898         animation if the gtk-enable-animations setting is FALSE
4899         (bug #142582).
4900
4901 2006-01-11  Matthias Clasen  <mclasen@redhat.com>
4902
4903         * gtk/gtklabel.c: Fix a C99ism (#326658, Kazuki Iwamoto)
4904
4905 2006-01-11  Matthias Clasen  <mclasen@redhat.com>
4906
4907         * gtk/gtklabel.c: Add some notify batching, always
4908         emit notify after setting the new value.
4909
4910         * gtk/gtkmessagedialog.c: Add properties.  (#311254,
4911         Johan Dahlin)
4912         (gtk_message_dialog_new): Remove some redundant code, pointed
4913         out by Gustavo Carneiro.
4914
4915         * gdk/x11/gdkwindow-x11.c (create_moveresize_window): Clean
4916         up properly if the grab fails.
4917         (finish_drag): Don't leak a reference to moveresize_window
4918         here.
4919
4920 2006-01-11  Matthias Clasen  <mclasen@redhat.com>
4921
4922         * gdk/x11/gdkevents-x11.c: Fix string offsets.
4923
4924         Allow falling back to another icon theme before 
4925         hicolor.   (#325546, Rodney Dawes)
4926         
4927         * gtk/gtksettings.c: Add a gtk-fallback-icon-theme setting.
4928
4929         * gdk/x11/gdkevents-x11.c: Map it to the XSetting Net/FallbackIconTheme.
4930         
4931         * gtk/gtkicontheme.c: Consult the fallback icon theme before
4932         looking in hicolor. 
4933
4934 2006-01-10  Matthias Clasen  <mclasen@redhat.com>
4935
4936         * tests/testgtk.c: Add an expander example.
4937
4938         * gtk/gtkcalendar.c (gtk_calendar_focus_out): Queue a draw
4939         when losing the focus.  (#326064, Andrew Conkling)
4940
4941         * gtk/gtkimmulticontext.c: 
4942         * gtk/gtkhsv.c: 
4943         * gtk/gtkhandlebox.c: Convert to use instance private data.
4944
4945         * gtk/gtk.h: Remove duplicate include.  (#326429, 
4946         Benoît Carpentier)
4947
4948         * gtk/gtkpaned.c: Convert to use instance private data.
4949
4950 2006-01-10  Michael Natterer  <mitch@imendio.com>
4951
4952         * gdk/gdkpango.c (on_renderer_display_closed): disconnect from the
4953         right object ("closed" is emitted by the display, not the screen).
4954         (bug #85715)
4955
4956 2006-01-10  Anders Carlsson  <andersca@imendio.com>
4957
4958         * gdk/quartz/gdkproperty-quartz.c:
4959         (ensure_atom_tables):
4960         (intern_atom_internal):
4961         (gdk_atom_intern):
4962         (gdk_atom_intern_static_string):
4963         (gdk_atom_name):
4964         Implement local-only atoms.
4965
4966 2006-01-09  Matthias Clasen  <mclasen@redhat.com>
4967
4968         * gdk/gdkgc.c (gc_get_foreground): Correct a warning.
4969         (#326341, Benoît Carpentier)
4970
4971         * gtk/gtk.symbols:
4972         * gtk/gtkwindow.h:
4973         * gtk/gtkwindow.c (gtk_window_get_group): Make this function
4974         public API.  (#307099, Todd Berman)
4975
4976         * gtk/gtkmenu.c: 
4977         * gtk/gtkmain.c: 
4978         * gtk/gtkentrycompletion.c: 
4979         * gtk/gtkcombo.c: 
4980         * gtk/gtkcombobox.c: Update all callers.
4981
4982         * gtk/gtkentry.c (paste_received):  Make GtkEntryCompletion
4983         complete on pastes at the end.  (#165714, Christian Neumair)
4984
4985         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): 
4986         Prevent the first row being focused on map.  (#137351,
4987         Niklas Knutsson)
4988
4989 2006-01-09  Johan Dahlin  <jdahlin@async.com.br>
4990
4991         * gtk/gtk.symbols:
4992         * gtk/gtkeditable.h:
4993         * gtk/gtksizegroup.c: (gtk_size_group_get_widgets):
4994         * gtk/gtksizegroup.h:
4995         (struct _GtkSizeGroup): 
4996
4997         Add gtk_size_group_get_widgets, fixes #326324.
4998         Also mark all fields of GtkSizeGroup as private
4999
5000 2006-01-09  Matthias Clasen  <mclasen@redhat.com>
5001
5002         * gtk/gtktextlayout.c (gtk_text_layout_finalize): Don't
5003         leak preedit_string and preedit_attrs.  (#322332, Paolo
5004         Borelli)
5005
5006         * gtk/gtk.symbols:
5007         * gtk/gtkaction.h: 
5008         * gtk/gtkaction.c (gtk_widget_get_action): New function to
5009         get the action for a proxy.  (#326288)
5010
5011         * gtk/gtkaction.c: Go back to the old key for attaching the
5012         action to the proxy.  (#326288, Diego González)
5013
5014 2006-01-08  Matthias Clasen  <mclasen@redhat.com>
5015
5016         * gtk/gtkactiongroup.c (dgettext_swapped): Don't translate
5017         empty strings.  (#326200, Christian Stimming)
5018
5019 2006-01-08  Matthias Clasen  <mclasen@redhat.com>
5020
5021         * gtk/gtkentry.[hc]: 
5022         * gtk/gtklabel.[hc]: Shrink the private structs of these a bit.
5023
5024         * gtk/gtklabel.c (get_layout_location): Fix label alignment 
5025         when width-chars is set.  (#326098, Benjamin Otte)
5026
5027         * gdk/gdkregion-generic.c (miRegionCopy): Fix this for the 
5028         single-rectangle case.  (#326127, Benjamin Berg)
5029         (gdk_region_copy): Use miRegionCopy() here.
5030
5031 2006-01-07  Matthias Clasen  <mclasen@redhat.com>
5032
5033         Fix actiongroup-action interaction that relied on 
5034         actions connecting to notify on themselves:
5035         
5036         * gtk/gtkaction.[hc]: Factor out the code updating the
5037         visibility/sensitivity of proxies into _gtk_action_sync_visible()
5038         and _gtk_action_sync_sensible().
5039
5040         * gtk/gtkactiongroup.c: Call the new functions when the
5041         group visibility/sensitivity changes. 
5042
5043 2006-01-06  Matthias Clasen  <mclasen@redhat.com>
5044
5045         * gtk/gtkactiongroup.c (gtk_action_group_set_sensitive) 
5046         (gtk_action_group_set_visible): Add missing property change
5047         notification.
5048
5049 2006-01-06  Matthias Clasen  <mclasen@redhat.com>
5050
5051         * gtk/gtkfilechooserbutton.c (model_add_special): Just use the
5052         directory name for the home dir.  (#325817, Federico Mena Quintero)
5053         
5054         * gtk/gtktexttag.c (gtk_text_attributes_new): Initialize editable 
5055         to TRUE. 
5056         (gtk_text_tag_class_init): The default value for the direction 
5057         property is GTK_TEXT_DIR_NONE. Add notes about the initial values 
5058         of the font and language properties.
5059
5060         * gtk/gtktoolbutton.c (gtk_tool_button_class_init): Make clicked
5061         an action signal.  (#325782, Martyn Russell)
5062
5063         * gtk/gtkviewport.c (viewport_set_adjustment): Disconnect from
5064         the old adjustments signals.  (#325869, Jorn Baayen)
5065
5066 2006-01-06  Hans Breuer  <hans@breuer.org>
5067
5068         * tests/makefile.msc : added a bunch of tests
5069         * tests/testcellrenderertext.c : use g_snprintf()
5070         * tests/testfilechooserbutton.c : don't include unistd.h twice.
5071         Removed the unconditional one and added direct.h for G_OS_WIN32
5072         
5073 2006-01-05  Hans Breuer  <hans@breuer.org>
5074
5075         * gdk/makefile.msc : also recurse into win32 for ::clean
5076         * gtk/makefile.msc.in : create gtkbuiltincache.h (most code
5077         to simulate links) and file renames
5078
5079 2006-01-05  Johan Dahlin  <jdahlin@async.com.br>
5080
5081         * gtk/gtkprogressbar.c: Set minimum for activity-step property to 0
5082         instead of -G_MAXUINT.
5083         
5084 2006-01-05  Matthias Clasen  <mclasen@redhat.com>
5085
5086         * gtk/gtkwindow.c: Only connect to the event if we have
5087         a frame, since the handler is only relevant in that case.
5088
5089         * gtk/gtkaction.c (connect_proxy, disconnect_proxy): 
5090         Use a weak reference rather than the destroy signal to track 
5091         proxies going away.
5092
5093         * gtk/gtkbindings.c (binding_signal_new): Revert the last change.
5094
5095         * gtk/gtkaction.c (gtk_action_sync_property): 
5096         (gtk_action_sync_stock_id): Removed.
5097
5098 2006-01-05  Rodrigo Moya <rodrigo@novell.com>
5099
5100         * gtk/gtkbindings.c (binding_signal_new): allocate correct amount for
5101         signal and arguments.
5102
5103 2006-01-05  Matthias Clasen  <mclasen@redhat.com>
5104
5105         * gtk/gtklabel.c (gtk_label_grab_focus): Don't return a value from
5106         a void function.
5107
5108 2006-01-04  Matthias Clasen  <mclasen@redhat.com>
5109
5110         * gtk/gtkbindings.h (struct _GtkBindingSignal): Revert questionable
5111         changes.
5112         
5113         * gtk/gtkbindings.c: Use the slice allocator and allocate signal
5114         and arguments in one block.
5115
5116         * gtk/gtkuimanager.c (gtk_ui_manager_get_toplevels): Don't return
5117         a list of NULLs.  (#325723, Steve Chaplin)
5118
5119 2006-01-04  Rodrigo Moya <rodrigo@novell.com>
5120
5121         * gtk/gtkbindings.c (binding_signal_new): guard against multiplying
5122         by -1 (when n_args is 0).
5123
5124 2006-01-04  Michael Natterer  <mitch@imendio.com>
5125
5126         * gtk/gtkmenutoolbutton.c
5127         (gtk_menu_tool_button_set_menu)
5128         (gtk_menu_tool_button_destroy): use gtk_menu_attach_to_widget()
5129         and gtk_menu_detach() instead of reffing/unreffing the menu
5130         manually. Also fixes brokenness on screen change (bug #85715).
5131
5132 2006-01-04  Matthias Clasen  <mclasen@redhat.com>
5133
5134         * gtk/gtkaccelmap.c: 
5135         * gtk/gtkactiongroup.c: 
5136         * gtk/gtkdialog.c: 
5137         * gtk/gtkfilesystemunix.c: 
5138         * gtk/gtkgc.c: 
5139         * gtk/gtkkeyhash.c: 
5140         * gtk/gtkplug.c: 
5141         * gtk/gtktextiter.c: 
5142         * gtk/gtktextlayout.c: 
5143         * gtk/gtkuimanager.c: 
5144         * gtk/gtkwidget.c: 
5145         * gtk/gtkwindow.c: 
5146         * gtk/gtkxembed.c: Use the slice allocator for many small 
5147         allocations.
5148
5149         * gtk/gtkcolorsel.c: 
5150         * gtk/gtktreeview.c: Use IPN.
5151
5152         * gtk/gtkwidget.c: Remove an unused field from the AccelPath 
5153         struct.
5154
5155 2006-01-04  Tor Lillqvist  <tml@novell.com>
5156
5157         * gtk-zip.sh.in: Include also the gtk20-properties message catalogs.
5158
5159 2006-01-03  Matthias Clasen  <mclasen@redhat.com>
5160         
5161         * gtk/gtkdnd.c: Make it compile
5162
5163         * gtk/gtkdnd.c (gtk_drag_begin_internal): Call gtk_drag_update
5164         for non-motion events.  (#325443, Peter Harvey)
5165
5166         * gtk/gtkaction.c: Avoid connecting to notify on our own
5167         properties. 
5168
5169 2006-01-02  Matthias Clasen  <mclasen@redhat.com>
5170
5171         * gtk/gtkentry.c (gtk_entry_delete_from_cursor): When deleting
5172         words, delete preceding whitespace as well.  (#325358,  Akkana Peck)
5173
5174 2006-01-02  Anders Carlsson  <andersca@imendio.com>
5175
5176         * gdk/quartz/GdkQuartzWindow.c:
5177         (-[GdkQuartzWindow canBecomeMainWindow]):
5178         (-[GdkQuartzWindow canBecomeKeyWindow]):
5179         Have these return TRUE
5180         
5181         * gdk/quartz/gdkevents-quartz.c:
5182         (pointer_grab_internal):
5183         Remove FIXME
5184         
5185         (find_child_window_by_point_helper):
5186         Fix bug in offset calculation
5187         
5188         (find_window_for_event):
5189         Use grab window toplevel when a grab is in effect
5190         
5191         (gdk_event_translate):
5192         Don't call _gdk_event_button_generate on mouse up
5193         
5194         * gdk/quartz/gdkgc-quartz.c:
5195         (_gdk_quartz_gc_new):
5196         Fix indentation
5197         
5198         * gdk/quartz/gdkwindow-quartz.c:
5199         (gdk_window_new):
5200         Make TEMP windows borderless
5201         
5202         (gdk_window_hide):
5203         Hide window
5204         
5205         (gdk_window_get_origin):
5206         Implement
5207         
5208 2006-01-02  Tor Lillqvist  <tml@novell.com>
5209
5210         * gdk/win32/gdkwindow-win32.c
5211         (gdk_window_impl_win32_get_visible_region): Make identical to the
5212         X11 implementation. (#322264, John Ehresman)
5213
5214         * gdk/win32/gdkgeometry-win32.c (gdk_window_scroll): Get the
5215         invalidated region from ScrollWindowEx() instead of an incorrect
5216         attempt to calculate it ourselves. Fix by John Ehresman. (#323666)
5217
5218         * gdkevents-win32.c: Make _gdk_win32_hrgn_to_region() non-static.
5219
5220         * gdkprivate-win32.h: Declare it.
5221
5222 2005-12-31  Matthias Clasen  <mclasen@redhat.com>
5223
5224         * gtk/gtkaction.c: 
5225         * gtk/gtkentry.c: Connect to notify instead of multiple
5226         detailed signals.
5227
5228 2005-12-30  Matthias Clasen  <mclasen@redhat.com>
5229
5230         * gdk/gdk.symbols: 
5231         * gdk/gdkcairo.h: 
5232         * gdk/gdkcairo.c: Add gdk_cairo_set_source_pixmap.  (#318805,
5233         Alexander Larsson)
5234
5235         * gdk/gdkdisplaymanager.c (gdk_display_manager_set_property): Call
5236         gdk_display_manager_set_default_display() to change the default
5237         display.  (#153623, Stefan Kost)
5238
5239         * gtk/gtkmessagedialog.c (gtk_message_dialog_init):
5240          (setup_type): Alert dialogs should not have titles and should 
5241         not be displayed in the taskbar.  (#310443, Carlos Garnacho Parro,
5242         Dennis Cranston)
5243
5244 2005-12-29  Matthias Clasen  <mclasen@redhat.com>
5245
5246         * gtk/gtkliststore.c: 
5247         * gtk/gtktreestore.c: Always call the get_path and get_iter
5248         implementations directly, rather than the current mixture whith
5249         some calls going through the GtkTreeModel interface.
5250
5251         * gtk/gtktreemodelsort.c: 
5252         * gtk/gtkliststore.c: 
5253         * gtk/gtktreestore.c: Remove excessive g_return_if_fail() checks
5254         in static functions.
5255         
5256         * gtk/gtktreedatalist.c: Use the slice allocater for 
5257         GtkTreeDataSortHeader.
5258
5259         * gtk/gtktreedatalist.h: 
5260         * gtk/gtktreedatalist.c (_gtk_tree_data_list_set_header): New function.
5261
5262         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_set_sort_func): 
5263         * gtk/gtkliststore.c (gtk_list_store_set_sort_func): 
5264         * gtk/gtktreestore.c (gtk_tree_store_set_sort_func): Use it here.
5265
5266 2005-12-27  Matthias Clasen  <mclasen@redhat.com>
5267
5268         * gtk/gtkbindings.h (GtkBindingSignal): 
5269         * gtk/gtkbindings.c (binding_signal_new): Make the
5270         args a flexible array inside the struct, and allocate them
5271         together.
5272
5273 Wed Dec 28 00:45:46 2005  Tim Janik  <timj@gtk.org>
5274
5275         * gtk/gtkctree.c (row_delete): delete GtkCTreeRow as GtkCTreeRow, not
5276         clist rows which crashes in gslice later on.
5277
5278 2005-12-27  Federico Mena Quintero  <federico@ximian.com>
5279
5280         * gtk/gtkfilefilter.c (gtk_file_filter_filter): In the case for
5281         FILTER_RULE_PIXBUF_FORMATS, check that filter_info->mime_type is
5282         not NULL.  Fixes bug #317687.
5283
5284 2005-12-27  Matthias Clasen  <mclasen@redhat.com>
5285
5286         * gdk/x11/gdkevents-x11.c (check_transform): Fix a typo.
5287         (gdk_screen_get_setting): Avoid relocations for the settings
5288         map.
5289
5290         * gdk/x11/gdkproperty-x11.c: Avoid relocations for the list
5291         of standard atoms.
5292
5293         * gtk/gtkbindings.c (gtk_binding_set_new): Avoid copying
5294         the set_name by interning it.
5295
5296 2005-12-26  Matthias Clasen  <mclasen@redhat.com>
5297
5298         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Precache atoms
5299         before calling gdk_window_new().
5300
5301         * gtk/gtktextbtree.c: Use the slice allocator for some other small
5302         auxiliary structures as well.
5303
5304         * gtk/gtkimcontext.c (gtk_im_context_filter_keypress): Clarify
5305         docs.  (#324996)
5306
5307         * gtk/gtktextbtree.c (gtk_text_btree_get_tag_info) 
5308         (gtk_text_btree_remove_tag_info): Use the slice allocator for 
5309         tag info.
5310
5311         * README.in: Mention the stripping of (_F) suffixes.
5312
5313         * gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): Strip a suffix of 
5314         the form "(_<single character>)", since this is the preferred way
5315         for some languages to indicate accelerators.  (#323956, Yang Hong)
5316
5317         * gtk/gtklabel.c (gtk_label_class_init): Add a gtk-label-select-on-focus
5318         setting.
5319         (gtk_label_grab_focus): And use it here to select the contents of
5320         the label when appropriate.
5321         (gtk_label_class_init): Use the same keybindings for select all/
5322         unselect all as GtkEntry and GtkTextView.
5323
5324         * gtk/gtkdialog.c (gtk_dialog_map): When looking for the initial
5325         focus, avoid leaving a selection in a label.
5326
5327 2005-12-25  Matthias Clasen  <mclasen@redhat.com>
5328
5329         * gtk/gtkwindow.c: Documentation fixes.  (#324815, 
5330         Ross Burton)
5331
5332         * configure.in: Require GLib 2.9.2
5333
5334 2005-12-24  Matthias Clasen  <mclasen@redhat.com>
5335
5336         * gdk/gdkregion-generic.c: 
5337         * gdk/gdkpolyreg-generic.c: 
5338         * gdk/gdkregion.h: 
5339         * gdk/gdkrectangle.c: Inline docs, use g_assert(), avoid 
5340         extra allocation for rectangular regions.
5341
5342 Thu Dec 22 18:53:14 2005  Tim Janik  <timj@gtk.org>
5343
5344         * gtk/gtkobject.[hc]: renamed GUnowned to GInitiallyUnowned.
5345
5346 Thu Dec 22 17:55:11 2005  Tim Janik  <timj@gtk.org>
5347
5348         * gtk/gtkobject.h: parent type fixups in structure declarations.
5349
5350 Thu Dec 22 16:01:27 2005  Tim Janik  <timj@imendio.com>
5351
5352         * gtk/gtkobject.c: derive GtkObject from GUnowned,
5353         so it initially has a floating reference count.
5354         gtk_object_class_init(): installa floating flag handler with
5355         libgobject, so for GtkObjects the flag is stored as GTK_FLOATING
5356         in the ->flags member.
5357
5358         * tests/floatingtest.c: test floating flag uses.
5359
5360 2005-12-21  Matthias Clasen  <mclasen@redhat.com>
5361
5362         * gdk/gdkregion-generic.c: Use the slice allocator
5363         for regions. Still todo: avoid extra allocations for
5364         the single-rectangle case.
5365
5366         * gtk/gtksettings.c (gtk_settings_class_init): Update
5367         class_n_properties after installing color-hash, since
5368         other classes install settings, too.
5369
5370         * gtk/gtkctree.c: 
5371         * gtk/gtkclist.c: Fix some mistakes in the conversion
5372         from mem chunks to slice allocator.
5373
5374         * gtk/gtkiconview.c (adjust_wrap_width): Adjust the 
5375         wrap-width also if an explicit item width is set.  
5376         (#322475, Alex Graveley)
5377         
5378 2005-12-20  Matthias Clasen  <mclasen@redhat.com>
5379
5380         * gtk/gtkiconview.c (gtk_icon_view_button_press): Reset 
5381         pressed_button to -1 after handling a double click, so that
5382         motion events occurring between here and the release event
5383         don't trigger DND.  (#324588, Dave Andreoli)
5384
5385 2005-12-19  Matthias Clasen  <mclasen@redhat.com>
5386
5387         * gtk/gtkcellrenderer.c: 
5388         * gtk/gtkselection.c: 
5389         * gtk/gtkcalendar.c: 
5390         * gtk/gtkitemfactory.c: 
5391         * gdk/gtkcombo.c: 
5392         * gdk/gdkpixbuf-render.c: Documentation updates
5393
5394         * gtk/gtktreemodel.c: 
5395         * gtk/gtkplug.c: 
5396         * gtk/gtkwindow.c: Documentation fixes.
5397
5398 2005-12-19  Michael Natterer  <mitch@imendio.com>
5399
5400         * gtk/gtkentry.c: implement boolean property "truncate-multiline"
5401         which, when enabled, truncates multi-line pastes or drops to their
5402         first line. Fixes bug #322252.
5403
5404         * gtk/gtkfilechooserentry.c (gtk_file_chooser_entry_init): enable
5405         truncate-multiline here.
5406
5407 2005-12-17  Matthias Clasen  <mclasen@redhat.com>
5408
5409         * gtk/gtksettings.c (get_color_hash): Don't crash if
5410         there is no color scheme.  (#324429, Diego Gonzalez)
5411
5412 2005-12-16  Matthias Clasen  <mclasen@redhat.com>
5413
5414         * gtk/gtkfilesystem.c (gtk_file_system_module_load): 
5415         * gtk/gtkimmodule.c (gtk_im_module_load): 
5416         * gtk/gtkthemes.c (gtk_theme_engine_load): 
5417         * gtk/gtkmodules.c (find_module): Use G_MODULE_BIND_LAZY when
5418         opening modules.
5419
5420         * gtk/gtksettings.[hc]: Rework the way the color scheme setting
5421         is inherited. Now the overriding is done on a per-color basis,
5422         rather than for the setting as a whole. This has the effect
5423         that themes can declare defaults for all the symbolic colors they
5424         use by specifying a value for the gtk-color-scheme setting in 
5425         their rc file, while still allowing the XSetting to override
5426         "standard" symbolic colors. The hash table is now available
5427         through the color-hash property.
5428         
5429         * gtk/gtkrc.c: Use the new color-hash property.
5430         
5431 2005-12-14  Matthias Clasen  <mclasen@redhat.com>
5432
5433         * gtk/gtkcontainer.c (_gtk_container_focus_sort): Skip unrealized
5434         children when doing focus sorting.  (#323995, Dan Winship)
5435
5436 2005-12-14  Rodney Dawes  <dobey@novell.com>
5437
5438         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_render_icon):
5439         Default to "drive-harddisk" and then fall back to gnome-dev-harddisk
5440         (get_icon_for_mime_type): Look up the mime type icons according to the
5441         Icon Naming Specification and then fall back to the gnome-mime- prefix
5442         for the mime type icons
5443
5444         Fixes #323655
5445         
5446 2005-12-14  Matthias Clasen  <mclasen@redhat.com>
5447
5448         * gtk/gtkdnd.c (gtk_drag_set_icon_name): Warn if the icon
5449         cannot be loaded.  (#323504, Kjartan Maraas)
5450
5451         * gtk/gtktreeview.c (gtk_tree_view_class_init): Add docs 
5452         for the row-activated signal.  (#324044, Davyd Madeley)
5453
5454 2005-12-14  Michael Natterer  <mitch@imendio.com>
5455
5456         * tests/test-images/valid_jpeg_progressive_test: new test image.
5457
5458 Tue Dec 13 09:47:20 2005  Tim Janik  <timj@gtk.org>
5459
5460         * README.in: added a link to the floating reference docs in the
5461         2.10 release NEWS section.
5462
5463 2005-12-12  Matthias Clasen  <mclasen@redhat.com>
5464
5465         * gtk/gtktextiter.c (gtk_text_iter_set_visible_line_index): 
5466         Speed this function up, using the fact that visibility is 
5467         constant across segments. (#321548, Paolo Borelli)
5468
5469         * gtk/gtktextbtree.c (_gtk_text_line_char_to_byte_offsets): 
5470         * gtk/gtktextiter.c (gtk_text_iter_backward_chars): Speed up
5471         stepping backwards.  (#320638, Larry Ewing, Paolo Borelli)
5472
5473         * gtk/gtkicontheme.c (ensure_valid_themes): Only broadcast
5474         _GTK_LOAD_ICONTHEMES if we detect a real theme change, not
5475         upon initial theme load.  (#323876, Peter Lund)
5476
5477         * gtk/gtkstatusicon.c (gtk_status_icon_class_init): Register
5478         the size-changed signal correctly.  (#323848, Murray Cumming)
5479
5480         * gtk/gtkmarshalers.list: Add necessary marshaller.
5481
5482         * gtk/gtktextview.c (gtk_text_view_get_border_window_size): Don't
5483         fall thru to the wrong window types.  (#323843)
5484
5485         Make the gtk-color-scheme setting work.
5486         
5487         * gtk/gtksettings.h: 
5488         * gtk/gtksettings.c (_gtk_settings_get_color_hash): Add a getter
5489         that takes care of initializing the color hash if it is not 
5490         already there.  
5491
5492         * gtk/gtkrc.c (gtk_rc_color_scheme_changed, gtk_rc_context_get): 
5493         And use it here.        
5494
5495 2005-12-10  Matthias Clasen  <mclasen@redhat.com>
5496
5497         * gdk/gdk.c (gdk_parse_args): Warn if parsing fails,
5498         not if it succeeds. 
5499
5500 2005-12-09  Matthias Clasen  <mclasen@redhat.com>
5501
5502         * gtk/gtkselection.c (gtk_selection_data_get_uris): Don't
5503         leak list[0].  (#323629, Markku Vire)
5504
5505         * gtk/gtktextbuffer.c (paste_from_buffer): Unref the buffer
5506         when freeing the RequestData.  (#323577)
5507
5508 2005-12-07  Matthias Clasen  <mclasen@redhat.com>
5509
5510         * demos/gtk-demo/iconview_edit.c (set_cell_color): Don't
5511         leak text.
5512
5513         * gtk/gtktoolbutton.c (clone_image_menu_size): Fix a 
5514         variable name clash.  (#323475, Ross Burton)
5515
5516 2005-12-07  Ross Burton  <ross@burtonini.com>
5517
5518         * docs/reference/gtk/tmpl/gtkenums.sgml:
5519         * gtk/gtktoolbutton.c:
5520         If the toolbar mode is ICONS and there is no icon set then show
5521         the label, and vice versa (#322019)
5522
5523 2005-12-07  Matthias Clasen  <mclasen@redhat.com>
5524
5525         * gtk/gtktoolbutton.c (clone_image_menu_size): Fix a 
5526         variable name clash.  (#323475, Ross Burton)
5527
5528         * gtk/gtktreeview.c (gtk_tree_view_key_press): Use the correct
5529         window when synthesizing the key event.  (#323077,
5530         Sadrul Habib Chowdhury)
5531         
5532         (gtk_tree_view_search_key_press_event): Also listen for
5533         GDK_ISO_Left_Tab.  (#323077, Sadrul Habib Chowdhury)
5534
5535         * gtk/gtktextview.c (gtk_text_view_preedit_changed_handler): 
5536         Only scroll if we have focus.  (#316310, Paolo Borelli)
5537
5538         * gtk/gtkfilesystemunix.c (cb_fill_in_mime_type): Fix a C99ism,
5539         spotted by Crispin Flowerday.
5540
5541 2005-12-06  Behdad Esfahbod  <behdad@gnome.org>
5542
5543         * gtk/gtksettings.c (settings_update_font_options): Turn metrics
5544         hinting on (part of #307196)
5545
5546 2005-12-06  Matthias Clasen  <mclasen@redhat.com>
5547
5548         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_reset): Don't
5549         commit from reset, it upstets GtkTextView.
5550
5551         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): Be more
5552         careful when turning blinking on and off.
5553         (gtk_text_view_focus_out_event): Make the cursor really invisible
5554         when the focus goes away.  (#323087, Sadrul Habib Chowdhury)
5555         (cursor_blinks): Check the gtk-cursor-blink setting first.
5556
5557         * gtk/gtktreeview.c (gtk_tree_view_key_press): Fix refcounting
5558         issues with new_event and its window.
5559
5560         * gtk/gtkmenu.c (gtk_menu_attach_to_widget): Accept NULL
5561         as a detach func.  (#323386, Jorn Baayen)
5562
5563         * gtk/gtkcalendar.c: Avoid conflict with win32 headers in
5564         the libdate routines.  (#323045, Kazuki Iwamoto)
5565
5566         * gdk/gdk.c (gdk_parse_args): 
5567         * gtk/gtkmain.c (gtk_parse_args): Don't ignore errors
5568         from g_option_context_parse(). 
5569
5570 Tue Dec  6 11:37:59 2005  Tim Janik  <timj@gtk.org>
5571
5572         * gdk/gdkevents.c (gdk_event_new): fix missing hash table 
5573         initialization.
5574
5575 Tue Dec  6 10:32:17 2005  Tim Janik  <timj@gtk.org>
5576
5577         * gtk/gtkstatusbar.c: ported memchunk uses to g_slice, so the code
5578         compiles again.
5579
5580 2005-12-05  Federico Mena Quintero  <federico@ximian.com>
5581
5582         * gtk/gtkfilechooserdefault.c (trap_activate_cb): "event->state &
5583         modifiers", not "event->state && modifiers".  Patch by Sadrul
5584         Habib Chowdhury <imadil@gmail.com>.  Fixes bug #323073.
5585
5586 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
5587
5588         * gtk/gtkwidget.c: 
5589         * gtk/gtkuimanager.c: 
5590         * gtk/gtktreedatalist.c: 
5591         * gtk/gtktext.c: 
5592         * gtk/gtkmain.c: 
5593         * gtk/gtkitemfactory.c: 
5594         * gtk/gtkseparator.[hc]:
5595         * gtk/gtkclist.[hc]: 
5596         * gtk/gtkctree.c:
5597         * gtk/gtkgc.c: Use g_slice instead of mem chunks.
5598
5599 2005-12-05  Michael Natterer  <mitch@imendio.com>
5600
5601         * gdk/x11/gdkevents-x11.c: map the new GtkSettings properties
5602         "timeout-initial", "timeout-repeat", "color-scheme" and
5603         "enable-animations" to X settings.
5604
5605 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
5606
5607         * gdk/gdkevents.c: 
5608         * gdk/gdkcolor.c: Use g_slice instead of mem chunks.
5609
5610         * gtk/gtktreeview.c (gtk_tree_view_key_press): Free new_event
5611         after sending it to the search entry.  (#323209, Crispin Flowerday)
5612
5613         * README.in: Add a note about GTK_FLOATING.
5614
5615         * gtk/gtkobject.h (GTK_OBJECT_FLOATING): Use g_object_is_floating.
5616
5617 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
5618
5619         * gtk/gtktoolbutton.c (clone_image_menu_size): Don't leak
5620         a pixbuf.  (#323024, Paolo Borelli)
5621
5622 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
5623
5624         * gtk/gtkfilesystemunix.c (get_icon_for_mime_type): Don't crash
5625         if mime_type is NULL.  (#322998, Sadrul Habib Chowdhury)
5626
5627 2005-12-02  Michael Natterer  <mitch@imendio.com>
5628
5629         * gtk/gtkmenu.c: applied modified patch from maemo-gtk which
5630         adds a "horizontal-padding" style property. Fixes bug #323036.
5631
5632 2005-12-01  Michael Natterer  <mitch@imendio.com>
5633
5634         Merged modified patch from maemo-gtk that allows to disable
5635         toolbar animations. Addresses bug #142582.
5636
5637         * gtk/gtksettings.c: added boolean property "gtk-enable-animations".
5638         (patch from Christian Neumair)
5639
5640         * gtk/gtktoolbar.c: don't animate toolbar changes if the settings
5641         property is FALSE. Replaced the individual "notify::foo"
5642         connections to GtkSettings by a single "notify" callback and
5643         dispatch internally.
5644
5645 2005-12-01  Michael Natterer  <mitch@imendio.com>
5646
5647         * gtk/gtkmenu.c (gtk_menu_class_init): removed redundant
5648         assignment of widget_class->motion_notify_event
5649
5650 2005-11-29  Matthias Clasen  <mclasen@redhat.com>
5651
5652         * gtk/gtktoggleaction.c (gtk_toggle_action_class_init): Add 
5653         an active property.  (#322673, Jorn Baayen)
5654
5655         Properly handle model changes in GtkTreeSelection: (#322569,
5656         Milosz Derezynski)
5657         
5658         * gtk/gtktreeselection.c (gtk_tree_selection_selected_foreach): 
5659         Get a reference to the model, and stop the iteration if the model
5660         of the treeview is changed on the way.
5661
5662         * gtk/gtktreeprivate.h: 
5663         * gtk/gtktreeselection.c (_gtk_tree_selection_emit_changed): New 
5664         private function to emit the GtkTreeSelection::changed signal.
5665
5666         * gtk/gtktreeview.c (gtk_tree_view_set_model): Call 
5667         _gtk_tree_selection_emit_changed() when the model changes.
5668
5669 2005-11-28  Federico Mena Quintero  <federico@ximian.com>
5670
5671         Fixes the critical warnings from bug #317999, thus fixing the bug
5672         completely:
5673
5674         * gtk/gtkfilechooserdefault.c
5675         (gtk_file_chooser_default_get_paths): In SELECT_FOLDER mode,
5676         use _gtk_file_chooser_get_current_folder_path() instead of fetching the
5677         impl->current_folder directly.  The latter may be null if we are
5678         in RELOAD_NONE state.
5679
5680 2005-11-28  Federico Mena Quintero  <federico@ximian.com>
5681
5682         Fix bug #321560, based on a patch by Bogdan Nicula (bogdanni@hotmail.com):
5683
5684         * gtk/gtkfilechooserdefault.c (up_folder_handler): Don't add the
5685         current_folder to the pending select paths here; the path bar will
5686         give it to us now.
5687         (path_bar_clicked): Add the child_path to the pending select paths
5688         here.
5689         (show_and_select_paths): Don't filter out folders.
5690         (show_and_select_paths): Don't take separate arguments for
5691         only_one_path and multiple paths.
5692
5693         * tests/autotestfilechooser.c (test_folder_switch_and_filters):
5694         New test about preserving the filters when we change folders.
5695
5696 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
5697
5698         * gtk/gtkscale.c (_gtk_scale_format_value): Insert an LRM, to prevent
5699         -20 to come out as 20- in RTL locales.  (#322571, Tze'ela Hebron)
5700
5701         * gtk/gtkaction.c (gtk_action_sync_button_stock_id) 
5702         (connect_proxy): Buttons use the label property for stock ids.  (#322565,
5703         Milosz Derezynski)
5704
5705         * gtk/gtkiconview.c (update_text_cell, update_pixbuf_cell): Correctly
5706         handle the cell list and indices into it.  (#321856)
5707
5708 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
5709
5710         * gtk/gtktooltips.c (gtk_tooltips_timeout): Set timer_tag to 0 when
5711         the timeout is done.  (#322291, Jean-Yves Lefort)
5712
5713 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
5714
5715         * gtk/gtkfilechooserdefault.c (shortcuts_key_press_event_cb): Make
5716         F2 work for renaming bookmarks.  (#320822, Jaap A. Haitsma, patch
5717         by Paolo Borelli)
5718
5719 2005-11-28  Tor Lillqvist  <tml@novell.com>
5720
5721         * gdk/win32/gdkwindow-win32.c (gdk_window_set_urgency_hint):
5722         Implement the conditional use of FlashWindowEx() properly for MSVC
5723         compilations. The code was confusingly assuming that if compiled
5724         with a "new" compiler, it will only be run on "new" Windows
5725         versions. We want it to run on "old" versions, too, even if
5726         compiled with a "new" compiler. There are two orthogonal issues:
5727         whether the compiler defines the necessary API in its headers, and
5728         whether it is present at run-time. (#318077)
5729
5730         * gtk/gtkcalendar.c (gtk_calendar_init): Use GetLocaleInfo() on
5731         Windows to get the localized weekday and month names. strftime()
5732         in the Microsoft C library returns strings in the default codepage
5733         for the locale of the process, not the system codepage. Thus
5734         g_locale_to_utf8() isn't useable on the return value from
5735         strftime(). (#322603)
5736
5737 2005-11-27  Matthias Clasen  <mclasen@redhat.com>
5738
5739         * gtk/gtkmessagedialog.c (gtk_message_dialog_new_with_markup): 
5740         Fix an example.  (#322493, Elie De Brauwer)
5741         
5742         Fix two memory handling problems in GtkTreeView: (#322350, 
5743         Søren Sandmann)
5744         
5745         * gtk/gtktreeview.c (gtk_tree_view_destroy) 
5746         (gtk_tree_view_set_model): Remove all references to nodes in
5747         the old model.
5748         (gtk_tree_view_real_collapse_row): Unmark expanded_collapsed_node
5749         before removing the children.
5750
5751         * gtk/gtkcolorbutton.c (gtk_color_button_init): Don't leak a 
5752         PangoLayout here.  (#322505, Paolo Borelli)
5753
5754 2005-11-27  Tor Lillqvist  <tml@novell.com>
5755
5756         Once again rework Win32 window decoration code. Doesn't break
5757         #104514. The dialogs in gtk-demo now have the same decorations and
5758         behaviour as on X11. Tried to fix #322516 but it seems very hard
5759         to make the trivial sample program there behave as expected. OTOH,
5760         simply moving the gtk_window_decorate() call in the #322516 sample
5761         program after the call to gtk_widget_show() helps...
5762             
5763         * gdk/win32/gdkwindow-win32.c (set_or_clear_style_bits): Revert to
5764         the correct semantics. Each call to gdk_window_set_decorations()
5765         which calls this function is supposed to affect all decorations.
5766
5767         (decorate_based_on_hints): New function, looks at both geometry
5768         hints and type hint and sets window decorations based on
5769         that. Consolidate code from gdk_window_set_geometry_hints() and
5770         gdk_window_set_type_hint() here.
5771
5772         (gdk_window_set_geometry_hints, gdk_window_set_type_hint): Call
5773         decorate_based_on_hints().
5774
5775 2005-11-25  Dom Lachowicz <cinamod@hotmail.com>
5776
5777         * modules/engines/ms-windows/*.[ch]: Merge with gtk-wimp's CVS.
5778         Includes improved menu icon spacing, [+]/[-] expander drawing,
5779         status-bar gippie drawing, and notebook tab drawing.
5780         
5781 2005-11-24  Michael Natterer  <mitch@imendio.com>
5782
5783         * gtk/gtktoolbar.h (struct _GtkToolbar): changed two private guint
5784         that used to hold signal handler IDs to two guint of padding.
5785
5786         * gtk/gtktoolbar.c (struct _GtkToolbarPrivate): added them as
5787         gulong here.
5788
5789         (gtk_toolbar_screen_changed): changed accordingly.
5790
5791 Wed Nov 23 18:55:47 2005  Tim Janik  <timj@imendio.com>
5792
5793         * gtk/gtkobject.[hc]: deprecated floating/sink API and implemented it
5794         in terms of the GObject floating/sink API.
5795
5796         * gtk/gtkaboutdialog.c:
5797         * gtk/gtkaction.c:
5798         * gtk/gtkcellview.c:
5799         * gtk/gtkclist.c:
5800         * gtk/gtkcolorsel.c:
5801         * gtk/gtkcombobox.c:
5802         * gtk/gtkfilechooserdefault.c:
5803         * gtk/gtkiconview.c:
5804         * gtk/gtkinvisible.c:
5805         * gtk/gtkitemfactory.c:
5806         * gtk/gtklayout.c:
5807         * gtk/gtkmenu.c:
5808         * gtk/gtkmenutoolbutton.c:
5809         * gtk/gtknotebook.c:
5810         * gtk/gtkprogress.c:
5811         * gtk/gtkrange.c:
5812         * gtk/gtkspinbutton.c:
5813         * gtk/gtkstatusicon.c:
5814         * gtk/gtktext.c:
5815         * gtk/gtktextview.c:
5816         * gtk/gtktoolbar.c:
5817         * gtk/gtktoolbutton.c:
5818         * gtk/gtktoolitem.c:
5819         * gtk/gtktreeitem.c:
5820         * gtk/gtktreeview.c:
5821         * gtk/gtktreeviewcolumn.c:
5822         * gtk/gtkuimanager.c:
5823         * gtk/gtkviewport.c:
5824         * gtk/gtkwidget.c:
5825         * gtk/gtkwindow.c:
5826         ported to use GObject's g_object_ref_sink().
5827
5828         * gtk/gtkcolorsel.c:
5829         * gtk/gtkfilechooserdefault.c:
5830         * gtk/gtkaboutdialog.c:
5831         fixed compiler warnings.
5832
5833 2005-11-23  Matthias Clasen  <mclasen@redhat.com>
5834
5835         * gtk/gtksettings.c (gtk_settings_class_init): Add some docs
5836         about gtk-color-scheme.
5837
5838 2005-11-23  Behdad Esfahbod  <behdad@gnome.org>
5839
5840         * configure.in (enable_explicit_deps): Fix typo when checking
5841         libtool config deplibs_check_method. Moreover, enable explicit
5842         deps if we get anything other than pass_all from libtool. (part of
5843         #318750)
5844
5845 2005-11-23  Matthias Clasen  <mclasen@redhat.com>
5846
5847         * gtk/updateiconcache.c (write_csource): Don't create a big
5848         string, since Visual C++ doesn't like strings longer than 64k. 
5849         (#322238, Kazuki IWAMOTO
5850
5851         * gtk/gtkentry.c: Include gtkimcontextsimple.h  (#322235,
5852         Kazuki IWAMOTO)
5853
5854 2005-11-23  Michael Natterer  <mitch@imendio.com>
5855
5856         * gtk/gtkrc.c (gtk_rc_reset_widgets): don't leak all toplevel
5857         windows on other screens (correctly remove all temporary
5858         references).
5859
5860 2005-11-23  Michael Natterer  <mitch@imendio.com>
5861
5862         Added symbolic themable colors. Patch is a merged version of
5863         proposals from Matthias and maemo-gtk. Fixes bug #114355.
5864
5865         * configure.in: require glib >= 2.9.1 for refcountable hashtables.
5866
5867         * gtk/gtksettings.c: added property "color-scheme" which is a
5868         string defining colors like "foreground:black\nbackground:grey".
5869         Automatically provide a name->GdkColor hash table mapping for the
5870         color scheme.
5871
5872         * gtk/gtkrc.[ch]: added list of color hashes that works like the
5873         list of icon factories. Append the color scheme hash from
5874         GtkSettings if it exists. Extended gtkrc syntax to allow defining
5875         and referencing of logical colors. Also allow to modulate colors
5876         in gtkrc by using arbitrary expressions of mix(), shade(),
5877         lighter() and darker(). Added internal function
5878         _gtk_rc_style_get_color_hashes().
5879
5880         * gtk/gtkstyle.[ch]: keep a private list of color hashes around.
5881         Get the list from _gtk_rc_style_get_color_hashes(). Export
5882         internal function _gtk_style_shade() (used by above color
5883         expressions). Added public API gtk_style_lookup_color() which
5884         looks up a logical color by name.
5885
5886         * gtk/gtk.symbols: add gtk_style_lookup_color
5887
5888         * tests/testgtkrc: use symbolic colors for making
5889         the scrollbars red.
5890
5891 2005-11-22  Michael Natterer  <mitch@imendio.com>
5892
5893         Made button-press timeouts which work like key repeat timeouts
5894         configurable. Addresses bug #142582:
5895
5896         * gtk/gtksettings.c: added properties "gtk-timeout-initial" and
5897         "gtk-timeout-repeat" which defalt to 200/20 (ms).
5898
5899         Use the values from GtkSettings instead of hardcoding them
5900         (the repeat value is either taken as-is for fast repeat or
5901         multiplied by 5 for slow repeat). Changed all places to use these
5902         two standard initial/repeat timings:
5903
5904         * gtk/gtkcalendar.c (unchanged 200/20)
5905         * gtk/gtknotebook.c (unchanged 200/100)
5906         * gtk/gtkpathbar.c (changed from 300/150 to 200/100)
5907         * gtk/gtkrange.c (changed from 250/100 to 200/100)
5908         * gtk/gtkspinbutton.c (unchanged 200/20)
5909
5910 2005-11-21  Anders Carlsson  <andersca@imendio.com>
5911
5912         * configure.in:
5913         * gtk/Makefile.am:
5914         * gdk/Makefile.am:
5915         * gdk/quartz/*:
5916         Add quartz backend.
5917         
5918         * docs/tools/Makefile.am:
5919         Only build docshooter when the X11 backend is used.
5920         
5921         * gtk/gtkplug-stub.c:
5922         Include gtkplug.h here.
5923         
5924         * gtk/gtksocket-stub.c:
5925         Include gtksocket.h here.
5926         
5927 2005-11-21  Matthias Clasen  <mclasen@redhat.com>
5928
5929         * gtk/gtkinputdialog.c: Convert GtkInputDialog to 
5930         g_type_class_add_private.
5931
5932         * gtk/gtksocket.c: Convert GtkSocket to g_type_class_add_private.
5933
5934         * gtk/gtkmenu.c: Convert GtkMenu to g_type_class_add_private.
5935
5936         * gtk/gtk.symbols:
5937         * gtk/gtkcombobox.[hc]: Add a tearoff-title property,
5938         with getter and setter.  (#316482, Olexiy Avramchenko)
5939
5940         * tests/testcombo.c (main): Test gtk_combo_box_set_title
5941
5942         * gtk/gtkpathbar.c: Merge remaining fixes from the 2.8 branch,
5943         pointed out by Michael Natterer.
5944
5945         Fix for bug #321542, Benedikt Meurer:
5946         
5947         * gtk/gtkcombobox.c (gtk_combo_box_set_active_internal):
5948         Emit notify::active.
5949         
5950         (gtk_combo_box_child_show, gtk_combo_box_child_hide): Use
5951         g_signal_emit, not g_signal_emit_by_name.
5952
5953 2005-11-18  Matthias Clasen  <mclasen@redhat.com>
5954
5955         Fix crashes in connection with pathbar scrolling (#321560,
5956         Bogdan Nicula)
5957         
5958         * gtk/gtkpathbar.c (gtk_path_bar_update_slider_buttons): 
5959         Stop scrolling when desensitising slider buttons.
5960         (gtk_path_bar_scroll_timeout, gtk_path_bar_slider_button_press): 
5961         And use it here.  
5962
5963         * gtk/gtkpathbar.h (struct _GtkPathBar): Add a separate
5964         scrolling_down flag.
5965
5966 2005-11-18  Matthias Clasen  <mclasen@redhat.com>
5967
5968         * gtk/gtkpathbar.c (button_clicked_cb): Fix a C99ism.
5969         (#321777, Jens Granseuer)
5970
5971         * gtk/gtkaction.c (disconnect_proxy): Disconnect the
5972         sync callback for the visibility property.  (#321761,
5973         Philip Langdale)
5974
5975         Turn off input methods in invisible entries, since
5976         they are confusing.  (#317002, James Su)
5977         
5978         * gtk/gtkentry.c (gtk_entry_set_visibility): Toggle input
5979         methods if visibility changes.
5980         (popup_targets_received): Don't show the input method
5981         menu if the entry is invisible.  
5982
5983 2005-11-17  Matthias Clasen  <mclasen@redhat.com>
5984
5985         * README.in: Add a note about range arrow sensitivity.
5986
5987         * perf/treeview.c: const correctness fixes
5988         found by Arjan van de Ven and gcc.
5989
5990 2005-11-16  Michael Natterer  <mitch@imendio.com>
5991
5992         * gtk/gtkimage.c (animation_timeout): call
5993         gtk_window_process_updates() so the animation keeps running even
5994         if the main loop is busy with sources that eat a lot of cpu with
5995         high priority. Fixes bug #321444.
5996
5997         (gtk_image_new_from_animation): document the fact that the
5998         animation will stop running if the main loop is busy with sources
5999         that have priorities higher than G_PRIORITY_DEFAULT.
6000
6001         * tests/testimage.c: added test case that shows an animation even
6002         though a cpu-eating idle function is running.
6003
6004 2005-11-16  Michael Natterer  <mitch@imendio.com>
6005
6006         * gdk/x11/gdkevents-x11.c (_gdk_events_uninit): new internal
6007         function which destroys the display's event source. Also removes
6008         the source from the global display_sources list and unrefs it.
6009
6010         * gdk/x11/gdkprivate-x11.h: declare the function.
6011
6012         * gdk/x11/gdkdisplay-x11.c (gdk_display_x11_dispose): call it
6013         instead of half-destroying the source here.
6014
6015 2005-11-15  Matthias Clasen  <mclasen@redhat.com>
6016
6017         * gtk/gtktreestore.c (gtk_tree_store_move): Fix a memory
6018         leak.  (#321032, Peter Zelezny)
6019
6020 2005-11-15  Michael Natterer  <mitch@imendio.com>
6021
6022         * gdk/x11/gdkdisplay-x11.c (gdk_display_x11_finalize): destroy
6023         display->xid_ht as late as possible (right before XCloseDisplay)
6024         because it still needs to be around when the display's screens are
6025         finalized. (#85715)
6026
6027 2005-11-14  Matthias Clasen  <mclasen@redhat.com>
6028
6029         * gtk/gtkselection.c (gtk_selection_data_set_uris): Don't
6030         leak result.  (#321441, Tommi Komulainen)
6031
6032 2005-11-14  Matthias Clasen  <mclasen@redhat.com>
6033
6034         * gtk/gtkicontheme.c (gtk_icon_theme_get_icon_sizes):
6035         Don't crash if there is no builtin icon.
6036
6037 2005-11-14  Michael Natterer  <mitch@imendio.com>
6038
6039         * gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_set_property):
6040         removed redundant calls to g_object_notify().
6041
6042 2005-11-13  Matthias Clasen  <mclasen@redhat.com>
6043
6044         * gdk/gdkcolor.c (gdk_color_parse): Documentation 
6045         improvements.  (#321338)
6046
6047         * gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
6048         limit an inclusive boundary.  (#321299)
6049
6050 2005-11-12  Michael Natterer  <mitch@imendio.com>
6051
6052         * gtk/Makefile.am: fixed icon rules so gtkbuiltincache.h is only
6053         rebuilt if needed.
6054
6055 2005-11-12  Dom Lachowicz <cinamod@hotmail.com>
6056
6057         * modules/engines/ms-windows/msw_style.c: Bug #313627. Make win32 
6058         theme's handling of toolbars, handleboxes, and menubars more in-line
6059         with Microsoft's IE style.
6060         * modules/engines/ms-windows/*.c: Indentation cleanups
6061         
6062 2005-11-12  Matthias Clasen  <mclasen@redhat.com>
6063
6064         Make builtin icons work in gtk_window_set_icon_name() 
6065         (#321046, Maxim Udushlivy)
6066
6067         * gtk/gtkicontheme.c (insert_theme): Always insert the default
6068         theme.
6069         (ensure_valid_themes): Call _gtk_icon_theme_ensure_builtin_cache()
6070         from here.
6071         (theme_lookup_icon, find_builtin_icon): ...and not from here.
6072         (gtk_icon_theme_lookup_icon): Remove an unncessary assert.
6073         (gtk_icon_theme_get_icon_sizes): Also check builtin icons.
6074
6075 2005-11-12  Tor Lillqvist  <tml@novell.com>
6076
6077         * gtk/gtkfilesystemwin32.c (filename_get_info): Don't hide
6078         dotfiles, no such convention on Win32. Just hide files with the
6079         hidden attribute. (#314627)
6080
6081 2005-11-11  Federico Mena Quintero  <federico@ximian.com>
6082
6083         * gtk/gtkfilechooserdefault.c (shortcuts_insert_path): Do not
6084         check whether the path is a folder.  It is useful to bookmark
6085         files as well (e.g. todo.txt), and this will also help
6086         performance.
6087         (shortcuts_add_bookmark_from_path): Likewise.
6088         (shortcuts_activate_iter): Change folders or select files, as
6089         appropriate.
6090
6091 2005-11-11  Federico Mena Quintero  <federico@ximian.com>
6092
6093         * tests/autotestfilechooser.c (main): Use
6094         g_log_set_default_handler() instead of explicitly setting a
6095         handler for each domain.
6096
6097         * gtk/gtkfilechooserdefault.c (shortcuts_add_volumes): Only get
6098         the base path of the volume if it is mounted.
6099
6100 2005-11-11  Michael Natterer  <mitch@imendio.com>
6101
6102         Added per-stepper API for GtkRange's stepper sensitivity as
6103         discussed in bug #321056:
6104
6105         * gtk/gtkenums.h: added GtkSensitivityType which can be
6106         { AUTO, ON, OFF }.
6107
6108         * gtk/gtkrange.[ch]: added properties "lower-stepper-sensitivity"
6109         and "upper-stepper-sensitivity" and public getters/setters for
6110         them. Changed stepper drawing to honor the new properties.
6111
6112         * gtk/gtk.symbols: added the new symbols.
6113
6114 2005-11-10  Matthias Clasen  <mclasen@redhat.com>
6115
6116         * gtk/gtkcombobox.c: Add show-popup and hide-popup signals and
6117         emit them when the popup is shown or hidden.  (#162531, Tommi
6118         Komulainen)
6119
6120         * tests/testcombo.c: Add an example of popuplating a combobox
6121         on click.
6122
6123         * gtk/gtktreeview.c (gtk_tree_view_motion_resize_column): Another
6124         erroneous semicolon.
6125
6126         * gdk/x11/gdkcolor-x11.c (gdkx_colormap_get): Remove an erroneous
6127         semicolon. 
6128
6129         Don't corrupt odd keymaps (#316638, Kean Johnston)
6130         
6131         * gdk/x11/gdkkeys-x11.c (set_symbol): Auxiliary function to
6132         handle frobbing keymaps with odd numbers of syms/code.
6133         
6134         * gdk/x11/gdkkeys-x11.c (update_keymaps): Use set_symbol() to 
6135         frob the keymap.
6136
6137         Improve navigation to parent folders.  (#318444, Andrei Yurkevich)
6138         
6139         * gtk/gtkpathbar.[hc]: Add a child_path argument to
6140         the path_clicked signal.
6141         * gtk/gtkfilechooserdefault.c (path_bar_clicked): Select the
6142         child_path, if it is provided.
6143         * gtk/marshalers.list (path_bar_clicked): Add the necessary
6144         glue.
6145
6146         * gtk/gtkmenu.c: Fix some compiler warnings. (#321141,
6147         Kjartan Maraas)
6148         
6149         * gtk/gtk.symbols: 
6150         * gtk/gtktreeview.h: 
6151         * gtk/gtktreeview.c: Implement a getter for headers-clickable.
6152         (#163851, Richard Hult)
6153
6154 2005-11-10  Michael Natterer  <mitch@imendio.com>
6155
6156         Applied patch from maemo-gtk that addresses many issues wrt
6157         display migration and display closing (bug #85715).
6158
6159         * gdk/gdkdisplay.c (gdk_display_dispose): don't just set the
6160         default display to NULL when it's closed. Instead set the most
6161         recently opened display as new default (if one exists).
6162
6163         * gdk/gdkpango.c (on_renderer_display_closed): fixed signature
6164         of this callback.
6165
6166         * gdk/gdkscreen.c (gdk_screen_dispose): check if the GCs still
6167         exist before unrefing them.
6168
6169         * gdk/gdkwindow.c (_gdk_window_destroy_hierarchy): if the screen
6170         is closed, allow destruction of the root window.
6171
6172         * gdk/x11/gdkdisplay-x11.c: moved some stuff from finalize() to
6173         dispose(), free stuff that was leaked before.
6174
6175         * gdk/x11/gdkevents-x11.c (_gdk_x11_events_uninit_screen): check if
6176         the xsettings_client still exists before destroying it.
6177
6178         * gdk/x11/gdkkeys-x11.c: added finalization and free the allocated
6179         X resources.
6180
6181         * gdk/x11/gdkpixmap-x11.c: moved stuff from finalize() to new
6182         dispose() implementation.
6183
6184         * gdk/x11/gdkscreen-x11.c: moved stuff from finalize() to
6185         dispose() and check if it still exists before unrefing it. Set
6186         their pointers to NULL/None *after* upchaining in dispose(),
6187         because X11 implementations of members of the parent class still
6188         need them for their own destruction.
6189
6190         * gdk/x11/gdkvisual-x11.c: removed finalize() implementation which
6191         was g_error()ing when finalizing a visual.
6192
6193         * gtk/gtkclipboard.c (gtk_clipboard_finalize): don't use
6194         get_clipboard_widget() because it would create the widget if it
6195         doesn't exist. Use g_object_get_data() directly instead.
6196
6197         * gtk/gtktextdisplay.c (on_renderer_display_closed): fixed signature
6198         of this callback.
6199
6200 2005-11-10  Simos Xenitellis  <simos@gnome.org>
6201
6202         * configure.in: Added Tatar (tt) to ALL_LINGUAS.
6203
6204 Wed Nov  9 16:29:42 2005  Tim Janik  <timj@imendio.com>
6205
6206         * gtk/gtkrange.c: patch from maemo-gtk that changes GtkRange
6207         to render its arrows insensitive when the adjustment is in
6208         its min or max position. this makes range arrow behaviour 
6209         consistent with spin button behaviour. (#321056)
6210
6211 2005-11-09  Tor Lillqvist  <tml@novell.com>
6212
6213         * gdk/gdkinternals.h
6214         * gdk/gdk.c (gdk_debug_keys[]): Add new GDK_DEBUG_DRAW flag to
6215         the GdkDebugFlag enum.
6216
6217         * gdk/win32/gdkdrawable-win32.c: Use DRAW to trigger GDK_NOTEs in
6218         this file instead of MISC. Now asking for MISC will give mainly
6219         window manipulation debugging output with the Win32 backend.
6220
6221 2005-11-09  Tor Lillqvist  <tml@novell.com>
6222
6223         * gdk/win32/gdkwindow-win32.c: Remove unnecessary includes.
6224
6225         (_gdk_win32_get_adjusted_client_rect): Remove this two-line
6226         function which was used only in one place.
6227
6228         (get_outer_rect): Use _gdk_win32_adjust_client_rect().
6229
6230         (gdk_window_set_geometry_hints): If we have identical minimum and
6231         maximum size hints, remove the resize and maximize
6232         decorations/functions. (#104514)
6233
6234         If we have a maximum size hint, remove the maximize
6235         decoration/function but ensure the resize decoration/function is
6236         available. Otherwise ensure both resize and maximize
6237         decorations/functions are there.
6238
6239         (set_or_clear_style_bits): Factored out common code from
6240         gdk_window_set_decorations() and gdk_window_set_functions(). 
6241
6242         Hack the window style setting once more: Only touch the window
6243         style bits corresponding to the GdkWMDecoration or GdkWMFunction
6244         parameter bitmasks. Hopefully this finally is the correct thing to
6245         do. We used to clear all other bits than those that were being
6246         set, or set all other bits than those that were being cleared.
6247
6248         Take into account that adding or removing decorations leaves the
6249         window's outer size unchanged, i.e., the client area's size and
6250         position change. This is apparently not what we want, so change
6251         also the window's (outer) position and size appropriately so that
6252         the client area's position and size stay constant.
6253
6254         gtk-demo's color selector dialog is now non-resizable like on X11
6255         (I tested with metacity in GNOME). Torn off menus are shrinkable
6256         vertically but have a maximum size, and are not maximizable or
6257         minimizable, like on X11.
6258
6259         (gdk_window_set_decorations, gdk_window_set_functions): Let
6260         set_or_clear_decorations() do most of the job.
6261
6262         * gdk/win32/gdkprivate-win32.h: Remove declaration of
6263         _gdk_win32_get_adjusted_client_rect().
6264
6265 2005-11-09  Tor Lillqvist  <tml@novell.com>
6266
6267         * gdk/win32/gdkwindow-win32.h (struct _GdkWindowImplWin32)
6268         * gdk/win32/gdkwindow-win32.c (gdk_window_impl_win32_init,
6269         gdk_window_get_type_hint, gdk_window_get_type_hint): Store the
6270         type hint. Implement gdk_window_get_type_hint() by just returning
6271         the hint stored.
6272
6273 2005-11-09  Tor Lillqvist  <tml@novell.com>
6274
6275         * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints):
6276         Remove code that has been permanently ifdeffed out for two years.
6277
6278 2005-11-08  Matthias Clasen  <mclasen@redhat.com>
6279
6280         * gdk/gdkgc.c (gdk_gc_finalize): Unref tile and stipple when
6281         finalizing a gc.  (#320789, Nickolay V. Shmyrev)
6282
6283         * gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Ignore
6284         icons if they would make the request large enough to cause
6285         Xlib to loose the connection.  (#320909, Claudio Saavedra)
6286
6287 2005-11-08  Michael Natterer  <mitch@imendio.com>
6288
6289         * gdk/gdk.symbols
6290         * gdk/gdkwindow.h
6291         * gdk/x11/gdkwindow-x11.c: added gdk_window_get_type_hint() (patch
6292         extracted from maemo-gtk). Fixes bug #320872.
6293
6294 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
6295
6296         * gtk/gtkfilechooserdefault.c (shortcuts_reorder): Don't
6297         looks the bookmark label when reordering.  (#320720, Jeremy Cook)
6298
6299         * gtk/gtkpathbar.[hc]: Set focus-on-click to FALSE for all buttons.
6300         Don't grab focus when a slider button is pressed, instead, use
6301         a bit in the pathbar struct to determine whether to scroll up
6302         or down.  (#314486, Carlos Garnacho)
6303
6304         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): 
6305         Don't popup the completions if the focus has already been
6306         moved somewhere else.  (#319914, Christian Persch)
6307
6308         * gtk/gtktoolitem.c (_gtk_tool_item_toolbar_reconfigured): 
6309         Raise the drag_window after reconfiguring the 
6310         toolbar.  (#320803, Christian Persch)
6311
6312         * gtk/gtk.symbols: 
6313         * gtk/gtkfilechooserbutton.h: 
6314         * gtk/gtkfilechooserbutton.c: Add a focus-on-click property
6315         with setter and getter.  (#318945, Christian Persch)
6316         
6317 Mon Nov  7 16:15:16 2005  Tim Janik  <timj@imendio.com>
6318
6319         * configure.in: fixed missing $X_CFLAGS setup in case x11.pc is present.
6320
6321 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
6322
6323         * configure.in: Adjust to the stock icon changes.
6324         
6325 2005-11-07  Tor Lillqvist  <tml@novell.com>
6326
6327         * gdk/win32/gdkcursor-win32.c (pixbuf_to_hbitmaps_normal):
6328         Correct the calculation of maskstride. (#320152, Peter Zelezny)
6329         
6330 2005-11-06  Michael Natterer  <mitch@imendio.com>
6331
6332         * gtk/Makefile.am (icons): fixed rule to actually create the
6333         symlinks, erroring out if anything goes wrong.
6334
6335 2005-11-06  Tor Lillqvist  <tml@novell.com>
6336
6337         * gtk/updateiconcache.c (build_cache): Can't rename a file if the
6338         target exists on Win32. First rename the target temporarily, then
6339         if the renaming of the source to target fails, restore the
6340         original name for the target.
6341
6342         * gtk/Makefile.am: Use EXEEXT in the dependency on gtk-update-icon-cache.
6343
6344 2005-11-06  Tor Lillqvist  <tml@novell.com>
6345
6346         (pixbuf_to_hbitmaps_alpha_winxp): Use an 1-bit mask bitmap,
6347         like pixbuf_to_hbitmaps_normal().
6348         (_gdk_win32_pixbuf_to_hicon_supports_alpha): Check
6349         G_WIN32_IS_NT_BASED() first, so we can pretend being on Win9x by
6350         setting the G_WIN32_PRETEND_WIN9X environment variable.
6351         
6352 2005-11-06  Tor Lillqvist  <tml@novell.com>
6353
6354         Make icon masks work on Win98 (#320152, Peter Zelezny)
6355
6356         * gdk/win32/gdkcursor-win32.c (create_color_bitmap): Take also a
6357         parameter for the depth of the bitmap, so that this function can
6358         be used to create 1-bit bitmaps, too.
6359         (pixbuf_to_hbitmaps_normal): Create an 1-bit bitmap for the mask,
6360         and initialize it properly.
6361
6362 2005-11-04  Matthias Clasen  <mclasen@redhat.com>
6363
6364         Store builtin stock icons in an icon cache, instead of
6365         populating a hash table with pixbufs at startup, to save both
6366         memory and startup time.
6367
6368         * gtk/stock-icons/*: Reorganize the icons in a directory structure
6369         suitable for gtk-update-icon-cache, and rename them to match the
6370         stock ids.
6371
6372         * gtk/gtkiconcache.[hc]: Support non-mmapped icon caches, and
6373         add _gtk_icon_cache_has_icon_in_directory().
6374
6375         * gtk/updateiconcache.c: Support a --source <VARIABLE> argument
6376         to store the contents of the icon cache in a C header.
6377
6378         * gtk/gtkbuiltincache.h: Generated private header which contains 
6379         the icon cache for the builtin icons.
6380
6381         * gtk/gtkicontheme.c: Create a GtkIconCache for the builtin
6382         icons, and use that in addition to the hash table whenever
6383         builtin icons are searched.
6384
6385         * gtk/gtkiconfactory.c: Add GTK_ICON_SOURCE_STATIC_ICON_NAME and
6386         use it for static stock ids. 
6387         (get_default_icons): Don't add the builtin
6388         icons to the icon theme, just register the stock ids.
6389         (render_fallback_image): Take the fallback image out of the
6390         builtin icon cache.
6391         
6392         * gtk/Makefile.am: Remove stock-icons from SUBDIRS and add 
6393         the necessary machinery to rebuild gtkbuiltincache.h.
6394
6395 2005-11-04  Michael Natterer  <mitch@imendio.com>
6396
6397         * gtk/gtkrc.c (gtk_rc_reparse_all_for_settings): applied patch
6398         from maemo-gtk that changes the mtime check for rc files from
6399         '>' to '!=', otherwise theme changes go unnoticed when turning
6400         back the clock (Tommi Komulainen).
6401
6402 2005-11-04  Tor Lillqvist  <tml@novell.com>
6403
6404         * gtk/gtkstatusicon.c (gtk_status_icon_set_tooltip): Plug memory
6405         leak on Win32.
6406
6407 2005-11-03  Tor Lillqvist  <tml@novell.com>
6408
6409         * gdk/win32/gdkcursor-win32.c: As there is only one GdkDisplay in
6410         the Win32 backend, check that GdkDisplay* parameters are equal to
6411         _gdk_display instead of using the unnecessarily general
6412         GDK_IS_DISPLAY().
6413
6414         (pixbuf_to_hbitmaps_alpha_winxp): Rename the variables for the
6415         color bitmap to have "color" in their name, for similarity with
6416         pixbuf_to_hbitmaps_normal(). Create a color bitmap for the mask,
6417         too, instead of creating a b&w bitmap with CreateBitmap(). Set up
6418         the mask bitmap's contents, ones for those pixels in the color
6419         bitmap where the alpha is zero, zero for other pixels. We used to
6420         use an uninitialized mask bitmap! This meant that icons and
6421         cursors created presumably worked more or less by accident.
6422         Totally blank icons with zero alpha everywhere (as used by
6423         gtktrayicon.c) definitely did not work as expected.
6424
6425         * gtk/Makefile.am: Include gtkstatusicon.c on all platforms.
6426
6427         * gtk/gtkstatusicon.c: Implement for Win32. Use code from
6428         gtktrayicon-win32.c as applicable. (gtktrayicon-win32.c is not
6429         necessary and can be removed from CVS. It has never been mentioned
6430         in gtk/Makefile.am.) No tray icon widget, GtkImage or GtkTooltips
6431         are used on Win32. One label widget is used (but never shown) as
6432         gtk_widget_render_icon() needs a widget.
6433
6434         Ifdefs used as necessary in several places. It might be cleaner to
6435         split out the backend-specific parts to separate files, or at
6436         least collect them into separate blocks in the file.
6437
6438         (wndproc): New function. Window procedure to monitor mouse events
6439         in the system tray icon. Call gtk_status_icon_button_press() as
6440         needed.
6441         (create_tray_observer): New function. Creates a hidden window that
6442         only serves as a tray icon message observer.
6443
6444         * tests/teststatusicon.c (icon_activated): Position the dialog
6445         with GTK_WIN_POS_CENTER.
6446         (do_quit): New function, hide and unref the GtkStatusIcon, and
6447         call gtk_main_quit().
6448         (popup_menu): Add a Quit menu item that calls do_quit().
6449         
6450 2005-11-02  Tor Lillqvist  <tml@novell.com>
6451
6452         * gdk/win32/gdkcolor-win32.c
6453         * gdk/win32/gdkscreen-win32.c
6454         * gdk/win32/gdkwindow-win32.c: Whitespace consistency
6455         fixes. Remove superfluous test for GdkWindow* parameters being
6456         non-NULL. Testing GDK_IS_WINDOW() is enough. As there is only one
6457         GdkScreen and one GdkDisplay in the Win32 backend, use those
6458         variables instead of the getter functions. For GdkDisplay* and
6459         GdkScreen* parameters, check that they are equal to the
6460         corresponding singleton variables instead of the more general
6461         GDK_IS_DISPLAY() or GDK_IS_SCREEN().
6462
6463 2005-11-02  Matthias Clasen  <mclasen@redhat.com>
6464
6465         * gtk/gtktextview.c: Remove some g_return_if_fail() from
6466         static functions, replace some others by g_assert().
6467         
6468         * gtk/gtktextview.c (selection_motion_event_handler) 
6469         (gtk_text_view_start_selection_drag): Keep track of the original
6470         selection boundaries during a drag selection, in order to correctly
6471         decide when to extend or shrink the selection.  (#320167,
6472         reported by Arvind S N, patch by Paolo Borelli)
6473
6474         * gtk/gtktextbtree.c (_gtk_text_line_char_to_byte_offsets): 
6475         * gtk/gtktextiter.c (gtk_text_iter_backward_chars): Replace
6476         manual offset calculations by g_utf8_offset_to_pointer().
6477         (#320360, Paolo Borelli)
6478
6479 Tue Nov  1 16:18:24 2005  Tim Janik  <timj@imendio.com>
6480
6481         * gtk/gtkrbtree.[hc]: get rid of GAllocator usage, allocate and free 
6482         nodes via the g_slice_*() API.
6483         _gtk_rbtree_new(): fixed wrong node allocation via g_new().
6484
6485 2005-11-01  Tor Lillqvist  <tml@novell.com>
6486
6487         * gdk/win32/gdkprivate-win32.h
6488         * gdk/win32/gdkglobals-win32.c
6489         * gdk/win32/gdkmain-win32.c (_gdk_windowing_init): Add more
6490         pre-interned GdkAtoms and pre-registered clipboard formats. Sort
6491         their declarations, definitions and assignments into a more
6492         logical and consistent order.
6493
6494         * gdk/win32/gdkmain-win32.c (_gdk_win32_cf_to_string): Include the
6495         CF_ prefix for the predefined clipboard format names. Put quotes
6496         around registered format names to distinguish them.
6497         
6498         * gdk/win32/gdkproperty-win32.c (gdk_property_change): Return
6499         immediately with a warning if the property type is STRING, TEXT,
6500         COMPOUND_TEXT or SAVE_TARGETS, as these are X11-specific that we
6501         should never pretend to handle on Win32. Handle only UTF8_STRING
6502         here, other formats with delayed rendering. Use \uc1 instead of
6503         \uc0 when generating Rich Text Format for easier testability on
6504         XP, where WordPad misinterprets \uc0 encoded characters. Add more
6505         GDK_NOTE debugging output for Clipboard operations.
6506
6507         * gdk/win32/gdkselection-win32.c: Debugging printout improvements.
6508         (gdk_selection_convert): Don't pretent to handle STRING, just
6509         UTF8_STRING. Streamline error handling, don't unnecessarily have a
6510         GError which then isn't used for anything anyway if it gets set.
6511         (gdk_win32_selection_add_targets): Skip also STRING, TEXT,
6512         COMPOUND_TEXT and SAVE_TARGETS in addition to UTF8_STRING.
6513
6514         * config.h.win32.in: Sync with what configure produces.
6515
6516         * configure.in: Don't look for X_PACKAGES unless building for
6517         x11. (#313986, John Ehresman)
6518
6519 2005-10-28  Erdal Ronahi  <erdal.ronahi@gmail.com>
6520
6521         * configure.in: Added ku (Kurdish) to ALL_LINGUAS
6522                         Wondered why there was no ku there before??
6523
6524 2005-10-28  Matthias Clasen  <mclasen@redhat.com>
6525
6526         * gtk/gtkentrycompletion.c (_gtk_entry_completion_popup): Add the popup
6527         window to the toplevels window group.  (#319912, Christian Persch)
6528
6529 2005-10-28  Kristian Rietveld  <kris@gtk.org>
6530
6531         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_row_deleted): fix
6532         stupid thinko.
6533
6534 2005-10-28  Matthias Clasen  <mclasen@redhat.com>
6535
6536         * gtk/gtkdnd.c (gtk_drag_get_cursor): Fix the anchor of the default
6537         drag cursors.  (#319200, Federico Mena Quintero)
6538
6539         * gtk/gtktreeview.c (gtk_tree_view_search_key_press_event): Handle
6540         Shift-G to go to the previous match, like firefox.  (#320061, Christian 
6541         Neumair)
6542
6543         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_build_level): Fix a
6544         C99ism.  (#320000, Kazuki Iwamoto)
6545
6546         * gtk/gtkaboutdialog.c (gtk_about_dialog_init): Add the little 
6547         stars.  (#319985, Bastien Nocera)
6548
6549         * gtk/gtktreeview.c (gtk_tree_view_search_entry_flush_timeout): Return
6550         FALSE, so we don't flush repeatedly.  (#319151, Alexander Larsson)
6551
6552 2005-10-26  Michael Natterer  <mitch@imendio.com>
6553
6554         Fix bug #319974:
6555
6556         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_set_property):
6557         make sure that setting any of pixbuf/stock-id/icon-name resets the
6558         others because they are mutually exclusive, and that unsetting any
6559         of them only resets the pixbuf and nothing else. Also added
6560         some missing g_object_notify().
6561
6562         (gtk_cell_renderer_pixbuf_get_property): simplified calls to
6563         g_value_set_object().
6564
6565         (gtk_cell_renderer_pixbuf_create_stock_pixbuf)
6566         (gtk_cell_renderer_pixbuf_create_named_icon_pixbuf): added
6567         g_object_notify ("pixbuf").
6568
6569 2005-10-27  Matthias Clasen  <mclasen@redhat.com>
6570
6571         * gtk/gtktreeview.c (gtk_tree_view_button_press): Be more 
6572         careful about initializing cell_area.  (#319382, Tommi
6573         Komulainen)
6574
6575         * gtk/gtkcombobox.c (gtk_combo_box_key_press): Don't eat
6576         Ctrl-PageUp/PageDown.  (#318670, Christian Neumair)
6577
6578         * demos/gtk-demo/clipboard.c (paste_received): Only set the
6579         text if it is not NULL.  (#319930, Thomas Klausner)
6580
6581         * gtk/gtkselection.c (gtk_selection_data_get_pixbuf): Close the
6582         loader before trying to get the pixbuf.  (#319930, Thomas Klausner)
6583
6584 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
6585
6586         * gtk/gtkfilesystem.c (gtk_file_system_module_load): 
6587         * gtk/gtkthemes.c (gtk_theme_engine_load): 
6588         * gtk/gtkimmodule.c (gtk_im_module_load): Use G_MODULE_BIND_LAZY
6589         when dlopening modules.  (#319557, Laszlo Peter)
6590
6591 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
6592
6593         * gtk/gtktextbtree.c (gtk_text_btree_resolve_bidi): Only use text
6594         segments when determining text direction.  (#319065, Tommi Komulainen)
6595
6596         * gtk/gtktreeview.c (gtk_tree_view_destroy): Don't crash
6597         on duplicate destroy.  (#318953, Gustavo Carneiro)
6598
6599         * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_new_with_dialog): 
6600         Point out that destroy-with-parent is a bad idea for the dialog
6601         passed to this function.  (#318943, Christian Persch)
6602
6603         * */Makefile.am: use $(GLIB_MKENUMS) instead of 
6604         glib-mkenums.  (#318582, Damien Carbery)
6605
6606         * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Clarify
6607         docs.  (#317682, Christian Neumair)
6608
6609         * gdk/x11/gdkdnd-x11.c: Remove an extra const which doesn't
6610         seem to affect the placement of the data in the readonly 
6611         section, and causes problems with some compilers.  (#317844)
6612
6613 2005-10-25  Matthias Clasen  <mclasen@redhat.com>
6614
6615         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
6616         Fix some issues with background drawing in RTL.  (#318781,
6617         Eric Cazeaux)
6618
6619         * tests/Makefile.am:
6620         * tests/testentrycompletion.c: Apply a patch by Christian
6621         Persch to add property editors.
6622
6623         * gtk/gtkstatusicon.c: Emit activate on single-click,
6624         not on double-click, change proposed by Milosz Derezynski.
6625
6626 2005-10-25  Kristian Rietveld  <kris@gtk.org>
6627
6628         Fixes #311955, reported by Markku Vire; and a lot more.
6629
6630         * gtk/gtktreemodelfilter.c: Made this thing work correctly.
6631         Levels can now have invisible nodes cached, functions have been
6632         rewritten/refactored to take this into account; also the logic in
6633         some functions has been corrected.
6634         
6635         Each referenced node now references all visible children or a single
6636         invisible child, in order to be able to monitor all changes in the
6637         child model required for correct operation.
6638
6639         When a virtual root is set, all nodes on the virtual root level are
6640         referenced.
6641
6642         At last, a bunch of random bug fixes and comment updates.
6643
6644 2005-10-25  Matthias Clasen  <mclasen@redhat.com>
6645
6646         * gtk/gtktexttagtable.c (gtk_text_tag_table_foreach): Add some
6647         more docs.  (#319722, Paolo Borelli)
6648
6649         * gdk/x11/gdkxftdefaults.c (init_xft_settings): Make the 
6650         initialization of screen_x11->xft_rgba more explicit.  (#319627,
6651         Bogdan Nicula)
6652
6653         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Fix whitespace
6654         in a blurb.  (#319499, Francisco Javier F. Serrador)
6655
6656 2005-10-24  Matthias Clasen  <mclasen@redhat.com>
6657
6658         Add settings to hide the input method and Unicode control character
6659         submenus in the context menus of GtkEntry and GtkTextView.  
6660         
6661         * gdk/x11/gdkevents-x11.c: Map GTK+ settings to X settings.
6662         
6663         * gtk/gtksettings.c (gtk_settings_class_init): Declare GTK+ settings here.
6664
6665         * gtk/gtktextview.c (popup_targets_received): 
6666         * gtk/gtkentry.c (popup_targets_received): Use the settings here.
6667
6668 2005-10-24  Kristian Rietveld  <kris@gtk.org>
6669
6670         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): emitting
6671         row-has-child-toggled when the level is not in the cache does not
6672         make sense.  (This bug probably crept in during the early stages
6673         of GtkTreeModelSort when there wasn't a correct row-has-child-toggled
6674         implementation yet),
6675         (gtk_tree_model_sort_real_unref_node): only get the child iter
6676         when we will actually also use it.
6677
6678 2005-10-22  Michael Natterer  <mitch@imendio.com>
6679
6680         * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): check for the
6681         widget being realized, in addition to being visible, to avoid
6682         running into precondition check in gtk_tree_view_get_cell_area().
6683         (approved by Kris).
6684
6685 2005-10-22  Dom Lachowicz <cinamod@hotmail.com>
6686
6687         * modules/engines/ms-windows/msw_style.c (setup_msw_rc_style): 
6688         Experimentally, scrollbar steppers can shrink to 8 pixels on 
6689         Win32. Reflect that in the theme.
6690         * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: Experimentally,
6691         there is a 1-pixel border between a scrollbar and its child
6692         in ScrolledWindows on Win32. Reflect that in the theme.
6693         
6694 2005-10-20  Matthias Clasen  <mclasen@redhat.com>
6695
6696         * gtk/gtklabel.c (gtk_label_create_window): Use GDK_WINDOW_CHILD
6697         for the selection window.  (#318806, Alex Larsson)
6698
6699 2005-10-18  Federico Mena Quintero  <federico@ximian.com>
6700
6701         Fixes bug #317999:
6702
6703         * tests/autotestfilechooser.c
6704         (test_button_folder_states_for_action): Test that we have either
6705         $cwd or the explicitly-set folder.
6706         (test_reload_sequence): Likewise.
6707
6708         * gtk/gtkfilechooserdefault.c
6709         (gtk_file_chooser_default_get_current_folder): If our reload_state
6710         is RELOAD_EMPTY, return a GtkFilePath corresponding to $cwd.
6711
6712 2005-10-14  Tor Lillqvist  <tml@novell.com>
6713
6714         * gdk/win32/gdkdisplay-win32.c: Remove the clipboard viewer code.
6715         It didn't really do anything useful, and was just confusing and
6716         incomplete. Comments claimed we don't do delayed rendering, but in
6717         fact we do, for images. (The delayed rendering code has other
6718         problems, though, see #168173.) The clipboard viewer code was
6719         probably even buggy (the WM_CHANGECBCHAIN handled didn't propagate
6720         the message when necessary). It was just test code, it said so in
6721         a comment. Add something similar back later if necessary.
6722
6723         (_win32_on_clipboard_change,
6724         _gdk_win32_register_clipboard_notification): Remove.
6725
6726         (gdk_display_supports_selection_notification,
6727         gdk_display_request_selection_notification): Always just return
6728         FALSE. We didn't generate any GDK_OWNER_CHANGE events anywhere.
6729
6730 2005-10-13  Tor Lillqvist  <tml@novell.com>
6731
6732         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Don't treat
6733         Alt-Enter specially. It does not have any special meaning and
6734         should be passed on to the application. (#318378, Tim Evans)
6735
6736 2005-10-13  Tor Lillqvist  <tml@novell.com>
6737
6738         Set visual depth to 24 for 32 bits-per-pixel devices on
6739         Win32. This allows gdk_drawable_real_draw_pixbuf() to use the
6740         optimized composite_0888() function rather than the slower image
6741         dithering functions to draw pixbufs (#313993, John Ehresman)
6742
6743         * gdk/win32/gdkimage-win32.c (_gdk_win32_new_image): Use
6744         _gdk_windowing_get_bits_for_depth() to initialize
6745         GdkImage::bits_per_pixel.
6746         (_gdk_windowing_get_bits_for_depth): Return 32 bits for depth 24.
6747
6748         * gdk/win32/gdkpixmap-win32.c (gdk_pixmap_new): Use
6749         _gdk_windowing_get_bits_for_depth() to initialize
6750         BITMAPINFOHEADER::biBitCount.
6751
6752         * gdk/win32/gdkvisual-win32.c (_gdk_visual_init): Set
6753         GdkVisual::depth to 24 even if GetDeviceCaps(BITSPIXEL) returns
6754         32.
6755
6756 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
6757
6758         * demos/gtk-demo/appwindow.c: (about_cb):
6759           use PACKAGE_VERSION,bump year (#318654)
6760
6761 2005-10-11  Matthias Clasen  <mclasen@redhat.com>
6762
6763         * gtk/gtktextbtree.c (_gtk_text_btree_delete): Try to match an off 
6764         toggle here with the matching on toggle if it immediately follows. 
6765         This is a common case, and handling it here prevents quadratic blowup 
6766         in cleanup_line() below.  (#317125)
6767
6768         * gtk/gtktextsegment.h: 
6769         * gtk/gtktextsegment.c (_gtk_char_segment_new_from_two_strings): Pass
6770         the character counts into this function instead of computing them
6771         again.
6772
6773 2005-10-10  Tommi Komulainen  <tommi.komulainen@iki.fi>
6774
6775         * gtk/gtkfilechooser.h (GtkFileChooserError): Add ALREADY_EXISTS error
6776         code.
6777         * gtk/gtkfilechooserdefault.c
6778         (gtk_file_chooser_default_add_shortcut_folder): Return an error code
6779         when the shortcut already exists in the sidebar.  (#147521)
6780
6781 2005-10-09  Matthias Clasen  <mclasen@redhat.com>
6782
6783         * tests/testcombo.c: Demonstrate how to use custom widgets in
6784         a GtkComboBox.  
6785
6786 2005-10-07  Federico Mena Quintero  <federico@ximian.com>
6787
6788         Fixes bug #317999:
6789
6790         * tests/autotestfilechooser.c (test_reload_sequence): Ensure that
6791         the the result of gtk_file_chooser_get_folder() is NULL or
6792         non-NULL at the right times.  Log the tests.
6793         (test_button_folder_states): New test for the initial states of
6794         the current folder in GtkFileChooserButton.
6795         (main): Test that the number of warnings/errors/critical errors is
6796         zero.
6797
6798         * gtk/gtkfilechooser.c (gtk_file_chooser_get_current_folder):
6799         Clarify the documentation on when this can return NULL.
6800         (gtk_file_chooser_get_current_folder_uri): Likewise.
6801
6802         * gtk/gtkfilechooserbutton.c (struct
6803         _GtkFileChooserButtonPrivate): Added a folder_has_been_set flag;
6804         we use it to keep track of whether a folder has been set.
6805         (gtk_file_chooser_button_map):  Implement.  If no folder has been
6806         loaded before, we at least try to load $cwd here.
6807         (gtk_file_chooser_button_constructor): If the construct-time
6808         dialog already has a folder set, turn on our folder_has_been_set
6809         flag.
6810         (dialog_current_folder_changed_cb): Turn on our
6811         folder_has_been_set flag.
6812
6813 2005-10-07  Michael Natterer  <mitch@gimp.org>
6814
6815         * gtk/gtkfilechooserdefault.c: remove some explicit #defines of
6816         PROFILE_FILE_CHOOSER because they break compilation after the
6817         removal of <unistd.h>.
6818
6819 2005-10-07   Matthias Clasen  <mclasen@redhat.com>
6820
6821         * gtk/gtkfilechooserdefault.c: Properly fix the unistd.h include
6822         by moving it out of the profiling ifdef.
6823
6824         * gtk/gtkfilechooserdefault.c: Remove a redundant (and
6825         unconditional) include of unistd.h  (#318211, Kazuki Iwamoto)
6826
6827         * gtk/gtktexttag.c (gtk_text_attributes_ref): Use
6828         g_return_val_if_fail(), not g_return_if_fail().  (#318412,
6829         Kazuki Iwamoto)
6830
6831 2005-10-06  Matthias Clasen  <mclasen@redhat.com> 
6832                 
6833         * gtk/gtk.symbols:
6834         * gtk/gtktextbuffer.h:
6835         * gtk/gtktextbuffer.c: Add a readonly has-selection property
6836         with a getter.  (#318161, Paolo Borelli)
6837
6838 2005-10-05  Matthias Clasen  <mclasen@redhat.com>
6839
6840         * README.in: Start collecting release notes for 2.10.
6841
6842         * gtk/gtkrc.c (gtk_rc_clear_realized_style): Readd the memory
6843         leak fix, since the assertion failures were traced to 
6844         an xchat bug.  (#314696)
6845         
6846         * gtk/gtkstyle.c (gtk_style_detach):
6847         (gtk_style_attach):  Documentation improvements.
6848         (gtk_style_detach): Assert that the attach_count is > 0.
6849
6850 2005-10-04  Federico Mena Quintero  <federico@ximian.com>
6851
6852         * gtk/gtkfilechooserdefault.c (switch_to_shortcut): Take a
6853         shortcut position, not a ShortcutsIndex, to make the function more
6854         generic.
6855         (home_folder_handler): Pass the resolved index to
6856         switch_to_shortcut(), rather than just SHORTCUTS_HOME.
6857         (desktop_folder_handler): Likewise for SHORTCUTS_DESKTOP.
6858         (gtk_file_chooser_default_class_init): Add a "quick-bookmark"
6859         binding signal, and bind it to Alt-1, Alt-2. ..., Alt-0.  These
6860         make the respective key switch to the first, second, ..., tenth
6861         bookmark.
6862         (quick_bookmark_handler): Implement.
6863
6864 2005-10-04  Federico Mena Quintero  <federico@ximian.com>
6865
6866         * gtk/gtkpathbar.c (get_dir_name): Don't special-case Home and
6867         Desktop; just use their real names on the file system for the
6868         user-visible names.
6869
6870         * gtk/gtkfilechooserdefault.c
6871         (gtk_file_chooser_default_class_init): Add a "desktop-folder"
6872         binding signal, and bind it to M-d by default.
6873         (desktop_folder_handler): Implement the default handler.
6874         (home_folder_handler): Use a helper function.
6875         (switch_to_shortcut): New helper function.
6876         (shortcuts_append_home): Don't special-case the name of "Home";
6877         just use the folder name.
6878
6879 2005-10-04  Tor Lillqvist  <tml@novell.com>
6880
6881         * gtk/gtkcalendar.c (gtk_calendar_init): Make it compile without
6882         HAVE__NL_TIME_FIRST_WEEKDAY. (#317910, Mathias Hasselmann)
6883
6884 2005-10-04  Matthias Clasen  <mclasen@redhat.com>
6885
6886         * gtk/gtkrc.c (gtk_rc_clear_realized_style): Revert the change
6887         from yesterday, since it leads to assertion failures.  (#317879,
6888         Sebastian Bacher)
6889
6890 2005-10-03  Matthias Clasen  <mclasen@redhat.com>
6891
6892         * gtk/gtkcalendar.c (gtk_calendar_init): Call 
6893         calendar_compute_days() after setting priv->week_start.
6894
6895 2005-10-03  Matthias Clasen  <mclasen@redhat.com>
6896
6897         * gtk/gtkrc.c (gtk_rc_clear_realized_style): Unref the style when
6898         removing it from the hash table.  (#314696, Benjamin Berg)
6899
6900 2005-10-01  Tor Lillqvist  <tml@novell.com>
6901
6902         * gdk/win32/gdkdrawable-win32.c (blit_from_pixmap): In case
6903         BitBlt() fails with ERROR_INVALID_HANDLE, the most probable cause
6904         is that the the desktop isn't visible because the session has been
6905         switched, the screen is locked, or a terminal server session
6906         disconnected, so no error message necessary. (#137796)
6907
6908         It is of course remotely possible that BitBlt() failing with
6909         ERROR_INVALID_HANDLE might also be caused by some other
6910         problem. We could strive for perfection and track whether the
6911         desktop is visible by using WTSRegisterSessionNotification() and
6912         handling WM_WTSESSION_CHANGE. I think that's overdoing it just for
6913         this issue, though. If we would track desktop visibility, we
6914         should then avoid even trying to update the display at all while
6915         the desktop isn't visible.
6916
6917 2005-09-30  Matthias Clasen  <mclasen@redhat.com>
6918
6919         * gtk/gtkcalendar.c (gtk_calendar_init): Another attempt
6920         to correct the calculations for the first week day. We may
6921         just have to remove this code if too many locales turn out 
6922         to have broken data. 
6923
6924         * gtk/gtkimage.c (gtk_image_expose): Don't leak pixbuf in
6925         some cases.  (#317611, Tommi Komulainen)
6926
6927         * gtk/gtksocket-x11.c (_gtk_socket_windowing_size_request):
6928         Prevent overflow when storing size hints in an unsigned
6929         short variable. Tracked down by Ray Strode and Søren Sandmann.
6930
6931 2005-09-29  Matthias Clasen  <mclasen@redhat.com>
6932
6933         * gtk/gtkbutton.c (gtk_button_set_image): Check arguments.  (#317491,
6934         Paolo Borelli)
6935
6936         * gtk/gtkpaned.c (gtk_paned_grab_notify): Stop drags when being
6937         grab shadowed.  (#317332)
6938
6939 2005-09-29  Tor Lillqvist  <tml@novell.com>
6940
6941         * gtk-zip.sh.in: DLLs are always in bin nowadays, no need to test.
6942
6943 2005-09-28  Federico Mena Quintero  <federico@ximian.com>
6944
6945         * tests/autotestfilechooser.c (test_reload_sequence): Oops, return
6946         if the unmap test fails.
6947         (test_reload_sequence): Use gtk_widget_show_now() instead of
6948         gtk_widget_show() for the dialog.
6949         Thanks to Tim Janik for noticing these.
6950
6951 2005-09-28  Federico Mena Quintero  <federico@ximian.com>
6952
6953         * tests/testcellrenderertext.c: New file with a set of tests for
6954         GtkCellRendererText.  The idea is to run a text renderer through
6955         most of its interesting property values to see that it works
6956         correctly.
6957
6958         * tests/Makefile.am: Added testcellrenderertext.
6959
6960         * gtk/gtkfilechooserdefault.c (load_set_model): Mark the
6961         entry/exit of this function for profiling.
6962         (gtk_file_chooser_default_style_set): Mark the start/end of the
6963         calls to the parent class and the the signal emission for profiling.
6964
6965 2005-09-29  Tor Lillqvist  <tml@novell.com>
6966
6967         * gtk/gtkmain.c (_gtk_get_localedir): The locale directory is
6968         passed to bindtextdomain() which isn't UTF-8-aware, so convert to
6969         system codepage using g_win32_locale_filename_from_utf8().
6970         (#317457, Kazuki Iwamoto)
6971
6972 2005-09-28  Matthias Clasen  <mclasen@redhat.com>
6973
6974         * gtk/gtkselection.c (_gtk_selection_request): Free mult_atoms 
6975         here. (#317039, Paolo Borelli)
6976
6977         * gtk/gtktexttag.h: 
6978         * gtk/gtktexttag.c (gtk_text_attributes_ref): Return the attributes
6979         to make this function work as boxed copy function.  (#317455,
6980         Gustavo Carneiro)
6981
6982         * gtk/gtkclipboard.c (request_image_received_func): Don't unref
6983         NULL.  (#316828, Tor Lillqvist)
6984
6985 2005-09-28  Tor Lillqvist  <tml@novell.com>
6986
6987         * modules/input/imime.c: Include <config.h>. (#317444, Kazuki
6988         Iwamoto)
6989
6990 2005-09-27  Federico Mena Quintero  <federico@ximian.com>
6991
6992         Don't reload the current folder unnecessarily on ::map().
6993
6994         * gtk/gtkfilechooserprivate.h (ReloadState): New enum to represent
6995         the reloading state.
6996         (struct _GtkFileChooserDefault): Added a "reload_state" field.
6997
6998         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init):
6999         Initialize impl->reload_state.
7000         (gtk_file_chooser_default_map): Check the impl->reload_state; load
7001         a default folder if no folder has been set, or reload the current
7002         one only if we had been unmapped first.
7003         (gtk_file_chooser_default_update_current_folder): Set the
7004         reload_state to RELOAD_HAS_FOLDER.
7005         (gtk_file_chooser_default_unmap): Implement, and set the
7006         reload_state to RELOAD_WAS_UNMAPPED.
7007         (shortcuts_model_create): Don't call shortcuts_add_bookmarks()
7008         here; they'll get (re)loaded on ::map() anyway.
7009
7010         * gtk/gtkfilechooserwidget.c
7011         (gtk_file_chooser_widget_constructor): Don't set a default folder here.
7012
7013         * tests/autotestfilechooser.c (test_action_widgets): Don't take in
7014         a dialog; build it ourselves.
7015         (test_reload): New test to ensure that we don't load the default
7016         folder more than once, and that we reload it when
7017         unmapping/remapping.
7018         (get_impl_from_dialog): New utility function.
7019         (test_widgets_for_current_action): Use get_impl_from_dialog().
7020
7021 2005-09-27  Federico Mena Quintero  <federico@ximian.com>
7022
7023         * gtk/gtkfilechooserdefault.c
7024         (gtk_file_chooser_default_constructor): Mark the entry/exit of
7025         this function for profiling.
7026         (check_icon_theme): Likewise.
7027         (change_icon_theme): Likewise.
7028         (settings_notify_cb): Likewise.
7029         (gtk_file_chooser_default_screen_changed): Likewise.
7030         (update_chooser_entry): If the selection is empty, clear the file
7031         name entry only if we are in CREATE_FOLDER mode.  In SAVE mode,
7032         nothing will be selected when the user starts typeahead in the
7033         treeview, and we don't want to clear the file name entry in that
7034         case --- the user could be typing-ahead to look for a folder name.
7035         Fixes bug #308332, patch by Jürg Billeter.
7036
7037 2005-09-27  Matthias Clasen  <mclasen@redhat.com>
7038
7039         * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
7040         Pop below the entry if there's more free space below the entry
7041         than above.  (#316948, Tommi Komulainen)
7042
7043 2005-09-26  Federico Mena Quintero  <federico@ximian.com>
7044
7045         Do not create the save mode-specific widgets in the open modes, so
7046         that we don't carry their baggage around.
7047
7048         * gtk/gtkfilechooserdefault.c
7049         (gtk_file_chooser_default_constructor): Don't create the
7050         save_widgets here.
7051         (save_widgets_create): Set the impl->save_widgets directly here,
7052         instead of passing the widgets back to the caller.  Also, pack
7053         them into the impl's box.
7054         (update_appearance): Create or destroy the save widgets as
7055         appropriate.  Set the action of the save_file_name_entry here.
7056         (shortcuts_add_current_folder): Set the active item in the
7057         save_folder_combo only if it exists.
7058         (gtk_file_chooser_default_set_property): Don't set the action of
7059         the save_file_name_entry here.
7060         (gtk_file_chooser_default_update_current_folder): Set the base
7061         folder of the save_file_name_entry only if the entry exists.
7062         (shortcuts_drag_data_received_cb): Cast the selection_data->data
7063         to (const char *) since that's what shortcuts_drop_uris() expects.
7064         (file_list_drag_data_received_cb): Likewise, for
7065         g_uri_list_extract_uris().
7066
7067 2005-09-26  Tor Lillqvist  <tml@novell.com>
7068
7069         * gdk/win32/gdkwindow-win32.c (gdk_window_shape_combine_mask): Set
7070         the shaped flag here, too. (#316871)
7071         (gdk_window_shape_combine_region): Currently unimplemented, so
7072         don't do anything to the shaped flag here.
7073
7074 2005-09-26  Matthias Clasen  <mclasen@redhat.com>
7075
7076         Fix #316871, reported by Dan Winship:
7077         
7078         * gdk/gdkwindow.h (struct _GdkWindowObject): Add a shaped flag.
7079
7080         * gdk/x11/gdkwindow-x11.c (gdk_window_shape_combine_mask) 
7081         (gdk_window_shape_combine_region): Set it here.
7082
7083         * gdk/gdkwindow.c (gdk_window_invalidate_maybe_recurse): Don't
7084         remove the child area for shaped windows.
7085
7086 2005-09-23  Matthias Clasen  <mclasen@redhat.com>
7087
7088         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_finalize):
7089         Don't leak expander pixbufs.  (#316946, Tommi Komulainen)
7090
7091 2005-09-22  Michael Natterer  <mitch@imendio.com>
7092
7093         Renamed GtkCellRendererKeys to GtkCellRendererAccel to be
7094         consistent with GTK+ terminology:
7095
7096         * gtk/gtkcellrendererkeys.[ch]
7097         * tests/testkeys.c: removed...
7098
7099         * gtk/gtkcellrendereraccel.[ch]
7100         * tests/testaccel.c: ...and added.
7101
7102         * gtk/Makefile.am
7103         * gtk/gtk.h
7104         * gtk/gtk.symbols
7105         * tests/Makefile.am: changed accordingly.
7106
7107 2005-09-22  Matthias Clasen  <mclasen@redhat.com>
7108
7109         * gtk/gtkwidget.c (gtk_widget_class_init): Fix the documentation
7110         for the grab-broken-event signal, noticed by Damon Chaplin.
7111
7112 2005-09-21  Tor Lillqvist  <tml@novell.com>
7113
7114         * gdk/win32/gdkselection-win32.c (gdk_selection_convert,
7115         gdk_text_property_to_text_list_for_display,
7116         gdk_text_property_to_utf8_list_for_display,
7117         gdk_win32_selection_add_targets,
7118         _gdk_win32_selection_convert_to_dib): Free return value from
7119         gdk_atom_name().
7120         (gdk_text_property_to_text_list_for_display): Drop GError variable
7121         that isn't actually used after being set.
7122
7123 2005-09-20  Johan Dahlin  <jdahlin@async.com.br>
7124
7125         * gtk/gtkentry.c (gtk_entry_set_completion): Mention NULL in 
7126         documentation.
7127
7128 2005-09-20  Tor Lillqvist  <tml@novell.com>
7129
7130         * gdk/win32/gdkselection-win32.c
7131         (gdk_selection_owner_get_for_display): Do return the correct owner
7132         for CLIPBOARD (i.e., the owner of the Windows Clipboard, if it is
7133         a window GDK knows about). The reason to return NULL seems to have
7134         gone when in the fix for bug #163702 the artificial
7135         GDK_SELECTION_CLEAR event generation was removed from
7136         gdk_selection_send_notify_for_display(). Fixes bug #316552.
7137
7138 2005-09-20  Matthias Clasen  <mclasen@redhat.com>
7139
7140         Avoid unnecessary XkbGetState() calls and XkbStateNotify
7141         events.  (#151555, Søren Sandmann)
7142
7143         * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Use 
7144         XkbSelectEventDetails() to select XkbStateNotify events
7145         for only the state we care about.
7146
7147         * gdk/x11/gdkprivate-x11.h:
7148         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_state_changed): Pass
7149         the event into the function and update the keymap state from
7150         the state information contained in the event. Adjust all callers.
7151         
7152 2005-09-19  Matthias Clasen  <mclasen@redhat.com>
7153
7154         * gtk/gtkiconview.c: Use g_list_nth_data() instead of g_list_nth()->data
7155         in multiple places to avoid segfaults if the index is out of range.  
7156         (#316422, Guillaume Cottenceau)
7157         (gtk_icon_view_set_drag_dest_item): 
7158         (gtk_icon_view_scroll_to_path): Fix a typo in the docs.  (#316419,
7159         #316424, Guillaume Cottenceau)
7160
7161 2005-09-18  Hans Breuer  <hans@breuer.org>
7162
7163         * gtk/gtktrayicon-win32.c : now handling events by hard-coded 
7164         g_signal_emit_by_name() - will break when gtkstatusicon.c changes.
7165
7166 2005-09-18  Hans Breuer  <hans@breuer.org>
7167
7168         * gdk/gdk.symbols gdk/win32/gdkwin32.h gdk/win32/gdkcursorwin32.c : export
7169         _gdk_win32_pixbuf_to_hicon() as gdk_win32_pixbuf_to_hicon_libgtk_only()
7170         * gtk/gtktrayicon-win32.c : a lot of debug spew but it has started to show
7171         the icon and is blinking with teststatusicon. More to come ...
7172
7173 2005-09-18  Hans Breuer  <hans@breuer.org>
7174
7175         * gtk/makefile.msc.in : fix typo for GTK_VER; define HAVE_CONFIG_H
7176         cause gtkprogressbar.c has #include <config.h> conditionally; less
7177         noise from generated gtk.def
7178         * gtk/stock-icons/makefile.msc gdk/makefile.msc tests/makefile.msc : updated
7179         
7180         * gtk/gtktrayicon-win32.c : dummy implmentation to make gtk compile.
7181         For me it works as well as the *NIX implemenation, that is not at all.
7182
7183         * gdk/win32/gdkproperty-win32.c : implement gdk_atom_intern_static_string()
7184
7185         * gdk/win32/gdkwindow-win32.c(gdk_window_set_urgency_hint) : only use
7186         only use (WINVER >= 0x0500) when available from the SDK. Otherwise fall
7187         back to true dynamic linking of FlashWindowEx. Makes gtk+ work on NT4.0
7188         again - if compiled properly.
7189
7190         * tests/teststatusicon.c : don't use GNOME icons for testing, but icons
7191         already coming with Gtk+. Makes it compile on win32.
7192
7193 2005-09-18  Guilherme de S. Pastore  <gpastore@cvs.gnome.org>
7194
7195         * README.cvs-commits: fixed some tiny typos
7196
7197 2005-09-16  Tor Lillqvist  <tml@novell.com>
7198
7199         * modules/engines/ms-windows/msw_style.c (draw_extension,
7200         draw_box_gap): Check whether the widget actually is a GtkNotebook
7201         before treating it as such. Drop some unneeded local variables,
7202         use parameter with same information instead. (#316412)
7203
7204 2005-09-15  Federico Mena Quintero  <federico@ximian.com>
7205
7206         * tests/autotestfilechooser.c: Start a set of automated tests for
7207         the file chooser.  The only test in there right now doesn't pass
7208         yet.  It specifies the intended behavior of the first optimization
7209         of a series which I'll do on the file chooser (see
7210         http://primates.ximian.com/~federico/news-2005-09.html#14 for the
7211         details of this optimization).
7212
7213         * tests/Makefile.am: Added autotestfilechooser.c.
7214
7215         * gtk/gtkfilechooserprivate.h (struct
7216         _GtkFileChooserDialogPrivate): Move all the file chooser's private
7217         structures to here, so that they can be accessed by
7218         tests/autotestfilechooser.c:  _GtkFileChooserDialogPrivate,
7219         _GtkFileChooserWidgetPrivate, LoadState, _GtkFileChooserDefault.
7220
7221         * gtk/gtkfilechooserdialog.c: See above.
7222
7223         * gtk/gtkfilechooserwidget.c: See above.
7224
7225         * gtk/gtkfilechooserdefault.c: See above.
7226
7227 Thu Sep 15 15:27:55 2005  Tim Janik  <timj@imendio.com>
7228
7229         * gtk/gtkwindow.c: 
7230         gtk_window_map_event(): new function to work around lost unmap requests.
7231         fixes bug #316180.
7232
7233 2005-09-14  Federico Mena Quintero  <federico@ximian.com>
7234
7235         * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_init): Add
7236         an easy-to-find profiling marker when starting to create a file
7237         chooser.
7238         (browse_files_model_finished_loading_cb): Likewise, for when the
7239         chooser is finished loading.
7240
7241 2005-09-14  Tristan Van Berkom <tvb@cvs.gnome.org>
7242
7243         * gtk/gtkcolorbutton.c: Check "color" argument in 
7244         gtk_color_button_set_color ()
7245
7246 2005-09-14  Matthias Clasen  <mclasen@redhat.com>
7247
7248         * gtk/gtklabel.c (gtk_label_get_type): 
7249         * gtk/gtkbutton.c (gtk_button_get_type): 
7250         * gtk/gtkwindow.c (gtk_window_group_get_type): No point in 
7251         using a mem chunk for window groups, buttons, labels.
7252
7253         * gtk/updateiconcache.c (foreach_remove_func): Fix
7254         a use-after-free bug.  (#316256, Alexander Nedotsukov)
7255
7256 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
7257
7258         * gtk/*.c: Various cleanups.  (#315360, Kjartan Maraas)
7259
7260         * gdk/*.c: Various cleanups.  (#315359, Kjartan Maraas)
7261         
7262 2005-09-13  Matthias Clasen  <mclasen@redhat.com>
7263
7264         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
7265         Let GDK_Return pass through in some more cases.
7266
7267         * gtk/gtkentry.c (gtk_entry_key_press): Reset the im context before
7268         activating the entry. 
7269
7270         * gtk/gtkiconview.c (gtk_icon_view_class_init):
7271         (gtk_icon_view_get_dest_item_at_pos):  Fix typos in the 
7272         docs.  (#316008, #316027, #316121, Guillaume Cottenceau)
7273
7274         * gtk/gtkfilechooser.c (gtk_file_chooser_class_init): Add some docs.
7275         (#316001, Guillaume Cottenceau)
7276
7277         * gtk/gtkdnd.c (gtk_drag_set_icon_name): Fix a copy-and-paste
7278         mistake in the docs.  (#315993, Guillaume Cottenceau)
7279
7280         * tests/testentrycompletion.c (create_simple_completion_model): Add
7281         some strings containing multibyte characters.
7282
7283         * gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix): 
7284         Fix prefix insertion for multibyte characters.  (#316095,
7285         Tommi Komulainen)
7286
7287         * gtk/gtktreeview.c (gtk_tree_view_create_row_drag_icon): 
7288         * gtk/gtkiconview.c (gtk_icon_view_create_drag_icon): Silently
7289         return NULL if the widget is not realized.  (#316023,
7290         Guillaume Cottenceau)
7291
7292 2005-09-11  Matthias Clasen  <mclasen@redhat.com>
7293
7294         * gdk/gdk.symbols: 
7295         * gdk/gdkproperty.h: 
7296         * gdk/x11/gdkproperty-x11.c (gdk_atom_intern_static_string): 
7297         New function to avoid pointless strdups when creating atoms
7298         from static strings.  
7299
7300         * gdk/x11/*.c:
7301         * gtk/*.c:  Use gdk_atom_intern_static_string() where 
7302         appropriate.
7303
7304 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
7305
7306         * gtk/gtkcellrendererkeys.h: 
7307         * gtk/gtkcellrendererkeys.c: Add a cell renderer for displaying
7308         and editing accelerators, a port of EggCellRendererKeys .
7309
7310         * gtk/gtk.symbols:
7311         * gtk/gtk.h:
7312         * gtk/Makefile.am: Add the keys cell renderer.
7313
7314         * tests/Makefile.am: 
7315         * tests/testkeys.c: Test GtkCellRendererKeys
7316
7317 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
7318
7319         Make it possible to determine if a key event is for a
7320         modifier key:
7321         
7322         * gdk/x11/gdkprivate-x11.h: 
7323         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_key_is_modifier): 
7324         New function to determine if a keycode is mapped to a modifier.
7325         (get_xkb): Get the modmap.
7326
7327         * gdk/x11/gdkevents-x11.c (translate_key_event): Set the 
7328         is_modifier bit by calling _gdk_keymap_key_is_modifier().
7329
7330         * gdk/gdkevents.h (struct _GdkEventKey): Add an is_modifier
7331         bit.
7332
7333 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
7334
7335         * gdk/gdkpixbuf-drawable.c (convert_real_slow): Remove an 
7336         unused variable, noticed by Kjartan Maraas.
7337
7338 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
7339
7340         * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_button_event): 
7341         Make drag reordering work properly for columns other than the
7342         first.  (#315054, Dan Winship)
7343         
7344         * gtk/gtkfontsel.c (gtk_font_selection_set_font_name): Handle 
7345         invalid fontnames better. (#136926, Michael R. Walton)
7346         
7347         Stop cursor blinking in non-editable regions of a text view.
7348         (#311508, Torbjörn Andersson)
7349         
7350         * gtk/gtktextview.c (gtk_text_view_check_cursor_blink): 
7351         (cursor_blinks): Take editability into account when deciding
7352         whether the cursor blinks.
7353         (gtk_text_view_button_release_event): 
7354         (gtk_text_view_move_cursor_internal): Update cursor blinking here.
7355
7356         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_start_editing): 
7357         Use connect_after to connect to the focus_out event. This
7358         ensures that the entry has already stopped blinking by the time
7359         we emit the edited signal.  (#315229, Thomas Leonard)
7360
7361         * tests/testgtk.c: Use GDK_MOD1_MASK, not GDK_ALT_MASK.
7362
7363         * gtk/gtkwindow.c (gtk_window_parse_geometry): Don't set
7364         unsigned ints to -1.  (#315481, Kjartan Maraas)
7365
7366         * gtk/gtkcalendar.c (gtk_calendar_init): first_weekday is relative
7367         to week_1stday, not to Sunday. Gotta love the ISO 14652 guys...
7368         (#314473, Stanislav Brabec)
7369
7370 2005-09-09  Matthias Clasen  <mclasen@redhat.com>
7371
7372         * gtk/gtktreeview.c (gtk_tree_view_get_visible_range): Document
7373         memory handling.  (#314975, Torsten Schoenfeld)
7374
7375         * gtk/gtkiconview.c (gtk_icon_view_class_init): 
7376         * gtk/gtkfilesel.c (gtk_file_selection_class_init): 
7377         * gtk/gtkcombobox.c (gtk_combo_box_class_init): 
7378         * gtk/gtklabel.c (gtk_label_class_init): 
7379         * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
7380         Stylistic improvements and clarifications for some blurbs. 
7381         (#315520, Clytie Siddall)
7382
7383 2005-09-09  Tor Lillqvist  <tml@novell.com>
7384
7385         * gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Cache the
7386         display name. There is only one GdkDisplay on Win32, and
7387         constructing the display name isn't entirely trivial, so cacheing
7388         is probably worth it. For instance GIMP calls this function a lot.
7389         (gdk_display_open): Call gdk_display_get_name() to prime the
7390         cached name.
7391         (gdk_display_get_n_screens, gdk_display_get_screen,
7392         gdk_display_get_default_screen): Verify parameter correctness like
7393         the X11 backend does.
7394
7395         * gdk/win32/gdkscreen-win32.c (gdk_screen_make_display_name):
7396         Return a freshly allocated string, as the API specifies. Fixes a
7397         heap corruption problem that caused random errors and crashes in
7398         GIMP, for instance.
7399
7400 2005-09-07  Matthias Clasen  <mclasen@redhat.com>
7401
7402         * gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress): 
7403         Make C-u commit and restart hex input if we are already in a
7404         hex sequence.
7405
7406 2005-09-06  Matthias Clasen  <mclasen@redhat.com>
7407
7408         * gdk/x11/gdkkeys-x11.c (update_modmap): Make the modmap reflexive.
7409         (_gdk_keymap_add_virtual_modifiers): Don't add both Alt and Meta
7410         if they are mapped to the same modifier.
7411
7412         * gtk/Makefile.am: Rename gtkstatusicon-x11.c and gtktrayicon.c
7413         to gtkstatusicon.c and gtktrayicon-x11.c
7414
7415         * gtk/gtkaccelgroup.c: Include Super, Hyper and Meta in the
7416         default accel mod mask.
7417
7418         * gtk/gtkaccelgroup.c (gtk_accelerator_parse): 
7419         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
7420         Don't use GDK_ALT_MASK.
7421
7422         * gdk/gdktypes.h: No need to introduce GDK_ALT_MASK
7423
7424 2005-09-06  Matthias Clasen  <mclasen@redhat.com>
7425
7426         Add support for extra virtual modifiers:  (#85780, Owen Taylor)
7427         
7428         * tests/testgtk.c (create_key_lookup): Add tests for extra virtual
7429         modifiers.
7430
7431         * gtk/gtkkeyhash.c (_gtk_key_hash_lookup): Try to match both against
7432         Mod2 - Mod5 and against Super, Hyper, Meta.
7433
7434         * gtk/gtkaccellabel.c (_gtk_accel_label_class_get_accelerator_label): 
7435         * gtk/gtkaccelgroup.c (gtk_accelerator_parse) 
7436         (gtk_accelerator_name): Support Super, Hyper Meta and Mod2 - Mod5.
7437
7438         * gdk/x11/gdkkeys-x11.c (struct _GdkKeymapX11): Add a 
7439         modmap to maintain the information which X modifiers map to
7440         virtual modifiers.
7441         (get_xkb): Set up the modmap from the XKB tables.
7442         (update_keymaps): Set up the modmap from the information returned
7443         by XGetModifierMapping in the non-XKB case.
7444
7445         * gdk/x11/gdkprivate-x11.h: 
7446         * gdk/x11/gdkkeys-x11.c (_gdk_keymap_add_virtual_modifiers): New 
7447         function to set the virtual modifiers in the state.
7448
7449         * gdk/x11/gdkevents-x11.c (translate_key_event): Call 
7450         _gdk_keymap_add_virtual_modifiers here.
7451
7452         * gdk/gdktypes.h (GdkModifierType): Add bits for virtual Super, 
7453         Hyper and Meta modifiers. Also add GDK_ALT_MASK as an alias
7454         for GDK_MOD1_MASK.
7455
7456 2005-09-05  Matthias Clasen  <mclasen@redhat.com>
7457
7458         * gtk/gtkaction.c (connect_proxy): Set the label of a button
7459         if it has no child.  (#315253, John Finlay)
7460
7461 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
7462
7463         * gtkimcontextsimple.h: Add a modifiers_dropped bit
7464
7465 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
7466
7467         * gtk/gtkentry.c (gtk_entry_destroy): Disconnect idle handlers
7468         on destroy to avoid problems when they are called on a destroyed
7469         widget.  (#315135, John Cupitt)
7470         
7471         * gtk/gtkentry.c (gtk_entry_class_init):
7472         * gtk/gtktextview.c (gtk_text_view_class_init): Add bindings
7473         for Ctrl-Shift-A to unselect all.  (#309301, Kathy Fernandes)
7474
7475         * gtk/gtkimcontextsimple.c: Rework the Unicode hex input
7476         code. Now we only steal a single key combination, Ctrl-Shift-U,
7477         instead of sixteen. 
7478         A hex Unicode sequence must be started with Ctrl-Shift-U, followed
7479         by a sequence of hex digits entered with Ctrl-Shift still held.
7480         Releasing one of the modifiers or pressing space while the modifiers
7481         are still held commits the character. It is possible to erase
7482         digits using backspace.
7483         As an extension to the above, we also allow to start the sequence
7484         with Ctrl-Shift-U, then release the modifiers before typing any
7485         digits, and enter the digits without modifiers.
7486         (#82011, Owen Taylor)
7487         
7488 2005-09-02  Matthias Clasen  <mclasen@redhat.com>
7489
7490         * gtk/gtkmain.c (gtk_get_event_widget): If the window is destroyed,
7491         we still need to deliver the destroy event.  (#314980, Chris Lahey)
7492
7493         * gtk/gtktextview.c (gtk_text_view_key_press_event): Reset 
7494         im context before committing \n or \t.
7495
7496 2005-09-02  Alexander Larsson  <alexl@redhat.com>
7497
7498         * gtk/gtkfilechooserdefault.c: (shortcuts_add_volumes),
7499         (shortcuts_activate_volume):
7500         Handle base_path being null in the rest of the cases (#310270)
7501
7502 2005-09-02  Tor Lillqvist  <tml@novell.com>
7503
7504         * gdk/win32/gdkevents-win32.c (gdk_event_translate): Keep track of
7505         cursor position also in root window coordinates. Prune out
7506         superfluous WM_MOUSEMOVE events even earlier, based on root window
7507         coordinates. Windows sends WM_MOUSEMOVE messages after a new
7508         window has ben mapped below the cursor even if the mouse doesn't
7509         move. We used to generate GDK_MOTION_NOTIFY in these cases. This
7510         confused at least gtk_menu_motion_notify(). (#314995)
7511
7512         * gtk/gtkintl.h: No need to include config.h here. It caused
7513         warnings about GTK_LOCALEDIR being redefined on Win32 when
7514         compiling files where gtkintl.h is included after gtkprivate.h
7515         (which #undefines and re-#defines GTK_LOCALEDIR on Win32).
7516
7517         * gtk/gtkplug.c: Include config.h.
7518
7519 2005-09-01  Matthias Clasen  <mclasen@redhat.com>
7520
7521         * gtk/gtkfilesystemunix.c: Pass statbufs down to 
7522         xdg_mime_get_mime_type_for_file() where possible, to avoid
7523         useless re-stating.  
7524         
7525         * gtk/gtkaction.c (gtk_action_get_accel_closure): Fix doc
7526         typo.  (#314921, Guillaume Cottenceau)
7527
7528         * gdk/*.c: Intern some more strings.
7529         * gtk/gtkintl.h: 
7530         * gtk/*.c: Define an I_() macro and use it instead of the 
7531         bulky g_intern_static_string().
7532
7533 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
7534
7535         * gtk/gtkbindings.c (binding_signal_new): Intern the signal name
7536         instead of copying it.
7537
7538         * gtk/gtktypeutils.c (gtk_identifier_get_type): Some more string interning.
7539
7540         * gtk/*.c: Also intern static strings passed to 
7541         g_object_set_data().
7542
7543         * gdk/Makefile.am: 
7544         * gtk/Makefile.am: Intern type names in code generated by 
7545         glib-mkenums, too.
7546
7547         * gtk/*.c: 
7548         * gdk/x11/*.c: 
7549         * gdk/*.c: Intern type names before registering the type to avoid 
7550         unnecessary copies.
7551
7552         * configure.in: Require GLib 2.9.0
7553
7554 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
7555
7556         * gtk/gtktoolbar.c: Undeprecate gtk_toolbar_set_icon_size(),
7557         and add icon-size and icon-size-set properties.  (#314172)      
7558
7559         * gtk/gtkwindow.c (gtk_window_set_transient_for): Inherit window
7560         groups across transient parents.  (#312918, Christian Persch)
7561
7562         * gtk/gtktreemodel.c: Some documentation fixes.  (#314882,
7563         Guillaume Cottenceau)
7564
7565         * gtk/gtktextiter.c (gtk_text_iter_backward_visible_cursor_positions): 
7566         Fix a typo in the docs.  (#314878, Guillaume Cottenceau)
7567
7568 2005-08-30  Matthias Clasen  <mclasen@redhat.com>
7569
7570         * gtk/gtkentry.c (gtk_entry_class_init): Add key bindings to
7571         make C-/ select all and C-\ unselect all.  (#309301,
7572         Kathy Fernandez)
7573
7574         * gtk/gtkimcontextsimple.c: Change the compose sequence for
7575         soft hyphen to be multi_key-minus-minus-space, and add
7576         compose sequences multi_key-minus-minus-period and 
7577         multi_key-minus-minus-minus for en dash and em dash.
7578         (#172653, Christian Lohmaier)
7579
7580         * gtk/gtkentry.c (gtk_entry_draw_frame): Fix some unused
7581         code.  (#313946, Christian Persch)
7582
7583         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Another
7584         fix for the default value of the "ui" property.
7585
7586 2005-08-30  Matthias Clasen  <mclasen@redhat.com>
7587
7588         * gtk/gtk.symbols: 
7589         * gtk/gtkselection.h:
7590         * gtk/gtkselection.c: Add functions which look for text, image
7591         or uri targets in an array of atoms.   (#314089, Mark Wielaard)
7592
7593         * gtk/gtk.symbols: 
7594         * gtk/gtkselection.h:
7595         * gtk/gtkselection.c (gtk_selection_data_targets_include_uri): 
7596         Add a function to check wether targets include uri.  
7597         (#314092, Mark Wielaard)
7598         
7599         * gtk/gtk.symbols: 
7600         * gtk/gtkwindow.h: 
7601         * gtk/gtkwindow.c: Add a deletable property with getter
7602         and setter, to control the close button in the window 
7603         frame.  (#59718, Havoc Pennington)
7604
7605 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
7606
7607         * gtk/gtkrc.key.emacs: Add C-n/C-p/C-f/C-b as alternatives
7608         to the arrow keys for menu navigation.  (#162825, Carl Worth)
7609
7610         * gtk/gtkentry.c, gtk/gtktextview.c: More typo fixes
7611
7612         * gtk/gtksocket-x11.c, gtk/gtkstatusicon-x11.c: Fix typos.
7613
7614         * gtk/gtkstatusicon-x11.c (gtk_status_icon_new_from_stock): 
7615         * gtk/gtkimage.c (gtk_image_new_from_stock): Don't
7616         refer to nonexisting stock ids.
7617
7618         * gtk/gtktextview.c (popup_targets_received): 
7619         * gtk/gtkentry.c (popup_targets_received): Construct
7620         the "Select All" menuitem from stock.
7621
7622         * gtk/stock-icons/stock_select_all_{16,24}.png:
7623         * gtk/stock-icons/Makefile.am: 
7624         * gtk/gtkiconfactory.c:
7625         * gtk/gtkstock.h: 
7626         * gtk/gtkstock.c: Add a "Select All" stock item.  (#78545,
7627         Calum Benson)
7628
7629         * gtk/gtktrayicon.c: Add a pointer to the spec.
7630
7631         * gtk/gtkstatusicon-x11.c: Add docs.
7632
7633         * gtk/gtkstatusicon.h: Fix a typo.
7634
7635         Add a cross-platform "tray icon" API, by
7636         porting EggStatusIcon/EggTrayIcon (#105101)
7637         
7638         * gtk/gtkstatusicon.h: A GtkStatusIcon is an object which
7639         displays an icon in a notification area.
7640
7641         * gtk/gtkstatusicon-x11.c: GtkStatusIcon implementation for
7642         X11, using GtkTrayIcon.
7643
7644         * gtk/gtktrayicon.h: 
7645         * gtk/gtktrayicon.c: An implementation of the freedesktop.org
7646         system tray specification, not public API.
7647
7648         * gtk/gtk.symbols: Add new exported functions.
7649
7650         * gtk/gtk.h: Include gtkstatusicon.h.
7651
7652         * gtk/Makefile.am: Add new files.
7653
7654         * tests/Makefile.am:
7655         * tests/teststatusicon.c: Test for GtkStatusIcon.
7656
7657 2005-08-29  Christopher Aillon  <caillon@redhat.com>
7658
7659         * gtk/gtkstock.c: Add builtin GtkStockItems for GTK_STOCK_CONNECT
7660         and GTK_STOCK_DISCONNECT
7661         
7662 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
7663
7664         * gtk/gtksocket-x11.c (_gtk_socket_windowing_embed_notify): 
7665         Use XFixesChangeSaveSet if available.  (#314682)
7666
7667         * gtk/gtkmenu.c (gtk_menu_grab_notify):  Only cancel if the menu
7668         was active.  (#314298, Christian Persch, analysis by Mark McLoughlin)
7669
7670 2005-08-29  Matthias Clasen  <mclasen@redhat.com>
7671
7672         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): Remove an
7673         accidentally leftover duplicate pixbuf creation.  (#314700,
7674         Kjartan Maraas)
7675
7676         * gtk/gtksettings.c (settings_update_cursor_theme): Don't 
7677         leak the cursor theme name.  (#314693, Kjartan Maraas)
7678
7679         * gdk/x11/gdkasync.c (_gdk_x11_get_window_child_info): Free 
7680         state.children in all cases.  (#313862, Kjartan Maraas)
7681
7682 2005-08-28  Matthias Clasen  <mclasen@redhat.com>
7683
7684         * po/POTFILES.in, po-properties/POTFILES.in:
7685         Add gdk/gdkscreen.c
7686
7687 2005-08-27  Matthias Clasen  <mclasen@redhat.com>
7688
7689         * gtk/gtkuimanager.c (gtk_ui_manager_class_init): Fix the default
7690         value of the ui property. (#314532, Yong Wang)
7691
7692         * gdk/x11/gdkproperty-x11.c (gdk_property_get): Don't warn
7693         when G_MAXLONG is passed as length.  
7694
7695 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
7696
7697         * gtk/updateiconcache.c: Add a separate --ignore-theme-index option
7698         to avoid overloading --force.  (JP Rosevaar)
7699
7700 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
7701
7702         * configure.in: Bump version to 2.9.0
7703
7704         * gdk/gdk.symbols: 
7705         * gdk/gdkscreen.h: 
7706         * gdk/gdkscreen.c: Make the GdkScreen font options api
7707         public, and add properties GdkScreen::font-options and
7708         GdkScreen::resolution.  (#314004)
7709
7710         * gdk/gdkpango.c:
7711         * gtk/gtksettings.c:
7712         * gtk/gtkwidget.c: Adjust all callers.
7713         
7714         * gdk/gdkintl.h: Simplify and use glib/gi18n-lib.h.
7715         * gdk/gdkpango.c: Include gdkintl.h, not gtkintl.h.
7716         * gdk/gdkscreen.c: Include gdkintl.h.
7717
7718         * gtk/gtkicontheme.c (theme_lookup_icon): Avoid an uninitialized
7719         variable warning, pointed out by Colin Walters. (#314585)
7720
7721 2005-08-26  Tor Lillqvist  <tml@novell.com>
7722
7723         * gtk/gtkfilesystemwin32.c: Remove some ifdeffed out debugging
7724         printouts.
7725         (gtk_file_system_win32_parse): Don't mishandle UNC paths. (#314519)
7726
7727 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
7728
7729         * gtk/gtkcalendar.c (gtk_calendar_init): Fix the calculation
7730         of week_start.  (#314473, JP Rosevaar)
7731
7732 2005-08-25  Thomas Fitzsimmons  <fitzsim@redhat.com>
7733
7734         * gtk/gtkfilesystemmodel.c (idle_finished_loading_cb): Acquire GDK
7735         lock.  (#314533, Thomas Fitzsimmons)
7736
7737 2005-08-25  Matthias Clasen  <mclasen@redhat.com>
7738
7739         * gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): Handle
7740         NULL gracefully.  (#314523, Ed Catmur)
7741
7742 2005-08-25  Owen Taylor  <otaylor@redhat.com>
7743
7744         * gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme): 
7745         Handle theme == NULL.
7746
7747 2005-08-25  Matthias Clasen  <mclasen@redhat.com>
7748
7749         * gtk/gtkmenutoolbutton.c (menu_position_func): Take widget
7750         y offset into account when positioning the popup.  (#314470,
7751         Christian Persch)
7752
7753 2005-08-25  Owen Taylor  <otaylor@redhat.com>
7754
7755         * gdk/gdkscreen.c (gdk_screen_get_type): Use gdk_screen_init
7756         as instance_init, not base_init! (#314452, Fix from Frederic
7757         Crozat, reported by Joe Marcus Clarke). Trivial cleanup: use -1.
7758         rather than 1 for a negative flag value.
7759
7760 2005-08-24  Owen Taylor  <otaylor@redhat.com>
7761
7762         * gdk/gdkpango.c (draw_error_underline): Add a note about
7763         cut-and-paste between here and Pango.
7764
7765 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
7766
7767         * === Released 2.8.2 ===
7768
7769         * gtk/gtkclipboard.c (request_image_received_func): Use the correct
7770         callback for image/gif, and also try image/bmp.  (#314086,  Mark 
7771         Wielaard)
7772
7773         * gtk/gtkfilesystemunix.c (gtk_file_system_unix_volume_render_icon): 
7774         Use gnome-dev-harddisk for volumes, not gnome-fs-blockdev.  (#314382,
7775         Sebastien Bacher)
7776         
7777         * NEWS: Updates
7778
7779         * gtk/gtksettings.c (gtk_settings_get_for_screen): Make sure font
7780         and cursor settings get propagated down to the screen initially.
7781         Pointed out by Frederic Crozat.
7782
7783         * gtk/gtkicontheme.c (ensure_valid_themes): Don't try to send a client
7784         message if the screen is NULL. Noticed by Kjartan Maraas.
7785
7786 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
7787
7788         * Bump version
7789
7790         * === Released 2.8.1 ===
7791
7792         * NEWS: Updates
7793         
7794 2005-08-24  Matthias Clasen  <mclasen@redhat.com>
7795
7796         * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_visible): Protect
7797         against lazy filterers which return values other than TRUE or
7798         FALSE from their visible func.  (#314335)
7799
7800 2005-08-23  Owen Taylor  <otaylor@redhat.com>
7801
7802         Fix for #314004, reported by Michael Reinsch:
7803
7804         * gdk/gdk.symbols:
7805         * gdk/gdkscreen.[ch]: Add gdk_screen_get/set_font_options_libgtk_only()
7806         Add gdk_screen_get/set_resolution_libgtk_only()
7807
7808         * gdk/gdkpango.c (gdk_pango_context_get_for_screen): Set
7809         the options for the screen on the newly created context.
7810
7811         * gtk/gtksettings.c (settings_update_font_options/dpi) gtkwidget.c: 
7812         Move font options and dpi code from gtkwidget.c to gtksettings.c, set
7813         the font options on the screen.
7814
7815         * gtk/gtkwidget.c (gtk_widget_update_pango_context): Just get
7816         the font options from the screen and set them on the context.
7817
7818 2005-08-23  Kristian Rietveld  <kris@gtk.org>
7819
7820         * gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_inserted): don't
7821         bother inserting new rows in a level with a zero refcount and
7822         immediately free the level. (Fixes #312350, reported by Markku Vire).
7823
7824 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
7825
7826         * gtk/updateiconcache.c: Complain when there is no index.theme file
7827         in the specified directory, unless --force is used. Also add an
7828         --index-only option to create caches without image data.
7829
7830         * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Fix a
7831         C99ism.  (#314262, Robert Jeff Mitchell)
7832         
7833 2005-08-22  Manish Singh  <yosh@gimp.org>
7834
7835         * gtk/gtkicontheme.h: add declaration for _gtk_icon_theme_check_reload.
7836
7837         * gtk/gtkwindow.c: remove declaration of gtk_window_read_rcfiles.
7838
7839 2005-08-22  Matthias Clasen  <mclasen@redhat.com>
7840
7841         * gtk/gtkwindow.c (gtk_window_client_event): 
7842         * gtk/gtkicontheme.c (ensure_valid_themes) 
7843         (_gtk_icon_theme_check_reload): Implement a clientmessage based
7844         scheme for makeing sure that all GTK+ applications notice if an
7845         icon theme has been updated. This should prevent multiple versions
7846         of an icon theme cache to be mapped in memory at the same time,
7847         which can cause excessive memory consumption.  (#313156, Chris 
7848         Lahey)
7849
7850 2005-08-22  Matthias Clasen  <mclasen@redhat.com>
7851
7852         * gtk/gtkicontheme.c (gtk_icon_theme_load_icon): Add a note
7853         regarding icon theme changes.
7854
7855         * gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): When returning
7856         pixbufs which are backed by the mmapped memory of an icon cache,
7857         increase the refcount of the icon cache, so that the memory is not
7858         munmapped away underneath the pixbuf upon icon theme changes.  
7859         (#314170, Kjartan Maraas)
7860
7861         * docs/tools/Makefile.am (LDADDS): Add GTK_DEP_LIBS, in order 
7862         to link against Xext.  (#314062)
7863
7864         * gtk/gtkhsv.c (paint_triangle): One more fix to prevent buffer
7865         overruns.  (#314081, Hans Breuer)
7866
7867 2005-08-20  Matthias Clasen  <mclasen@redhat.com>
7868
7869         * gtk/gtkentry.c (gtk_entry_get_layout): Clarify that the
7870         returned layout must not be modified.
7871
7872 Sat Aug 20 16:12:14 2005  Jonathan Blandford  <jrb@redhat.com>
7873
7874         * gtk/gtktreeview.c (gtk_tree_view_set_model): clear
7875         scroll_to_path if the model changes.
7876
7877         * gtk/gtkiconview.c: (gtk_icon_view_destroy),
7878         (gtk_icon_view_size_allocate), (gtk_icon_view_set_cursor),
7879         (gtk_icon_view_scroll_to_path): Handle scrolling to a path before
7880         we're realized, #312798
7881         (gtk_icon_view_set_model): clear scroll_to_path if the model
7882         changes.
7883
7884 2005-08-20  Matthias Clasen  <mclasen@redhat.com>
7885
7886         * gtk/gtkrange.c (gtk_range_adjustment_changed) 
7887         (gtk_range_adjustment_value_changed):  Don't queue a draw
7888         if the layout has not changed.  (#313991, Benjamin Berg)
7889
7890 2005-08-19  Matthias Clasen  <mclasen@redhat.com>
7891
7892         * gtk/gtktreeitem.c: Remove duplicate lines.  (#313344,
7893         Benoit Carpentier)
7894
7895         * modules/engines/ms-windows/msw_style.c (setup_system_styles): 
7896         Fix a typo. 
7897
7898         * gtk/gtkfilechooserbutton.c (change_icon_theme) 
7899         (model_add_special, model_add_special, model_add_volumes):
7900         Handle pixbuf being NULL without warnings. Also, don't
7901         leak pixbuf references when the icon theme is changed.
7902
7903         * gtk/gtkmain.c (gtk_get_event_widget): Don't access
7904         the user data on destroyed windows, since at best
7905         it can be a stale pointer.  (#313953, Robin Green)      
7906
7907 2005-08-19  Matthias Clasen  <mclasen@redhat.com>
7908
7909         * gtk/gtkhsv.c (paint_triangle): Avoid a buffer overrun.  
7910         (#313900, Sebastien Bacher)
7911
7912         * gtk/gtktreeview.c (gtk_tree_view_get_visible_range): Return
7913         FALSE if the tree is empty.  (#313891, Guillaume Cottenceau)
7914
7915         * gdk/x11/gdkdnd-x11.c (_gdk_drag_get_protocol_for_display) 
7916         (xdnd_read_actions, get_client_window_at_coords_recurse): 
7917         Free data returned from XGetWindowProperty. 
7918
7919         * gdk/x11/gdkevents-x11.c (fetch_net_wm_check_window) 
7920         Free data returned from XGetWindowProperty.  (313867, Kjartan
7921         Maraas)
7922         
7923         * gdk/x11/gdkdnd-x11.c (get_client_window_at_coords_recurse): Free
7924         children in all cases.  (#313862, Kjartan Maraas)
7925
7926         * gtk/gtkicontheme.c (theme_lookup_icon): Store GtkIconData structs 
7927         in the per-directory hash, even if they come from the icon cache. 
7928         We tried to avoid that before, but as a result leaked icon data
7929         structs.  (#313852, Kjartan Maraas)
7930
7931 2005-08-18  Matthias Clasen  <mclasen@redhat.com>
7932
7933         * gtk/gtkmenutoolbutton.c (gtk_menu_tool_button_destroy): Disconnect
7934         signal handlers on destroy, not on finalize.  (#313759, Brett Atoms)
7935
7936 2005-08-15  Owen Taylor  <otaylor@redhat.com>
7937
7938         * configure.in: Add -lXext to GDK_EXTRA_LIBS in absence of pkg-config
7939         files for x11/xext. (Jonas Bonn)
7940
7941 2005-08-15  Tor Lillqvist  <tml@novell.com>
7942
7943         * gtk/gtkicontheme.c (theme_lookup_icon): Put debugging printout
7944         inside GTK_NOTE.
7945
7946 2005-08-15  Owen Taylor  <otaylor@redhat.com>
7947
7948         * configure.in: Fix have_base_pc / have_base_x_pc typo.
7949
7950         * gdk/x11/gdkdrawable-x11.c gtk/gtksettings.c: Remove panoxft.h includes.
7951         (#313417, James Andrewartha)
7952
7953         * configure.in: Add fontconfig to X_PACKAGES, since we use it for
7954         FcNameConstant(). (More of #313417)
7955
7956 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
7957
7958         * gtk/gtkfilechooserdefault.c: When using gtk_dialog_run() for
7959         modal dialogs, make sure to inherit the window group from 
7960         the parent, since we don't inherit window groups across
7961         transient parents currently.  (#312918, Christian Persch)
7962
7963         * gtk/gtkmessagedialog.c (gtk_message_dialog_new): 
7964         * gtk/gtkdialog.c (gtk_dialog_run): Slight update to the docs. 
7965
7966         * gtk/gtkiconview.c (gtk_icon_view_select_path) 
7967         (gtk_icon_view_scroll_to_path): Handle paths of depth 0
7968         gracefully.  (#312796, Jonathan Blandford)
7969
7970         * tests/testtoolbar.c: Add some more tests for menu placement.
7971
7972         * gtk/gtkmenutoolbutton.c (menu_position_func): 
7973         * gtk/gtktoolbar.c (menu_position_func): Improve positioning
7974         of toolbutton menus and of the overflow menu.  (#312937, 
7975         #153870, Christian Persch, Paolo Borelli)
7976
7977 2005-08-15  Tor Lillqvist  <tml@novell.com>
7978
7979         * gtk/updateiconcache.c: Use g_path_get_dirname() instead of
7980         the nonportable <libgen.h> and dirname().
7981
7982 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
7983
7984         * gtk/gtksizegroup.c: Use object data to mark widgets and
7985         groups as visited, so that we avoid constant extra list
7986         traversals. Also allocate quarks in class_init.  (#311618,
7987         Michael Natterer)
7988
7989         * gtk/gtkicontheme.c (gtk_icon_theme_lookup_icon): Correct the 
7990         download location for the hicolor icon theme. (#313475, Olexiy 
7991         Avramchenko)
7992
7993         * gtk/gtkicontheme.c: Remove debug spew. 
7994
7995 2005-08-15  Owen Taylor  <otaylor@redhat.com>
7996
7997         * gdk/linux-fb/gdkwindow-fb.c (gdk_window_set_back_pixmap): 
7998         * gdk/win32/gdkwindow-win32.c (gdk_window_set_back_pixmap): 
7999         * gdk/x11/gdkwindow-x11.c (gdk_window_set_back_pixmap):
8000         Handle pixmap == NULL when checking for a colormap.
8001         (Allin Cottrell).
8002
8003 2005-08-14  Matthias Clasen  <mclasen@redhat.com>
8004
8005         * gtk/updateiconcache.c: Store only one copy of the pixel data
8006         for symlinked icons. To achieve this, maintain a hashtable 
8007         mapping pathnames to pixel data, and share the pixel data for
8008         all symlinks resolving to the same pathname. When writing out
8009         the image data, write out the pixel data only the first time
8010         it is met, and store the offset pointing to the first copy
8011         for use in all later cases.
8012         This reduces the size of the Bluecurve icon cache from 40
8013         to 13MB. (#312972)
8014