]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog
Merged the federico-filename-entry branch, to fix bug #136541. Combined
[~andy/gtk] / ChangeLog
index b8138a234590d2797c83ef8d2e003cc9baf94936..1a6e2421b16de164f49e0fa59758114357e99640 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,586 @@
+2006-05-03  Federico Mena Quintero  <federico@novell.com>
+
+       Merged the federico-filename-entry branch, to fix bug #136541.
+       Combined ChangeLogs:
+
+       2006-04-17  Federico Mena Quintero  <federico@novell.com>
+
+       * gtk/gtkfilechooserdefault.c (pending_select_paths_process):
+       Oops, we *do* need to check that we are in OPEN mode before
+       selecting the first row in the file list.  See
+       https://bugzilla.novell.com/show_bug.cgi?id=166906
+       (gtk_file_chooser_default_get_paths): If we are in the case for
+       the file list, and the list has no selected rows, jump to the case
+       for the filename entry.  This is so that
+
+              1. The user types a filename in the SAVE filename entry
+                 ("foo.txt").
+
+              2. He then double-clicks on a folder ("bar") in the file
+                 list.
+
+       will yield the expected "bar/foo.txt" selection.
+
+       2006-03-29  Federico Mena Quintero  <federico@novell.com>
+
+       * gtk/gtkpathbar.c (gtk_path_bar_init): Reduce the inter-button
+       spacing to 0.
+
+       * gtk/gtkfilechooserdefault.c (browse_widgets_create): Make the
+       location label bold.
+
+       2006-03-29  Federico Mena Quintero  <federico@novell.com>
+
+       * gtk/gtkfilechooserdefault.c (location_mode_set): Just change the
+       location_mode field if we are in SAVE/CREATE_FOLDER modes.
+       (gtk_file_chooser_default_get_paths): Get the path based on the
+       currently focused widget, or the last-focused widget.  This is
+       what we should have been doing in the beginning, but it worked out
+       fine because we didn't have the possibility of a filename entry in
+       OPEN mode.
+       (gtk_file_chooser_default_should_respond): Handle the case where
+       the last focused widget is the location_entry.
+
+       2006-03-28  Federico Mena Quintero  <federico@novell.com>
+
+       * gtk/gtkfilechoosersettings.[ch]: New files with a simple
+       framework for saving/loading settings from the file chooser in
+       $XDG_CONFIG_HOME/gtk-2.0/gtkfilechooser.
+
+       * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_unmap):
+       Save the current settings.
+       (settings_save): New helper function.  We save the location_mode
+       and show_hidden flags.
+       (gtk_file_chooser_default_map): Load the settings.
+       (settings_load): New helper function.
+
+       * gtk/gtkfilechooserentry.c
+       (_gtk_file_chooser_entry_set_file_part): Oops, don't modify
+       in_change.  Our handlers are what set the file_part, so they
+       *must* be run when we modify the text.
+
+       2006-03-27  Federico Mena Quintero  <federico@novell.com>
+
+       * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserDefault):
+       Removed the save_file_name_entry.  We'll make this be the same as
+       the location_entry widget.
+       (struct _GtkFileChooserDefault): Leave only location_button,
+       location_entry_box, location_label, location_entry.  We'll use a
+       single toggle button for the location entry, which will appear
+       below the path bar.
+       (struct _GtkFileChooserDefault): Added a
+       processing_pending_selections flag.
+
+       * gtk/gtkfilechooserdefault.c (save_widgets_create): Destroy the
+       old location_entry if necessary, and hide the location toggle
+       widgets.
+       (update_chooser_entry): In multiple selection mode, just clear the
+       location_entry.
+       (check_save_entry): Allow running in OPEN or SELECT_FOLDER modes
+       if we are in LOCATION_MODE_FILENAME_ENTRY.
+       (gtk_file_chooser_default_should_respond): Switch to a folder if
+       the location_entry contains a folder name in OPEN and SAVE mode,
+       not just SAVE mode.  If the entry doesn't contain a folder name,
+       but is otherwise well-formed, and we are in OPEN mode, return that
+       we should respond with that filename.
+       (gtk_file_chooser_default_initial_focus): Focus the location_entry
+       if appropriate.
+       (browse_widgets_create): Create the location_entry_box and the
+       location_label here.
+       (update_appearance): Call location_mode_set() when switching back
+       to OPEN/SELECT_FOLDER mode.  Hide the location_button when
+       switching to SAVE/CREATE_FOLDER mode.
+       (pending_select_paths_process): Turn the
+       processing_pending_selections flag on and off around changes to
+       the current selection.  Don't special-case OPEN mode anymore,
+       since the new flag will take care of things in
+       update_chooser_entry().
+       (update_chooser_entry): Don't do anything if
+       processing_pending_selections is TRUE.  This keeps the entry from
+       being polluted when changing folders.
+       (location_popup_handler): In OPEN/SELECT_FOLDER modes, toggle
+       between the path bar and the entry.  In SAVE/CREATE_FOLDER modes, simply focus the
+       location_entry.
+       (update_from_entry): Removed.
+       (location_entry_create): Removed.
+       (open_location_cb): Removed.
+       (file_list_build_popup_menu): Don't add an "Open _Location" menu item.
+       (location_entry_set_initial_text): Don't do anything if
+       current_folder is NULL.
+
+       * gtk/gtkfilechooserentry.c
+       (_gtk_file_chooser_entry_set_file_part): Turn in_change on and off
+       around the call to gtk_entry_set_text().  This makes completion
+       not happen when the caller has explicitly set a name.
+
+       2006-03-24  Federico Mena Quintero  <federico@novell.com>
+
+       * gtk/gtkfilechooserprivate.h (struct _GtkFileChooserDefault):
+       Added fields location_mode_box, location_pathbar_radio,
+       location_filename_radio, location_widget_box, location_label,
+       location_entry.  The radio buttons will switch between the pathbar
+       and the location entry; the other boxes are for layout purposes.
+       (enum LocationMode): New enum.
+       (struct _GtkFileChooserDefault): Added a location_mode field.
+
+       * gtk/gtkfilechooserdefault.c (browse_widgets_create): Create the
+       location radio buttons to switch between the pathbar and the
+       location entry.  Pack the browse_path_bar in the new
+       location_widget_box instead of a generic hbox.
+       (location_buttons_create): New function.
+       (gtk_file_chooser_default_init): Initialize impl->location_mode.
+       (location_switch_to_path_bar): New function.
+       (location_switch_to_filename_entry): New function.
+
+       * gtk/gtkfilechooserbutton.c (model_add_special): The display_name
+       should not be const.
+
+2006-05-03  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkprintunixdialog.c: Replace the xpm collate icons
+       by cairo drawing that respects themes.
+
+       * gdk/quartz/Makefile.am (libgdk_quartz_la_SOURCES): Add
+       missing files.  (#340533, Ludovic Rousseau)
+
+       * gtk/gtkprintunixdialog.c (draw_page_cb): Don't leak the
+       cairo context here.  (#340522, Christian Persch)
+
+       * gtk/gtkprintoperation-unix.c (unix_finish_send): Don't
+       use gtk_dialog_run for the error dialog, and improve the
+       dialog in other ways.  (#340510, Christian Persch)
+
+       * gtk/gtkpagesetupunixdialog.c: Beautify the custom
+       paper size dialog.  (#339590, patch by Christian Persch)
+       
+       * gtk/gtkaccessible.c:
+       * gtk/gtkclipboard.c:
+       * gtk/gtkfilefilter.c:
+       * gtk/gtkimmodule.c:
+       * gtk/gtkmenubar.c: More G_DEFINE_TYPE conversion.
+
+       * gtk/gtkwidget.c: Make GtkWidget abstract again.
+
+2006-05-02  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/*.c: Use G_DEFINE_TYPE and g_type_register_static_simple()
+       where applicable, for ~5000 lines of code reduction. This also
+       reduces the size of the data section by ~9k. The overall library
+       sizes shrinks a bit less, since the text section gets a bit
+       larger.
+
+2006-05-02  Kristian Rietveld  <kris@imendio.com>
+
+       * gtk/gtktreeview.c (gtk_tree_view_row_inserted): set tmpnode to
+       the return value of the _gtk_rbtree_insert* functions, since that
+       is the node we really want to check for visibilty.
+
+2006-05-02  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkprinter.[hc]: Don't use virtual as a parameter name.
+       (#340394, Christian Persch)
+
+2006-05-02  Christian Persch  <chpe@cvs.gnome.org>
+
+       * gtk/gtkpagesetupunixdialog.c:
+       * gtk/gtkprintcontext.c: 
+       * gtk/gtkprinter.c:
+       * gtk/gtkprinteroptionwidget.c:
+       * gtk/gtkprintjob.c:
+       * gtk/gtkprintoperation-unix.c:
+       * gtk/gtkprintoperation.c:
+       * gtk/gtkprintunixdialog.c: Use a priv variable when accessing priv
+         multiple times in the same function. Bug #340288.
+
+2006-05-02  Michael Natterer  <mitch@imendio.com>
+
+       * gtk/gtklabel.c (gtk_label_set_line_wrap): added note about the
+       inablity to do height-for-width text layout and suggest to use
+       gtk_widget_set_size_request() for getting a label that wraps at
+       some specific position.
+
+2006-05-02  Kristian Rietveld  <kris@imendio.com>
+
+       * ChangeLog.gtk-async-file-chooser: added ChangeLog entries from
+       the kris-async-branch.
+
+       * Makefile.am: updated EXTRA_DIST
+
+2006-05-02  Alexander Larsson  <alexl@redhat.com>
+
+       * ChangeLog.gtk-printing: 
+       * Makefile.am (EXTRA_DIST):
+       Add ChangeLog.gtk-printing
+
+2006-05-01  Matthias Clasen  <mclasen@localhost.localdomain>
+
+       * NEWS: Updates
+
+2006-05-02  Kristian Rietveld  <kris@imendio.com>
+
+
+       * configure.in: Up ABI version to 2.10.0 (by Matthias' request).
+
+2006-05-01  Kristian Rietveld  <kris@imendio.com>
+
+       Merge of the GTK+ asynchronous file chooser branch.  Please see
+       the kris-asynch-branch for more detailed ChangeLog entries.
+
+       * configure.in: increase binary version to 2.9.0.
+
+       * gtk/gtk.symbols:
+       * gtk/gtkfilechooser.c:
+       * gtk/gtkfilechooserbutton.c:
+       * gtk/gtkfilechooserdefault.c:
+       * gtk/gtkfilechooserdialog.c:
+       * gtk/gtkfilechooserembed.c:
+       * gtk/gtkfilechooserembed.h:
+       * gtk/gtkfilechooserentry.c:
+       * gtk/gtkfilechooserentry.h:
+       * gtk/gtkfilechooserprivate.h:
+       * gtk/gtkfilesystem.c:
+       * gtk/gtkfilesystem.h:
+       * gtk/gtkfilesystemmodel.c:
+       * gtk/gtkfilesystemmodel.h:
+       * gtk/gtkfilesystemunix.c:
+       * gtk/gtkpathbar.c:
+       * gtk/gtkpathbar.h:
+       Merge from kris-async-branch.
+
+2006-05-01  Matthias Clasen  <mclasen@redhat.com>
+
+       * NEWS: Updates
+
+2006-04-30  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtktreemodel.c (gtk_tree_model_base_init): Document
+       GtkTreeModel signals.
+
+2006-04-19  Michael Emmel  <mike.emmel@gmail.com>
+
+       * gdk/directfb/gdkdrawable-directfb.c: removed all subtracting one on
+       clipping
+
+2006-04-30  Kristian Rietveld  <kris@imendio.com>
+
+       Fix for #340200, spotted by Torsten Schoenfeld.
+
+       * gtk/gtktreeview.c (gtk_tree_view_get_cell_area): fix up logic
+       calculating the level indentation,
+       (gtk_tree_view_start_editing): remove code calculating the
+       level indentation, since _get_cell_area() takes care of this for us.
+
+2006-04-30  Matthias Clasen  <mclasen@redhat.com>
+
+       Fix problems with setting symbolic colors from rc files.
+       (#338345, Benjamin Berg)
+       
+       * gtk/gtkrc.c (gtk_rc_settings_changed, gtk_rc_font_name_changed) 
+       (gtk_rc_color_hash_changed, gtk_rc_reparse_all_for_settings): Don't
+       freeze notification for settings changes while parsing; instead
+       manually avoid recursion, and update the color hashes.
+
+2006-04-30  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtksettings.c (gtk_settings_class_init): Change the default
+       value of the gtk-color-scheme setting to "".
+
+       * gtk/gtkprinteroption.c: 
+       * gtk/gtkprinteroptionwidget.c: 
+       * gtk/gtkprintunixdialog.c: Improve the print dialog layout,
+       mark some more strings for translation.  (#340139, Christian Persch)
+
+       * gtk/gtkstatusicon.c (gtk_status_icon_class_init): Fix the definition
+       of the ::size-changed signal, and improve its documentation.
+       (#340112, Christian Persch)
+
+2006-04-29  Behdad Esfahbod  <behdad@gnome.org>
+
+       * gtk/gtkwidget.c (gtk_widget_create_pango_layout)
+       (gtk_widget_get/create_pango_context): Change colormap to font map in
+       docs. (#340093)
+
+2006-04-29  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtk.symbols: 
+       * gtk/gtkstatusicon.h: 
+       * gtk/gtkstatusicon.c (gtk_status_icon_position_menu): Add a menu
+       position function for use with popups on status icons.  (#334573, 
+       Christian Persch)
+
+       * gtk/gtkwidget.c (gtk_widget_is_composited): Fix a C99ism.  (#340055,
+       Kazuki Iwamoto)
+
+2006-04-28  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkcellrenderertext.c (get_size): Use _static variants when
+       copying and merging short-lived Pango layouts. (#340033, Morten Welinder)
+
+2006-04-28  Behdad Esfahbod  <behdad@gnome.org>
+
+       * gtk/gtkwidget.c (gtk_widget_create_pango_layout): Fix typo in
+       docs. (#340063)
+
+2006-04-28  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtktreeview.c (gtk_tree_view_drag_begin): Don't force
+       the standard DND icon if the user has a custom DND source.  
+       (#339522, Joe Wreschnig)
+
+2006-04-28  Michael Natterer  <mitch@imendio.com>
+
+       * gtk/gtktextbuffer.c (create_clipboard_contents_buffer): keep a
+       reference to the source buffer while the clipboard contents buffer
+       exists, because it is needed for serializing the contents buffer.
+       Makes copying from the contents buffer possible even after the
+       resp. text view is destroyed (for example when there is a
+       clipboard manager running on app exit) (bug #339195).
+
+2006-04-27  Behdad Esfahbod  <behdad@gnome.org>
+
+       * gdk/gdkpango.c (gdk_pango_renderer_draw_glyphs): Cast to double
+       before dividing by PANGO_SCALE. (#334582)
+
+2006-04-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkentry.c (popup_position_func): Improve positioning
+       of the menu when popped up by keynav.  (#334987, Christian
+       Persch)
+
+       * gtk/gtkdnd.c (gtk_drag_set_icon_window): Handle the case
+       of being called after the drag is cancelled.  (#339224, 
+       Benjamin Otte)
+
+       * gdk/x11/gdkscreen-x11.c (_gdk_x11_screen_process_owner_change):
+       Use XFixes only if it is available.  (#339839, Marko Anastasov)
+
+2006-04-26  Federico Mena Quintero  <federico@novell.com>
+
+       * gtk/gtkdialog.c (gtk_dialog_close): Don't make this conditional
+       on having a GTK_RESPONSE_CANCEL button -> end the idiocy.  Fixes
+       bug #101293.
+
+2006-04-26  Kristian Rietveld  <kris@imendio.com>
+
+       * gtk/gtktreeview.c (node_is_visible): new function,
+       (validate_visible_area): when a node is validated, only queue a
+       redraw for that node, not for the entire widget (a redraw for the
+       entire widget is only needed when the sizes change, and
+       _queue_resize() will take care of that),
+       (do_validate_rows): do not queue a redraw, redraws are only needed
+       for changes in the visible area and validate_visible_area() takes
+       care of that,
+       (gtk_tree_view_row_inserted): for fixed height mode, only queue
+       a resize and redraw if the node is visible, else no redraw is needed.
+
+2006-04-26  Kristian Rietveld  <kris@imendio.com>
+
+       If this new "row-ending-details" property is turned on, more
+       detailed "details" will be passed to the theme engine for drawing
+       the background, drop indicator and focus rectangle.  Requirement is
+       that the theme engine supports these details. (#333760).
+
+       * gtk/gtktreeview.c (gtk_tree_view_class_init): add row-ending-details
+       style property,
+       (gtk_tree_view_bin_expose): pass more detailed detail to
+       gtk_paint_flat_box() if the property is turned on,
+       (gtk_tree_view_bin_expose): likewise for the drop indicator,
+       (gtk_tree_view_bin_expose): likewise for the focus rectangle.
+
+2006-04-26  Kristian Rietveld  <kris@imendio.com>
+
+       New "show-expanders" and "level-indentation" properties, which can
+       be used for customizing the tree view.  (For example to do
+       grouping as demonstrated in the test application).
+       Discussion in #80869.
+
+       * gtk/gtktreeprivate.h: add level_indentation field.
+
+       * gtk/gtktreeview.c (gtk_tree_view_class_init),
+       (gtk_tree_view_init), (gtk_tree_view_set_property),
+       (gtk_tree_view_get_property): add the properties to the object,
+       (gtk_tree_view_button_press), (do_prelight),
+       (gtk_tree_view_bin_expose), (validate_row),
+       (gtk_tree_view_discover_dirty_iter), (gtk_tree_view_get_cell_area),
+       (gtk_tree_view_create_row_drag_icon): take the new properties
+       into account,
+       (gtk_tree_view_start_editing): fix cell placement code.
+
+       * tests/testgrouping.c: new test application, showing how to
+       implement grouping.
+
+       * tests/Makefile.am: updated.
+
+2006-04-25  Matthias Clasen  <mclasen@redhat.com>
+
+       * gdk/gdk.symbols: Add gdk_screen_is_composited
+
+       * gtk/gtkprintjob.c (gtk_print_job_set_source_file): Add docs.
+
+       * gtk/gtkprintoperation.c: Add docs.
+
+Tue Apr 25 10:25:28 2006  Søren Sandmann  <sandmann@redhat.com>
+
+       * tests/testgtk.c (create_alpha_window): Create 'composited' label.
+
+       * tests/testgtk.c (on_composited_changed): New function, change
+       the label to say whether the screen is composited or not.
+
+       * gtk/gtkwindow.c (gtk_window_on_composited_changed): When
+       composited status change, invalidate the window and propagate the signal;.
+
+       * gtk/gtkwindow.c (gtk_window_map): Set the appropriate type hint
+       if reset_type_hint is TRUE.
+
+       * gtk/gtkwindow.c (gtk_window_set_type_hint): If hint is one of
+       the old hints, store a shadow copy in the public window->type_hint
+       bitfield, otherwise set this field to normal. Set the private
+       field to the type hint.
+
+       * gtk/gtkwindow.c (gtk_window_init): Initialize priv->type_hint. 
+
+       * gtk/gtkwindow.c (struct _GtkWindowPrivate): New field
+       "reset_type_hint" indicating whether the type hint needs to be
+       reset. New field type_hint containing a GdkWindowTypeHint.
+
+       * gtk/gtkwidget.c (propagate_composited_changed): New function to
+       propagate changes in composited status.
+       (gtk_widget_class_init): Add composited_changed signal.
+       
+       * gtk/gtkwidget.h (struct _GtkWidgetClass): New signal composited-changed.
+
+       * gtk/gtkwidget.c (gtk_widget_is_composited): New function.
+
+       * gtk/gtktooltips.c (gtk_tooltips_draw_tips): Set transient for.
+
+       * gtk/gtktooltips.c (gtk_tooltips_force_window): Set the type hint
+
+       * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Compute whether
+       the item belongs to a menubar. Set the type_hint appropriately
+       depending on the outcome.
+
+       * gtk/gtkmenu.c (gtk_menu_position): Set the default type hint here.
+
+       * gtk/gtkmenu.c (gtk_menu_attach_to_widget): connect to hierarchy
+       changed on the attach widget.
+
+       * gtk/gtkmenu.c (attach_widget_hierarchy_changed): New function to
+       set the transient_for property for menus.
+
+       * gtk/gtkdnd.c (set_icon_stock_pixbuf): Set the appropriate type hint.
+
+       * gtk/gtkcombo.c (gtk_combo_popup_list): Make the popup window
+       transient for the toplevel.
+
+       * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Set
+       transient-for, for the popup window.
+
+       * gdk/x11/gdkwindow-x11.c (gdk_window_get_type_hint): Support for
+       new window types.
+
+       * gdk/x11/gdkwindow-x11.c (gdk_window_set_type_hint): Add support
+       for new window types.
+
+       * gdk/x11/gdkscreen-x11.c (_gdk_x11_screen_process_owner_change):
+       New function called whenever the compositing manager comes and goes.
+
+       * gdk/x11/gdkscreen-x11.c (gdk_screen_is_composited): New function.
+
+       * gdk/x11/gdkscreen-x11.c
+       (_gdk_x11_screen_request_cm_notification, make_cm_atom,
+       check_is_composited): New functions
+
+       * gdk/x11/gdkevents-x11.c (gdk_event_translate): Call
+       _gdk_x11_screen_process_owner_change when an
+       XFixesSelectionNotifyEvent is received.
+
+       * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Call
+       _gdk_x11_screen_request_cm_notification() on all screens.
+
+       * gdk/quartz/gdkscreen-quartz.c (gdk_screen_is_composited): Dummy
+       implementation. 
+
+       * gdk/gdkscreen.c (gdk_screen_class_init): New signal,
+       'composited-changed'.
+
+       * gdk/gdkwindow.h: Add new EWMH window types.
+
+       * gdk/win32/gdkscreen-win32.c (gdk_screen_is_composited) 
+
+2006-04-25  Matthias Clasen  <mclasen@redhat.com>
+       
+       * modules/printbackends/cups/gtkprintbackendcups.c: 
+       Add some more translatable PPD option names.
+
+2006-04-24  Matthias Clasen  <mclasen@redhat.com>
+
+       * po/POTFILES.in:
+       * po-properties/POTFILES.in: Updates
+
+       * gtk/paper_names.c: Declare PaperInfo here.
+
+       * gtk/gen-paper-names.c: Add a prefix to gettext msgids.
+
+       * gtk/paper_names_offsets.c: Regenerated.
+       
+       * gtk/gtkpapersize.c (gtk_paper_size_get_display_name):
+       Use g_strip_context() to strip the prefix.
+
+2006-04-24  Matthias Clasen  <mclasen@redhat.com>
+       
+       * gtk/gtkfontbutton.c: Small doc fixes.
+
+       * gtk/gtkprintunixdialog.h: 
+       * gtk/gtkpagesetupunixdialog.h: Fix includes (#338665)
+
+       * gtk/gtkprintsettings.h (GtkPageRange): Declare in a way grokked by gtk-doc.
+
+       * gdk/gdkregion-generic.c: Documentation fixes.
+
+       * gdk/directfb/gdkmain-directfb.c: Make the comment not look like
+       a doc comment.
+
+       * gtk/gtkprintunixdialog.c: Add docs.
+
+       * gtk/gtkstatusicon.c (gtk_status_icon_get_visible): Typo fix.
+
+2006-04-24  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtkprinter.c:
+       Don't ref the backend since the backend owns the printer.
+
+2006-04-24  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtkpagesetupunixdialog.c (update_combo_sensitivity_from_printers):
+       Remove spew.
+
+2006-04-24  Alexander Larsson  <alexl@redhat.com>
+
+       * gtk/gtkprintunixdialog.c (create_page_setup_page):
+       Even/Odd Pages -> Even/Odd Sheets
+
 2006-04-24  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtk.symbols:
+       * gtk/gtkprintoperation.c (gtk_print_operation_run_async): Refactor the
+       gtk_print_operation_run() code and add an _async version.
+
+       * gtk/gtkprintoperation-private.h:
+       * gtk/gtkprintoperation-unix.c
+       (_gtk_print_operation_platform_backend_run_dialog_async)
+       (gtk_print_run_page_setup_dialog_async): Variants of the run functions
+       which don't call gtk_dialog_run(), but only show the dialog and return,
+       and handle the response in a signal handler.
+
+       * gtk/gtkprintoperation-win32.c (gtk_print_run_page_setup_dialog_async) 
+       (_gtk_print_operation_platform_backend_run_dialog_async): Implement these 
+       by calling the sync versions.
+
+       * gtk/gtkprintoperation-unix.c: Cleanups.
+
+       * gtk/gtkpagesetupunixdialog.c (gtk_page_setup_unix_dialog_get_page_setup):
+       Remove redundant code.
+
        * gtk/Makefile.am: Install gtkprintjob.h as Unix-specific print API.
 
        * gtk/gtkprintoperation-unix.c (gtk_print_run_page_setup_dialog): 
 2006-04-21  Alexander Larsson  <alexl@redhat.com>
 
         Merge the gtk-printing branch.
-       For more detailed ChangeLog entries, see the branch.
+       For more detailed ChangeLog entries, see the ChangeLog.gtk-printing.
        
        * .cvsignore:
        * Makefile.am: