]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog
Removed leftover comments.
[~andy/gtk] / ChangeLog
index 879fde3496c501e04fb0e6ba2302c8e096e8220a..fe91723936c4b8f5ac65b6cb39160e12bed8fe6e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,274 @@
+2005-01-24  Federico Mena Quintero  <federico@ximian.com>
+
+       * gtk/gtkfilechooserdefault.c: Removed leftover comments.
+
+2005-01-24  Federico Mena Quintero  <federico@ximian.com>
+
+       Merged from gtk-2-6:
+
+       Fix #147785 and clean up the loading code:
+
+       * gtk/gtkfilechooserdefault.c (LoadState): Make the set of states
+       be EMPTY, PRELOAD, LOADING, FINISHED.
+       (gtk_file_chooser_default_init): Start in the LOAD_EMPTY state.
+       (struct _GtkFileChooserDefault): Added a pending_select_paths
+       field.
+       (load_remove_timer): Add the new states.
+       (load_setup_timer): Likewise.
+       (load_timeout_cb): Likewise.  Switch to the LOAD_LOADING state.
+       (browse_files_model_finished_loading_cb): Switch to the
+       LOAD_FINISHED state.
+       (enum PendingOp): Removed.
+       (struct _GtkFileChooserDefault): Removed the pending_op and
+       pending_select_path fields.
+       (pending_select_paths_free): New utility function.
+       (pending_select_paths_add): New utility function.
+       (gtk_file_chooser_default_finalize): Call
+       pending_select_paths_free().
+       (pending_op_queue): Removed.
+       (pending_op_process): Removed.
+       (pending_select_paths_process): New function.
+       (browse_files_model_finished_loading_cb): Call
+       pending_select_paths_process().
+       (center_selected_row_foreach_cb): Handle multiple selection by
+       only centering the first row.
+       (get_is_file_filtered): Constify.
+       (gtk_file_chooser_default_select_path): Queue into a list of paths
+       to select if we are not finished loading.
+       (show_and_select_paths): New utility function.
+       (up_folder_handler): Use pending_select_paths_add().
+       (gtk_file_chooser_default_should_respond): Do not call
+       pending_op_queue(); free the pending_selected_paths instead.
+       (gtk_file_chooser_default_initial_focus): Don't queue a pending
+       operation, and don't select the first row unconditionally --- this
+       will happen when the folder is done loading.
+       (shortcuts_row_activated_cb): Free the pending_select_paths.
+       (pending_select_paths_store_selection): New utility function.
+       (gtk_file_chooser_default_map): Call
+       pending_select_paths_store_selection() to save the selection
+       before reloading the folder.
+       (select_func): Umm?  Call gtk_tree_selection_select_iter().  Don't
+       move the cursor here; it will be done when processing the pending paths.
+
+       * tests/testfilechooser.c (main): Add a button to the command
+       window to unmap and remap the file chooser.
+
+2005-01-24  Matthias Clasen  <mclasen@redhat.com>
+
+       * docs/tutorial/gtk-tut.sgml:
+       * docs/tutorial/gtk_tut.sgml:
+       * docs/reference/gtk/tmpl/gtkliststore.sgml:
+       * gtk/gtkactiongroup.c:
+       * gtk/gtksizegroup.c:
+       * gtk/gtksizegroup.h:
+       * gtk/gtktogglebutton.c: Replace "effect" by "affect" where
+       appropriate.  (#165108, Dan Winship)
+
+2005-01-24  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkwidget.c (gtk_widget_class_init): Document 
+       GtkWidget::style-set.  (#164222, Alex Graveley)
+       
+2005-01-22  Matthias Clasen  <mclasen@redhat.com>
+
+       * gdk/gdkdisplay.h (gdk_display_add_client_message_filter_full): 
+       Remove the accidentally added prototype for this unimplemented 
+       function.  (#164893, Jeff Franks)
+
+       * gtk/gtktreeview.c (gtk_tree_view_leave_notify): Avoid spurious
+       drags.  (#164884)
+
+2005-01-23  Tor Lillqvist  <tml@novell.com>
+
+       * gdk/win32/gdkkeys-win32.c (update_keymap): Handle Greek tonos
+       dead accent key. (#164859, reported and fix verified by Daniel
+       Atallah.)
+
+       * gtk/gtkimcontextsimple.c (gtk_compose_seqs): Handle
+       GDK_Greek_accentdieresis (tonos and dialytika) combining with iota
+       and upsilon.
+
+       * gtk/gtkfilesystemwin32.c (gtk_file_system_win32_volume_get_display_name): 
+       Don't call GetVolumeInformation() for network drives. They might
+       be disconnected, and calling GetVolumeInformation() will then
+       cause long delays. (#164448, reported by Dave Neary.) It seems to
+       be very hard to reliably find out whether a network drive is
+       connected or not, so it's easier to just not try getting the
+       volume name for them. See the bug report for discussion.
+
+       Make volume name display formats translatable.
+
+       Fix for #163702, from Ivan Wong: 
+       
+       * gdk/win32/gdkprivate-win32.h 
+       * gdk/win32/gdkglobals-win32.c: New flag _ignore_destroy_clipboard.
+       
+       * gdk/win32/gdkevents-win32.c (gdk_event_translate): Handle
+       WM_DESTROYCLIPBOARD. Unless _ignore_destroy_clipboard, generate a
+       GDK_SELECTION_CLEAR event.
+
+       * gdk/win32/gdkselection-win32.c
+       (gdk_selection_owner_set_for_display): Set _ignore_destroy_clipboard
+       when emptying the clipboard ourselves.
+
+       (gdk_selection_send_notify_for_display): Remove the artifical
+       GDK_SELECTION_CLEAR event generation.
+
+2005-01-21  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkwidget.c (gtk_widget_get_accessible): More details
+       provided by Bill Haneman.
+
+2005-01-20  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkwidget.c (gtk_widget_get_accessible): Add docs.  (#164725,
+       George Kraft IV)
+
+       * gtk/gtkdialog.c (gtk_dialog_map): Don't loop forever
+       here, even if the only focusable widgets are labels.
+
+2005-01-20  Matthias Clasen  <mclasen@redhat.com>
+
+       Support tinting in GtkCellRendererPixbuf (#162903, Jorn Baayen):
+       
+       * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_class_init) 
+       Add a follow-state property which when TRUE causes the pixbuf
+       to be tinted according to state.
+
+       * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render): 
+       Use follow-state and colorize the pixbuf when appropriate.      
+       
+2005-01-20  Matthias Clasen  <mclasen@redhat.com>
+
+       Support wrapping in GtkCellRendererText  (#163608):
+       
+       * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): 
+       Add wrap-mode and wrap-width properties which cause a 
+       text cell to break to a specified width when set.
+
+       * gtk/gtkcellrenderertext.c (get_layout): Use wrap-mode
+       and wrap-width when they are set.
+
+2005-01-20  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkmodules.c (load_module): Don't reverse the order
+       of modules when putting them in gtk_modules.  (#162676, Dennis
+       Cranston, patch by Remus Draica)
+
+       * gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash 
+       if the tree is empty.  (#164669, Priit Laes)
+
+Wed Jan 19 18:57:02 2005  Manish Singh  <yosh@gimp.org>
+
+       * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Call
+       GDK_DISPLAY_XDISPLAY with a display, not a window. Clean up the
+       function a bit too.
+
+Wed Jan 19 17:17:31 2005  Manish Singh  <yosh@gimp.org>
+
+       * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): Squash
+       strict aliasing warning in _NET_VIRTUAL_ROOTS code.
+
+2005-01-19  Tor Lillqvist  <tml@novell.com>
+
+       * gdk/win32/gdkkeys-win32.c (update_keymap,
+       gdk_keymap_translate_keyboard_state): Handle keyboards with
+       ShiftLock (and not CapsLock) correctly. (#161814)
+
+2005-01-19  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond):
+       In save mode, don't return paths containing nonexisting 
+       directories.  (#162443, Jean Marie Favreau)
+
+       * gtk/gtkobject.c (gtk_object_add_arg_type): Use GLib limit 
+       macros to avoid sparse warnings. Pointed out by Kjartan Maraas.
+
+       * gdk/x11/gdkdisplay-x11.c: Precache the _NET_VIRTUAL_ROOTS
+       atom.
+
+       * gdk/x11/gdkwindow-x11.c (gdk_window_get_frame_extents): 
+       Support _NET_VIRTUAL_ROOTS.  (#163910, Carsten Haitzler)
+       
+       * gdk/gdk.symbols: 
+       * gdk/x11/gdkx.h: 
+       * gdk/x11/gdkdisplay-x11.c (gdk_x11_display_get_user_time): 
+       Add a function to obtain the last user interaction 
+       time.  (#163119, Elijah Newren)
+
+Tue Jan 18 13:56:09 2005  Manish Singh  <yosh@gimp.org>
+
+       * gtk/gtkfilechooserdefault.c (pending_op_queue): Actually assign
+       PENDING_OP_NONE.
+
+Tue Jan 18 13:46:46 2005  Manish Singh  <yosh@gimp.org>
+
+       * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids):
+       disambiguate nested if/else.
+
+2005-01-18  Federico Mena Quintero  <federico@ximian.com>
+
+       Merged from gtk-2-6:
+
+       * gtk/gtkfilechooserdefault.c (pending_op_queue): Don't queue an
+       operation to select the first file if we are in SAVE or
+       CREATE_FOLDER modes.  Executing that operation would overwrite the
+       contents of the save-name entry.
+
+2005-01-18  Matthias Clasen  <mclasen@redhat.com>
+
+       * gdk/gdkdisplay.h: 
+       * gdk/x11/gdkwindow-x11.c (gdk_display_warp_pointer): 
+       * gdk/win32/gdkwindow-win32.c (gdk_display_warp_pointer): Add
+       pointer warping to GDK.  (#160437)
+
+       * gtk/gtkcolorsel.c (key_press): Use gdk_display_warp_pointer.
+
+2005-01-18  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkstyle.c (gtk_default_draw_check) 
+       (gtk_default_draw_option, gtk_default_draw_handle): Add some
+       more NULL checks, patch by Michael Natterer.
+
+Tue Jan 18 10:55:47 2005  Søren Sandmann  <sandmann@redhat.com>
+
+       * gtk/gtkstyle.c (gtk_default_draw_handle): Check for NULL detail
+       and NULL widget.
+
+       * gtk/gtkstyle.c (gtk_default_draw_box): Check for NULL detail and
+       NULL widget.  (#164477, Michael Natterer)
+
+2005-01-18  Matthias Clasen  <mclasen@redhat.com>
+
+       Avoid X errors when running against servers which
+       implement XRender < 0.4.  (#164427, Albert Chin)
+       
+       * gdk/x11/gdkprivate-x11.h:
+       * gdk/x11/gdkdrawable-x11.c (_gdk_x11_have_render_with_trapezoids): 
+       New function to check for trapezoid support in XRender.
+       (gdk_x11_draw_trapezoids, _gdk_x11_drawable_draw_xtrapezoids): 
+       Use it here.
+       
+       * gdk/x11/gdkdisplay-x11.h (struct _GdkDisplayX11): Add a 
+       separate have_render_with_trapezoids field.
+
+       * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Initialize it.
+
+2005-01-17  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkiconview.c: Remove debug output. (#164376, Jens Finke)
+
+Mon Jan 17 16:44:36 2005  Jonathan Blandford  <jrb@redhat.com>
+
+       * docs/Makefile.am (EXTRA_DIST): add tree-column-sizing.png to
+       dist.
+
+2005-01-17  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserdefault.c (shortcuts_add_bookmarks): Save
+       and restore the selected row in the bookmark list and the
+       save folder combo.  (#164290)
+
 2005-01-16  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_new_with_backend):