]> Pileus Git - ~andy/gtk/blobdiff - ChangeLog
Some updates for the drawing section. (#161414, Robert Ancell)
[~andy/gtk] / ChangeLog
index f700676de77df9c96402613bbb90360a69ebdb8f..b596c901f5a6a89f243521bcff2f1cd11afcc38b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,154 @@
+2005-01-03  Matthias Clasen  <mclasen@redhat.com>
+
+       * docs/tutorial/gtk-tut.sgml: Some updates for the drawing
+       section.  (#161414, Robert Ancell)
+
+       * docs/tutorial/gtk-tut.sgml: Make it build.
+
+       * gtk/gtkdialog.c (gtk_dialog_run): Some clarification
+       regarding modality.  (#112903, Dave Bordoley)
+
+       * gtk/gtkfixed.c (gtk_fixed_set_has_window): 
+       Add a little motivation.  (#145556, Tommi Komulainen)
+
+       * docs/tutorial/gtk-tut.sgml: Clarify section on 
+       g_signal_connect_swapped.   (#120543, David Bourguignon)
+
+       Make gtk_icon_theme_load_icon() work independent of
+       icon factory initialization.  (#162791, Tristan Van Berkom)
+       
+       * gtk/gtkiconfactory.[hc]: Rename ensure_default_icons to
+       _gtk_icon_factory_ensure_default_icons, and make it non-static.
+
+       * gtk/gtkicontheme.c (find_builtin_icon): ..and call it here.
+
+2005-01-02  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_remove_shortcut_folder): 
+       Don't add a shortcut here.  (#162752, Tor Lillqvist)
+
+2005-01-02  Tor Lillqvist  <tml@iki.fi>
+
+       * gtk/Makefile.am (libgtk_target_ldflags): Add -lole32, needed for
+       CoTaskMemFree in get_special_folder() below.
+
+       * gtk/gtkfilesystem.h: Implement case-insensitive path compare on
+       Win32 using _gtk_file_system_win32_path_compare().
+
+       * gtk/gtk.symbols: Add _gtk_file_system_win32_path_compare.
+
+       * gtk/gtkfilechooserbutton.c (model_add_special)
+       * gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Use
+       _gtk_file_system_win32_get_desktop() to get correct Desktop folder
+       on Win32. (#144003)
+
+       * gtk/gtkfilesystemwin32.c: Remove unnecessary includes. Do
+       consider all drives "mounted", including floppies. Trying to
+       inspect the contents of a nonexistent floppy will cause errors
+       later that are handled normally, no need to avoid them
+       completely. Keep the drive type in the GtkFileSystemVolume.
+       Support UNC paths. (#161797, #137874) Fix error message
+       capitalizations as in gtkfilesystemunix.c.
+
+       (gtk_file_system_win32_init): Start one timeout per
+       GtkFileSystemWin32.
+
+       (gtk_file_system_win32_finalize): Remove the timeout.
+
+       (get_special_folder): Copied from GLib.
+
+       (_gtk_file_system_win32_get_desktop): New function, uses
+       get_special_folder().
+
+       (gtk_file_system_win32_list_volumes): Don't start a timeout at
+       each call to this function. Don't assume A: and B: are floppies.
+
+       (gtk_file_system_win32_get_volume_for_path): Don't assume all
+       volumes are drive roots, i.e. support share roots of UNC paths
+       (\\server\share).
+
+       (gtk_file_system_win32_get_folder): Don't assume errno is set
+       after g_file_test() returns FALSE. It isn't on Win32 (and even on
+       Unix I don't think one should assume anything about errno after
+       g_file_test()).
+
+       (gtk_file_system_win32_volume_get_is_mounted): Always return TRUE.
+
+       (gtk_file_system_win32_volume_get_display_name): Don't call
+       GetVolumeInformation() on drives A: or B: if they are removable,
+       as they might then be floppies, causing an unnecessary
+       delay. (#157820)
+
+       (gtk_file_system_win32_volume_render_icon): Use network icon for
+       unrecognized drive types.
+
+       (canonicalize_filename, gtk_file_system_win32_parse): Don't get
+       confused by UNC paths.
+
+       (bookmarks_serialize): Use _gtk_file_system_win32_path_compare()
+       for case-insensitive UTF-8 path comparison.
+
+       (extract_icon): Use SHGetFileInfo() which is faster than
+       ExtractAssociatedIcon(). Icon extraction is still slow, though,
+       needs work.
+
+       (win32_pseudo_mime_lookup): Don't use the same icon for all
+       shortcuts or executables. Cache only other file type icons.
+
+       (gtk_file_system_win32_render_icon): Use network stock icon for
+       remote drives and UNC server share roots. Compare home directory
+       case-insensitively. Do lookup icons also for executable files,
+       after all, it's these files that can have individual icons in the
+       first place. Yes, it can be slow. Needs work.
+
+       (filename_is_drive_root): Require also the slash after the colon.
+
+       (filename_is_server_share): New function.
+
+       (_gtk_file_system_win32_path_compare): New function, does
+       case-folded UTF-8 comparison.
+
+       * gtk/gtkfilesystemwin32.h: Declare
+       _gtk_file_system_win32_path_compare().
+
+2005-01-01  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkbutton.c (gtk_button_set_image): Allow unsetting the
+       custom image by passing NULL.
+       (gtk_button_init): Initialize image_is_stock to TRUE, fixing
+       a problem with changing stock labels.  (#162273, Marcin 
+       Krzyzanowski)
+
+2005-01-01  Tor Lillqvist  <tml@iki.fi>
+
+       * gtk/gtkmodules.c (get_module_path)
+       * gtk/gtkrc.c (gtk_rc_make_default_dir, gtk_rc_get_im_module_file,
+       gtk_rc_get_theme_dir, gtk_rc_add_initial_default_files): With
+       g_getenv() now returning UTF-8 on Win32, no need to call
+       g_locale_to_utf8().
+
+2004-12-31  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkkeyhash.c (_gtk_key_hash_lookup_keyval) 
+       (_gtk_key_hash_lookup): Don't sort a list of values as if
+       it was a list of entries. This fixes crashes during mnemonic
+       activation in the presence of multiple keymaps. (#162488, 
+       Christian Persch)
+
 2004-12-30  Matthias Clasen  <mclasen@redhat.com>
 
+       * gtk/gtkcombobox.c (gtk_combo_box_button_state_changed): Fix
+       state propagation when making an insensitive combo box sensitive
+       again.  (#162524, Carlos Garnacho Parro)
+
+       * gtk/gtkfilechooserdefault.c: Use secondary text for error 
+       dialogs.
+
+       * gtk/gtkfilesystemunix.c: Clean up some cases of errno handling
+       (#162496, noted by Tor Lillqvist), and use g_filename_display_name()
+       for error messages. Also mark some error messages for translation,
+       fix capitalization of error messages.
+
        * gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property): 
        Use g_value_get_boolean() for ellipsize_set.  (#162447, 
        Brian Tarricone)