diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-12-24 10:04:39 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-12-24 10:04:39 +0000 |
commit | ea4a1c0538dd05dafeed45b62b8d47ff9d8045ac (patch) | |
tree | b3cc48a3d0819f575a6066357a45c3673052cf43 /x11/gtk2/patches | |
parent | 4a176e9cc0e70749d76e0a1c948f1f67748df749 (diff) | |
download | pkgsrc-ea4a1c0538dd05dafeed45b62b8d47ff9d8045ac.tar.gz |
Update to 2.6.0:
Overview of Changes from GTK+ 2.4.x to GTK+ 2.6.0
=================================================
* New widgets
- GtkIconView
- GtkAboutDialog
- GtkCellView
- GtkFileChooserButton
- GtkMenuToolButton
* New cell renderers
- GtkCellRendererCombo
- GtkCellRendererProgress
* Changes in GtkFileChooser
- Many tweaks to keynav and other behaviour
* Changes in GtkTreeView
- Hover selection
- Hover expand
- Separators
- Insensitive rows
- Typeahead
* Changes in GtkComboBox
- Allow trees in combo boxes
- Hover selection
- Hover expand
- Separators
- Insensitive rows
- Scrolling
* Changes in GtkLabel
- Rotated text
- Ellipsisation
- Dnd from selectable labels
- Selectable labels in the focus chain
- Obey the Pango backspace-deletes-character attribute
* Changes in GtkTextView
- Rotated text
- Obey the Pango backspace-deletes-character attribute
* Changes in Clipboard/Selection/DND handling
- Selection ownerchip change notification
- API to handle text, image and file targets
- Support text/plain target
- Support clipboard persistency
- Support xdnd v5
- Reduce clipboard timeout to 30 seconds
* Theming
- Follow icon theme specification for directory locations
- Themed window icons
- Themed images in GtkImage
- Allow themes to displace focus rectangles on click
- Various new stock icons
* Window Manager interaction
- Support do-not-focus-on-map hint
- Support _NET_WM_USER_TIME
* gdk-pixbuf:
- License information for image loaders
- Disable loaders
- Simple rotation
- Make threadsafe
* Performance improvements
- Increase chunk size for incremental selection transfers
- Get rid of many PLT entries
- Icon theme caching
- Sync counter mechanism to speed up resizes
- Reimplement GtkListStore on top of a splay tree
- Fix algorithmic problems in GtkUIManager
* Win32-specific changes
- Integrate IME input method module
- Integrate ms-windows (Wimp) theme engine
* Other changes
- API for HIG-conform dialogs
- API for stock-like buttons
- New init API based on GOption
- Setting for alternative button order
- Setting for modules to load
- Integrate pixbuf theme engine
- Change notebook tabs with the scroll wheel
- Ellipsisation in GtkCellRendererText, GtkProgressBar, GtkStatusbar
- Clean up abi and enforce list of exported symbols
Diffstat (limited to 'x11/gtk2/patches')
-rw-r--r-- | x11/gtk2/patches/patch-ab | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/x11/gtk2/patches/patch-ab b/x11/gtk2/patches/patch-ab new file mode 100644 index 00000000000..38aaebec7f6 --- /dev/null +++ b/x11/gtk2/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.9 2004/12/24 10:04:39 jmmv Exp $ + +--- gtk/gtkicontheme.c.orig 2004-12-12 22:09:13.000000000 +0100 ++++ gtk/gtkicontheme.c +@@ -578,7 +578,7 @@ gtk_icon_theme_init (GtkIconTheme *icon_ + for (j = 0; xdg_data_dirs[j]; j++) + priv->search_path[i++] = g_build_filename (xdg_data_dirs[j], "icons", NULL); + +- priv->search_path[i++] = g_strdup ("/usr/share/pixmaps"); ++ priv->search_path[i++] = g_strdup (GTK_DATADIR "/pixmaps"); + + priv->themes_valid = FALSE; + priv->themes = NULL; |