--- gtk+2.0-2.22.0.orig/debian/libgtk2.0-dev.links.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-dev.links.in @@ -0,0 +1,2 @@ +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@DEV_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@DEV_PKG@/README.gz --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-bin.manpages +++ gtk+2.0-2.22.0/debian/libgtk2.0-bin.manpages @@ -0,0 +1,2 @@ +debian/gtk-options.7 +debian/update-icon-caches.8 --- gtk+2.0-2.22.0.orig/debian/libgail-dev.install +++ gtk+2.0-2.22.0/debian/libgail-dev.install @@ -0,0 +1,5 @@ +debian/install/shared/usr/include/gail* /usr/include +debian/install/shared/usr/lib/libgail*.so /usr/lib +debian/install/shared/usr/lib/libgail*.la /usr/lib +debian/install/static/usr/lib/libgail*.a /usr/lib +debian/install/shared/usr/lib/pkgconfig/gail*.pc /usr/lib/pkgconfig --- gtk+2.0-2.22.0.orig/debian/copyright +++ gtk+2.0-2.22.0/debian/copyright @@ -0,0 +1,91 @@ +This package was debianized by Akira TAGOH on +Wed, 13 Mar 2002 00:07:25 +0900. + +It was downloaded from . + +Copyright Holders: + +Please do not mail any of the authors listed here +asking questions about this version of GTK+. + +Original Authors +---------------- +Peter Mattis +Spencer Kimball +Josh MacDonald + +The GTK+ Team (in alphabetical order) +------------------------------------- +Shawn T. Amundson +Jerome Bolliet +Damon Chaplin +Tony Gale +Jeff Garzik +Lars Hamann +Raja R Harinath +Carsten Haitzler +Tim Janik +Stefan Jeske +Elliot Lee +Raph Levien +Ian Main +Federico Mena +Paolo Molaro +Jay Painter +Manish Singh +Owen Taylor + +There are many others who have contributed patches; we thank them, +GTK+ is much better because of them. + + +Over time, GTK+ has incorporated some pieces of software which +started as independent projects. We list the original authors here: + + +MS-Windows theme engine +----------------------- +Raymond Penners +Dom Lachowicz + + +Pixbuf theme engine +------------------- +Owen Taylor + + +IME input method +---------------- +Takuro Ashie +Kazuki IWAMOTO + + +Mac OS X backend +---------------- +Anders Carlsson + + +DirectFB backend +---------------- +Denis Oliver Kropp +Sven Neumann +Mike Emmel + +License: + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301 USA. + + See /usr/share/common-licenses/LGPL-2 on your debian system. --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-doc.doc-base.gtk2-tutorial +++ gtk+2.0-2.22.0/debian/libgtk2.0-doc.doc-base.gtk2-tutorial @@ -0,0 +1,18 @@ +Document: gtk2-tutorial +Title: GTK+2.0 Tutorial +Author: Tony Gale and Ian Main +Abstract: GTK+ (GIMP Toolkit) is a library for creating graphical user + interfaces. It is licensed using the LGPL license, so you can develop + open software, free software, or even commercial non-free software + using GTK+ without having to spend anything for licenses or royalties. + . + This tutorial is an attempt to document as much as possible of GTK+, + but it is by no means complete. This tutorial assumes a good + understanding of C, and how to create C programs. It would be a great + benefit for the reader to have previous X programming experience, but + it shouldn't be necessary. +Section: Programming/C + +Format: HTML +Index: /usr/share/doc/libgtk2.0-doc/tutorial/book1.html +Files: /usr/share/doc/libgtk2.0-doc/tutorial/*.html --- gtk+2.0-2.22.0.orig/debian/dh_listmissing.pl +++ gtk+2.0-2.22.0/debian/dh_listmissing.pl @@ -0,0 +1,79 @@ +#!/bin/false /usr/bin/perl -w +# shebang disabled while this script resides in debian/ + +# similar to dh_install; needs some documentation + +use strict; +use File::Find; +use Debian::Debhelper::Dh_Lib; + +init(); + +# list of sourcedirs +my @sourcedirs = @ARGV; + +my @installed; + +my $srcdir = '.'; + +# dh_install code, but not doing any installation, just building @installed +# and stripping sourcedirs from these +foreach my $package (@{$dh{DOPACKAGES}}) { + my $tmp=tmpdir($package); + my $file=pkgfile($package,"install"); + + my @install; + if ($file) { + @install=filedoublearray($file); # no globbing yet + } + + # Support for -X flag. + my $exclude = ''; + if ($dh{EXCLUDE_FIND}) { + $exclude = '! \( '.$dh{EXCLUDE_FIND}.' \)'; + } + + foreach my $set (@install) { + if (! defined $dh{AUTODEST} && @$set > 1) { + pop @$set; + } + foreach my $src (map { glob "$srcdir/$_" } @$set) { + next if excludefile($src); + + # strip source dir + foreach my $d (@sourcedirs) { + $src=~s/^\Q$srcdir\E\/\Q$d\E\///; + } + + # Keep track of what's installed. + # Kill any extra slashes. Makes the @installed stuff more robust. + $src=~y:/:/:s; + $src=~s:/+$::; + $src=~s:^(\./)*::; + push @installed, "\Q$src\E\/.*|\Q$src\E"; + } + } +} + +# dh_install code, but stripping sourcedirs +my @missing; +my $installed=join("|", @installed); +$installed=qr{^($installed)$}; +find(sub { + -f || -l || return; + $_="$File::Find::dir/$_"; + foreach my $d (@sourcedirs) { + s/^\Q$d\E\///; + } + if (! /$installed/ && ! excludefile($_)) { + my $file=$_; + push @missing, $file; + } +}, @sourcedirs); +if (@missing) { + warning "$_ has been installed upstream but is not in any package" foreach @missing; + if ($dh{FAIL_MISSING}) { + error("missing files, aborting"); + } +} + --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-dev.preinst +++ gtk+2.0-2.22.0/debian/libgtk2.0-dev.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk2.0-dev +oldsymtarget=libgtk2.0-0 +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.22.0.orig/debian/dh_gtkmodules.in +++ gtk+2.0-2.22.0/debian/dh_gtkmodules.in @@ -0,0 +1,61 @@ +#!/usr/bin/perl -w + +=head1 NAME + +dh_gtkmodules - create Gtk module files for Gtk modules + +=cut + +use strict; +use Debian::Debhelper::Dh_Lib; +use Cwd; + +=head1 SYNOPSIS + +B [S>] + +=head1 DESCRIPTION + +B is a debhelper program that handles correctly +generating a dependency on the versionned Gtk+ module ABI and +indexes for GdkPixbuf loaders and IM modules that it finds in the +Gtk+ module directories. + +This command automatically adds a ".loaders" file to the +current package with the package name or ".immodules" if it +finds any GdkPixbuf loaders or IM modules. + +If this command finds the versionned standard module directory in the +current package, it will generate a dependency on the earliest Gtk +version that Gtk currently has compatibility for in ${misc:Depends} +("binary version"). + +=head1 OPTIONS + +=over 4 + +=item B<-k> + +Do not generate any dependencies in ${misc:Depends}. + +=cut + +init(); + +warning("This program is deprecated, everything is handled by triggers now."); +exit 0; + +=back + +=head1 SEE ALSO + +L + +This program relies on Debhelper, but is shipped with the Gtk +development files. + +=head1 AUTHOR + +Loic Minier + +=cut --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0.links.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-0.links.in @@ -0,0 +1,2 @@ +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@SHARED_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@SHARED_PKG@/README.gz --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-dev.install.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-dev.install.in @@ -0,0 +1,13 @@ +# from Debian +debian/dh_gtkmodules usr/bin +# from the shared flavor +debian/install/shared/usr/bin/gtk-builder-convert usr/bin +debian/install/shared/usr/include/gtk* usr/include +debian/install/shared/@LIBDIR@/libg?k*.la @LIBDIR@ +debian/install/shared/@LIBDIR@/libg?k*.so @LIBDIR@ +debian/install/shared/@LIBDIR@/pkgconfig/g?k* @LIBDIR@/pkgconfig +debian/install/shared/@LIBDIR@/gtk-@APIVER@/include @LIBDIR@/gtk-@APIVER@ +debian/install/shared/usr/share/aclocal usr/share +debian/install/shared/usr/share/gir-1.0 usr/share +# from the static flavor +debian/install/static/@LIBDIR@/libg?k*.a @LIBDIR@ --- gtk+2.0-2.22.0.orig/debian/changelog +++ gtk+2.0-2.22.0/debian/changelog @@ -0,0 +1,3173 @@ +gtk+2.0 (2.22.0-0ubuntu4) natty; urgency=low + + * debian/patches/092_default_to_xdg_document_dir.patch: + - Use $XDG_DOCUMENTS_DIR as default directory rather than the home + directory for the 'Print to File' function. (LP: #611011) + + -- Bilal Akhtar Tue, 02 Nov 2010 19:15:45 +0300 + +gtk+2.0 (2.22.0-0ubuntu3) natty; urgency=low + + * Use the gir workaround again, it's required + + -- Sebastien Bacher Fri, 15 Oct 2010 11:39:23 +0200 + +gtk+2.0 (2.22.0-0ubuntu2) natty; urgency=low + + * debian/patches/064_gir_build_workaround.patch: + - drop the patch since the new gir is in natty + + -- Sebastien Bacher Fri, 15 Oct 2010 11:19:58 +0200 + +gtk+2.0 (2.22.0-0ubuntu1) maverick; urgency=low + + * New stable version + * debian/control: + - don't use gir-repository-dev it's not required + * debian/libgtk2.0-0.symbols: updated + * debian/patches/064_gir_build_workaround.patch + - workaround a build issue with the current gir version + * debian/patches/070_mandatory-relibtoolize.patch: + - new version update + + -- Sebastien Bacher Mon, 27 Sep 2010 15:43:08 +0200 + +gtk+2.0 (2.21.7-1ubuntu1) maverick; urgency=low + + * New upstream version + + -- Robert Ancell Wed, 01 Sep 2010 12:14:05 +1000 + +gtk+2.0 (2.21.7-1) experimental; urgency=low + + * New upstream development release: + + debian/rules, + debian/libgtk2.0-0.symbols: + - Update for new API symbols. + + debian/patches/070_mandatory-relibtoolize.patch: + - Refreshed. + + -- Sebastian Dröge Mon, 30 Aug 2010 21:45:01 +0200 + +gtk+2.0 (2.21.6-1ubuntu3) maverick; urgency=low + + * debian/patches/043_ubuntu_menu_proxy.patch: + - update by Cody Russell to fix menu shortcuts under GNOME + + -- Sebastien Bacher Fri, 27 Aug 2010 15:44:28 +0200 + +gtk+2.0 (2.21.6-1ubuntu2) maverick; urgency=low + + * debian/patches/043_ubuntu_menu_proxy.patch: + - update by Cody Russell to fix a crash issue (lp: #609390) + + -- Sebastien Bacher Tue, 24 Aug 2010 17:48:16 +0200 + +gtk+2.0 (2.21.6-1ubuntu1) maverick; urgency=low + + * New version update + * debian/patches/090_git_calendar_style_properties.patch: + - the change is in the new version + * debian/patches/064_gir_build_workaround.patch: + - workaround build issues with the gir when build out of srcdir + + -- Sebastien Bacher Wed, 18 Aug 2010 17:15:22 +0200 + +gtk+2.0 (2.21.6-1) experimental; urgency=low + + * debian/rules: + + Remove obsolete configure parameter. + * New upstream development release: + + debian/rules, + debian/libgtk2.0-0.symbols: + - Update for new API symbols. + + debian/patches/009_gtk-export-filechooser.patch, + debian/patches/042_treeview_single-focus.patch, + debian/patches/070_mandatory-relibtoolize.patch: + - Refreshed. + + -- Sebastian Dröge Tue, 17 Aug 2010 11:44:53 +0200 + +gtk+2.0 (2.21.5-1ubuntu6) maverick; urgency=low + + * debian/patches/043_ubuntu_menu_proxy.patch: + - update by Cody Russell required to get the mnemonic activation working + in the indicator-appmenu. + * debian/patches/090_git_calendar_style_properties.patch: + - git change to allow tweaking GtkCalendar layouts styling + * debian/libgtk2.0-0.symbols: updated for the previous changes + + [ Sense Egbert Hofstede ] + * debian/patches/072_indicator_menu_update.patch: Adding 'submenu-added' and + 'submenu-removed' signals so Application Indicators now that. (lp: #608219) + + -- Sebastien Bacher Wed, 04 Aug 2010 15:59:31 +0200 + +gtk+2.0 (2.21.5-1ubuntu5) maverick; urgency=low + + * debian/patches/043_ubuntu_menu_proxy.patch: + - update version from Cody Russell to fix warning and crash issues + + -- Sebastien Bacher Mon, 02 Aug 2010 18:51:32 +0200 + +gtk+2.0 (2.21.5-1ubuntu4) maverick; urgency=low + + * debian/rules, debian/*.links.in: Drop installation of upstream changelog. + This saves 2.2 MB compressed. + + -- Martin Pitt Sun, 01 Aug 2010 20:42:57 +0200 + +gtk+2.0 (2.21.5-1ubuntu3) maverick; urgency=low + + * debian/patches/012_ubuntu-set-grab-add.patch + - Added ubuntu_gtk_widget_set_has_grab so we can grab sliders and + things in menus, needed by ido + * debian/libgtk2.0-0.symbols: + - added ubuntu_gtk_widget_set_has_grab to symbols + + -- Ken VanDine Thu, 29 Jul 2010 11:52:21 -0400 + +gtk+2.0 (2.21.5-1ubuntu2) maverick; urgency=low + + * Fix non-applying patch + + -- Robert Ancell Wed, 28 Jul 2010 18:22:33 +0200 + +gtk+2.0 (2.21.5-1ubuntu1) maverick; urgency=low + + * Merge with Debian experimental, Ubuntu changes: + * debian/control.in: + - Add introspection build-depends + - Add Vcs-Bzr link + - Add gir1.0-gtk-2.0 package + - libgtk2.0-dev replaces gir-repository-dev + - Conflict with appmenu-gtk (<< 0.1.3) to prevent menu proxy breakage + * debian/rules: + - Build with --enable-introspection + - Add gir1.0-gtk-2.0 package to BINARY_ARCH_PKGS + - Add dh_girepository call + - Disable devhelp files + * debian/dh_gtkmodules.in: + - Remove obsolete script content + * debian/libgtk2.0-0.symbols: + - Add Ubuntu specific symbols + * debian/libgtk2.0-dev.install.in: + - Add gir files + * debian/libgtk2.0-doc.install.in + - Disable devhelp files + * debian/gir1.0-gtk-2.0.install.in + - Introspection package + * debian/patches/043_menu_proxy.patch + - Add GtkMenuProxy support for remoting menus. + * debian/patches/062_dnd_menubar.patch: + - Allow click on menubars for dnd + * debian/patches/063_treeview_almost_fixed.patch: + - Add an ubuntu-almost-fixed-height-mode property, (required for + software-center) + * debian/patches/071_no_offscreen_widgets_grabbing.patch: + - Don't let offscreen widgets do grabbing + * debian/patches/072_indicator_menu_update.patch: + - change by Cody Russell to send an update event on menu changes, + should make the bluetooth indicator refresh correctly + * debian/patches/091_bugzilla_tooltip_refresh.patch: + - Upstream bugzilla change to have better looking tooltips the gtk theme + need to set "new-tooltip-style" to use those + * debian/watch: + - Watch for unstable versions + + -- Robert Ancell Thu, 22 Jul 2010 21:41:30 +0200 + +gtk+2.0 (2.21.5-1) experimental; urgency=low + + * New upstream development release: + + debian/control.in, + debian/rules, + debian/*: + - Remove all mentions of gdk-pixbuf and (build-) depend on it. + + debian/libgtk2.0-0.postinst.in, + debian/libgtk2.0-0.postrm.in, + debian/libgtk2.0-0.triggers.in, + debian/dh_gtkmodules.in: + - Handle immodules by triggers and deprecate dh_gtkmodules. + + debian/patches/*: + - Refreshed. + - Remove gdk-pixbuf and immodule patches. + + debian/rules, + debian/libgtk2.0-0.symbols: + - Update for new API symbols. + + debian/update-gdkpixbuf-loaders*, + debian/update-gtk-immodules*: + - Drop module update scripts which are no-ops since 2.10.1. + + -- Sebastian Dröge Thu, 22 Jul 2010 21:01:09 +0200 + +gtk+2.0 (2.21.2-1) experimental; urgency=low + + * New upstream development release: + + debian/rules, + debian/libgtk2.0-0.symbols: + - Update for new API symbols. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/control.in: + - Update GLib (build-) dependency to >= 2.25.8. + + -- Sebastian Dröge Fri, 11 Jun 2010 12:19:30 +0200 + +gtk+2.0 (2.21.1-1) experimental; urgency=low + + * New upstream development release: + + debian/rules, + debian/libgtk2.0-0.symbols: + - Update for new API symbols. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Mon, 31 May 2010 09:45:32 +0200 + +gtk+2.0 (2.21.0-1) experimental; urgency=low + + * New upstream development release: + + debian/rules, + debian/libgtk2.0-0.symbols: + - Update for new API symbols. + + debian/patches/002_static-linking-dont-build-perf.patch: + - Refreshed. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Sat, 08 May 2010 08:20:19 +0200 + +gtk+2.0 (2.20.1-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/006_support-for-tracker-0.8-stable-releases.patch: + - Dropped, merged upstream. + + debian/patches/003_gdk.pc_privates.patch: + - Updated to apply cleanly again. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Mon, 03 May 2010 07:26:14 +0200 + +gtk+2.0 (2.20.0-3) unstable; urgency=low + + * debian/control.in + - Add Vcs-* fields. + - Add Homepage field. + * debian/patches/006_support-for-tracker-0.8-stable-releases.patch + - Add support for tracker 0.8 stable and future 0.9 releases. Also add + support for loading the search engines on demand until they are actually + needed. Patch is backported from upstream Git branch "tracker-0.8". + * Refresh patches to apply cleanly. + + -- Michael Biebl Wed, 14 Apr 2010 20:39:28 +0200 + +gtk+2.0 (2.20.0-2) unstable; urgency=low + + * Upload to unstable. + + -- Sebastian Dröge Wed, 31 Mar 2010 09:16:00 +0200 + +gtk+2.0 (2.20.0-1) experimental; urgency=low + + [ Emilio Pozuelo Monfort ] + * debian/rules, + debian/control.in, + debian/libgtk-directfb-2.0-0.*, + debian/libgtk-directfb-2.0-dev.*, + debian/patches/090_directfb-map-virtual-modifiers.patch, + debian/patches/series: + - Drop the DirectFB enabled GTK+ packages. They were needed for the + graphical installer but it's now switching to X11 so we don't need + them anymore. + * debian/rules: + - Move --with-xinput=yes and --with-libjasper to configure_flags + since they are common to all of our flavours. + + [ Sebastian Dröge ] + * New upstream stable release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/rules, + debian/libgtk2.0-0.symbols: + - Update SHVER to 2.20.0 for the new API to force dependencies + on the stable version. + + debian/control.in: + - Update GLib build dependency and tighten some -dev package dependencies. + + debian/patches/003_gdk.pc_privates.patch: + - Updated to apply cleanly again. + + -- Sebastian Dröge Tue, 23 Mar 2010 15:55:56 +0100 + +gtk+2.0 (2.19.7-3) experimental; urgency=low + + * debian/control.in: + - Build depend on xsltproc, needed to generate the mime cache. + It was brought indirectly by gtk-doc-tools, but that's on + Build-Depends-Indep which isn't enough. + + -- Emilio Pozuelo Monfort Tue, 16 Mar 2010 15:30:32 +0100 + +gtk+2.0 (2.19.7-2) experimental; urgency=low + + [ Cyril Brulebois ] + * Switch udeb from DirectFB to Xlib to prepare the move to an X11-based + graphical installer. Closes: #573872. + - Replace libgtk-directfb-2.0-0-udeb with libgtk-x11-udeb in control + file. + - Update description accordingly. + - Update .install.in accordingly, using the “shared_udeb” flavour, + based on the “shared” one, but with a few X11 extensions disabled. + - Update package name and file paths accordingly in rules file. + * Version/Bump some B-D to make sure the udeb gets proper dependencies + on the recently reworked/added udebs: + - libx11-dev + - libxcursor-dev + - libxext-dev + - libxi-dev + - libxinerama-dev + - libxrender-dev + * Add one patch to make it possible to disable X11 extensions, and + refresh the other one accordingly: + - 005_support_disabling_x11_extensions.patch + - 070_mandatory-relibtoolize.patch + * Ship a minimal MIME database in the udeb, since the loaders mechanism + isn’t sufficient to get proper PNG support: + - Add shared-mime-info to Build-Depends to ensure that the + update-mime-database tool is available at build-time, as well as + the source freedesktop.org.xml file. + - Add debian/keep-png-only.xsl to only keep the mime-type matching + type="image/png". Matching with namespaces is tricky, see the + comments in the XSL file for the details. + - Build a MIME cache, and only ship the resulting mime.cache file + under /usr/share/mime in the udeb. + - While this is dirty, that should do the trick until it is needed + for shared-mime-info to ship its own udeb. + + [ Emilio Pozuelo Monfort ] + * Rename the udeb to libgtk2.0-0-udeb. + * Standards-Version is 3.8.4, no changes needed. + + -- Emilio Pozuelo Monfort Tue, 16 Mar 2010 01:01:48 +0100 + +gtk+2.0 (2.19.7-1) experimental; urgency=low + + * New upstream development release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Fri, 12 Mar 2010 15:59:27 +0100 + +gtk+2.0 (2.19.6-1) experimental; urgency=low + + * New upstream development release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/rules, + debian/libgtk-directfb-2.0-0.symbols, + debian/libgtk2.0-0.symbols: + - Update SHVER to 2.19.6 for the new API and add new symbols. + * debian/patches/090_directfb-map-virtual-modifiers.patch: + + Update to add just another stub to fix the build. + + -- Sebastian Dröge Wed, 24 Feb 2010 10:01:31 +0100 + +gtk+2.0 (2.19.5-1) experimental; urgency=low + + * New upstream development release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/rules, + debian/libgtk-directfb-2.0-0.symbols, + debian/libgtk2.0-0.symbols: + - Update SHVER to 2.19.5 for the new API and add new symbols. + + -- Sebastian Dröge Wed, 10 Feb 2010 09:38:52 +0100 + +gtk+2.0 (2.19.4-1) experimental; urgency=low + + * New upstream development release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/rules, + debian/libgtk-directfb-2.0-0.symbols, + debian/libgtk2.0-0.symbols: + - Update SHVER to 2.19.4 for the new API and add new symbols. + + -- Sebastian Dröge Tue, 26 Jan 2010 08:25:41 +0100 + +gtk+2.0 (2.19.3-1) experimental; urgency=low + + * New upstream development release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/rules, + debian/libgtk-directfb-2.0-0.symbols, + debian/libgtk2.0-0.symbols: + - Update SHVER to 2.19.3 for the new API and add new symbols. + + debian/patches/091_size_allocate_crash.patch: + - Dropped, merged upstream. + + -- Sebastian Dröge Mon, 11 Jan 2010 20:36:25 +0100 + +gtk+2.0 (2.19.2-2) experimental; urgency=low + + * debian/patches/091_size_allocate_crash.patch: + + Patch from upstream GIT to fix a crash on size allocations. + Thanks to Sebastien Bacher. + + -- Sebastian Dröge Wed, 06 Jan 2010 11:42:07 +0100 + +gtk+2.0 (2.19.2-1) experimental; urgency=low + + [ Emilio Pozuelo Monfort ] + * debian/patches/000_gtk+-2.0.6-exportsymbols.patch: + + Removed, it wasn't being applied and hasn't been relevant for a + long time. + + [ Sebastian Dröge ] + * New upstream development release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/rules, + debian/libgtk-directfb-2.0-0.symbols, + debian/libgtk2.0-0.symbols: + - Update SHVER to 2.19.2 for the new API and add new symbols. + * debian/patches/090_directfb-map-virtual-modifiers.patch: + + Fix compilation of the DirectFB backend, patch adapted from + upstream commit to fix the Quartz backend. + + -- Sebastian Dröge Mon, 04 Jan 2010 10:43:48 +0100 + +gtk+2.0 (2.19.1-1) experimental; urgency=low + + * New upstream development release: + + debian/rules: + - Include check-dist.mk to prevent accidental uploads to unstable. + + debian/control.in: + - Update ATK build dependency. + + debian/rules, + debian/libgtk-directfb-2.0-0.symbols, + debian/libgtk2.0-0.symbols: + - Update SHVER to 2.19.1 for the new API and add new symbols. + + debian/patches/009_gtk-export-filechooser.patch, + debian/patches/021_loader-files-d.patch: + - Updated to apply cleanly again. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Tue, 01 Dec 2009 15:28:10 +0100 + +gtk+2.0 (2.18.4-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Updated for the new version. + + debian/patches/091_dont-omit-gtk-icon-size-dialog.patch, + debian/patches/092_gtk-image-size-allocation.patch: + - Dropped, merged upstream. + + -- Sebastian Dröge Tue, 01 Dec 2009 07:46:18 +0100 + +gtk+2.0 (2.18.3-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Updated for the new version. + * debian/patches/091_dont-omit-gtk-icon-size-dialog.patch: + + Patch from upstream GIT to not omit GTk_ICON_SIZE_DIALOG + when searching for an appropiate icon size. + * debian/patches/092_gtk-image-size-allocation.patch: + + Patch from upstream GIT to fix size allocation of GtkImage. + + -- Sebastian Dröge Sun, 18 Oct 2009 13:23:44 +0200 + +gtk+2.0 (2.18.2-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Updated for the new version. + + 090_directfb-backend-compilation-fix.patch: + - Dropped, merged upstream. + + -- Sebastian Dröge Tue, 06 Oct 2009 07:41:45 +0200 + +gtk+2.0 (2.18.1-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Updated for the new version. + + 090_directfb-backend-compilation-fix.patch: + - Fix compilation of the DirectFB backend, see + https://bugzilla.gnome.org/show_bug.cgi?id=596959 + + -- Sebastian Dröge Thu, 01 Oct 2009 07:20:43 +0200 + +gtk+2.0 (2.18.0-1) unstable; urgency=low + + * New upstream stable release: + + debian/rules, + debian/*.symbols: + - Updated for the new version. + + debian/patches/005_gdk_directfb_window_new.patch: + - Dropped, merged upstream. + + debian/patches/070_mandatory-relibtoolize.patch: + - Updated for the new version. + + -- Sebastian Dröge Wed, 23 Sep 2009 06:36:41 +0200 + +gtk+2.0 (2.17.11-1) experimental; urgency=low + + * New upstream development release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Updated for the new version. + + debian/rules, + debian/*.symbols: + - Updated for the new version. + + -- Sebastian Dröge Sat, 05 Sep 2009 07:16:24 +0200 + +gtk+2.0 (2.17.10-1) experimental; urgency=low + + * New upstream development release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Updated for the new version. + + debian/rules, + debian/*.symbols: + - Updated for the new version. + * - + + -- Sebastian Dröge Sat, 05 Sep 2009 07:16:21 +0200 + +gtk+2.0 (2.17.9-1) experimental; urgency=low + + [ Josselin Mouette ] + * Clean up the .la files in all -dev packages, not only in the main + one. + + [ Sebastian Dröge ] + * New upstream development release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Updated for the new version. + + debian/rules, + debian/*.symbols: + - Updated for the new version. + + -- Sebastian Dröge Tue, 25 Aug 2009 18:37:11 +0200 + +gtk+2.0 (2.17.8-1) experimental; urgency=low + + [ Emilio Pozuelo Monfort ] + * New upstream development release. + - Handle printers needing authentication. Closes: #499759. + - Update libglib2.0-dev requirement. + * debian/watch: + - Don't uupdate. + * debian/rules: + - Configure with --with-libjasper, it's disabled by default now. + * debian/control.in: + - Remove conflicts and replaces no longer needed for packages in stable. + - Standards-Version is 3.8.3, no changes needed. + * debian/patches/005_xpmico.patch: + - Removed, this check is not needed as HeaderSize can't overflow because + IconCount will be at most 16 bits, and that multiplied by 16 is not + enough to overflow an integer. (Checked with upstream) + * debian/patches/001_static-linking-dont-query-immodules.patch, + debian/patches/002_static-linking-dont-build-perf.patch: + - Add headers. + * debian/patches/005_gdk_directfb_window_new.patch: + - New patch. Readd gdk_directfb_window_new(), which is exported in the + public API and was removed by mistake. + * debian/patches/* + - Refreshed. + * debian/libgtk-directfb-2.0-0.symbols, + debian/libgtk2.0-0.symbols: + - Updated for the new symbols. There's one symbol removed from the + directfb backend, gdk_display_pointer_grab(). It wasn't exported in + the headers, nor was supposed to be public, so if something out there + is using it, they are doing it wrong. + * debian/rules: + - Remove a trailing backslash that prevented -c4 to be passed to + dh_makeshlibs. + + -- Josselin Mouette Thu, 20 Aug 2009 18:29:04 +0200 + +gtk+2.0 (2.16.5-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Tue, 21 Jul 2009 08:09:50 +0200 + +gtk+2.0 (2.16.4-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Thu, 02 Jul 2009 06:09:04 +0200 + +gtk+2.0 (2.16.3-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + * debian/control.in: + + Update Standards-Version to 3.8.2. + + -- Sebastian Dröge Mon, 29 Jun 2009 11:39:01 +0200 + +gtk+2.0 (2.16.2-1) unstable; urgency=low + + [ Loic Minier ] + * Fix string concat in dh_gtkmodules; thanks Kanru Chen; closes: #528782. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/091_workaround_no_gtk_init_incorrect_display.patch: + - Dropped, merged upstream. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/*.install: + - Install the manpages from their source locations as + they're not installed anymore for some reason. + * debian/control.in: + + Updated Standards-Version to 3.8.1, no additional changes needed. + + -- Sebastian Dröge Tue, 02 Jun 2009 07:44:43 +0200 + +gtk+2.0 (2.16.1-2) unstable; urgency=low + + [ Loic Minier ] + * Fix test-print-backend configure flag addition. + * Set opt_configure_flags to $(shared_configure_flags) in the sample opt + flavor for armel and move the opt flavor and check flavors below the + definition of other flags. + + -- Josselin Mouette Thu, 16 Apr 2009 18:08:02 +0200 + +gtk+2.0 (2.16.1-1) experimental; urgency=low + + [ Loic Minier ] + * Clarify dh_gtkmodules doc slightly. + + [ Gustavo Noronha Silva ] + * debian/series: + - forgot to add 022_disable-viqr-im-for-vi-locale.patch and + 061_use_pdf_as_default_printing_standard.patch to the series file + (thanks to seb128 for noticing) + * debian/control.in: + - sync Replaces with ubuntu's package for easier migration from Ubuntu + to Debian ;) + + [ Josselin Mouette ] + * Make update-icon-caches always generate the cache, now that dh_icons + is widespread. + + [ Sebastian Dröge ] + * debian/libgtk-directfb-2.0-0.symbols, + debian/libgtk2.0-0.symbols, + debian/libgail18.symbols, + debian/rules: + + Add symbol files for GTK. + + [ Loic Minier ] + * Merge the following changes by Emmet Hikory: + + [ Emmet Hikory ] + * Port optimised flavor work by Loic Minier from pango1.0: + - Rework flavor-specific vars. + + Introduce $(flavor) which is set to $* to clarify implicit rules + + Rename common_configure_flags to configure_flags + + Introduce the flavor_get macro to use a flavor specific override or + fallback to the common defaults for make vars. + + Use $(call flavor_get, ) to retrieve configure_flags, CFLAGS, and + LDFLAGS allowing to override these per flavor. + - Add support for an optimised pass, implemented as a flavor + + Define a default OPTLIBDIR and replace it in the sed foo for %.in + files; this is like LIBDIR, but with some hwcaps extension, e.g. + usr/lib/vfp. + + Add vars to build an optimised vfp flavour for armel with + additional CFLAGS + + Add the "opt" special flavor to flavors to run the testuites on, + CHECK_FLAVORS + + Also sed and append %.opt after %.in when generating $ files from + %.in; the %.opt file is optional and only included if the opt flavor + is included. + + Add a debian/libgtk2.0-0.install.opt which lists files from the + optimised flavor to install in libgtk2.0-0. + + Add a debian/libgail18.install.opt which lists files from the + optimised flavor to install in libgail18. + + [ Loic Minier ] + * Only pass -j to the main make call, do not parallelize the debian/rules + themselves as it seems to be racy for an unidentified reason which is hard + to reproduce. + * Merge patch below from Ubuntu. + + [ Sebastien Bacher ] + * debian/patches/093_git_change_fix_focus_issue.patch: + - upstream git change to fix a timestamp issue leading to get nautilus. + dialog opening sometime unfocussed for example (lp: #333366) + + [ Loic Minier ] + * Build-dep on autotools-dev for the config.guess / .sub updates to work. + * Drop duplicate Section/Priority fields. + * ppc64: use DEB_HOST_GNU_CPU instead of BUILD; drop TODOs, the current + implementation is correct. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/patches/072_workaround_directfb_build.patch, + debian/patches/092_fix_printtest_include.patch, + debian/patches/093_git_change_fix_focus_issue.patch: + - Dropped, merged upstream. + + -- Sebastian Dröge Sun, 12 Apr 2009 11:21:58 +0200 + +gtk+2.0 (2.16.0-1) experimental; urgency=low + + [ Emilio Pozuelo Monfort ] + * Let libgtk2.0-0 suggest gvfs, as it's needed for some APIs like + gtk_show_uri. + + [ Josselin Mouette ] + * libgtk2.0-0 depends on shared-mime-info. Closes: #518090. + * Add dependent doc packages to b-d-i to ensure proper xrefs. + + [ Loic Minier ] + * Clean up dh_gtkmodules output: + - Demote warnings when skipping non-existent GtkPixbuf loaders and Gtk IM + modules dirs to verbose_print(); use -v to see them. + - Always print the number of GdkPixbuf loaders and Gtk IM modules found in + each package. + + [ Emilio Pozuelo Monfort ] + * New upstream stable release. + - Bump shlibs. + - debian/patches/070_mandatory-relibtoolize.patch: regenerated. + * Ship the gtk-builder-convert manpage in libgtk2.0-dev. + * Section of dbg packages is debug. + + -- Emilio Pozuelo Monfort Sun, 15 Mar 2009 20:10:34 +0100 + +gtk+2.0 (2.15.5-2) experimental; urgency=low + + [ Emilio Pozuelo Monfort ] + * debian/control.in: + - bump libglib2.0-dev build-dep requirement to >= 2.19.7 + - bump libxrandr-dev build-dep requirement to >= 1:1.2.99 + - also bump libgtk2.0-dev dependecies accordingly + (Closes: #518078) + + [ Gustavo Noronha Silva ] + * 042_treeview_single-focus.patch: + - removed FIXME note, since it was explained to me that the patch is + still necessary + * debian/rules: + - bumped SHVER to 2.15.5 + + [ Imported from Ubuntu ] + * 022_disable-viqr-im-for-vi-locale.patch, + 061_use_pdf_as_default_printing_standard.patch: + - for the rationale for the PDF for printing one see: + https://wiki.ubuntu.com/PDFasStandardPrintJobFormat + + -- Gustavo Noronha Silva Tue, 03 Mar 2009 21:58:20 -0300 + +gtk+2.0 (2.15.5-1) experimental; urgency=low + + * New upstream development release + * 070_mandatory-relibtoolize.patch: refreshed. + * 031_directfb_dead-keys.patch, 032_gdkwindowimpl_directfb.patch, + 033_directfb_client-message.patch, 034_directfb_memleak.patch, + 071_jasper_link_fix.patch, 092_fix_printtest_include.patch: + - dropped; already featured in this release + * 030_gtkentry_password-char-circle.patch: + - dropped; upstream provides a different solution to setting the default + invisible char now, that takes the font being used into consideration + * 003_gdk.pc_privates.patch: + - refreshed + + -- Gustavo Noronha Silva Mon, 02 Mar 2009 22:01:03 -0300 + +gtk+2.0 (2.14.7-3) experimental; urgency=low + + * 032_gdkwindowimpl_directfb.patch: new version of the patch. This + should restore the basic functionality of the backend, but there is + still work underway. + * 033_directfb_client-message.patch: stolen from the upstream SVN. Fix + the DirectFB client_message API. + * 034_directfb_memleak.patch: stolen from the upstream SVN. Fix memory + leak in the DirectFB code. + * Require DirectFB 1.0.0 for the 034 patch. + * 070_mandatory-relibtoolize.patch: updated accordingly. + + -- Josselin Mouette Sat, 21 Feb 2009 14:59:45 +0100 + +gtk+2.0 (2.14.7-2) experimental; urgency=low + + * 008_implicit_pointer_conversion_gdkgc_directfb.patch: removed, it’s + obsolete and just defines the same macro a second time. + * 007_implicit_pointer_conversion_gdkdrawable_directfb.patch: removed, + it’s not needed anymore with the latest directfb. + * 006_proper-directfb-modules.patch: removed from the package, it + won’t be necessary anymore. + * 001_static-linking-dont-query-immodules.patch, + 002_static-linking-dont-build-perf.patch, + 003_gdk.pc_privates.patch, + 004_gtk+-ximian-gtk2-filesel-navbutton-5.patch: refreshed. + * Remove 071_correct_directfb_declarations.patch, and replace it by + 032_gdkwindowimpl_directfb.patch, a patch from Sven Neumann to + (hopefully) fix DirectFB support for GTK+ 2.14. + + -- Josselin Mouette Tue, 17 Feb 2009 23:17:56 +0100 + +gtk+2.0 (2.14.7-1) experimental; urgency=low + + [ Loic Minier ] + * Don't purge /etc/gtk-2.0/gdk-pixbuf.loaders and /etc/gtk-2.0/gtk.immodules + during first configuration. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Thu, 08 Jan 2009 08:06:02 +0100 + +gtk+2.0 (2.14.5-1) experimental; urgency=low + + [ Josselin Mouette ] + * Really install the faq and tutorial files correctly so that the + devhelp file is read. + * Update doc-base files accordingly. + * gruik2devhelp.awk: new script to generate the devhelp files + automatically for the FAQ and tutorial, based on the HTML doc. + * Build-depend on gawk, run the script appropriately. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Tue, 25 Nov 2008 11:00:35 +0100 + +gtk+2.0 (2.14.4-3) experimental; urgency=low + + * libgail*.install: fix installation paths. Closes: #505105. + * Do not ship .la files for gail modules. + * Generate shlibs for libgail. + * Bump shlibs version to 2.14.0. + * Do not install libgailutil in libgtk2.0-0. + * Do not install gtk libs in libgail-dev. + * Rework docs installation. + * Add doc links where needed. + * Install .devhelp files at the correct places. Closes: #504807. + * Bump dependencies for the development package. + * Fix dependencies of gail packages. + * Don’t install libgail in the udeb. + * Stop shipping /usr/lib/pkgconfig/libgtk-directfb-2.0-0/, nobody uses + it. + * Remove versioned conflicts with libgail packages. + * Remove libgail18.shlibs. + * Put debugging symbols of libgail modules in libgail-dbg. + * dh_gtkmodules.in: fix a pod2man error. + * Disable 006_proper-directfb-modules.patch. + * Update 070_mandatory_relibtoolize.patch accordingly. + + -- Josselin Mouette Tue, 11 Nov 2008 14:44:21 +0100 + +gtk+2.0 (2.14.4-2) experimental; urgency=low + + * debian/control, debian/rules, debian/libgail*: + - split libgail packages + + -- Gustavo Noronha Silva Wed, 05 Nov 2008 14:54:08 -0200 + +gtk+2.0 (2.14.4-1) experimental; urgency=low + + [ Gustavo Noronha Silva ] + * New upstream release + * debian/patches/006_proper-directfb-modules.patch: + - refreshed + * debian/patches/008_implicit_pointer_conversion_gdkgc_directfb.patch, + debian/patches/009_gtk-export-filechooser.patch, + debian/patches/020_immodules-files-d.patch, + debian/patches/021_loader-files-d.patch, + - update borrowed from Ubuntu's package + * debian/patches/071_correct_directfb_declarations.patch, + debian/patches/072_workaround_directfb_build.patch: + - borrowed from ubuntu + * debian/patches/033_treeview_resizing.patch, + debian/patches/095_gtk-im-module-setting.patch: + - removed; fixed upstream + * debian/patches/070_mandatory-relibtoolize.patch: + - refreshed + * debian/control.in: + - added libjasper-dev to the Build-Depends, as GTK+ now supports + JPEG2000 + - make GTK+ packages conflict/replace with gail ones, since they are now + included in GTK+ + * debian/patches/092_fix_printtest_include.patch: + - new patch, to fix build problem in print test + * debian/patches/071_jasper_link_fix.patch: + - make gdk-pixbuf-csource link correctly with libjasper + * debian/rules, debian/control: + - newer libcairo2-dev contains everything needed to build the directfb + target, so disable building with the dummy libcairo-directfb2-dev + - this makes us have to build depend on libcairo2-dev >= 1.6.4-6.1 + + [ Loic Minier ] + * Let libgtk2.0-dev recommend debhelper for dh_gtkmodules. + * Let libgtk2.0-dev depend on libxml2-utils as it's required for + gtk-builder-convert to work and might be relied upon by packages bdeping + on libgtk2.0-dev. + + [ Emilio Pozuelo Monfort ] + * Update build-dependencies for the new version: + - libglib2.0-dev >= 2.17.6 + - libpango1.0-dev >= 1.20 + - libatk1.0-dev >= 1.13.0 + - libcairo2-dev >= 1.6.0 + + -- Gustavo Noronha Silva Wed, 24 Sep 2008 21:38:58 -0300 + +gtk+2.0 (2.12.11-3) unstable; urgency=low + + * 031_directfb_dead-keys.patch: patch from Jérémy Bobbio to fix dead + keys in the DirectFB backend. Closes: #394871. + * Now require DirectFB 0.9.26. + * 070_mandatory_relibtoolize: updated to match the dependency bump. + * 033_treeview_resizing.patch: + + Fix crasher introduced by the patch. Closes: #491611. + + Add references. + + -- Josselin Mouette Mon, 21 Jul 2008 15:22:38 +0200 + +gtk+2.0 (2.12.11-2) unstable; urgency=low + + * 033_treeview_resizing.patch: + + Enable again, it was disabled by mistake. + + Update to new version provided by Kristian Rietveld. + Closes: #471073. + * libgtk2.0-doc.doc-base.gtk2-tutorial: fix spelling of GTK+. + * *.doc-base.*: fix doc-base sections. + + -- Josselin Mouette Fri, 18 Jul 2008 14:53:17 +0200 + +gtk+2.0 (2.12.11-1) unstable; urgency=low + + [ Emilio Pozuelo Monfort ] + * Build-depend on libcups2-dev instead of libcupsys2-dev, as cups + is transitioning to that new name. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + debian/patches/092_openoffice-menus.patch: + - Dropped, merged upstream. + * debian/control.in: + + Updated Standards-Version to 3.8.0, no additional changes needed. + + -- Sebastian Dröge Wed, 02 Jul 2008 06:37:51 +0200 + +gtk+2.0 (2.12.10-2) unstable; urgency=low + + * debian/patches/092_openoffice-menus.patch: + + Patch from upstream SVN to fix regression in menu placement + in openoffice.org (Closes: #484580). + + -- Sebastian Dröge Sat, 07 Jun 2008 10:27:50 +0200 + +gtk+2.0 (2.12.10-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/009_gtk-export-filechooser.patch: + - Updated to apply cleanly again. + + debian/patches/031_gtksearchenginetracker_fixes.patch, + debian/patches/061_foreign_colormaps.patch, + debian/patches/092_implicit-g-fopen.patch: + - Dropped, merged upstream. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Wed, 04 Jun 2008 08:14:08 +0200 + +gtk+2.0 (2.12.9-4) unstable; urgency=low + + [ Loic Minier ] + * Flip back gdkpixbuf_module_files_d_str after gdkpixbuf_module_file_str in + patch 021_loader-files-d; this fixes config of gdk loaders and hence the + current ia32-libs implementation; the change in 2.12.0-3 was incorrect in + that it flipped the order for im modules and pixbuf loaders, but only im + modules had to be flipped; the reason im modules had to be flipped is that + the first list of modules wins for im modules as there is some duplicate + checking, while in the case of gdk pixbufs, the last file wins. What + remains to be done here is: + - biarch support, similar to pango, by loading /usr/lib32 and /usr/lib64 + stuff before /usr/lib; allows dropping the config file hack in + ia32-libs. + - loading of modules from multiarch locations (not multiarch); allows + dropping the config file hack in ia32-libs. + * Bump build-deps and libgtk2.0-dev's deps to ensure we get Xorg dev + packages with .pc files, see list below; thanks Anon Sricharoenchai; + closes: #370693. + libxext-dev >= 1:1.0.1-2, libxinerama-dev >= 1:1.0.1-4.1, libxi-dev >= + 1:1.0.1-4, libxrandr-dev >= 1:1.0.2-2, libxfixes-dev >= 1:3.0.0-3, + libxcomposite-dev >= 1:0.2.0-3, libxdamage-dev >= 1:1.0.1-3. + + [ Josselin Mouette ] + * 061_foreign_colormaps.patch: stolen from upstream SVN. Don't call + XFreeColormap on foreign colormaps, this causes crashes in e.g. + vinagre. Closes: #477199. + * Apply multiarch patch by Javier Serrano Polo, replacing all + occurrences of usr/lib by $(LIBDIR). Closes: #468100. + * rules: don't compress .sgml and .devhelp files. + + [ Loic Minier ] + * Fix broken second dh_strip invocation which was not only acting on the + udeb but also on binary packages (-s -pUDEB should have been -pUDEB). + * Update patch 021_loader-files-d to use PIXBUF_FILES_LIBDIR which is + defined in gdk-pixbuf/Makefile.am, similarly to PIXBUF_LIBDIR, and based + on the newly defined loaderfilesdir, similar to loaderdir; update + 070_mandatory-relibtoolize. + * New patch, 022_module-files-append-compat-module-files-d, prefer + /usr/lib32/gtk-2.0//loader-files.d and + /immodule-files.d over the /usr/lib/.../*.d pathnames added in + 020_immodules-files-d and 021_loader-files-d when available; this is + useful for ia32-libs support; other modules might need additional support + depending on how they are loaded, for example GTK_MODULES will probably + still be looked up below libdir, as well as engines, printbackends, + filesystems, and generic modules. See also Ubuntu #205223 and #190227 for + examples. + + -- Loic Minier Sun, 11 May 2008 00:47:26 +0200 + +gtk+2.0 (2.12.9-3) unstable; urgency=low + + [ Loic Minier ] + * Refresh patches 009_gtk-export-filechooser, + 030_gtkentry_password-char-circle, 033_treeview_resizing, + 042_treeview_single-focus, 060_ignore-random-icons + * Fix offsets in patch 095_gtk-im-module-setting; thanks Akira TAGOH; + closes: #473699. + + [ Sebastian Dröge ] + * debian/rules: + + Don't include the udeb in the debug package to get a working debug + package in case the udeb libraries differ from the real ones. + + -- Sebastian Dröge Sat, 12 Apr 2008 14:00:22 +0200 + +gtk+2.0 (2.12.9-2) unstable; urgency=low + + * debian/patches/092_implicit-g-fopen.patch: + + Include glib/gstdio.h for g_fopen to prevent crashes on 64 bit + architectures. Thanks to Dann Frazier for the patch (Closes: #470665). + + -- Sebastian Dröge Wed, 12 Mar 2008 18:52:53 +0100 + +gtk+2.0 (2.12.9-1) unstable; urgency=low + + [ Josselin Mouette ] + * update-icon-caches: always exit with a 0 code to avoid breaking + upgrades when a cache is corrupt. Display a big fat warning instead. + Closes: #466083. + + [ Sebastian Dröge ] + * New upstream bugfix release: + + 092_recentfiles-recursion-fix, dropped merged upstream. + + 070_mandatory-relibtoolize.patch, regenerated for the new version. + * debian/rules, + debian/*.links.in: + + Don't ship very old upstream changelogs and news as they're quite large. + + -- Sebastian Dröge Wed, 12 Mar 2008 09:41:23 +0100 + +gtk+2.0 (2.12.8-1) unstable; urgency=low + + * New upstream bugfix release: + + debian/patches/040_filechooser_single-click.patch, + debian/patches/093_directfb-type-changes.patch, + debian/patches/094_directfb-deprecation-fixes.patch: + - Dropped, merged upstream. + + debian/patches/070_mandatory-relibtoolize.patch: + - Regenerated for the new version. + + -- Sebastian Dröge Wed, 13 Feb 2008 09:11:50 +0100 + +gtk+2.0 (2.12.7-1) unstable; urgency=low + + * Fix GNOME casing in gtk-faq and gtk doc base descriptions. + * Drop cruft trying to convert /usr/share/doc/libgtk2.0-0 directory into a + symlink in libgtk2.0-0.postinst; thanks Sven Joachim; closes: #462057. + * New upstream stable release; no API change; bug fixes and translation + updates. + - Refresh patches 033_treeview_resizing, 042_treeview_single-focus to + apply cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize + - New patch, 094_directfb-deprecation-fixes, fixes directfb build with + GLib 2.15 deprecation of G_GNUC_FUNCTION in favor of G_STRLOC. + * Fix ordering in series. + * New patch, 095_gtk-im-module-setting, adds XSETTINGS support for immodule; + from GNOME 502446. + * New upstream release; no change tarball update. + + -- Loic Minier Mon, 21 Jan 2008 18:42:28 +0100 + +gtk+2.0 (2.12.5-2) unstable; urgency=medium + + * Add ${shlibs:Depends} to libgtk2.0-dev. + * Rework /usr/share/doc symlinks completely; closes: #461440. + - Use a real directory for all packages using a symlink previously: + libgtk2.0-bin, libgtk-directfb-2.0-dev, libgtk2.0-dev, libgtk2.0-0-dbg, + libgtk-directfb-2.0-0, libgtk2.0-0; add a preinst snippet removing the + path on upgrade if it's a symlink and points to the proper directory; + add a prerm snippet removing the path on upgrade (for downgrades) if + it's a directory (and not a symlink). + - Create symlinks for changelog.gz, NEWS.gz, NEWS.pre-1-0.gz, and + README.gz in the /usr/share/doc dirs of these packages as well as for + gtk2-engines-pixbuf; add a libgtk2.0-common unversionned dependency for + all these packages. + - Split dh_installdocs and dh_installchangelogs calls on multiple packages + and use one call per package as the intent was to install in all the + specified packages; also call dh_installdocs and dh_installchangelogs + without any extra file for all packages to install copyright and Debian + changelog. + - Factor the list of dh_installdocs files in DH_INSTALLDOCS_FILES in + rules. + + -- Loic Minier Fri, 18 Jan 2008 10:38:43 +0100 + +gtk+2.0 (2.12.5-1) unstable; urgency=low + + [ Loic Minier ] + * Drop the version in the libgtk2.0-0 -> libgtk2.0-common dependency; the + translations and gtkrc files aren't critical to libgtk's working and have + been compatible with other libgtk versions since years. + * New patch, 094_fix-jpeg-loader-big-buffers, fixes spinguard logic for big + buffers in the JPEG pixbuf loader; GNOME #494667; from SVN r19135. + * New upstream stable releases; no API change; bug fixes and translation + updates. + - Drop patches 092_notebook-critical-warnings, + 094_fix-jpeg-loader-big-buffers, merged upstream. + - Refresh patches 040_filechooser_single-click, 093_directfb-type-changes + to apply cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + + [ Sebastian Dröge ] + * Upload to unstable. + * Fixes FTBFS caused by not installing the png pixbuf loader correctly + (Closes: #461037). + * Update Standards-Version to 3.7.3, no additional changes needed. + * 092_recentfiles-recursion-fix.patch: Guard against recursion in + gtk_recent_files_menu_populate(). Patch from upstream SVN by + William Pitcock (Closes: #459393). + * Drop duplicated ${misc:Depends} from Recommends. + + -- Sebastian Dröge Thu, 17 Jan 2008 10:49:09 +0100 + +gtk+2.0 (2.12.3-2) unstable; urgency=low + + * 092_notebook-critical-warnings.patch: Fix removal of tab labels to not + ref and unref a NULL pointer. Patch from upstream SVN, see BGO #388321. + * 093_directfb-type-changes.patch: Define __u32 and __u8 to fix compilation + with latest directfb from unstable while still supporting older versions. + Patch from BGO #503190. + + -- Sebastian Dröge Wed, 12 Dec 2007 05:36:40 +0100 + +gtk+2.0 (2.12.3-1) unstable; urgency=low + + * Let update-icon-caches skip args which are not dirs or don't exist; fixes + postrm behavior of packages with an icon cache. + * New upstream stable release; no API change; bug fixes and translation + updates. + - Refresh patch 042_treeview_single-focus to apply cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + + -- Loic Minier Tue, 04 Dec 2007 22:39:07 +0100 + +gtk+2.0 (2.12.2-1) unstable; urgency=low + + * New upstream stable release; no API change; bug fixes and translation + updated. + - Drop patches 034_gtkcupsutils_type_fix, 071_fix_gdk_window_null_crasher + fixed upstream. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + + -- Sebastian Dröge Tue, 27 Nov 2007 05:15:01 +0100 + +gtk+2.0 (2.12.1-3) unstable; urgency=low + + * Conflict against metacity < 1:2.20.0-1. Closes: #450693. + * Suggest librsvg2-common for SVG pixbuf support. + * 033_treeview_resizing.patch: fix segmentation fault introduced by + an API inconsistency. + * 003_gdk.pc_privates.patch: generate correct Requires.private for + gdk-2.0.pc containing all necessary dependencies for static linking. + * 006_proper-directfb-modules.patch: refreshed. + * 010_gdkpixbuf_-lm.patch: fix gdk-pixbuf-2.0.pc by adding back -lm, + which is required by some macros. Closes: #451512. + * 070_mandatory-relibtoolize.patch: regenerated. + * rules: copy the extraneous libraries generated in the static build + to the Libs.private of the shared build. + + -- Josselin Mouette Sun, 18 Nov 2007 01:30:52 +0100 + +gtk+2.0 (2.12.1-2) unstable; urgency=low + + * Stop suggesting gtk-engines-pixmap. + * Remove the --enable-explicit-deps flag. Closes: #343711, thanks Tom + Parker. If some other packages still rely on having explicit X11 + dependencies, they are buggy and need to be fixed anyway. + * Keep --enable-explicit-deps in the directfb build; otherwise this + breaks any binary linking against it because the rpath isn't passed. + * 033_treeview_resizing.patch: updated patch from Kristian Rietveld. + + Add a new sizing fix for the case where there is a scrollbar. + * 031_gtksearchenginetracker_fixes.patch: added back, only the name + change was fixed upstream. + * 034_gtkcupsutils_type_fix.patch: type-casting fix from Herbert + Valerio Riedel that allows remote printing. Closes: #448071. + * 040_filechooser_single-click.patch: allow a situation where no + shortcut is selected, to avoid issues for keyboard users. + Closes: #448674. + * 042_treeview_single_focus.patch: don't select the focused item for + GTK_SELECTION_SINGLE type treeviews. Allows the fix in + 040_filechooser_single-click.patch to work. + * Conflict against libeel2-2.18. Closes: #443701, #499070. + * Conflict against xfwm4 < 4.4.1-3 (previous versions freeze on + startup). + * 021_loader-files-d.patch: enclose process_module_file in correct + #ifdef's. + * 040_filechooser_single-click.patch: filter out duplicate entries in + bookmarks. This avoids a situation where the selection is changed to + the duplicate during DnD, causing an assertion error. + Closes: #447279. + + -- Josselin Mouette Sun, 04 Nov 2007 16:22:31 +0100 + +gtk+2.0 (2.12.1-1) unstable; urgency=low + + * New upstream stable release; no API change; bug fixes and translation + updates. + - Drop patches 031_gtksearchenginetracker_fixes, + 080_from_bugzilla_workaround_eclipse_crash, 081_icon-cache-validate + fixed upstream. + - Refresh patches 033_treeview_resizing, 040_filechooser_single-click to + apply cleanly. + - Drop patches 060_opening-display-by-env-error-message, + 065_gtk-filechooser-locale-time merged upstream. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + * Chech the exit status of close() in dh_gtkmodules; closes: #427654. + * New patch, 060_ignore-random-icons, don't list images from unknown + directories in icon cache; closes: #443571, #443574, #444285, #446188. + + -- Loic Minier Sun, 21 Oct 2007 22:05:42 +0200 + +gtk+2.0 (2.12.0-3) unstable; urgency=low + + [ Josselin Mouette ] + * 031_gtksearchenginetracker_fixes.patch: new patch. + + Use libtrackerclient.so.0 (closes: #443403). + + Check that tracker actually works before using it. + + [ Loic Minier ] + * Conflict with libwxgtk2.6-0 << 2.6.3.2.2-1 to prevent the migration of gtk + to testing until the wxwidgets2.6 fix is there too; see #441766 and + friends. + + [ Josselin Mouette ] + * Conflict with glabels << 2.1.3-3 to prevent a segmentation fault + from showing up. + + [ Loic Minier ] + * Cleanup whitespace. + * Add comments to relibtoolizing patch, 070_mandatody-relibtoolize, to + mention the age of the upstream libtool in released tarballs which make + relibtoolizing important for hurd-i386; GNOME #484426; Debian #445001. + + [ Josselin Mouette ] + * 020_immodules-files-d.patch, 021_loader-files-d.patch: read the + GDK_PIXBUF_MODULE_FILE and GTK_IM_MODULE_FILE variables before the + Debian directories. Thanks Thadeu Lima de Souza Cascardo. + Closes: #439004. + + [ Loic Minier ] + * New patch, 080_from_bugzilla_workaround_eclipse_crash, fixes crash when + displaying tooltips in SWT apps such as Eclipse; GNOME #410194; LP + #128232; closes: #445613. + * New patch, 060_opening-display-by-env-error-message, fixes error message + on opening of display to include the display when it was set via the + DISPLAY env var; GNOME #486636; closes: #283076. + * New patch, 065_gtk-filechooser-locale-time, fixes conversion of localized + week days in non-UTF-8 locales in the file chooser; GNOME #482504; + closes: #444927. + * Enable 091_workaround_no_gtk_init_incorrect_display to allow the non-free + Flash plugin to work for users of non-Gtk browsers; please do bug Adobe + about this; closes: #443661, #440165. + * New patch, 071_fix_gdk_window_null_crasher, fixes potential crashes in + IceWeasel's print preview dialog; GNOME #482531; LP #144326; found in the + Ubuntu package. + + -- Loic Minier Sun, 14 Oct 2007 20:46:29 +0200 + +gtk+2.0 (2.12.0-2) unstable; urgency=low + + [ Josselin Mouette ] + * Add a conflict against openoffice.org-core (<< 2.2.1-8). + Closes: #439256. + + [ Loic Minier ] + * Upload to unstable; drop check-dist include. + + -- Loic Minier Thu, 20 Sep 2007 11:59:26 +0200 + +gtk+2.0 (2.12.0-1) experimental; urgency=low + + [ Alan Baghumian ] + * New upstream stable release + - Regenerated 070_mandatory-relibtoolize.patch + * Added 081_icon-cache-validate.patch, GNOME #476342 + + [ Loic Minier ] + * Refresh patches 033_treeview_resizing and 040_filechooser_single-click to + apply cleanly. + * Drop patch 080_from_svn_fix_dangling_tooltip, merged upstream. + * Bump shlibs to 2.12.0 in the new upstream release for the addition of + gdk_window_thaw_toplevel_updates_libgtk_only() and + gdk_window_freeze_toplevel_updates_libgtk_only() to the ABI. + * Add disabled patch 091_workaround_no_gtk_init_incorrect_display, taken + from the Ubuntu package; it works around broken applications missing a + call to gtk_init() but the breakage should better be exposed now so that + applications can be fixed in time for release. + + -- Loic Minier Tue, 18 Sep 2007 22:30:39 +0200 + +gtk+2.0 (2.11.6-1) experimental; urgency=low + + [ Loic Minier ] + * Don't run the directfb testsuite on kfreebsd as it hangs; proposed patch + by Petr Salinger; closes: #431477. + + [ Josselin Mouette ] + * Move manual pages of binaries in /usr/sbin to section 8. + * update-icon-caches: new script, updates the icon caches in a given + list of directories. It is meant to be used by packages shipping + icons, in the postinst/postrm. + For transition purposes, icon caches are currently updated but not + created if they don't already exist. + * Install this script and its manual page in libgtk2.0-bin. + + [ Loic Minier ] + * Call dh_shlibdeps separately for the udeb and add a + -l/usr/lib/libcairo-directfb/lib/ flag to ensure libcairo-directfb2 is + found. + * New upstream development release, with API additions. + - Bump up shlibs to >= 2.11.6. + - Refresh patches 006_proper-directfb-modules, + 015_default-fallback-icon-theme, 040_filechooser_single-click to apply + cleanly. + - Update patches 009_gtk-export-filechooser, 033_treeview_resizing to + apply; update relibtoolizing patch, 070_mandatory-relibtoolize. + * Update patch 009_gtk-export-filechooser: + - gtk/Makefile.am (gtk_private_h_sources, gtk_semi_private_h_sources): + export gtkquery.h and gtksearchengine.h as semi-private. + - gtk/gtkquery.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef guard. + - gtk/gtksearchengine.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef + guard. + + -- Loic Minier Tue, 24 Jul 2007 10:43:23 +0200 + +gtk+2.0 (2.11.5-1) experimental; urgency=low + + * New upstream development release, with API additions; the new API may + still change incompatibly, especially the tooltips API. + - Bump shlibs to >= 2.11.5. + - Bump up libpango1.0-dev build-dep to >= 1.17.3. + - Ship the new gtk-builder-convert Python script to convert Glade files to + GtkBuilder syntax in libgtk2.0-dev; don't call dh_py* to generate a + ${python:Depends} but Recommend python (>= 2.4) to avoid pulling python + on buildds; the script requires python >= 2.4, but this is not enforced + in the dependencies. + - Refresh patches 001_static-linking-dont-query-immodules, + 006_proper-directfb-modules, 040_filechooser_single-click to apply + cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + * Use -s instead of -a in arch-specific dh_* calls. + + -- Loic Minier Tue, 03 Jul 2007 13:01:25 +0200 + +gtk+2.0 (2.11.4-1) experimental; urgency=low + + [ Josselin Mouette ] + * 040_filechooser_single-click.patch: fix the patch to apply cleanly + again, and enable it. + + [ Loic Minier ] + * Pass -mminimal-toc in CFLAGS for ppc64 support; thanks Andreas Jochens; + closes: #386815. + * New upstream development release, with API additions; the new API may + still change incompatibly. + - Bump shlibs to >= 2.11.3. + - Refresh patches 006_proper-directfb-modules, + 008_implicit_pointer_conversion_gdkgc_directfb, + 009_gtk-export-filechooser, 030_gtkentry_password-char-circle, + 033_treeview_resizing, 040_filechooser_single-click, and 041_ia32-libs + to apply cleanly. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + * Add a debian/dh_listmissing.pl script based on dh_install snippets but + customized to handle multiple source installation dirs which can report + files which were not installed to a package. + * New list-missing rule to list files which were not installed to a package + calling debian/dh_listmissing.pl. + * Also depend on libxcomposite-dev, libxdamage-dev; thanks Sébastien Bacher. + * Ship etc/gtk-2.0/im-multipress.conf in the shared library. + * New upstream development release, with incompatible API changes; the new + API may still change incompatibly. + - Bump shlibs to >= 2.11.4. + - Refresh relibtoolizing patch, 070_mandatory-relibtoolize. + - Bump up libglib2.0-dev build-dep to >= 2.11.5. + + -- Loic Minier Wed, 20 Jun 2007 10:47:42 +0200 + +gtk+2.0 (2.11.2-1) experimental; urgency=low + + * New upstream release series; these are development releases, the new API + may still change incompatibly. + - Target at experimental; include check-dist. + - Bump shlibs to >= 2.11.2. + - Refresh patches 001_static-linking-dont-query-immodules, 005_xpmico, + 009_gtk-export-filechooser, 015_default-fallback-icon-theme, + 033_treeview_resizing, 041_ia32-libs to apply cleanly. + - Update patch 021_loader-files-d to apply with the upstream G_MODULE + changes and the support for included modules. + - Update patch 030_gtkentry_password-char-circle to apply. + - Drop patch 031_cursor-blinking-timeout, merged upstream. + - Disable 040_filechooser_single-click for now as it doesn't apply cleanly + and doesn't seem critical; add a description and cross-refs. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + - Bump up build-deps to libglib2.0-dev >= 2.13.1, libpango1.0-dev >= + 1.15.3, gtk-doc-tools >= 1.6. + - Build-dep on libxcomposite-dev for composite support. + - Build-dep on libxdamage-dev for damage support. + - Enable test print backend by passing --enable-test-print-backend to + configure. + * Update 007_implicit_pointer_conversion_gdkdrawable_directfb to include + cairo.h instead of defining the directfb feature manually. + * New patch, 006_proper-directfb-modules, fixes pkg-config modules included + to build directfb stuff, uncovered by the change in + 007_implicit_pointer_conversion_gdkdrawable_directfb; refresh + relibtoolizing patch. + * Add cross-refs to patch headers. + * Clean up CFLAGS. + * Prepare passing -z defs via LDFLAGS in the future. + + -- Loic Minier Wed, 13 Jun 2007 16:57:47 +0200 + +gtk+2.0 (2.10.13-1) unstable; urgency=low + + * Bump Conflicts to iiimf-client-gtk << 12.3.91-4. + * Upload to unstable; drop check-dist include. + * New upstream release; no API change. + - Drop patches 011_directfb-build-fixes-from-head, + 013_gdkproperty-directfb-strdup, 032_filechooser-sizing, + 090_capslock-numlock-im-thai merged upstream. + - Update relibtoolizing patch, 070_mandatory-relibtoolize. + + -- Loic Minier Wed, 13 Jun 2007 10:06:49 +0200 + +gtk+2.0 (2.10.12-3) experimental; urgency=low + + * Use printf instead of echo in dh_gtkmodules to write to write data to + files in complex_doit() calls as dash's echo will always honor escape + sequences. + * Conflict with gtk2-engines-ubuntulooks (<= 0.9.11-1). + * New patch, 009_gtk-export-filechooser, exports some filechooser API for + use in maemo / Hildon; from Nokia, taken from the Ubuntu package; update + patch 032_filechooser-sizing to apply cleanly; bump shlibs to 2.10.12-3; + update patch 070_mandatory-relibtoolize. + * Kill patch 025_dfb-window-destroy-leak from source tree as well now. + * Include check-dist to prevent accidental uploads to unstable. + + -- Loic Minier Thu, 07 Jun 2007 00:13:00 +0200 + +gtk+2.0 (2.10.12-2) unstable; urgency=low + + [ Loic Minier ] + * New patch, 15_default-fallback-icon-theme, sets the default + gtk-fallback-icon-theme to "gnome"; closes: #421353. + * Also honor parallel=n in DEB_BUILD_OPTIONS. + + [ Josselin Mouette ] + * 032_filechooser-sizing.patch: patch from Carlos Garnacho in bugzilla + #420285, committed in trunk. Fixes (among many other things) infinite + flickering with some window managers (closes: #420021). + * Refresh other patches. + + [ Loic Minier ] + * New patch 090_capslock-numlock-im-thai, fixes Thai input method when + NumLock/CapsLock is on; thanks Theppitak Karoonboonyanan; GNOME #438261; + closes: #414698. + * Re-add patch 031_cursor-blinking-timeout to patch series. + + [ Josselin Mouette ] + * 033_treeview_resizing.patch: fix column resizing in GtkTreeView when + there is an expander column. See bugzilla #316087. + + -- Josselin Mouette Fri, 18 May 2007 19:02:20 +0200 + +gtk+2.0 (2.10.12-1) unstable; urgency=low + + * Bump Conflicts to gtk-im-libthai <= 0.1.4-2. + * Document that 2.10.11-2 bumped the conflict on scim-gtk2-immodule to <= + 1.4.4-7. + * Post-transition bump of conflicts to gtk2-engines-wonderland << 1.0-4, + imhangul (<< 0.9.13-5), gcin (<< 1.3.4-2), gtk-im-libthai (<< 0.1.4-3), + scim-gtk2-immodule (<< 1.4.4-8), uim-gtk2.0 (<< 1:1.4.1-3), + gtk2-engines-cleanice (<< 2.4.0-1.1), gtk2-engines-magicchicken + (<< 1.1.1-7.1), gtk2-engines-qtpixmap (<< 0.28-1.2), libginspx0 + (<< 20050529-1.1), tamil-gtk2im (<< 2.2-4.4), gtk2-engines-xfce + (<< 2.4.0-1), scim-bridge-client-gtk (<< 0.4.10-1.1), swf-player + (<< 0.3.6-2.3), gtk-qt-engine (<< 1:0.8~svn-rev36-1). + * Let the udeb provide the Gtk+ module ABI (binver); closes: #419592. + * Add a -k flag to dh_gtkmodules, matching the change in dh_pangomodules. + * Use this new flag for the udeb and the shared library packages. + * Add ${misc:Depends}. + * Drop "libtool_is_fool" snippet patching hardcode_libdir_flag_spec and + archive_cmds which is probably dangerous with newer libtools. + * Drop patch 000_gtk+-2.0.6-exportsymbols which made all libs export way too + many symbols and hence was dangerous; closes: #327652. + - Update patch 070_mandatory-relibtoolize. + * Fix description of the -dbg package. + * New upstream release; no ABI change. + - Refresh patches 011_directfb-build-fixes-from-head and + 040_filechooser_single-click. + - Update relibtoolizing patch. + + -- Loic Minier Thu, 03 May 2007 15:13:54 +0200 + +gtk+2.0 (2.10.11-2) unstable; urgency=low + + [ Loic Minier ] + * Bump libwmf conflicts to << 0.2.8.4-5. + * Fix control generation. + * Include the new uploaders.mk from gnome-pkg-tools instead of duplicating + its logic; build-dep on gnome-pkg-tools >= 0.11. + * Run "make check" test suite for all flavors except if DEB_BUILD_OPTIONS + contains the "nocheck" keyword; ignore failures. + * Add support for DEB_BUILD_OPTIONS_PARALLEL. + * Re-enable FAQ and Tutorial which were fixed upstream at some point; update + installation dirs. + * Call dh_installman -a. + + [ Josselin Mouette ] + * 040_filechooser_single-click.patch: remove shortcut-related actions + in the response callback. This fixes the annoying bug where you need + to click twice on "save" after clicking on a shortcut. + + [ Loic Minier ] + * Initialize CFLAGS to -Wall -g; pass debian/rules' CFLAGS and LDFLAGS to + configure, doh! + * Document that 2.10.8 (and 2.10.9) fixed CVE-2007-0010. + * Stop shipping engines in the udeb again. + * New patch, 040_ia32-libs.patch, for ia32-libs support via ia32-libs-gtk; + based on a patch by Goswin von Brederlow with the following changes: a) + use .32 and .64 suffixes in all cases (compatible with Ubuntu), b) fix + typo, c) use g_file_test() instead of g_access(); does not cover module + loading via env vars; closes: #406453. + * Upload to unstable; drop check-dist include. + * Wrap build-deps and deps. + * Add Conflicts on gcin (<= 1.3.4-1), gtk-qt-engine (<= 1:0.8~svn-rev31-3), + iiimf-client-gtk (<= 12.3.91-3), libginspx0 (<= 20050529-1), + scim-bridge-client-gtk (<= 0.4.10-1), iiimgcf (<= 11.4.1870-7). + * Bump Conflicts to gtk2-engines-gtk-qt << 1:0.7-2, imhangul <= + 0.9.13-3.1, libgnomeui-0 <= 2.14.1-3, swf-player <= 0.3.6-2.2, + tamil-gtk2im <= 2.2-4.3, uim-gtk2.0 <= 1:1.2.1-9, scim-gtk2-immodule (<= + 1.4.4-7). + * Drop docbook-utils and linuxdoc-tools-text from the build-deps. + + -- Loic Minier Fri, 13 Apr 2007 22:25:49 +0200 + +gtk+2.0 (2.10.11-1) experimental; urgency=low + + * Move build and install base dirs to debian/build and debian/install + instead of debian/tmp/build and debian/tmp/install. + * Cleanup rules. + * Make debian/control PHONY. + * Use @DOC_PKG@ to point at the HTML doc as well. + * Tune udeb description. + * New upstream releases. + - Drop patch 003_default_fallback_icon_theme, upstream added a fallback on + hicolor. + - Drop patch 015_gdkmain-x11_button-mask.patch, merged upstream. + - Refresh patches. + - Relibtoolize. + * Remove 031_cursor-blinking-timeout from patch series as it causes a + regression in the Thai IM; closes: #414698. + + -- Loic Minier Wed, 14 Mar 2007 14:11:58 +0100 + +gtk+2.0 (2.10.9-1) experimental; urgency=low + + [ Josselin Mouette ] + * 024_filechooser_single-click.patch: + + Monitor selection changes instead of monitoring the cursor. + + Miscellaneous fixes. + * 015_gdkmain-x11_button-mask.patch, stolen from upstream SVN: fix the + issue of resizing columns needing two tries in some cases + (closes: #406906). + + [ Loic Minier ] + * Add a get-orig-source target to retrieve the upstream tarball. + * Rename patch 023_gtkentry_password-char-circle to + 030_gtkentry_password-char-circle. + * Rename patch 024_filechooser_single-click to 040_filechooser_single-click. + * New patch, 031_cursor-blinking-timeout.patch, to stop blinking the cursor + after a configurable timeout; helps saving energy by not waking up all Gtk + processes with a cursor continuously; from upstream SVN r16366 (trunk); + GNOME #353670, #352442. + * Include the new check-dist Makefile to prevent accidental uploads to + unstable; bump build-dep on gnome-pkg-tools to >= 0.10. + * Bump up libglib2.0-dev of libgtk2.0-dev dep to >= 2.12.0 as well; thanks + Marc Brockschmidt. + + [ Josselin Mouette ] + * New upstream release. + - Fixes CVE-2007-0010; RedHat #218755, #218932. + * Remove patches integrated upstream: + + 009_directfb_build.patch + + 010_fix-stuc-vs-stub-typo.patch + + 012_missing-stub-files.patch + + 014_gtktreeview_missing-icons.patch + * Refresh patches: + + 020_immodules-files-d.patch + + 031_cursor-blinking-timeout.patch + + 040_filechooser_single-click.patch + + 070_mandatory-relibtoolize.patch + + -- Josselin Mouette Thu, 1 Mar 2007 21:50:34 +0100 + +gtk+2.0 (2.10.7-1) experimental; urgency=low + + * New upstream release. + * Refresh patches. + * 022_gtkcupsutils_multipage.patch: removed, integrated upstream. + * Regenerate 070_mandatory-relibtoolize.patch. + * 014_gtktreeview_missing-icons.patch: update patch with the upstream + fix that was committed. + * 009_directfb_build.patch: new patch, fix typo in configure.in for + the directfb build. + + -- Josselin Mouette Wed, 10 Jan 2007 00:03:03 +0100 + +gtk+2.0 (2.10.6-5) experimental; urgency=low + + [ Loic Minier ] + * Really update gtk2-engines conflict to << 2.8.2-2. + + [ Josselin Mouette ] + * 022_gtkcupsutils_multipage.patch: new patch, stolen upstream. + Properly pass multi-value options to cups (closes: #404867). + * 023_gtkentry_password-char-circle.patch: new patch to replace stars by + black circles in password fields; thanks Sven Arvidsson; found in Fedora + and OpenSuse (closes: #401568). + * 024_filechooser_single-click.patch: patch from UHU-Linux to make the + side pane in the filechooser usable with a single click + (closes: #405296). + + -- Josselin Mouette Wed, 3 Jan 2007 00:14:28 +0100 + +gtk+2.0 (2.10.6-4) experimental; urgency=low + + [ Loic Minier ] + * Update gtk2-engines conflict to << 2.8.2-2. + + [ Josselin Mouette ] + * 014_gtktreeview_missing-icons.patch, stolen from bugzilla: fix + missing icon in "save as" filechooser dialogs. + + -- Josselin Mouette Thu, 30 Nov 2006 20:42:44 +0100 + +gtk+2.0 (2.10.6-3) experimental; urgency=low + + [ Loic Minier ] + * Update gtk2-engines conflict to <= 2.8.1-4. + * Update gtk2-engines-pixbuf conflict to <= 2.10. + * Bump up libcairo-directfb2-dev build-dep to 1.2.4-4. + + [ Josselin Mouette ] + * 070_mandatory-relibtoolize.patch: recreate with autoconf 2.59, to + avoid the AM_GLIB_DEFINE_LOCALEDIR bug (making GTK+ applications + untranslated). + * Make gtk2-engines conflict less strict. + + -- Josselin Mouette Sat, 11 Nov 2006 00:04:46 +0100 + +gtk+2.0 (2.10.6-2) experimental; urgency=medium + + * New patch, 013_gdkproperty-directfb-strdup, to g_strdup() strings returned + by gdk_atom_name(); GNOME #357611; thanks Attilio Fiandrotti. + + -- Loic Minier Sun, 8 Oct 2006 16:03:08 +0200 + +gtk+2.0 (2.10.6-1) experimental; urgency=low + + * New upstream release. + - Drop patch 013_stock-icons-typo-in-rm, merged upstream. + - Relibtoolize: update patch 070_mandatory-relibtoolize. + + -- Loic Minier Wed, 4 Oct 2006 11:41:37 +0200 + +gtk+2.0 (2.10.5-1) experimental; urgency=low + + * Fail if dh_gtkmodules called query helpers on module files, but no module + could be written to the module file. + * Parse stderr as well as the stdout of query helpers and bail out if + g_module_open(); suggest adjusting LD_LIBRARY_PATH. + * Fix some probably harmless typos. + * New patch, 030_gtkfilechooserbutton-update-combo-box-null-base-path, to + avoid a segfault when opening some filechoosers; thanks Sam Morris for + reporting and testing; from CVS HEAD; GNOME #358405; closes: #390231. + * New upstream release; no API change. + - Drop patch 030_gtkfilechooserbutton-update-combo-box-null-base-path, + merged upstream. + - New patch, 013_stock-icons-typo-in-rm, to fix a typo in gtk/Makefile.am; + GNOME #358931. + - Relibtoolize: update patch 070_mandatory-relibtoolize. + + -- Loic Minier Mon, 2 Oct 2006 16:59:18 +0200 + +gtk+2.0 (2.10.4-1) experimental; urgency=low + + * New upstream release; no API change. + - Switch from tar-in-tar and sys-build to regular source and quilt + patching; build-depend on quilt; remove occurrences of $(TOP_SRC_DIR) + and @TOP_SRC_DIR@ which isn't needed anymore. + - Refresh patch 021_loader-files-d. + - New patch, 010_fix-stuc-vs-stub-typo, to replace "stuc" with "stub" in + gtk/Makefile.am; from HEAD, not commited in the gtk-2-10 branch. + - New patch, 011_directfb-build-fixes-from-head, to backport directfb + build fixes; from HEAD not commited in the gtk-2-10 branch. Thanks + Attilio Fiandrotti for pointing me at the actual log entry. + - New patch, 012_missing-stub-files, to add gtk/gtkplug-stub.c and + gtksocket-stub.c missing from the tarball; from the gtk-2-10 branch. + - Relibtoolize: update patch 070_mandatory-relibtoolize. + + -- Loic Minier Sun, 24 Sep 2006 12:24:31 +0200 + +gtk+2.0 (2.10.3-3) experimental; urgency=medium + + * Update patch 021_loader-files-d to not warn about missing module files or + unreadable files as is already the case for immodules; see #388450 for + more background. + * Fix awful typo which broke generation of the udeb shlibs and which I + didn't notice with debdiff; thanks Frans Pop. + * Drop debian/docs.in and pass the list of files to dh_installdocs instead; + should fix the missing README and NEWS files. + + -- Loic Minier Thu, 21 Sep 2006 17:35:16 +0200 + +gtk+2.0 (2.10.3-2) experimental; urgency=low + + * Drop obsolete --with-cairo-backend configure flag. + * Make update-gtk-immodules and update-gtk-immodules no-ops, to avoid + modules to recreate the /etc modules files on upgrades or by mistake; + remove the generated module files in /etc on upgrades. closes: #388450 + * Merge 2.8.20-2; drop patch 009_revert-gdkdrawable-directfb, merged + upstream. + + -- Loic Minier Wed, 20 Sep 2006 22:17:30 +0200 + +gtk+2.0 (2.10.3-1) experimental; urgency=low + + * New upstream releases; with API additions in the filesystem modules API, + probably only used by gtk-demo, and in the quartz gdk backend, not used in + Debian. + - Bump shlibs to >= 2.10.3. + - Drop patch 009_configurable-cairo-backend-module, it was not really + required to select a cairo backend dynamically as the backend is always + cairo-directfb for a directfb gdk. + - Drop patch 010_gdk-require-cairo-module, merged upstream. + - Drop patch 011_gdk-directfb-cvs-changes, this release includes the + changes that were pulled back then. + - Relibtoolize: update patch 070_mandatory-relibtoolize. + + -- Loic Minier Tue, 19 Sep 2006 20:42:38 +0200 + +gtk+2.0 (2.10.1-2) experimental; urgency=low + + * Drop obsolete scary warning in 2.10.1-1. + * Drop update-gtk-immodules and update-gdkpixbuf-loaders calls from + libgtk2.0-0's postinst, this isn't needed for backwards compatibility. + * Use /usr/lib/libgtk2.0-0/gdk-pixbuf-query-loaders and + /usr/lib/libgtk2.0-0/gtk-query-immodules-2.0 instead of + /usr/bin/gdk-pixbuf-query-loaders and /usr/bin/gtk-query-immodules-2.0 in + dh_gtkmodules. + + -- Loic Minier Tue, 19 Sep 2006 16:40:22 +0200 + +gtk+2.0 (2.10.1-1) experimental; urgency=low + + * Add a missing x11proto-xext-dev build-dep for X SYNC checks. + * Add a missing libatk1.0-dev (>= 1.9.0) build-dep for ATK. + * Replace GTK_BINARY_VERSION in debian/*.in to set the binary version of + binary modules; it is set via debian/scripts/vars and currently in use in + update-gdkpixbuf-loaders.in and update-gtk-immodules.in. + * Remove fake support for version argument from update-gdkpixbuf-loaders and + update-gtk-immodules. + * New upstream development releases with API additions, and non-public API + changes and removals. + - Target at experimental. + - Update copyright from AUTHORS. + - Update upstream URL. + - Bump up libglib2.0-dev build-dep to >= 2.12.0. + - Add a libdirectfb-dev (>= 0.9.24) build-dep for DirectFB. + - Add a libcupsys2-dev (>= 1.2) build-dep for CUPS printing backend. + - Bump shlibs to >= 2.10.0. + - Update list of docs to ship; now includes NEWS. (Closes: #384225) + - Update watch file to track stable releases and use HTTP. + - Set GTK_BINARY_VERSION to 2.10.0. + - Add or bump Conflicts with packages shipping modules for the 2.4.0 + binary version of Gtk: gtk2-engines-wonderland <= 1.0-3, + gtk2-engines-cleanice <= 2.4.0-1, gtk2-engines <= 1:2.6.10-2, + gtk2-engines-magicchicken <= 1.1.1-7, gtk2-engines-pixbuf <= 2.8.20-1, + gtk2-engines-gtk-qt <= 1:0.7-1, gtk2-engines-qtpixmap <= 0.28-1.1, + librsvg2-common <= 2.14.4-2, gtk2-engines-xfce <= 2.3.90.2-1, + libgnomeui-0 <= 2.14.1-2, tamil-gtk2im <= 2.2-4.2, imhangul <= 0.9.13-3, + iiimgcf <= 11.4.1870-7.3, scim-bridge <= 0.2.4-1, scim-gtk2-immodule <= + 1.4.4-4, gtk-im-libthai <= 0.1.4-1, uim-gtk2.0 <= 1:1.2.1-3, libwmf-dev + <= 0.2.8.4-2, libwmf0.2-7 <= 0.2.8.4-2, swf-player <= 0.3.6-2.1. + - Replace 001_gtk+-2.2.0-buildfix-immodule patch with + 001_static-linking-dont-query-immodules which has more chances to be + merged upstream; see GNOME #346531. + - Drop 006_gtk+-2.8.17-directfb patch, merged upstream. + - Refresh patches: 000_gtk+-2.0.6-exportsymbols, + 003_default_fallback_icon_theme, + 004_gtk+-ximian-gtk2-filesel-navbutton-5, + 007_implicit_pointer_conversion_gdkdrawable_directfb. + - Update 070_mandatory-relibtoolize with libtoolize --force --copy && + aclocal-1.7 -I m4macros && autoconf && automake-1.7. + - New patch, 002_static-linking-dont-build-perf, to avoid building the + perf measurement tools in static builds; see GNOME #346559; needs + the 001_gtk+-2.2.0-buildfix-immodule patch. + - New patch, 009_configurable-cairo-backend-module, to add a new + --with-cairo-backend flag which will select a cairo-$backend.pc + pkg-config module instead of the default of cairo.pc; see GNOME #351509. + - Configure with --with-cairo-backend=directfb for the dfb build. + - New patch, 010_gdk-require-cairo-module, to require the Cflags and Libs + from the cairo-directfb module (as $cairo_module); see GNOME #351519. + - New patch, 011_gdk-directfb-cvs-changes, backport of CVS only build + fixes to permit compilation against directfb 0.9.25.1. + * Fix bashishms in debian/rules. (Closes: #385473) + * Generate a Provides: gtk2.0-binver-@BINVER@ in libgtk2.0-@SONAME@ to track + the binary version of Gtk and to permit Gtk modules to depend on it. + * Define the flags for each flavor (shared, static, and udeb) in Makefile + vars and share the common flags. + * Only pass --host to configure if DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE + differ. + * Stop shipping *.la and *.a files of modules (all module types). + * Move GTK_BINARY_VERSION back to rules. + * Use GTK_BINVER_DEP instead of BINVER. + * Build flavors out-of-tree; saves 25% of required build space (315 MB) and + some build time / IO load; this clutters the headers a little (full build + path is mentionned instead of ".") though. + * Rewrite and cleanup the build process completely. + * Install the full set of pkg-config files from the dfb flavor in + /usr/lib/pkgconfig/libgtk-directfb-2.0; to use this feature, set + PKG_CONFIG_PATH while invoking pkg-config (or configure); the + /usr/lib/pkgconfig/*directfb*.pc files will be removed when Debian sources + have been converted. + * In the same spirit, gdkconfig.h is in /usr/lib/gtk-2.0/include/directfb; + to use it, prepend -I/usr/lib/gtk-2.0/include/directfb to CFLAGS. + * Fix generation of /etc/gtk-2.0/gdk-pixbuf.loaders for the udeb. + (Closes: #382435) + * Build-depend on libcairo-directfb2-dev >= 1.2.4-2 to get PDF/PS support in + the directfb flavor of libcairo. + * Recommend the linked source packages in libgtk2.0-doc instead of simply + suggesting them. + * Rewrite update-gdkpixbuf-loaders and update-gtk-immodules. + * Drop double libatk1.0-dev build-dep. + * Empty the dependency_libs in the *.la files of libgtk2.0-dev. + * New immodule files handling with *.immodules files below + /usr/lib/gtk-2.0//immodule-files.d. + - New patch, 020_immodules-files-d, to split the module search path on + ":", as is done in Pango, prepend + /usr/lib/gtk-2.0//immodule-files.d to the search path, + and to read all *.immodules files when a directory is encountered in the + search path. + - Pre-generate + /usr/lib/gtk-2.0//immodule-files.d/libgtk2.0-0.immodules + for the shared library. + - Continue generating /etc/gtk-2.0/gtk.immodules until packages are + updated. + * Add the libpixmap engine to the udeb for the new Bladr GTK theme for g-i. + * New loader files handling with *.loaders files below + /usr/lib/gtk-2.0//loaders-files.d. + - New patch, 021_loader-files-d, to split the module search path on + ":", as is done in Pango, prepend + /usr/lib/gtk-2.0//loader-files.d to the search path, + and to read all *.loaders files when a directory is encountered in the + search path. + - Pre-generate + /usr/lib/gtk-2.0//loader-files.d/libgtk2.0-0.loaders + for the shared library and libgtk-directfb-2.0-0-udeb.loaders for the + udeb. + - Continue generating /etc/gtk-2.0/gdk-pixbuf.loaders until packages are + updated. + - This particular patch uses two ugly workarounds and needs work before + being sent upstream. + * New Debhelper-based command, dh_gtkmodules, to create module files for IM + modules and GdkPixbuf loaders; it will still add a dependency on the + binary version of Gtk for other modules. + * Make use of the new dh_gtkmodules during the build (override the path to + gtk-query-immodules-2.0 and gdk-pixbuf-query-loaders. + * Add ${misc:Depends} to gtk2-engines-pixbuf. + + -- Loic Minier Tue, 19 Sep 2006 15:13:38 +0200 + +gtk+2.0 (2.8.20-2) unstable; urgency=low + + * New patch, 009_revert-gdkdrawable-directfb, to revert a fix for Italic + letters which caused ugly unneeded horizontal/vertical lines; thanks + Davide Viti. (Closes: #386860) + * Fix typo, install-dfb depends on build-dfb, not build-shared. + * Fix typo (DFB_PKGFIR versus DFB_PKGDIR), use the BUILD_DFB_DIR version of + gdk-pixbuf-query-loaders, and set LD_LIBRARY_PATH to the udeb's /usr/lib; + should fix the empty /etc/gtk-2.0/gdk-pixbuf.loaders. (Closes: #382435) + * Ship all engines of the DirectFB build in the udeb, that is + engines/libpixmap.so. + + -- Loic Minier Wed, 20 Sep 2006 21:36:04 +0200 + +gtk+2.0 (2.8.20-1) unstable; urgency=low + + * New upstream releases; no API changes. + + -- Loic Minier Mon, 14 Aug 2006 16:52:04 +0200 + +gtk+2.0 (2.8.18-7) unstable; urgency=medium + + * Rename patches to reflect the order in which they are applied: + - 000_gtk+-2.2.0-buildfix-immodule to 001_gtk+-2.2.0-buildfix-immodule + - 001_default_fallback_icon_theme to 003_default_fallback_icon_theme + - 001_gtk+-ximian-gtk2-filesel-navbutton-5 to + 004_gtk+-ximian-gtk2-filesel-navbutton-5 + - 002_xpmico to 005_xpmico + - 003_gtk+-2.8.17-directfb to 006_gtk+-2.8.17-directfb + - 005_implicit_pointer_conversion to + 007_implicit_pointer_conversion_gdkdrawable_directfb + - 006_implicit_pointer_conversion to + 008_implicit_pointer_conversion_gdkgc_directfb + * Change the 000_gtk+-2.0.6-exportsymbols, and + 001_gtk+-2.2.0-buildfix-immodule patches to only patch the + non-autogenerated files. + * Rename 004_reautoconf to 070_mandatory-relibtoolize; update it for the + previous changes; use an older autoconf version to work around a bug + in the glib-gettext macro which broke localization in dialog boxes; thanks + Mike Hommey. + + -- Loic Minier Sun, 6 Aug 2006 11:49:48 +0200 + +gtk+2.0 (2.8.18-6) unstable; urgency=low + + * 005_implicit_pointer_conversion.patch: patch from Dann Frazier to + fix an implicit pointer conversion error on 64-bit architectures + (closes: #381081). + * 006_implicit_pointer_conversion.patch: fix another implicit + conversion by allowing deprecated functions in the necessary header + file (closes: #381082). + + -- Josselin Mouette Wed, 2 Aug 2006 14:48:54 +0200 + +gtk+2.0 (2.8.18-5) unstable; urgency=low + + [ Loic Minier ] + * Set Priority to extra to sync with overrides. + + [ Josselin Mouette ] + * Set priority to extra for the udeb. + * Bump build dependencies for libcairo to the stable version. + * Lots of cleanup in debian/rules. + * Rename directfb packages to libgtk-directfb-2.0-*. + * Move .a and .la files from the engine package to the development + package. + + Add appropriate Replaces: field. + + -- Josselin Mouette Sun, 30 Jul 2006 18:21:37 +0200 + +gtk+2.0 (2.8.18-4) experimental; urgency=low + + * Bump libcairo build dependencies. + * Only install the PNG loader in the udeb. + * Rebuild against a fixed glib. + + -- Josselin Mouette Mon, 26 Jun 2006 22:34:27 +0200 + +gtk+2.0 (2.8.18-3) experimental; urgency=low + + [ Loïc Minier ] + * Bump libgtk2.0-dev dependency and build-dep on libx11-dev to >= 2:1.0.0-6 + as it ships x11.pc which ends up in the Requires of gdk-x11-2.0.pc. + (Closes: #326199, #370693) + [debian/control, debian/control.in] + + [ Josselin Mouette ] + * 003_gtk+-2.8.17-directfb.patch: new patch, bringing a new directfb + backend. + * 004_reautoconf.patch: new patch, result of "libtoolize --force + --copy; aclocal; autoheader; automake -acf; autoconf; rm -rf + autom4te.cache" with the previous patches applied. + * Make 3 new packages: libgtk+2.0-directfb0-udeb, + libgtk+2.0-directfb-dev and libgtk+2.0-directfb0. + * Add a new build flavour for directfb (only the shared version). + * Use chrpath to remove the rpath in the udeb. + * Generate a fake shlibs.local to handle all intra-gtk dependencies by + hand. + * Switch to debhelper compatibility mode 5 and require 5.0.22. + * Standards-version is 3.7.2. + * Break the circular dependency between libgtk2.0-0, libgtk2.0-bin and + libgtk2.0-common (closes: #309604). + + Remove libgtk2.0-common dependency on libgtk2.0-0. + + Remove libgtk2.0-0 dependency on libgtk2.0-bin. + + Use ${binary:Version} and ${source:Version} to ensure strict + dependencies. + + Build-depend on dpkg-dev 1.13.19. + + Invert the libgtk2.0-common -> libgtk2.0-0 symbolic link. + + libgtk2.0-common.preinst, libgtk2.0-0.postinst: dance the symbolic + link samba. + + Move support binaries and scripts to libgtk2.0-0 and make + libgtk2.0-bin a binary-all package containing only scripts. + + Move /usr/sbin/update-* calls to libgtk2.0-0. + + update-*: call binaries at their new location. + + -- Josselin Mouette Mon, 26 Jun 2006 22:31:14 +0200 + +gtk+2.0 (2.8.18-1) unstable; urgency=low + + * New upstream version: + Bugs fixed: + - search box positioning has some bugs + - Gdk does not translate VK_NUMPADx to GDK_KP_x + - sanely handle late (re)setting of dnd image + - Text is shifted off-by-one in Add to panel + - gtk_widget_create_pango_layout docs typo + - GtkLayout In GtkScrolledWindow does not receive the scroll_event + - gtktreeview has RTL problems with toggle buttons if using gtktreestore + as a model + - Wrong drop location in GtkEntry + - GtkImage animation CRITICALS on switching themes + - DnD: Conditional jump or move depends on uninitialised value + - cursor blocked to dnd mode after using shift and dnd on a GtkCalendar + - Crashes while creating source code w/GtkFontSelection + - the right edge tab does not appear when switching tab + - Warning in gtk_paned_compute_position + - gdk should set resolution on PangoCairoFontmap, not PangoCairoContext + - GtkTreeView does not resize correctly + - gtk_tree_view_get_cell_area() forgets depth-one expander + - expander animation not working in RTL mode + - Multiple issues discovered by Coverity + - Make gtk_file_chooser_button_new() friendlier for language bindings + + -- Sebastien Bacher Tue, 30 May 2006 17:02:26 +0200 + +gtk+2.0 (2.8.17-1) unstable; urgency=low + + * New upstream version: + Bugs fixed: + - Expander disclosure button is too small + - gtk_image_clear doesn't cause redraw + - typo in configure.in yields suspicious warning + - gtk_icon_view_set_cursor causes Segmentation fault + - garbage output of --help in non UTF-8 locale + - GtkNotebook does not destroy its children on destroy() + - TreeView DnD between-row highlight colo + - Gtk-Criticals occur when scrolling a text_view that is not realized + - Hidden menubar still activates submenus with kbd + - GtkTreeItem broken + - Clean up button press handling (use one-grab-op-at-a-time pattern) + - broken scrolling when selecting + - GTK+ File-chooser dialog crashes + - Nautilus crashes when dragging icons to another screen + - mixed line separators confuse gtk_text_iter_ends_line + - Textview child is covered by window border + - gdk_pixbuf_loader_new_with_type(): What image types are allowed? + - Missing progress bar label + - Fix a problem which caused grab-notify signal to be missed in some cases + * debian/control.in: + - clear the Build-Depends on xlibs-static-pic | xlibs-pic, not required + - updated the Build-Depends on libpango1.0-dev so it build with + the xorg transitioned version + * * debian/patches/001_default_fallback_icon_theme.patch: + - set the default fallback icon theme to "gnome", fixes the issues with + the moves of icons from hicolor to gnome + + -- Sebastien Bacher Sun, 9 Apr 2006 21:54:11 +0200 + +gtk+2.0 (2.8.16-1) unstable; urgency=low + + * New upstream version + + -- Sebastien Bacher Wed, 15 Mar 2006 19:26:46 +0100 + +gtk+2.0 (2.8.15-1) unstable; urgency=low + + * New upstream version: + * Bugs fixed: + - Keys P and N in "open file" dialog have special meaning + - MS-Windows theme (GTK-Wimp) shows all funky characters + - Optimize gdk on win32 + - Hollow polygons have wrong linecaps + - panel crash with a11y enabled + * Updated translations (bg,bn,cs,eu,ro) + + -- Sebastien Bacher Tue, 14 Mar 2006 15:41:56 +0100 + +gtk+2.0 (2.8.13-1) unstable; urgency=low + + * New upstream version: + * Bugs fixed: + - Can't select some items in GtkIconView + - gtk_icon_theme_list_icons: example contexts don't work + - gnopernicus crashes on changing display screen source for magnifier + - evince crashes in gdk_region_union_with_rect + - Small error in _gdk_gc_update_context + - gtk.Notebook.get_current_page() returns incorrect page number + when pages hidden + - GtkAboutDialog not responsive to Escape key + - GtkNotebook popup menu not keynavigatable + - GtkRadioButton does not issue notify::active + - Make more use of G_DISABLE_ASSERT in TextView code + * Updated translations + + -- Sebastien Bacher Sat, 25 Feb 2006 23:56:58 +0100 + +gtk+2.0 (2.8.12-1) unstable; urgency=low + + * New upstream bugfix release. + * [debian/copyright] Updated FSF's address. + + -- J.H.M. Dassen (Ray) Sun, 12 Feb 2006 14:11:11 +0100 + +gtk+2.0 (2.8.11-1) unstable; urgency=low + + * New upstream version + * Avoid memory overruns in the pixbuf theme engine with nonsensical + gradient specifications. [Matthias] + * Bugs fixed: + - Cursor doesn't move as expected + - Segfault from combination of gtk_container_set_resize_mode() + and GtkComboBox + - segfault in update_cursor on amd64 + - eog crashes at launch under AIX + - "~" should bring up the location dialog + - gtk_text_layout_get_cursor_locations() chokes on layout=0x0 + * Documentation improvements [Federico Mena Quintero] + * Translation updates (es,pt_BR,zh_HK,zh_TW) + + -- Sebastien Bacher Fri, 27 Jan 2006 22:28:05 +0100 + +gtk+2.0 (2.8.10-1) unstable; urgency=low + + * New upstream version + * debian/control.in: + - updated the glib requirement + * debian/patches/001_fs_documents.patch: + - dropped, stick with upstream behaviour rather + + -- Sebastien Bacher Thu, 12 Jan 2006 13:34:37 +0100 + +gtk+2.0 (2.8.9-2) unstable; urgency=low + + * Upload to unstable + + -- Sebastien Bacher Thu, 15 Dec 2005 15:13:32 +0100 + +gtk+2.0 (2.8.9-1) experimental; urgency=low + + * New upstream version: + Bugs fixed: + - File chooser filter behaves weird + - 2.8.4 to 2.8.6: sound-juicer crash, fileselector assertions + - On unsetting the Model, GtkTreeView does not clear + it's associated TreeSelection + - Crash on selecting a file of null mime-type + - gtktoolbutton leaks a pixbuf + - GdkEvent leaked in gtktreeview.c / gtk_tree_view_key_press + - Typo in trap_activate_cb() + - gtkcalendar.c: The identifier is already declared. + - gtk_menu_attach_to_widget() does not take NULL detacher + - Unhinted fonts are measured incorrectly and drawing + problems occur as a result + - unwanted scrolling in recent gtk + - Toolbars without icons are invisible in icon-only mode + - Search-entry in the TreeView not working properly + - gtktoolbutton.c:562: warning: 'image' is used + uninitialized in this function + - reference count of textbuffer increases with each paste + - gtk_selection_data_get_uris leaks memory + Other changes: + - Remove GMemChunk from public header files to + support building against GLib 2.10 + - Report errors in option parsing + - Merge upstream xdgmime changes to handle duplicate glob patterns + + -- Sebastien Bacher Sat, 10 Dec 2005 18:22:50 +0100 + +gtk+2.0 (2.8.8-1) experimental; urgency=low + + * New upstream version: + GtkFileChooser: + - Make F2 work for renaming bookmarks + GtkEntry: + - Turn off input methods in password entries + - Other fixes * Documentation improvements + - Updated translations + + -- Sebastien Bacher Tue, 29 Nov 2005 16:00:32 +0100 + +gtk+2.0 (2.8.7-1) experimental; urgency=low + + * New upstream version. + * Security fixes: + - Add check to XPM reader to prevent integer overflow for specially crafted + number of colors (CVE-2005-3186) (Closes: #339431). + - Fix endless loop with specially crafted number of colors (CVE-2005-2975). + * debian/patches/001_fs_documents.patch: + - updated. + * debian/rules: + - fix confusing cp usage. + + [ Loic Minier ] + * Drop xlibs-dev deps and build-deps. + [debian/control, debian/control.in] + + -- Sebastien Bacher Wed, 16 Nov 2005 11:54:11 +0100 + +gtk+2.0 (2.8.3-1) experimental; urgency=low + + * New upstream version: + - Fix problems with the handling of initial settings + for font options and cursor themes. + - Add a --ignore-theme-index option to gtk-update-icon-cache. + + -- Jordi Mallach Thu, 1 Sep 2005 19:45:50 +0200 + +gtk+2.0 (2.8.2-1) experimental; urgency=low + + * New upstream version: + - Fix a crash with custom icon themes, which affected + the gnome-theme-manager. + - Make sure font and cursor settings are propaged down + to the screen initially. + * debian/control.in: + - require the current pango. + + -- Sebastien Bacher Thu, 25 Aug 2005 00:36:18 +0200 + +gtk+2.0 (2.8.1-1) experimental; urgency=low + + * New upstream version: + - gtk-update-icon-cache no longer stores copies of symlinked icons, + and it has a --index-only option to omit image data from the cache. + - Make large GtkSizeGroups more efficient. + - Improve positioning of menus in GtkToolbar. + - Make scrolling work on unrealized icon views. + - Avoid unnecessary redraws on range widgets. + - Make sure that all GTK+ applications reload icon themes promptly. + - Ensure that gdk_pango_get_context() and gtk_widget_get_pango_context() + use the same font options and dpi value. + - Multiple memory leak fixes. + * debian/control.in: + - updated the libgtk2.0-dev Depends according to the changes. + * debian/rules: + Add --enable-explicit-deps=yes to make sure stuff like x11 gets listed as a + Requires: in gdk(-x11)-2.0.pc, because otherwise linkage against -lX11 and + friends doesn't get carried through. Whether or not this is correct is + arguable, since libgdk-x11-2.0.so.0* ends up linked against it anyway, but + stuff like gnome-panel seems to be relying on this transience. + Change by Daniel Stone. + + -- Sebastien Bacher Wed, 24 Aug 2005 11:24:16 +0200 + +gtk+2.0 (2.8.0-1) experimental; urgency=low + + * New upstream version. + * debian/control.in: + - build with the new cairo (Closes: #323705). + - updated the Build-Depends for xorg (Closes: #323080). + * debian/copyright: + - use License instead of Copyright (Closes: #323209). + * debian/patches/001_fs_documents.patch: + - default to Documents. + * debian/rules: + - updated the shlibs. + * debian/watch: + - updated. + + -- Sebastien Bacher Thu, 18 Aug 2005 12:19:41 +0200 + +gtk+2.0 (2.7.2-1) experimental; urgency=low + + * New upstream version. + * debian/control.in: + - updated the Build-Depends. + * debian/rules: + - updated the shlibs. + - use cairo. + * debian/watch: + - updated. + + -- Sebastien Bacher Tue, 12 Jul 2005 01:06:55 +0200 + +gtk+2.0 (2.6.8-1) unstable; urgency=low + + * New upstream version. + * debian/patches/003_focus_issues.patch: + - fixed with the new version. + + -- Sebastien Bacher Thu, 16 Jun 2005 12:52:35 +0200 + +gtk+2.0 (2.6.7-2) unstable; urgency=low + + * Upload to unstable. + * Forward patches from 2.6.4 branch: + + 003_focus_issues.patch: stolen from CVS HEAD to fix focus issues. + + debian/gtk-tutorial.devhelp: updated to reflect the reality of the + html files. + * Loïc Minier: + + Document the configuration of Emacs-style key bindings in README.Debian, + with additional instructions for GNOME users. [debian/README.Debian] + (Closes: #309530) + + -- Josselin Mouette Mon, 6 Jun 2005 22:39:27 +0200 + +gtk+2.0 (2.6.7-1) experimental; urgency=low + + * New upstream version: + - Fix compilation with gcc 4.0 (Closes: #303646). + * debian/rules: + - clean from the mips changes. + * debian/patches/002_bmp.patch: + - the new version fixes that. + * debian/patches/004_fs_newdir.patch: + - the new version fixes that. + + -- Sebastien Bacher Thu, 14 Apr 2005 22:06:53 +0200 + +gtk+2.0 (2.6.4-1) unstable; urgency=medium + + * New upstream release. + * debian/patches/004_fs_newdir.patch: + - fix a crash in the fileselector when creating a directory. + * debian/patches/003_iconcache.patch: + - this bug is fixed in the new version. + * debian/patches/004_mipsbuild.patch: + - dropped, this change is not required. + * debian/patches/002_bmp.patch: + - fix CAN-2005-0891: BMP double free Dos (Closes: #303141). + + -- Sebastien Bacher Tue, 5 Apr 2005 21:09:01 +0200 + +gtk+2.0 (2.6.2-4) unstable; urgency=high + + * Sjoerd Simons: + - debian/patches/003_iconcache.patch + + Updated. Let updateiconcache.c include config.h so it's correctly build + with large file support (Closes: #295777). + * Sebastien Bacher: + - debian/shlibs.local: + + dropped, fix the self depends (Closes: #296175). + * Loic Minier: + - debian/control* + + added gtk2-engines-pixbuf subsection and priority to sync with + the override. + * Use high urgency so that icon themes can propagate to testing. + + -- Josselin Mouette Wed, 2 Mar 2005 22:28:38 +0100 + +gtk+2.0 (2.6.2-3) unstable; urgency=low + + * Patch from Steve Langasek : + Add a --disable-testsuite argument to upstream configure, to permit + skipping the testsuite on architectures where large static binaries + are currently problematic (i.e., mips). Closes: #295048. + + -- Sebastien Bacher Sun, 13 Feb 2005 19:23:39 +0100 + +gtk+2.0 (2.6.2-2) unstable; urgency=low + + * debian/libgtk2.0-bin.postinst: + - don't run gtk-update-icon-cache, the themes should do that + (Closes: #293568). + * debian/patches/003_iconcache.patch: + - should fix the gtk-update-icon-cache issue on sparc. + + -- Sebastien Bacher Sun, 6 Feb 2005 19:57:57 +0100 + +gtk+2.0 (2.6.2-1) unstable; urgency=low + + * New upstream release: + - fix the loop in gtkdialog (Closes: #291051). + - should fix the issue on sparc (Closes: #293711). + + -- Sebastien Bacher Sun, 6 Feb 2005 00:16:52 +0100 + +gtk+2.0 (2.6.1-2) unstable; urgency=low + + * Upload to unstable. + * debian/patches/004_gtkmodules.patch: + - don't reverse the order of modules, that fix a crash with the modules. + + -- Sebastien Bacher Wed, 2 Feb 2005 18:28:09 +0100 + +gtk+2.0 (2.6.1-1) experimental; urgency=low + + * New upstream release. + + -- Sebastien Bacher Sun, 9 Jan 2005 14:23:07 +0100 + +gtk+2.0 (2.6.0-1) experimental; urgency=low + + * New upstream release (Closes: #275239). + * debian/control.in: + - create a gtk2-engines-pixbuf package. + - recommends hicolor-icon-theme (Closes: #287334). + - rename libgtk2.0-dbg to libgtk2.0-0-dbg. + - updated the Build-Depends. + * debian/gtk2-engines-pixbuf.files: + - added. + * debian/libgtk2.0-bin.files: + - install gtk-update-icon-cache here. + * debian/libgtk2.0-bin.postinst: + - call gtk-update-icon-cache. + * debian/patches/001_gtk+-debian-aclocal-pass_all.patch: + - removed, should not be needed with the new version. + * debian/patches/003_treeview-typeahead.patch, + debian/patches/003_filechooser-search.patch, + debian/patches/004_treeview-activate.patch, + debian/patches/005_modifiers.patch: + - removed, these changes are in the new version. + * debian/rules: + - updated the shlibs. + - use dh_strip to make the debug package. + * update-gtk-immodules.in: + * update-gdkpixbuf-loaders.in: + - module version is 2.4.0. + * debian/watch: + - updated. + + -- Sebastien Bacher Wed, 29 Dec 2004 18:55:11 +0100 + +gtk+2.0 (2.4.14-2) unstable; urgency=low + + * debian/patches/003_filechooser-search.patch: + - open the path entry if "/" is enter in the file-selector. + * debian/patches/004_treeview-activate.patch: + - typeahead active the row. + * debian/patches/005_modifiers.patch: + - accept shift-/ for bringing up the location popup. + + -- Sebastien Bacher Tue, 21 Dec 2004 16:21:15 +0100 + +gtk+2.0 (2.4.14-1) unstable; urgency=low + + * New upstream release (Closes: #286021). + * debian/control.in: + - set myself as maintainer. + * debian/patches/003_treeview-typeahead.patch: + - backport of the typeahead feature for the treeviews. + + -- Sebastien Bacher Sun, 19 Dec 2004 14:55:07 +0100 + +gtk+2.0 (2.4.13-1) unstable; urgency=low + + * New upstream release: + - make new notebook tabs appear again (Closes: #276266). + + -- Sebastien Bacher Wed, 13 Oct 2004 16:48:13 +0200 + +gtk+2.0 (2.4.11-1) unstable; urgency=low + + * New upstream release. + + -- Sebastien Bacher Mon, 11 Oct 2004 19:48:52 +0200 + +gtk+2.0 (2.4.10-1) unstable; urgency=low + + * New upstream release. + * debian/patches/002_xpmico.patch: + - updated, the two xpm fixes are in the new version. + + -- Sebastien Bacher Sun, 19 Sep 2004 00:19:27 +0200 + +gtk+2.0 (2.4.9-2) unstable; urgency=high + + * debian/patches/002_xpmico.patch: + - fix CAN-2004-0782 Heap-based overflow in pixbuf_create_from_xpm. + - fix CAN-2004-0783 Stack-based overflow in xpm_extract_color. + - fix CAN-2004-0788 ico loader integer overflow. + + -- Sebastien Bacher Fri, 17 Sep 2004 12:23:02 +0200 + +gtk+2.0 (2.4.9-1) unstable; urgency=medium + + * GNOME team upload. + * New upstream release. + * debian/patches/002_gtk+-pixbuf-breakage.patch: removed, included in + upstream version 2.4.8. + + -- Jordi Mallach Thu, 26 Aug 2004 14:41:17 +0200 + +gtk+2.0 (2.4.7-1) unstable; urgency=medium + + * GNOME team upload. + * New upstream release. + * debian/patches/002_gtk+-pixbuf-breakage.patch: new, apply patch + from CVS to fix thumbnail corruption in nautilus. + + -- Jordi Mallach Wed, 25 Aug 2004 20:12:28 +0200 + +gtk+2.0 (2.4.4-2) unstable; urgency=medium + + * Rebuilt with libtiff4. + * debian/control.in: + - Build-Depends on libtiff4-dev. + + -- Sebastien Bacher Wed, 28 Jul 2004 23:11:54 +0200 + +gtk+2.0 (2.4.4-1) unstable; urgency=low + + * New upstream release + - fix the problem with directories displayed twice in the file chooser + (Closes: #249057). + * debian/control.in: + - libgtk2.0-bin Conflicts with old libgtk2.0-dev. + + -- Sebastien Bacher Sun, 11 Jul 2004 00:33:45 +0200 + +gtk+2.0 (2.4.3-3) unstable; urgency=low + + * debian/control.in: + - since manpages have moved from libgtk2.0-dev to libgtk2.0-bin we need + to update the Replaces. + + -- Sebastien Bacher Mon, 5 Jul 2004 21:15:25 +0200 + +gtk+2.0 (2.4.3-2) unstable; urgency=low + + * debian/libgtk2.0-bin.files: + - moved gdk-pixbuf-query-loader and gtk-query-immodules-2.0 manpages + to libgtk2.0-bin. (Closes: #257399). + * debian/libgtk2.0-doc.doc-base.gtk-faq, + debian/libgtk2.0-doc.doc-base.gtk-tutorial: + - changed index.html with book1.html. + * Included devehelp files from Richard Cohen + for the faq and the tutorial (Closes: #256844). + + -- Sebastien Bacher Sat, 3 Jul 2004 12:14:38 +0200 + +gtk+2.0 (2.4.3-1) unstable; urgency=medium + + * New upstream release + - fix the button size allocation logic (Closes: #253971, #253974). + * debian/rules + - updated the shlibs. + + -- Sebastien Bacher Tue, 15 Jun 2004 11:29:13 +0200 + +gtk+2.0 (2.4.2-1) unstable; urgency=low + + * New upstream release (Closes: #252690). + + -- Sebastien Bacher Sat, 5 Jun 2004 17:23:57 +0200 + +gtk+2.0 (2.4.1-4) unstable; urgency=low + + * Conflict with librsvg2-common << 2.6.3-1 (closes: #250714, #250647). + + -- Josselin Mouette Tue, 25 May 2004 14:15:22 +0200 + +gtk+2.0 (2.4.1-3) unstable; urgency=low + + * GNOME Team Upload. + * Upload to unstable + + close bug fixed in experimental uploads + (Closes: #161244, #201429, #201507, #203677, #208744, #223316, #228603) + (Closes: #232081, #234902, #238479, #241860) + * Marc Brockschmidt + + debian/rules: Really, *really* surpress warnings when removing directories + (using >/dev/null 2>&1 instead of 2>&1 >/dev/null) + + -- Sebastien Bacher Sat, 22 May 2004 15:23:21 +0200 + +gtk+2.0 (2.4.1-2) experimental; urgency=low + + * debian/control.in: + + Conflict with old versions of packages that need a rebuild to work with + gtk+2.4 to force the updates. + + -- Sebastien Bacher Sat, 15 May 2004 23:24:07 +0200 + +gtk+2.0 (2.4.1-1) experimental; urgency=low + + * New upstream release. + * Akira TAGOH + + debian/control: + - added libgtk2.0-0 to Depends for libgtk2.0-common. (from 2.2.4-6). + - libgtk2.0-dev requires libxext-dev. (Closes: #247469) + * Sebastien Bacher + + debian/rules: + - updated shlib to 2.4.1. + + -- Sebastien Bacher Wed, 5 May 2004 23:32:54 +0200 + +gtk+2.0 (2.4.0-4) experimental; urgency=low + + * Akira TAGOH + + debian/control: + - moved arch-independent files to libgtk2.0-common again. + - separated arch-dependent files to libgtk2.0-bin. + + -- Akira TAGOH Sat, 24 Apr 2004 02:11:52 +0900 + +gtk+2.0 (2.4.0-3) experimental; urgency=low + + * Akira TAGOH + + debian/rules: + - modified the sed script to strip the version properly. + (closes: Bug#241860) + - clean up. + + debian/control: + - updated the dependencies for the separated xlibs-dev. (from 2.2.4-4) + - separated arch-independent data to libgtk2.0-data package. + (from 2.2.4-4) + + -- Akira TAGOH Fri, 23 Apr 2004 22:43:58 +0900 + +gtk+2.0 (2.4.0-2) experimental; urgency=low + + * debian/control.in: + + Added build dependency on libxcursor-dev. (Closes: #239886) + + Sebastien Bacher : + * debian/rules: + + Updated shver. + * debian/control.in: + + Added again Build-Depends removed in 2.4.0-1. + + -- J.H.M. Dassen (Ray) Thu, 25 Mar 2004 11:18:48 +0100 + +gtk+2.0 (2.4.0-1) experimental; urgency=low + + * First upload of new GTK+ branch in experimental (Closes: #238479): + + back out locale-dependent interpretation of KP_Decimal (Closes: #234902). + + change scrolling method (Closes: #161244). + + first day of the week depends of the locale (Closes: #228603). + + fix fileselector multiple selection handling after keyboard validation + (Closes: #208744). + + fix gtktreeview crash when expanding nodes (Closes: #232081). + + fix quotes missing in gtk-2.0.m4 (Closes: #223316). + + use the new file selector (Closes: #203677, #201429, #201507). + + and probably a lot of other bug fixes and improvements ... + * Sebastien Bacher : + * debian/control.in: + - removed Build-Depends on docbook-utils and linuxdoc-tools-text. + * patches/001_gtk+-debian-docfix-dtds.patch: + - removed since we have a xml catalog now. + * Rob Taylor : + * debian/control.in, debian/sources, debian/scripts/vars, debian/watch: + - updated for 2.4.0. + * debian/patches/: + - 002_gtk+-debian-freetype.patch: + + removed, not needed any more, configure already has the changes. + - 000_gtk+-2.2.4-non-weak-symbols.patch: + + removed, fixed in upstream source. + - 000_gtk+-2.2.4-socketfocus.patch: + + removed, fixed in upstream source. + - 001_gtk+-debian-aclocal-pass_all.patch : + + updated. + - 000_gtk+-2.2.0-buildfix-immodule.patch + + updated. + - 000_gtk+-debian-xinerama-pic.patch + + updated. + + -- Sebastien Bacher Mon, 22 Mar 2004 22:00:09 +0100 + +gtk+2.0 (2.2.4-6) unstable; urgency=low + + * Akira TAGOH + + debian/control: + - added libxt-dev to fix FTBFS. (closes: Bug#246450) + - added libgtk2.0-0 to Depends for libgtk2.0-common. + + -- Akira TAGOH Tue, 4 May 2004 11:30:56 +0900 + +gtk+2.0 (2.2.4-5) unstable; urgency=low + + * Akira TAGOH + + debian/control: + - moved arch-independent files to libgtk2.0-common again. + - separated arch-dependent files to libgtk2.0-bin. + + -- Akira TAGOH Sat, 24 Apr 2004 01:12:08 +0900 + +gtk+2.0 (2.2.4-4) unstable; urgency=low + + * Akira TAGOH + + debian/rules: + - bumped the shlib version to 2.2.1-3. (closes: Bug#208671) + + debian/control: + - separated arch-independent data to libgtk2.0-data package. + (closes: Bug#233396) + - fixed the dependencies for the separated xlibs-dev. + (closes: Bug#241782, Bug#241522) + + debian/libgtk2.0-data.{dir,files}: + - added. + + -- Akira TAGOH Thu, 22 Apr 2004 00:42:02 +0900 + +gtk+2.0 (2.2.4-3) unstable; urgency=low + + * debian/patches/: + - 002_gtk+-debian-freetype.patch: patch from Daniel Schepler to fix the + build failure due to freetype (Closes: #225129). + + -- Sebastien Bacher Sat, 27 Dec 2003 13:00:17 +0100 + +gtk+2.0 (2.2.4-2) unstable; urgency=low + + * debian/control: + - added Uploaders to maintain as team. + - added gnome-pkg-tools to Build-Depends. + * debian/gtk-options.7: + - included a manpage with the help on the options (Closes: Bug#216897). + * debian/libgtk2.0-doc.doc-base.gtk-faq + * debian/libgtk2.0-doc.doc-base.gtk-tutorial: + - replaced book1.html by index.html (closes: Bug#215382). + * debian/patches/: + - 000_gtk+-2.2.4-socketfocus.patch: new patch to fix a GtkSocket focus + problem that hang the system tray applet. + (closes: Bug#210813, Bug#212772). + - 001_gtk+-ximian-gtk2-filesel-navbutton-5.patch: updated + (closes: Bug#216660). + * debian/rules: + - modified to generate debian/control using gnome-pkg-tools. + + -- Sebastien Bacher Fri, 31 Oct 2003 21:32:29 +0100 + +gtk+2.0 (2.2.4-1) unstable; urgency=low + + * New upstream release. + - implemented the im module that produces C_WITH_CEDILLA rather than + C_WITH_ACUTE for dead_acute+c combinations. it will be used as default + im module for fr and pt. (closes: Bug#168557) + - reworked the handling of XIM's status window. (closes: Bug#203009) + * debian/control: + - removed libgtk2.0-0png3 which is unnecessary anymore. + - added non-versioned Conflicts: libgtk2.0-0png3. + - bumped Standards-Version to 3.6.1.0. + * debian/patches/: removed the backported patches. + - 000_gtk+-2.2.2-docfix-gtk2compliant.patch + - 000_gtk+-2.2.2-docfix-gtktreemodel.patch + - 000_gtk+-2.2.2-gtkwidget-viewable.patch + - 000_gtk+-2.2.2-imxim-reconnect.patch + + -- Akira TAGOH Mon, 8 Sep 2003 03:42:18 +0900 + +gtk+2.0 (2.2.2-3) unstable; urgency=low + + * debian/patches/: + - 000_gtk+-2.2.2-docfix-gtk2compliant.patch: applied a backported patch + from CVS to fix the old documentation. (closes: Bug#146723) + - 000_gtk+-2.2.2-docfix-gtktreemodel.patch: applied a backported patch + from CVS to fix the sample code. (closes: Bug#201322) + - 000_gtk+-2.2.2-gtkwidget-viewable.patch: applied a backported patch from + CVS to fix the garbled pixmaps. (closes: Bug#201808, Bug#202486) + - 000_gtk+-2.2.2-imxim-reconnect.patch: applied a backported patch from + CVS to fix the segfaults if the XIM server is killed during running gtk2 + applications. + - 001_gtk+-debian-docfix-dtds.patch: applied to use the local DTD. + * debian/control: + - added Build-Depends-Indep: gtk-doc-tools, docbook-xml to re-generate the + fixed documents. + + -- Akira TAGOH Thu, 7 Aug 2003 01:42:46 +0900 + +gtk+2.0 (2.2.2-2) unstable; urgency=low + + * debian/patches/: + - 001_gtk+-debian-aclocal-pass_all.patch: re-applied a patch to fix FTBFS + on arm. (closes: Bug#201443) + + -- Akira TAGOH Thu, 24 Jul 2003 03:14:10 +0900 + +gtk+2.0 (2.2.2-1) unstable; urgency=low + + * New upstream release. (closes: Bug#200350) + - Fixed threadlocks on GtkTreeView. (closes: Bug#192136) + - Fixed the crash on moving the cursor when the cursor is invisible. + (closes: Bug#187858) + - Fixed the compose table for ascending order. (closes: Bug#182073) + * debian/control: + - fix the FTBFS. Thanks to Daniel Baeyens. + - bumped Standards-Version to 3.6.0. + * debian/rules: + - removed dh_undocumented. + - don't claim the newer shlibs. + * debian/patches/: + - 000_gtk+-2.2.1-gdk_event_copy_for_xinput.patch: removed. + - 000_gtk+-2.2.1-gdk_visual_get_best_with_depth.patch: removed. + - 000_gtk+-2.2.1-gtk_text_line_previous_could_contain_tag.patch: removed. + - 000_gtk+-2.2.1-gtktreeview-scroll.patch: removed. + - 000_gtk+-debian-xinerama-pic.patch: updated. + - 001_gtk+-debian-aclocal.patch: removed. + - 001_gtk+-ximian-gtk2-filesel-navbutton-5.patch: applied a Ximian patch + to improve the GtkFileSel UI. Requested from Ross Burton. + - 000_gtk+-2.2.2-non-weak-symbols.patch: applied to fix the undefined non + weak symbols. (closes: Bug#193774) + + -- Akira TAGOH Sun, 13 Jul 2003 21:26:49 +0900 + +gtk+2.0 (2.2.1-6) unstable; urgency=low + + * debian/patches/001_gtk+-debian-aclocal.patch: + - damn. forgot to re-run automake and autoconf. fix again. + (closes: Bug#190569) + + -- Akira TAGOH Sat, 3 May 2003 16:56:18 +0900 + +gtk+2.0 (2.2.1-5) unstable; urgency=low + + * debian/control: + - changed a section for libgtk2.0-dbg to libdevel. + * debian/patches/000_gtk+-debian-aclocal.patch: + - applied to fix Xinerama library linkage broken on arm and m68k. + (closes: Bug#190569) + Thanks to James Troup and Phil Blundell. + + -- Akira TAGOH Sat, 3 May 2003 01:50:52 +0900 + +gtk+2.0 (2.2.1-4) unstable; urgency=low + + * debian/patches/: + - 000_gtk+-2.2.1-gtk_text_line_previous_could_contain_tag.patch: + applied a backported patch from CVS. (closes: Bug#185066) + - 000_gtk+-2.2.1-gtktreeview-scroll.patch: + applied a patch from Red Hat to fix infinite expose loops in TreeView. + (closes: Bug#187312) + * debian/control: + - bumped Standards-Version to 3.5.9. + - changed a section for libgtk2.0-dev to libdevel. + * debian/rules: + - fixed the symlinks on /usr/share/gtk-doc/html. (closes: Bug#183377) + * debian/compat: + - use it instead of DH_COMPAT. + + -- Akira TAGOH Fri, 4 Apr 2003 01:55:35 +0900 + +gtk+2.0 (2.2.1-3) unstable; urgency=low + + * build against the latest xlibs and xlibs-pic. so now correct + libXinerama_pic.a is linked and supporting xinarama is re-enabled. + (closes: Bug#177318) + * debian/control: + - depend on xlibs-pic (>= 4.2.1-6) + * debian/README.Debian: + - improve description of static libraries issue. (closes: Bug#181879) + Thanks to Marcelo E. Magallon + - mention gtk-key-theme-name and gnome-settings-daemon. + * debian/rules: + - create the symlinks in /usr/share/gtk-doc + + -- Akira TAGOH Mon, 3 Mar 2003 01:35:04 +0900 + +gtk+2.0 (2.2.1-2) unstable; urgency=low + + * debian/patches/: + - 000_gtk+-2.2.1-gdk_visual_get_best_with_depth.patch: + backport from CVS to fix wrong pointer returned. (closes: Bug#180786) + - 000_gtk+-2.2.1-gdk_event_copy_for_xinput.patch: + applied to fix a crash when using xinput. (closes: Bug#178908) + + -- Akira TAGOH Wed, 19 Feb 2003 03:10:55 +0900 + +gtk+2.0 (2.2.1-1) unstable; urgency=low + + * New upstream release. + * debian/patches/: removed patches. they were fixed in this release. + - 000_gtk+-2.2.0-buildfix-modules.patch + - 000_gtk+-2.2.0-fix-es.po.patch + - 000_gtk+-2.2.0-fnmatch-undef.patch + - 002_gtk+-2.2.0-fixtypo-xinput.patch + * debian/patches/000_gtk+-debian-xinerama-pic.patch: update. + + -- Akira TAGOH Fri, 7 Feb 2003 03:37:44 +0900 + +gtk+2.0 (2.2.0-3) unstable; urgency=low + + * debian/: clean the unnecessary files up. (closes: Bug#177809) + * debian/rules: + remove the old debug libraries on install process if exists. (closes: + Bug#177376) + * debian/patches/: + - 002_gtk+-2.2.0-fixtypo-xinput.patch: + fix to enable XFree86 xinput extension. (closes: Bug#176104) + - 000_gtk+-2.2.0-fix-es.po.patch: + applied to fix es.po. (closes: Bug#178870) + + -- Akira TAGOH Wed, 29 Jan 2003 23:01:43 +0900 + +gtk+2.0 (2.2.0-2) unstable; urgency=low + + * debian/control: + - add Conflicts libgnomeui-0 (<< 2.0.6-2) to avoid the gtk+ 2.2 breakage. + (closes: Bug#175946) + - add Conflicts gtk2.0-examples (<< 2.2.0) (closes: Bug#175868) + - add dependency of libgtk2.0-common. (closes: Bug#175873) + - removed libgtk-common package. it's no longer needed. I hope the loop + dependency will be disappeared. + - used libpng12-0-dev instead of libpng3-dev for Build-Depends. + * debian/patches/001_gtk+-2.2.0-xinerama-pic.patch: + disabled Xinerama support until xlibs-pic has libXinerama_pic.a. + (closes: Bug#175923) + + -- Akira TAGOH Sat, 11 Jan 2003 05:09:12 +0900 + +gtk+2.0 (2.2.0-1) unstable; urgency=low + + * New upstream release. + - upstream bug were closed. so it should be fixed. (closes: Bug#147697) + * debian/control: + - updated Build-Depends. + - bumped Standards-Version to 3.5.8. + - fix description-synopsis-ends-with-full-stop stuff. + * debian/update-gdkpixbuf-loaders: add brand-new wrapper script. + * debian/update-gdkpixbuf-loaders.1: add manpage. + * debian/rules: + modified to build the static libraries. (closes: Bug#161938) + * debian/README.Debian: updated. + * debian/patches/: + - 000_gtk+-2.0.6-extranotify.patch: removed. + - 000_gtk+-2.0.6-scroll_to.patch: removed. + - 000_gtk+-2.2.0-fnmatch-undef.patch: + applied to fix having main() in the library. + - 000_gtk+-2.2.0-buildfix-immodule.patch: + applied to build the static libraries. + - 000_gtk+-2.2.0-buildfix-modules.patch: + applied to fix a typo in configure.in. + + -- Akira TAGOH Mon, 6 Jan 2003 18:34:31 +0900 + +gtk+2.0 (2.0.9-1) unstable; urgency=low + + * New upstream release. + * debian/patches/000_gtk+-2.0.8-refcolormap.patch: this release contains it. + removed. + + -- Akira TAGOH Sun, 24 Nov 2002 00:08:42 +0900 + +gtk+2.0 (2.0.8-2) unstable; urgency=low + + * debian/patches/000_gtk+-2.0.8-refcolormap.patch: applied to fix the crash + problem with close. For solve your problem, I recommend you restart all + processes related gtk+2.0. (closes: Bug#169005) + + -- Akira TAGOH Fri, 15 Nov 2002 09:16:40 +0900 + +gtk+2.0 (2.0.8-1) unstable; urgency=low + + * New upstream release. + * debian/patches/000_gtk+-2.0.7-gifsymbol.patch: it's no longer needed. + * debian/rules: fix twice called ldconfig. (closes: Bug#168071) + + -- Akira TAGOH Sun, 10 Nov 2002 16:36:45 +0900 + +gtk+2.0 (2.0.7-1) unstable; urgency=low + + * New upstream release. + * debian/rules: + - support noopt option for DEB_BUILD_OPTIONS. + - add symlink for gobject. (closes: Bug#167755) + * Hm, closed a bug which is marked as NMU due to mis-upload. (closes: + Bug#166442) + * debian/patches: these patches are no longer needed, so removed. + - 000_gtk+-2.0.6-64bitfix.patch + - 000_gtk+-2.0.6-imenvvar.patch + - 000_gtk+-2.0.6-keycode.patch + - 000_gtk+-2.0.6-usintl.patch + * debian/patches/000_gtk+-2.0.7-gifsymbol.patch: applied to fix the + undefined symbol issue on libpixbufloader-gif.so. + + -- Akira TAGOH Wed, 6 Nov 2002 01:42:22 +0900 + +gtk+2.0 (2.0.6-4) unstable; urgency=low + + * debian/patches/000_gtk+-2.0.6-64bitfix.patch: applied to fix a segfault on + IA64. (closes: Bug#166442) + + -- Akira TAGOH Sun, 27 Oct 2002 03:07:59 +0900 + +gtk+2.0 (2.0.6-3) unstable; urgency=low + + * debian/control: moved libgtk2.0-0png3 to the last entry. + * debian/rule: fix invalid symlink. + + -- Akira TAGOH Sat, 31 Aug 2002 09:46:36 +0900 + +gtk+2.0 (2.0.6-2) unstable; urgency=low + + * debian/control: + - bumped Standards-Version and depends debhelper (>> 4). + - revert to libgtk2.0-0 and remove Conflicts libgtk2.0-0, then add + versioned conflict to work eog2, gnome-panel2, celestia, gimp1.3 and + metatheme. (closes: Bug#155689, Bug#155854) + - add libgtk2.0-0png3 to Conflicts, Replaces. + - add a dummy package for libgtk2.0-0png3. + - remove the image libraries dependency. (closes: Bug#158858) + - clean up -dev's Depends. + - add libglib2.0-doc, libatk1.0-doc and libpango1.0-doc to Suggests. + * debian/patches/: from Red Hat. + - 000_gtk+-2.0.6-exportsymbols.patch: + applied to fix stripping the wrong symbols due to libtool's bug. but + it's not affected about the symbols used by ld and ld.so. mainly for nm, + gdb and etc. + - 000_gtk+-2.0.6-extranotify.patch: + applied to fix extra settings notifies on startup that were causing + significant performance problems as fonts were reloaded. + - 000_gtk+-2.0.6-imenvvar.patch: + applied to fix a bug with GTK_IM_MODULE environment variable. + - 000_gtk+-2.0.6-keycode.patch: applied to fix a problem with keycodes + passed to GtkIMContextXIM. + - 000_gtk+-2.0.6-usintl.patch: + applied to fix to GtkIMContextSimple compose for us-intl keyboards. + should be fixed. (closes: Bug#149515) + - 000_gtk+-2.0.6-scroll_to.patch: + applied to fix gtk_tree_view_scroll_to_cell. + * debian/rules: add symlink to fix the missing symlink for glib, atk and + pango. (closes: Bug#158107) + * debian/update-gtk-immodules.fr.1: added. Thanks Julien Louis. (closes: + Bug#156985) + + -- Akira TAGOH Sat, 31 Aug 2002 05:22:33 +0900 + +gtk+2.0 (2.0.6-1) unstable; urgency=low + + * New upstream release. + * Build against libpng3 (closes: 147852) + + -- Akira TAGOH Sun, 4 Aug 2002 18:31:53 +0900 + +gtk+2.0 (2.0.5-2) unstable; urgency=low + + * debian/rules: add --with-xinput=xfree. (closes: Bug#151668) + * debian/control: + - add Conflicts: libgdkxft0 to avoid some problem. (closes: Bug#151439). + - changed a summary from 'Dummy' to 'Empty'. + + -- Akira TAGOH Thu, 4 Jul 2002 00:18:53 +0900 + +gtk+2.0 (2.0.5-1) unstable; urgency=low + + * New upstream release. + * debian/control: fix typo (closes: Bug#150147) + + -- Akira TAGOH Mon, 17 Jun 2002 01:07:20 +0900 + +gtk+2.0 (2.0.4-1) unstable; urgency=low + + * New upstream release. + - should be fixed in this release. (closes: Bug#149667) + - now it's not linked to the Pango docs (closes: Bug#149143) + * debian/libgtk2.0-doc.doc-base.{gdk,gdk-pixbuf,gtk,gtk-faq,gtk-tutorial}: + add a new line before Format: (closes: Bug#149548, Bug#150043) + + -- Akira TAGOH Sun, 16 Jun 2002 05:16:29 +0900 + +gtk+2.0 (2.0.3-1) unstable; urgency=low + + * New upstream release. + * debian/libgtk2.0-doc.doc-base.{gtk-faq,gtk-tutorial}: + changed an index file. + + -- Akira TAGOH Thu, 30 May 2002 23:35:52 +0900 + +gtk+2.0 (2.0.2-5) unstable; urgency=high + + * debian/control: add libtiff3g-dev, libpng2-dev and libjpeg62-dev to + Depends for -dev. + * set urgency=high because previous version violated our policy 2.3.4. + it should be into woody as far as possible. + + -- Akira TAGOH Thu, 23 May 2002 00:31:52 +0900 + +gtk+2.0 (2.0.2-4) unstable; urgency=high + + * debian/patches/000_gtk+2.0-2.0.2-bigendian.patch: applied to fix a problem + for big endian machines. (closes: Bug#145285) + * set urgency=high because it should be in woody. + + -- Akira TAGOH Wed, 1 May 2002 02:46:12 +0900 + +gtk+2.0 (2.0.2-3) unstable; urgency=low + + * debian/update-gtk-immodules: create /etc/gtk-2.0 directory for workaround, + if it's not found. oh, why didn't you have it? (closes: Bug#143508, + Bug#144673) + + -- Akira TAGOH Sun, 28 Apr 2002 04:46:30 +0900 + +gtk+2.0 (2.0.2-2) unstable; urgency=low + + * debian/libgtk2.0-doc.doc-base.{gtk-faq,gtk-tutorial}: + Grr, fix again... (closes: Bug#141069) + * debian/scripts/vars.build: fix bashism. + + -- Akira TAGOH Sat, 6 Apr 2002 04:26:14 +0900 + +gtk+2.0 (2.0.2-1) unstable; urgency=low + + * New upstream release. + - this release has bug fix only. + * debian/control: forgot to update versioned dependency for -dev. + * debian/libgtk2.0-doc.doc-base.gtk-faq, + debian/libgtk2.0-doc.doc-base.gtk-tutorial: + fix wrong index. (closes: Bug#141069) + + -- Akira TAGOH Thu, 4 Apr 2002 02:49:49 +0900 + +gtk+2.0 (2.0.1-1) unstable; urgency=low + + * New upstream release. + * debian/update-gtk-immodules: check the immodules directory. + + -- Akira TAGOH Sun, 31 Mar 2002 00:59:03 +0900 + +gtk+2.0 (2.0.0-3) unstable; urgency=low + + * debian/rules: removed regenerate shlibs. all packages no longer needs to + depend on -common. + + -- Akira TAGOH Sat, 16 Mar 2002 21:51:08 +0900 + +gtk+2.0 (2.0.0-2) unstable; urgency=low + + * debian/control: changed Build-Depends to libpango1.0-dev (>= 1.0.0-3) + * debian/{control,rules}: add libgtk-common as dummy package for upgrading. + * debian/rules: fix the missing directory. + * debian/update-gtk-immodules: fix file attribute for gtk.immodules. + + -- Akira TAGOH Sat, 16 Mar 2002 04:34:39 +0900 + +gtk+2.0 (2.0.0-1) unstable; urgency=low + + * Initial Release. + + -- Akira TAGOH Wed, 13 Mar 2002 00:07:25 +0900 + --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-doc.install.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-doc.install.in @@ -0,0 +1,11 @@ +# from Debian +# FIXME: Disabled for now +#debian/gtk-faq.devhelp usr/share/doc/@DOC_PKG@/faq +#debian/gtk-tutorial.devhelp usr/share/doc/@DOC_PKG@/tutorial +# from the shared flavor +debian/install/shared/usr/share/gtk-doc/html/gtk* usr/share/doc/@DOC_PKG@ +debian/install/shared/usr/share/gtk-doc/html/gdk* usr/share/doc/@DOC_PKG@ +# from the source +docs/faq/html/* usr/share/doc/@DOC_PKG@/faq +docs/tutorial/html/* usr/share/doc/@DOC_PKG@/tutorial +docs/*.txt usr/share/doc/@DOC_PKG@ --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0.prerm +++ gtk+2.0-2.22.0/debian/libgtk2.0-0.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk2.0-0 +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.22.0.orig/debian/gtk2-engines-pixbuf.install.in +++ gtk+2.0-2.22.0/debian/gtk2-engines-pixbuf.install.in @@ -0,0 +1,2 @@ +# from the shared flavor +debian/install/shared/@MODULES_BASE_PATH@/engines/*.so @MODULES_BASE_PATH@/engines --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0.postrm.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-0.postrm.in @@ -0,0 +1,17 @@ +#!/bin/sh + +set -e + +case "$1" in + purge) + rm -rf /etc/gtk-@APIVER@ + ;; +esac + +#DEBHELPER# + +if [ -d /@MODULES_BASE_PATH@/immodules ]; then + # Purge the cache + rm -f /@MODULES_BASE_PATH@/gtk.immodules + rmdir -p --ignore-fail-on-non-empty /@MODULES_BASE_PATH@ +fi --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-bin.links.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-bin.links.in @@ -0,0 +1,4 @@ +@LIBDIR@/@SHARED_PKG@/gtk-query-immodules-@APIVER@ usr/bin/gtk-query-immodules-@APIVER@ +@LIBDIR@/@SHARED_PKG@/gtk-update-icon-cache usr/bin/gtk-update-icon-cache +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@BIN_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@BIN_PKG@/README.gz --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-doc.links.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-doc.links.in @@ -0,0 +1,8 @@ +usr/share/doc/@DOC_PKG@/gdk usr/share/gtk-doc/html/gdk +usr/share/doc/@DOC_PKG@/gtk usr/share/gtk-doc/html/gtk +usr/share/doc/@DOC_PKG@/faq usr/share/gtk-doc/html/gtk-faq +usr/share/doc/@DOC_PKG@/tutorial usr/share/gtk-doc/html/gtk-tutorial +usr/share/doc/libatk1.0-doc/atk usr/share/doc/@DOC_PKG@/atk +usr/share/doc/libglib2.0-doc/glib usr/share/doc/@DOC_PKG@/glib +usr/share/doc/libglib2.0-doc/gobject usr/share/doc/@DOC_PKG@/gobject +usr/share/doc/libpango1.0-doc/pango usr/share/doc/@DOC_PKG@/pango --- gtk+2.0-2.22.0.orig/debian/keep-png-only.xsl +++ gtk+2.0-2.22.0/debian/keep-png-only.xsl @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0.install.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-0.install.in @@ -0,0 +1,8 @@ +# from the shared flavor +debian/install/shared/etc/gtk-@APIVER@/im-multipress.conf etc/gtk-@APIVER@ +debian/install/shared/usr/bin/gtk-query-immodules-2.0 @LIBDIR@/@SHARED_PKG@ +debian/install/shared/usr/bin/gtk-update-icon-cache @LIBDIR@/@SHARED_PKG@ +debian/install/shared/@MODULES_BASE_PATH@/immodules/*.so @MODULES_BASE_PATH@/immodules +debian/install/shared/@MODULES_BASE_PATH@/printbackends/*.so @MODULES_BASE_PATH@/printbackends +debian/install/shared/@LIBDIR@/libgtk*.so.* @LIBDIR@ +debian/install/shared/@LIBDIR@/libgdk*.so.* @LIBDIR@ --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-bin.install.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-bin.install.in @@ -0,0 +1,4 @@ +# from the shared flavor +docs/reference/gtk/gtk-update-icon-cache.1 usr/share/man/man1 +docs/reference/gtk/gtk-query-immodules-@APIVER@.1 usr/share/man/man1 +debian/update-icon-caches usr/sbin --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0.postinst.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-0.postinst.in @@ -0,0 +1,26 @@ +#!/bin/sh +set -e + +if [ "$1" = triggered ]; then + for trigger in $2; do + if ! [ -d $trigger ]; then + continue + fi + case $trigger in + /@MODULES_BASE_PATH@/immodules) + # This is triggered everytime an application installs a + # GTK immodule loader + /@LIBDIR@/@SHARED_PKG@/gtk-query-immodules-2.0 /@MODULES_BASE_PATH@/immodules/*.so > /@MODULES_BASE_PATH@/gtk.immodules || true + ;; + esac + done + exit 0 +fi + +#DEBHELPER# + +# Also handle the initial installation +if [ -d /@MODULES_BASE_PATH@/immodules ]; then + /@LIBDIR@/@SHARED_PKG@/gtk-query-immodules-2.0 /@MODULES_BASE_PATH@/immodules/*.so > /@MODULES_BASE_PATH@/gtk.immodules || true +fi + --- gtk+2.0-2.22.0.orig/debian/gtk2.0-examples.install.in +++ gtk+2.0-2.22.0/debian/gtk2.0-examples.install.in @@ -0,0 +1,3 @@ +# from the shared flavor +debian/install/shared/usr/bin/gtk-demo usr/bin +debian/install/shared/usr/share/gtk-@APIVER@/demo usr/share/gtk-@APIVER@ --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0.symbols +++ gtk+2.0-2.22.0/debian/libgtk2.0-0.symbols @@ -0,0 +1,4699 @@ +libgdk-x11-2.0.so.0 libgtk2.0-0 #MINVER# +* Build-Depends-Package: libgtk2.0-dev + gdk_add_client_message_filter@Base 2.8.0 + gdk_add_option_entries_libgtk_only@Base 2.8.0 + gdk_app_launch_context_get_type@Base 2.14.0 + gdk_app_launch_context_new@Base 2.14.0 + gdk_app_launch_context_set_desktop@Base 2.14.0 + gdk_app_launch_context_set_display@Base 2.14.0 + gdk_app_launch_context_set_icon@Base 2.14.0 + gdk_app_launch_context_set_icon_name@Base 2.14.0 + gdk_app_launch_context_set_screen@Base 2.14.0 + gdk_app_launch_context_set_timestamp@Base 2.14.0 + gdk_atom_intern@Base 2.8.0 + gdk_atom_intern_static_string@Base 2.10.0 + gdk_atom_name@Base 2.8.0 + gdk_axis_use_get_type@Base 2.8.0 + gdk_beep@Base 2.8.0 + gdk_bitmap_create_from_data@Base 2.8.0 + gdk_byte_order_get_type@Base 2.8.0 + gdk_cairo_create@Base 2.8.0 + gdk_cairo_rectangle@Base 2.8.0 + gdk_cairo_region@Base 2.8.0 + gdk_cairo_reset_clip@Base 2.18.0 + gdk_cairo_set_source_color@Base 2.8.0 + gdk_cairo_set_source_pixbuf@Base 2.8.0 + gdk_cairo_set_source_pixmap@Base 2.10.0 + gdk_cap_style_get_type@Base 2.8.0 + gdk_char_height@Base 2.8.0 + gdk_char_measure@Base 2.8.0 + gdk_char_width@Base 2.8.0 + gdk_char_width_wc@Base 2.8.0 + gdk_color_alloc@Base 2.8.0 + gdk_color_black@Base 2.8.0 + gdk_color_change@Base 2.8.0 + gdk_color_copy@Base 2.8.0 + gdk_color_equal@Base 2.8.0 + gdk_color_free@Base 2.8.0 + gdk_color_get_type@Base 2.8.0 + gdk_color_hash@Base 2.8.0 + gdk_color_parse@Base 2.8.0 + gdk_color_to_string@Base 2.12.0 + gdk_color_white@Base 2.8.0 + gdk_colormap_alloc_color@Base 2.8.0 + gdk_colormap_alloc_colors@Base 2.8.0 + gdk_colormap_change@Base 2.8.0 + gdk_colormap_free_colors@Base 2.8.0 + gdk_colormap_get_screen@Base 2.8.0 + gdk_colormap_get_system@Base 2.8.0 + gdk_colormap_get_system_size@Base 2.8.0 + gdk_colormap_get_type@Base 2.8.0 + gdk_colormap_get_visual@Base 2.8.0 + gdk_colormap_new@Base 2.8.0 + gdk_colormap_query_color@Base 2.8.0 + gdk_colormap_ref@Base 2.8.0 + gdk_colormap_unref@Base 2.8.0 + gdk_colors_alloc@Base 2.8.0 + gdk_colors_free@Base 2.8.0 + gdk_colors_store@Base 2.8.0 + gdk_crossing_mode_get_type@Base 2.8.0 + gdk_cursor_get_cursor_type@Base 2.21.8 + gdk_cursor_get_display@Base 2.8.0 + gdk_cursor_get_image@Base 2.8.0 + gdk_cursor_get_type@Base 2.8.0 + gdk_cursor_new@Base 2.8.0 + gdk_cursor_new_for_display@Base 2.8.0 + gdk_cursor_new_from_name@Base 2.8.0 + gdk_cursor_new_from_pixbuf@Base 2.8.0 + gdk_cursor_new_from_pixmap@Base 2.8.0 + gdk_cursor_ref@Base 2.8.0 + gdk_cursor_type_get_type@Base 2.8.0 + gdk_cursor_unref@Base 2.8.0 + gdk_device_free_history@Base 2.8.0 + gdk_device_get_axis@Base 2.8.0 + gdk_device_get_axis_use@Base 2.21.8 + gdk_device_get_core_pointer@Base 2.8.0 + gdk_device_get_has_cursor@Base 2.21.8 + gdk_device_get_history@Base 2.8.0 + gdk_device_get_key@Base 2.21.8 + gdk_device_get_mode@Base 2.21.8 + gdk_device_get_n_axes@Base 2.21.8 + gdk_device_get_name@Base 2.21.8 + gdk_device_get_source@Base 2.21.8 + gdk_device_get_state@Base 2.8.0 + gdk_device_get_type@Base 2.8.0 + gdk_device_set_axis_use@Base 2.8.0 + gdk_device_set_key@Base 2.8.0 + gdk_device_set_mode@Base 2.8.0 + gdk_device_set_source@Base 2.8.0 + gdk_devices_list@Base 2.8.0 + gdk_display@Base 2.8.0 + gdk_display_add_client_message_filter@Base 2.8.0 + gdk_display_beep@Base 2.8.0 + gdk_display_close@Base 2.8.0 + gdk_display_flush@Base 2.8.0 + gdk_display_get_core_pointer@Base 2.8.0 + gdk_display_get_default@Base 2.8.0 + gdk_display_get_default_cursor_size@Base 2.8.0 + gdk_display_get_default_group@Base 2.8.0 + gdk_display_get_default_screen@Base 2.8.0 + gdk_display_get_event@Base 2.8.0 + gdk_display_get_maximal_cursor_size@Base 2.8.0 + gdk_display_get_n_screens@Base 2.8.0 + gdk_display_get_name@Base 2.8.0 + gdk_display_get_pointer@Base 2.8.0 + gdk_display_get_screen@Base 2.8.0 + gdk_display_get_type@Base 2.8.0 + gdk_display_get_window_at_pointer@Base 2.8.0 + gdk_display_is_closed@Base 2.21.8 + gdk_display_keyboard_ungrab@Base 2.8.0 + gdk_display_list_devices@Base 2.8.0 + gdk_display_manager_get@Base 2.8.0 + gdk_display_manager_get_default_display@Base 2.8.0 + gdk_display_manager_get_type@Base 2.8.0 + gdk_display_manager_list_displays@Base 2.8.0 + gdk_display_manager_set_default_display@Base 2.8.0 + gdk_display_open@Base 2.8.0 + gdk_display_open_default_libgtk_only@Base 2.8.0 + gdk_display_peek_event@Base 2.8.0 + gdk_display_pointer_is_grabbed@Base 2.8.0 + gdk_display_pointer_ungrab@Base 2.8.0 + gdk_display_put_event@Base 2.8.0 + gdk_display_request_selection_notification@Base 2.8.0 + gdk_display_set_double_click_distance@Base 2.8.0 + gdk_display_set_double_click_time@Base 2.8.0 + gdk_display_set_pointer_hooks@Base 2.8.0 + gdk_display_store_clipboard@Base 2.8.0 + gdk_display_supports_clipboard_persistence@Base 2.8.0 + gdk_display_supports_composite@Base 2.12.0 + gdk_display_supports_cursor_alpha@Base 2.8.0 + gdk_display_supports_cursor_color@Base 2.8.0 + gdk_display_supports_input_shapes@Base 2.10.0 + gdk_display_supports_selection_notification@Base 2.8.0 + gdk_display_supports_shapes@Base 2.10.0 + gdk_display_sync@Base 2.8.0 + gdk_display_warp_pointer@Base 2.8.0 + gdk_drag_abort@Base 2.8.0 + gdk_drag_action_get_type@Base 2.8.0 + gdk_drag_begin@Base 2.8.0 + gdk_drag_context_get_actions@Base 2.21.8 + gdk_drag_context_get_selected_action@Base 2.21.8 + gdk_drag_context_get_source_window@Base 2.21.8 + gdk_drag_context_get_suggested_action@Base 2.21.8 + gdk_drag_context_get_type@Base 2.8.0 + gdk_drag_context_list_targets@Base 2.21.8 + gdk_drag_context_new@Base 2.8.0 + gdk_drag_context_ref@Base 2.8.0 + gdk_drag_context_unref@Base 2.8.0 + gdk_drag_drop@Base 2.8.0 + gdk_drag_drop_succeeded@Base 2.8.0 + gdk_drag_find_window@Base 2.8.0 + gdk_drag_find_window_for_screen@Base 2.8.0 + gdk_drag_get_protocol@Base 2.8.0 + gdk_drag_get_protocol_for_display@Base 2.8.0 + gdk_drag_get_selection@Base 2.8.0 + gdk_drag_motion@Base 2.8.0 + gdk_drag_protocol_get_type@Base 2.8.0 + gdk_drag_status@Base 2.8.0 + gdk_draw_arc@Base 2.8.0 + gdk_draw_drawable@Base 2.8.0 + gdk_draw_glyphs@Base 2.8.0 + gdk_draw_glyphs_transformed@Base 2.8.0 + gdk_draw_gray_image@Base 2.8.0 + gdk_draw_image@Base 2.8.0 + gdk_draw_indexed_image@Base 2.8.0 + gdk_draw_layout@Base 2.8.0 + gdk_draw_layout_line@Base 2.8.0 + gdk_draw_layout_line_with_colors@Base 2.8.0 + gdk_draw_layout_with_colors@Base 2.8.0 + gdk_draw_line@Base 2.8.0 + gdk_draw_lines@Base 2.8.0 + gdk_draw_pixbuf@Base 2.8.0 + gdk_draw_point@Base 2.8.0 + gdk_draw_points@Base 2.8.0 + gdk_draw_polygon@Base 2.8.0 + gdk_draw_rectangle@Base 2.8.0 + gdk_draw_rgb_32_image@Base 2.8.0 + gdk_draw_rgb_32_image_dithalign@Base 2.8.0 + gdk_draw_rgb_image@Base 2.8.0 + gdk_draw_rgb_image_dithalign@Base 2.8.0 + gdk_draw_segments@Base 2.8.0 + gdk_draw_string@Base 2.8.0 + gdk_draw_text@Base 2.8.0 + gdk_draw_text_wc@Base 2.8.0 + gdk_draw_trapezoids@Base 2.8.0 + gdk_drawable_copy_to_image@Base 2.8.0 + gdk_drawable_get_clip_region@Base 2.8.0 + gdk_drawable_get_colormap@Base 2.8.0 + gdk_drawable_get_data@Base 2.8.0 + gdk_drawable_get_depth@Base 2.8.0 + gdk_drawable_get_display@Base 2.8.0 + gdk_drawable_get_image@Base 2.8.0 + gdk_drawable_get_screen@Base 2.8.0 + gdk_drawable_get_size@Base 2.8.0 + gdk_drawable_get_type@Base 2.8.0 + gdk_drawable_get_visible_region@Base 2.8.0 + gdk_drawable_get_visual@Base 2.8.0 + gdk_drawable_ref@Base 2.8.0 + gdk_drawable_set_colormap@Base 2.8.0 + gdk_drawable_set_data@Base 2.8.0 + gdk_drawable_unref@Base 2.8.0 + gdk_drop_finish@Base 2.8.0 + gdk_drop_reply@Base 2.8.0 + gdk_error_trap_pop@Base 2.8.0 + gdk_error_trap_push@Base 2.8.0 + gdk_event_copy@Base 2.8.0 + gdk_event_free@Base 2.8.0 + gdk_event_get@Base 2.8.0 + gdk_event_get_axis@Base 2.8.0 + gdk_event_get_coords@Base 2.8.0 + gdk_event_get_graphics_expose@Base 2.8.0 + gdk_event_get_root_coords@Base 2.8.0 + gdk_event_get_screen@Base 2.8.0 + gdk_event_get_state@Base 2.8.0 + gdk_event_get_time@Base 2.8.0 + gdk_event_get_type@Base 2.8.0 + gdk_event_handler_set@Base 2.8.0 + gdk_event_mask_get_type@Base 2.8.0 + gdk_event_new@Base 2.8.0 + gdk_event_peek@Base 2.8.0 + gdk_event_put@Base 2.8.0 + gdk_event_request_motions@Base 2.12.0 + gdk_event_send_client_message@Base 2.8.0 + gdk_event_send_client_message_for_display@Base 2.8.0 + gdk_event_send_clientmessage_toall@Base 2.8.0 + gdk_event_set_screen@Base 2.8.0 + gdk_event_type_get_type@Base 2.8.0 + gdk_events_pending@Base 2.8.0 + gdk_exit@Base 2.8.0 + gdk_extension_mode_get_type@Base 2.8.0 + gdk_fill_get_type@Base 2.8.0 + gdk_fill_rule_get_type@Base 2.8.0 + gdk_filter_return_get_type@Base 2.8.0 + gdk_flush@Base 2.8.0 + gdk_font_equal@Base 2.8.0 + gdk_font_from_description@Base 2.8.0 + gdk_font_from_description_for_display@Base 2.8.0 + gdk_font_get_display@Base 2.8.0 + gdk_font_get_type@Base 2.8.0 + gdk_font_id@Base 2.8.0 + gdk_font_load@Base 2.8.0 + gdk_font_load_for_display@Base 2.8.0 + gdk_font_ref@Base 2.8.0 + gdk_font_type_get_type@Base 2.8.0 + gdk_font_unref@Base 2.8.0 + gdk_fontset_load@Base 2.8.0 + gdk_fontset_load_for_display@Base 2.8.0 + gdk_free_compound_text@Base 2.8.0 + gdk_free_text_list@Base 2.8.0 + gdk_function_get_type@Base 2.8.0 + gdk_gc_copy@Base 2.8.0 + gdk_gc_get_colormap@Base 2.8.0 + gdk_gc_get_screen@Base 2.8.0 + gdk_gc_get_type@Base 2.8.0 + gdk_gc_get_values@Base 2.8.0 + gdk_gc_new@Base 2.8.0 + gdk_gc_new_with_values@Base 2.8.0 + gdk_gc_offset@Base 2.8.0 + gdk_gc_ref@Base 2.8.0 + gdk_gc_set_background@Base 2.8.0 + gdk_gc_set_clip_mask@Base 2.8.0 + gdk_gc_set_clip_origin@Base 2.8.0 + gdk_gc_set_clip_rectangle@Base 2.8.0 + gdk_gc_set_clip_region@Base 2.8.0 + gdk_gc_set_colormap@Base 2.8.0 + gdk_gc_set_dashes@Base 2.8.0 + gdk_gc_set_exposures@Base 2.8.0 + gdk_gc_set_fill@Base 2.8.0 + gdk_gc_set_font@Base 2.8.0 + gdk_gc_set_foreground@Base 2.8.0 + gdk_gc_set_function@Base 2.8.0 + gdk_gc_set_line_attributes@Base 2.8.0 + gdk_gc_set_rgb_bg_color@Base 2.8.0 + gdk_gc_set_rgb_fg_color@Base 2.8.0 + gdk_gc_set_stipple@Base 2.8.0 + gdk_gc_set_subwindow@Base 2.8.0 + gdk_gc_set_tile@Base 2.8.0 + gdk_gc_set_ts_origin@Base 2.8.0 + gdk_gc_set_values@Base 2.8.0 + gdk_gc_unref@Base 2.8.0 + gdk_gc_values_mask_get_type@Base 2.8.0 + gdk_get_default_root_window@Base 2.8.0 + gdk_get_display@Base 2.8.0 + gdk_get_display_arg_name@Base 2.8.0 + gdk_get_program_class@Base 2.8.0 + gdk_get_show_events@Base 2.8.0 + gdk_get_use_xshm@Base 2.8.0 + gdk_grab_status_get_type@Base 2.8.0 + gdk_gravity_get_type@Base 2.8.0 + gdk_image_get@Base 2.8.0 + gdk_image_get_bits_per_pixel@Base 2.21.8 + gdk_image_get_byte_order@Base 2.21.8 + gdk_image_get_bytes_per_line@Base 2.21.8 + gdk_image_get_bytes_per_pixel@Base 2.21.8 + gdk_image_get_colormap@Base 2.8.0 + gdk_image_get_depth@Base 2.21.8 + gdk_image_get_height@Base 2.21.8 + gdk_image_get_image_type@Base 2.21.8 + gdk_image_get_pixel@Base 2.8.0 + gdk_image_get_pixels@Base 2.21.8 + gdk_image_get_type@Base 2.8.0 + gdk_image_get_visual@Base 2.21.8 + gdk_image_get_width@Base 2.21.8 + gdk_image_new@Base 2.8.0 + gdk_image_new_bitmap@Base 2.8.0 + gdk_image_put_pixel@Base 2.8.0 + gdk_image_ref@Base 2.8.0 + gdk_image_set_colormap@Base 2.8.0 + gdk_image_type_get_type@Base 2.8.0 + gdk_image_unref@Base 2.8.0 + gdk_init@Base 2.8.0 + gdk_init_check@Base 2.8.0 + gdk_input_add@Base 2.8.0 + gdk_input_add_full@Base 2.8.0 + gdk_input_condition_get_type@Base 2.8.0 + gdk_input_mode_get_type@Base 2.8.0 + gdk_input_remove@Base 2.8.0 + gdk_input_set_extension_events@Base 2.8.0 + gdk_input_source_get_type@Base 2.8.0 + gdk_join_style_get_type@Base 2.8.0 + gdk_keyboard_grab@Base 2.8.0 + gdk_keyboard_grab_info_libgtk_only@Base 2.8.0 + gdk_keyboard_ungrab@Base 2.8.0 + gdk_keymap_add_virtual_modifiers@Base 2.20.0 + gdk_keymap_get_caps_lock_state@Base 2.16.0 + gdk_keymap_get_default@Base 2.8.0 + gdk_keymap_get_direction@Base 2.8.0 + gdk_keymap_get_entries_for_keycode@Base 2.8.0 + gdk_keymap_get_entries_for_keyval@Base 2.8.0 + gdk_keymap_get_for_display@Base 2.8.0 + gdk_keymap_get_type@Base 2.8.0 + gdk_keymap_have_bidi_layouts@Base 2.12.0 + gdk_keymap_lookup_key@Base 2.8.0 + gdk_keymap_map_virtual_modifiers@Base 2.20.0 + gdk_keymap_translate_keyboard_state@Base 2.8.0 + gdk_keyval_convert_case@Base 2.8.0 + gdk_keyval_from_name@Base 2.8.0 + gdk_keyval_is_lower@Base 2.8.0 + gdk_keyval_is_upper@Base 2.8.0 + gdk_keyval_name@Base 2.8.0 + gdk_keyval_to_lower@Base 2.8.0 + gdk_keyval_to_unicode@Base 2.8.0 + gdk_keyval_to_upper@Base 2.8.0 + gdk_line_style_get_type@Base 2.8.0 + gdk_list_visuals@Base 2.8.0 + gdk_mbstowcs@Base 2.8.0 + gdk_modifier_type_get_type@Base 2.8.0 + gdk_net_wm_supports@Base 2.8.0 + gdk_notify_startup_complete@Base 2.8.0 + gdk_notify_startup_complete_with_id@Base 2.12.0 + gdk_notify_type_get_type@Base 2.8.0 + gdk_offscreen_window_get_embedder@Base 2.18.0 + gdk_offscreen_window_get_pixmap@Base 2.18.0 + gdk_offscreen_window_get_type@Base 2.18.0 + gdk_offscreen_window_set_embedder@Base 2.18.0 + gdk_overlap_type_get_type@Base 2.8.0 + gdk_owner_change_get_type@Base 2.8.0 + gdk_pango_attr_emboss_color_new@Base 2.12.0 + gdk_pango_attr_embossed_new@Base 2.8.0 + gdk_pango_attr_stipple_new@Base 2.8.0 + gdk_pango_context_get@Base 2.8.0 + gdk_pango_context_get_for_screen@Base 2.8.0 + gdk_pango_context_set_colormap@Base 2.8.0 + gdk_pango_layout_get_clip_region@Base 2.8.0 + gdk_pango_layout_line_get_clip_region@Base 2.8.0 + gdk_pango_renderer_get_default@Base 2.8.0 + gdk_pango_renderer_get_type@Base 2.8.0 + gdk_pango_renderer_new@Base 2.8.0 + gdk_pango_renderer_set_drawable@Base 2.8.0 + gdk_pango_renderer_set_gc@Base 2.8.0 + gdk_pango_renderer_set_override_color@Base 2.8.0 + gdk_pango_renderer_set_stipple@Base 2.8.0 + gdk_parse_args@Base 2.8.0 + gdk_pixbuf_get_from_drawable@Base 2.8.0 + gdk_pixbuf_get_from_image@Base 2.8.0 + gdk_pixbuf_render_pixmap_and_mask@Base 2.8.0 + gdk_pixbuf_render_pixmap_and_mask_for_colormap@Base 2.8.0 + gdk_pixbuf_render_threshold_alpha@Base 2.8.0 + gdk_pixbuf_render_to_drawable@Base 2.8.0 + gdk_pixbuf_render_to_drawable_alpha@Base 2.8.0 + gdk_pixmap_colormap_create_from_xpm@Base 2.8.0 + gdk_pixmap_colormap_create_from_xpm_d@Base 2.8.0 + gdk_pixmap_create_from_data@Base 2.8.0 + gdk_pixmap_create_from_xpm@Base 2.8.0 + gdk_pixmap_create_from_xpm_d@Base 2.8.0 + gdk_pixmap_foreign_new@Base 2.8.0 + gdk_pixmap_foreign_new_for_display@Base 2.8.0 + gdk_pixmap_foreign_new_for_screen@Base 2.10.0 + gdk_pixmap_get_type@Base 2.8.0 + gdk_pixmap_impl_x11_get_type@Base 2.8.0 + gdk_pixmap_lookup@Base 2.8.0 + gdk_pixmap_lookup_for_display@Base 2.8.0 + gdk_pixmap_new@Base 2.8.0 + gdk_pointer_grab@Base 2.8.0 + gdk_pointer_grab_info_libgtk_only@Base 2.8.0 + gdk_pointer_is_grabbed@Base 2.8.0 + gdk_pointer_ungrab@Base 2.8.0 + gdk_pre_parse_libgtk_only@Base 2.8.0 + gdk_prop_mode_get_type@Base 2.8.0 + gdk_property_change@Base 2.8.0 + gdk_property_delete@Base 2.8.0 + gdk_property_get@Base 2.8.0 + gdk_property_state_get_type@Base 2.8.0 + gdk_query_depths@Base 2.8.0 + gdk_query_visual_types@Base 2.8.0 + gdk_rectangle_get_type@Base 2.8.0 + gdk_rectangle_intersect@Base 2.8.0 + gdk_rectangle_union@Base 2.8.0 + gdk_region_copy@Base 2.8.0 + gdk_region_destroy@Base 2.8.0 + gdk_region_empty@Base 2.8.0 + gdk_region_equal@Base 2.8.0 + gdk_region_get_clipbox@Base 2.8.0 + gdk_region_get_rectangles@Base 2.8.0 + gdk_region_intersect@Base 2.8.0 + gdk_region_new@Base 2.8.0 + gdk_region_offset@Base 2.8.0 + gdk_region_point_in@Base 2.8.0 + gdk_region_polygon@Base 2.8.0 + gdk_region_rect_equal@Base 2.18.0 + gdk_region_rect_in@Base 2.8.0 + gdk_region_rectangle@Base 2.8.0 + gdk_region_shrink@Base 2.8.0 + gdk_region_spans_intersect_foreach@Base 2.8.0 + gdk_region_subtract@Base 2.8.0 + gdk_region_union@Base 2.8.0 + gdk_region_union_with_rect@Base 2.8.0 + gdk_region_xor@Base 2.8.0 + gdk_rgb_cmap_free@Base 2.8.0 + gdk_rgb_cmap_new@Base 2.8.0 + gdk_rgb_colormap_ditherable@Base 2.8.0 + gdk_rgb_dither_get_type@Base 2.8.0 + gdk_rgb_ditherable@Base 2.8.0 + gdk_rgb_find_color@Base 2.8.0 + gdk_rgb_gc_set_background@Base 2.8.0 + gdk_rgb_gc_set_foreground@Base 2.8.0 + gdk_rgb_get_colormap@Base 2.8.0 + gdk_rgb_get_visual@Base 2.8.0 + gdk_rgb_init@Base 2.8.0 + gdk_rgb_set_install@Base 2.8.0 + gdk_rgb_set_min_colors@Base 2.8.0 + gdk_rgb_set_verbose@Base 2.8.0 + gdk_rgb_xpixel_from_rgb@Base 2.8.0 + gdk_screen_broadcast_client_message@Base 2.8.0 + gdk_screen_get_active_window@Base 2.10.0 + gdk_screen_get_default@Base 2.8.0 + gdk_screen_get_default_colormap@Base 2.8.0 + gdk_screen_get_display@Base 2.8.0 + gdk_screen_get_font_options@Base 2.10.0 + gdk_screen_get_height@Base 2.8.0 + gdk_screen_get_height_mm@Base 2.8.0 + gdk_screen_get_monitor_at_point@Base 2.8.0 + gdk_screen_get_monitor_at_window@Base 2.8.0 + gdk_screen_get_monitor_geometry@Base 2.8.0 + gdk_screen_get_monitor_height_mm@Base 2.14.0 + gdk_screen_get_monitor_plug_name@Base 2.14.0 + gdk_screen_get_monitor_width_mm@Base 2.14.0 + gdk_screen_get_n_monitors@Base 2.8.0 + gdk_screen_get_number@Base 2.8.0 + gdk_screen_get_primary_monitor@Base 2.20.0 + gdk_screen_get_resolution@Base 2.10.0 + gdk_screen_get_rgb_colormap@Base 2.8.0 + gdk_screen_get_rgb_visual@Base 2.8.0 + gdk_screen_get_rgba_colormap@Base 2.8.0 + gdk_screen_get_rgba_visual@Base 2.8.0 + gdk_screen_get_root_window@Base 2.8.0 + gdk_screen_get_setting@Base 2.8.0 + gdk_screen_get_system_colormap@Base 2.8.0 + gdk_screen_get_system_visual@Base 2.8.0 + gdk_screen_get_toplevel_windows@Base 2.8.0 + gdk_screen_get_type@Base 2.8.0 + gdk_screen_get_width@Base 2.8.0 + gdk_screen_get_width_mm@Base 2.8.0 + gdk_screen_get_window_stack@Base 2.10.0 + gdk_screen_height@Base 2.8.0 + gdk_screen_height_mm@Base 2.8.0 + gdk_screen_is_composited@Base 2.10.0 + gdk_screen_list_visuals@Base 2.8.0 + gdk_screen_make_display_name@Base 2.8.0 + gdk_screen_set_default_colormap@Base 2.8.0 + gdk_screen_set_font_options@Base 2.10.0 + gdk_screen_set_resolution@Base 2.10.0 + gdk_screen_width@Base 2.8.0 + gdk_screen_width_mm@Base 2.8.0 + gdk_scroll_direction_get_type@Base 2.8.0 + gdk_selection_convert@Base 2.8.0 + gdk_selection_owner_get@Base 2.8.0 + gdk_selection_owner_get_for_display@Base 2.8.0 + gdk_selection_owner_set@Base 2.8.0 + gdk_selection_owner_set_for_display@Base 2.8.0 + gdk_selection_property_get@Base 2.18.0 + gdk_selection_send_notify@Base 2.8.0 + gdk_selection_send_notify_for_display@Base 2.8.0 + gdk_set_double_click_time@Base 2.8.0 + gdk_set_locale@Base 2.8.0 + gdk_set_pointer_hooks@Base 2.8.0 + gdk_set_program_class@Base 2.8.0 + gdk_set_show_events@Base 2.8.0 + gdk_set_sm_client_id@Base 2.8.0 + gdk_set_use_xshm@Base 2.8.0 + gdk_setting_action_get_type@Base 2.8.0 + gdk_setting_get@Base 2.8.0 + gdk_spawn_command_line_on_screen@Base 2.8.0 + gdk_spawn_on_screen@Base 2.8.0 + gdk_spawn_on_screen_with_pipes@Base 2.8.0 + gdk_status_get_type@Base 2.8.0 + gdk_string_extents@Base 2.8.0 + gdk_string_height@Base 2.8.0 + gdk_string_measure@Base 2.8.0 + gdk_string_to_compound_text@Base 2.8.0 + gdk_string_to_compound_text_for_display@Base 2.8.0 + gdk_string_width@Base 2.8.0 + gdk_subwindow_mode_get_type@Base 2.8.0 + gdk_synthesize_window_state@Base 2.8.0 + gdk_test_render_sync@Base 2.14.0 + gdk_test_simulate_button@Base 2.14.0 + gdk_test_simulate_key@Base 2.14.0 + gdk_text_extents@Base 2.8.0 + gdk_text_extents_wc@Base 2.8.0 + gdk_text_height@Base 2.8.0 + gdk_text_measure@Base 2.8.0 + gdk_text_property_to_text_list@Base 2.8.0 + gdk_text_property_to_text_list_for_display@Base 2.8.0 + gdk_text_property_to_utf8_list@Base 2.8.0 + gdk_text_property_to_utf8_list_for_display@Base 2.8.0 + gdk_text_width@Base 2.8.0 + gdk_text_width_wc@Base 2.8.0 + gdk_threads_add_idle@Base 2.12.0 + gdk_threads_add_idle_full@Base 2.12.0 + gdk_threads_add_timeout@Base 2.12.0 + gdk_threads_add_timeout_full@Base 2.12.0 + gdk_threads_add_timeout_seconds@Base 2.14.0 + gdk_threads_add_timeout_seconds_full@Base 2.14.0 + gdk_threads_enter@Base 2.8.0 + gdk_threads_init@Base 2.8.0 + gdk_threads_leave@Base 2.8.0 + gdk_threads_lock@Base 2.8.0 + gdk_threads_mutex@Base 2.8.0 + gdk_threads_set_lock_functions@Base 2.8.0 + gdk_threads_unlock@Base 2.8.0 + gdk_unicode_to_keyval@Base 2.8.0 + gdk_utf8_to_compound_text@Base 2.8.0 + gdk_utf8_to_compound_text_for_display@Base 2.8.0 + gdk_utf8_to_string_target@Base 2.8.0 + gdk_visibility_state_get_type@Base 2.8.0 + gdk_visual_get_best@Base 2.8.0 + gdk_visual_get_best_depth@Base 2.8.0 + gdk_visual_get_best_type@Base 2.8.0 + gdk_visual_get_best_with_both@Base 2.8.0 + gdk_visual_get_best_with_depth@Base 2.8.0 + gdk_visual_get_best_with_type@Base 2.8.0 + gdk_visual_get_bits_per_rgb@Base 2.21.8 + gdk_visual_get_blue_pixel_details@Base 2.21.8 + gdk_visual_get_byte_order@Base 2.21.8 + gdk_visual_get_colormap_size@Base 2.21.8 + gdk_visual_get_depth@Base 2.21.8 + gdk_visual_get_green_pixel_details@Base 2.21.8 + gdk_visual_get_red_pixel_details@Base 2.21.8 + gdk_visual_get_screen@Base 2.8.0 + gdk_visual_get_system@Base 2.8.0 + gdk_visual_get_type@Base 2.8.0 + gdk_visual_get_visual_type@Base 2.21.8 + gdk_visual_type_get_type@Base 2.8.0 + gdk_wcstombs@Base 2.8.0 + gdk_window_add_filter@Base 2.8.0 + gdk_window_at_pointer@Base 2.8.0 + gdk_window_attributes_type_get_type@Base 2.8.0 + gdk_window_beep@Base 2.12.0 + gdk_window_begin_move_drag@Base 2.8.0 + gdk_window_begin_paint_rect@Base 2.8.0 + gdk_window_begin_paint_region@Base 2.8.0 + gdk_window_begin_resize_drag@Base 2.8.0 + gdk_window_class_get_type@Base 2.8.0 + gdk_window_clear@Base 2.8.0 + gdk_window_clear_area@Base 2.8.0 + gdk_window_clear_area_e@Base 2.8.0 + gdk_window_configure_finished@Base 2.8.0 + gdk_window_constrain_size@Base 2.8.0 + gdk_window_coords_from_parent@Base 2.21.8 + gdk_window_coords_to_parent@Base 2.21.8 + gdk_window_create_similar_surface@Base 2.21.8 + gdk_window_deiconify@Base 2.8.0 + gdk_window_destroy@Base 2.8.0 + gdk_window_destroy_notify@Base 2.8.0 + gdk_window_edge_get_type@Base 2.8.0 + gdk_window_enable_synchronized_configure@Base 2.8.0 + gdk_window_end_paint@Base 2.8.0 + gdk_window_ensure_native@Base 2.18.0 + gdk_window_flush@Base 2.18.0 + gdk_window_focus@Base 2.8.0 + gdk_window_foreign_new@Base 2.8.0 + gdk_window_foreign_new_for_display@Base 2.8.0 + gdk_window_freeze_toplevel_updates_libgtk_only@Base 2.12.0 + gdk_window_freeze_updates@Base 2.8.0 + gdk_window_fullscreen@Base 2.8.0 + gdk_window_geometry_changed@Base 2.18.0 + gdk_window_get_accept_focus@Base 2.21.8 + gdk_window_get_background_pattern@Base 2.21.8 + gdk_window_get_children@Base 2.8.0 + gdk_window_get_composited@Base 2.21.8 + gdk_window_get_cursor@Base 2.18.0 + gdk_window_get_decorations@Base 2.8.0 + gdk_window_get_deskrelative_origin@Base 2.8.0 + gdk_window_get_effective_parent@Base 2.21.8 + gdk_window_get_effective_toplevel@Base 2.21.8 + gdk_window_get_events@Base 2.8.0 + gdk_window_get_focus_on_map@Base 2.21.8 + gdk_window_get_frame_extents@Base 2.8.0 + gdk_window_get_geometry@Base 2.8.0 + gdk_window_get_group@Base 2.8.0 + gdk_window_get_internal_paint_info@Base 2.8.0 + gdk_window_get_modal_hint@Base 2.21.8 + gdk_window_get_origin@Base 2.8.0 + gdk_window_get_parent@Base 2.8.0 + gdk_window_get_pointer@Base 2.8.0 + gdk_window_get_position@Base 2.8.0 + gdk_window_get_root_coords@Base 2.18.0 + gdk_window_get_root_origin@Base 2.8.0 + gdk_window_get_state@Base 2.8.0 + gdk_window_get_toplevel@Base 2.8.0 + gdk_window_get_toplevels@Base 2.8.0 + gdk_window_get_type_hint@Base 2.10.0 + gdk_window_get_update_area@Base 2.8.0 + gdk_window_get_user_data@Base 2.8.0 + gdk_window_get_window_type@Base 2.8.0 + gdk_window_has_native@Base 2.21.8 + gdk_window_hide@Base 2.8.0 + gdk_window_hints_get_type@Base 2.8.0 + gdk_window_iconify@Base 2.8.0 + gdk_window_impl_get_type@Base 2.14.0 + gdk_window_impl_x11_get_type@Base 2.8.0 + gdk_window_input_shape_combine_mask@Base 2.10.0 + gdk_window_input_shape_combine_region@Base 2.10.0 + gdk_window_invalidate_maybe_recurse@Base 2.8.0 + gdk_window_invalidate_rect@Base 2.8.0 + gdk_window_invalidate_region@Base 2.8.0 + gdk_window_is_destroyed@Base 2.18.0 + gdk_window_is_input_only@Base 2.21.8 + gdk_window_is_shaped@Base 2.21.8 + gdk_window_is_viewable@Base 2.8.0 + gdk_window_is_visible@Base 2.8.0 + gdk_window_lookup@Base 2.8.0 + gdk_window_lookup_for_display@Base 2.8.0 + gdk_window_lower@Base 2.8.0 + gdk_window_maximize@Base 2.8.0 + gdk_window_merge_child_input_shapes@Base 2.10.0 + gdk_window_merge_child_shapes@Base 2.8.0 + gdk_window_move@Base 2.8.0 + gdk_window_move_region@Base 2.8.0 + gdk_window_move_resize@Base 2.8.0 + gdk_window_new@Base 2.8.0 + gdk_window_object_get_type@Base 2.8.0 + gdk_window_peek_children@Base 2.8.0 + gdk_window_process_all_updates@Base 2.8.0 + gdk_window_process_updates@Base 2.8.0 + gdk_window_raise@Base 2.8.0 + gdk_window_redirect_to_drawable@Base 2.14.0 + gdk_window_register_dnd@Base 2.8.0 + gdk_window_remove_filter@Base 2.8.0 + gdk_window_remove_redirection@Base 2.14.0 + gdk_window_reparent@Base 2.8.0 + gdk_window_resize@Base 2.8.0 + gdk_window_restack@Base 2.18.0 + gdk_window_scroll@Base 2.8.0 + gdk_window_set_accept_focus@Base 2.8.0 + gdk_window_set_back_pixmap@Base 2.8.0 + gdk_window_set_background@Base 2.8.0 + gdk_window_set_child_input_shapes@Base 2.10.0 + gdk_window_set_child_shapes@Base 2.8.0 + gdk_window_set_composited@Base 2.12.0 + gdk_window_set_cursor@Base 2.8.0 + gdk_window_set_debug_updates@Base 2.8.0 + gdk_window_set_decorations@Base 2.8.0 + gdk_window_set_events@Base 2.8.0 + gdk_window_set_focus_on_map@Base 2.8.0 + gdk_window_set_functions@Base 2.8.0 + gdk_window_set_geometry_hints@Base 2.8.0 + gdk_window_set_group@Base 2.8.0 + gdk_window_set_hints@Base 2.8.0 + gdk_window_set_icon@Base 2.8.0 + gdk_window_set_icon_list@Base 2.8.0 + gdk_window_set_icon_name@Base 2.8.0 + gdk_window_set_keep_above@Base 2.8.0 + gdk_window_set_keep_below@Base 2.8.0 + gdk_window_set_modal_hint@Base 2.8.0 + gdk_window_set_opacity@Base 2.12.0 + gdk_window_set_override_redirect@Base 2.8.0 + gdk_window_set_role@Base 2.8.0 + gdk_window_set_skip_pager_hint@Base 2.8.0 + gdk_window_set_skip_taskbar_hint@Base 2.8.0 + gdk_window_set_startup_id@Base 2.12.0 + gdk_window_set_static_gravities@Base 2.8.0 + gdk_window_set_title@Base 2.8.0 + gdk_window_set_transient_for@Base 2.8.0 + gdk_window_set_type_hint@Base 2.8.0 + gdk_window_set_urgency_hint@Base 2.8.0 + gdk_window_set_user_data@Base 2.8.0 + gdk_window_shape_combine_mask@Base 2.8.0 + gdk_window_shape_combine_region@Base 2.8.0 + gdk_window_show@Base 2.8.0 + gdk_window_show_unraised@Base 2.8.0 + gdk_window_state_get_type@Base 2.8.0 + gdk_window_stick@Base 2.8.0 + gdk_window_thaw_toplevel_updates_libgtk_only@Base 2.12.0 + gdk_window_thaw_updates@Base 2.8.0 + gdk_window_type_get_type@Base 2.8.0 + gdk_window_type_hint_get_type@Base 2.8.0 + gdk_window_unfullscreen@Base 2.8.0 + gdk_window_unmaximize@Base 2.8.0 + gdk_window_unstick@Base 2.8.0 + gdk_window_withdraw@Base 2.8.0 + gdk_wm_decoration_get_type@Base 2.8.0 + gdk_wm_function_get_type@Base 2.8.0 + gdk_x11_atom_to_xatom@Base 2.8.0 + gdk_x11_atom_to_xatom_for_display@Base 2.8.0 + gdk_x11_colormap_foreign_new@Base 2.8.0 + gdk_x11_colormap_get_xcolormap@Base 2.8.0 + gdk_x11_colormap_get_xdisplay@Base 2.8.0 + gdk_x11_cursor_get_xcursor@Base 2.8.0 + gdk_x11_cursor_get_xdisplay@Base 2.8.0 + gdk_x11_display_broadcast_startup_message@Base 2.12.0 + gdk_x11_display_get_startup_notification_id@Base 2.12.0 + gdk_x11_display_get_user_time@Base 2.8.0 + gdk_x11_display_get_xdisplay@Base 2.8.0 + gdk_x11_display_grab@Base 2.8.0 + gdk_x11_display_set_cursor_theme@Base 2.8.0 + gdk_x11_display_ungrab@Base 2.8.0 + gdk_x11_drawable_get_xdisplay@Base 2.8.0 + gdk_x11_drawable_get_xdisplay@Base 2.8.0 + gdk_x11_drawable_get_xid@Base 2.8.0 + gdk_x11_font_get_name@Base 2.8.0 + gdk_x11_font_get_xdisplay@Base 2.8.0 + gdk_x11_font_get_xfont@Base 2.8.0 + gdk_x11_gc_get_xdisplay@Base 2.8.0 + gdk_x11_gc_get_xgc@Base 2.8.0 + gdk_x11_get_default_root_xwindow@Base 2.8.0 + gdk_x11_get_default_screen@Base 2.8.0 + gdk_x11_get_default_xdisplay@Base 2.8.0 + gdk_x11_get_server_time@Base 2.8.0 + gdk_x11_get_xatom_by_name@Base 2.8.0 + gdk_x11_get_xatom_by_name_for_display@Base 2.8.0 + gdk_x11_get_xatom_name@Base 2.8.0 + gdk_x11_get_xatom_name_for_display@Base 2.8.0 + gdk_x11_grab_server@Base 2.8.0 + gdk_x11_image_get_xdisplay@Base 2.8.0 + gdk_x11_image_get_ximage@Base 2.8.0 + gdk_x11_lookup_xdisplay@Base 2.8.0 + gdk_x11_pixmap_get_drawable_impl@Base 2.18.0 + gdk_x11_register_standard_event_type@Base 2.8.0 + gdk_x11_screen_get_monitor_output@Base 2.14.0 + gdk_x11_screen_get_screen_number@Base 2.8.0 + gdk_x11_screen_get_window_manager_name@Base 2.8.0 + gdk_x11_screen_get_xscreen@Base 2.8.0 + gdk_x11_screen_lookup_visual@Base 2.8.0 + gdk_x11_screen_supports_net_wm_hint@Base 2.8.0 + gdk_x11_ungrab_server@Base 2.8.0 + gdk_x11_visual_get_xvisual@Base 2.8.0 + gdk_x11_window_get_drawable_impl@Base 2.18.0 + gdk_x11_window_move_to_current_desktop@Base 2.8.0 + gdk_x11_window_set_user_time@Base 2.8.0 + gdk_x11_xatom_to_atom@Base 2.8.0 + gdk_x11_xatom_to_atom_for_display@Base 2.8.0 + gdk_xid_table_lookup@Base 2.8.0 + gdk_xid_table_lookup_for_display@Base 2.8.0 + gdkx_colormap_get@Base 2.8.0 + gdkx_visual_get@Base 2.8.0 +libgtk-x11-2.0.so.0 libgtk2.0-0 #MINVER# +* Build-Depends-Package: libgtk2.0-dev + gtk_about_dialog_get_artists@Base 2.8.0 + gtk_about_dialog_get_authors@Base 2.8.0 + gtk_about_dialog_get_comments@Base 2.8.0 + gtk_about_dialog_get_copyright@Base 2.8.0 + gtk_about_dialog_get_documenters@Base 2.8.0 + gtk_about_dialog_get_license@Base 2.8.0 + gtk_about_dialog_get_logo@Base 2.8.0 + gtk_about_dialog_get_logo_icon_name@Base 2.8.0 + gtk_about_dialog_get_name@Base 2.8.0 + gtk_about_dialog_get_program_name@Base 2.12.0 + gtk_about_dialog_get_translator_credits@Base 2.8.0 + gtk_about_dialog_get_type@Base 2.8.0 + gtk_about_dialog_get_version@Base 2.8.0 + gtk_about_dialog_get_website@Base 2.8.0 + gtk_about_dialog_get_website_label@Base 2.8.0 + gtk_about_dialog_get_wrap_license@Base 2.8.0 + gtk_about_dialog_new@Base 2.8.0 + gtk_about_dialog_set_artists@Base 2.8.0 + gtk_about_dialog_set_authors@Base 2.8.0 + gtk_about_dialog_set_comments@Base 2.8.0 + gtk_about_dialog_set_copyright@Base 2.8.0 + gtk_about_dialog_set_documenters@Base 2.8.0 + gtk_about_dialog_set_email_hook@Base 2.8.0 + gtk_about_dialog_set_license@Base 2.8.0 + gtk_about_dialog_set_logo@Base 2.8.0 + gtk_about_dialog_set_logo_icon_name@Base 2.8.0 + gtk_about_dialog_set_name@Base 2.8.0 + gtk_about_dialog_set_program_name@Base 2.12.0 + gtk_about_dialog_set_translator_credits@Base 2.8.0 + gtk_about_dialog_set_url_hook@Base 2.8.0 + gtk_about_dialog_set_version@Base 2.8.0 + gtk_about_dialog_set_website@Base 2.8.0 + gtk_about_dialog_set_website_label@Base 2.8.0 + gtk_about_dialog_set_wrap_license@Base 2.8.0 + gtk_accel_flags_get_type@Base 2.8.0 + gtk_accel_group_activate@Base 2.8.0 + gtk_accel_group_connect@Base 2.8.0 + gtk_accel_group_connect_by_path@Base 2.8.0 + gtk_accel_group_disconnect@Base 2.8.0 + gtk_accel_group_disconnect_key@Base 2.8.0 + gtk_accel_group_find@Base 2.8.0 + gtk_accel_group_from_accel_closure@Base 2.8.0 + gtk_accel_group_get_is_locked@Base 2.14.0 + gtk_accel_group_get_modifier_mask@Base 2.14.0 + gtk_accel_group_get_type@Base 2.8.0 + gtk_accel_group_lock@Base 2.8.0 + gtk_accel_group_new@Base 2.8.0 + gtk_accel_group_query@Base 2.8.0 + gtk_accel_group_unlock@Base 2.8.0 + gtk_accel_groups_activate@Base 2.8.0 + gtk_accel_groups_from_object@Base 2.8.0 + gtk_accel_label_get_accel_widget@Base 2.8.0 + gtk_accel_label_get_accel_width@Base 2.8.0 + gtk_accel_label_get_type@Base 2.8.0 + gtk_accel_label_new@Base 2.8.0 + gtk_accel_label_refetch@Base 2.8.0 + gtk_accel_label_set_accel_closure@Base 2.8.0 + gtk_accel_label_set_accel_widget@Base 2.8.0 + gtk_accel_map_add_entry@Base 2.8.0 + gtk_accel_map_add_filter@Base 2.8.0 + gtk_accel_map_change_entry@Base 2.8.0 + gtk_accel_map_foreach@Base 2.8.0 + gtk_accel_map_foreach_unfiltered@Base 2.8.0 + gtk_accel_map_get@Base 2.8.0 + gtk_accel_map_get_type@Base 2.8.0 + gtk_accel_map_load@Base 2.8.0 + gtk_accel_map_load_fd@Base 2.8.0 + gtk_accel_map_load_scanner@Base 2.8.0 + gtk_accel_map_lock_path@Base 2.8.0 + gtk_accel_map_lookup_entry@Base 2.8.0 + gtk_accel_map_save@Base 2.8.0 + gtk_accel_map_save_fd@Base 2.8.0 + gtk_accel_map_unlock_path@Base 2.8.0 + gtk_accelerator_get_default_mod_mask@Base 2.8.0 + gtk_accelerator_get_label@Base 2.8.0 + gtk_accelerator_name@Base 2.8.0 + gtk_accelerator_parse@Base 2.8.0 + gtk_accelerator_set_default_mod_mask@Base 2.8.0 + gtk_accelerator_valid@Base 2.8.0 + gtk_accessible_connect_widget_destroyed@Base 2.8.0 + gtk_accessible_get_type@Base 2.8.0 + gtk_accessible_get_widget@Base 2.21.8 + gtk_accessible_set_widget@Base 2.21.8 + gtk_action_activate@Base 2.8.0 + gtk_action_block_activate@Base 2.16.0 + gtk_action_block_activate_from@Base 2.8.0 + gtk_action_connect_accelerator@Base 2.8.0 + gtk_action_connect_proxy@Base 2.8.0 + gtk_action_create_icon@Base 2.8.0 + gtk_action_create_menu@Base 2.12.0 + gtk_action_create_menu_item@Base 2.8.0 + gtk_action_create_tool_item@Base 2.8.0 + gtk_action_disconnect_accelerator@Base 2.8.0 + gtk_action_disconnect_proxy@Base 2.8.0 + gtk_action_get_accel_closure@Base 2.8.0 + gtk_action_get_accel_path@Base 2.8.0 + gtk_action_get_always_show_image@Base 2.20.0 + gtk_action_get_gicon@Base 2.16.0 + gtk_action_get_icon_name@Base 2.16.0 + gtk_action_get_is_important@Base 2.16.0 + gtk_action_get_label@Base 2.16.0 + gtk_action_get_name@Base 2.8.0 + gtk_action_get_proxies@Base 2.8.0 + gtk_action_get_sensitive@Base 2.8.0 + gtk_action_get_short_label@Base 2.16.0 + gtk_action_get_stock_id@Base 2.16.0 + gtk_action_get_tooltip@Base 2.16.0 + gtk_action_get_type@Base 2.8.0 + gtk_action_get_visible@Base 2.8.0 + gtk_action_get_visible_horizontal@Base 2.16.0 + gtk_action_get_visible_vertical@Base 2.16.0 + gtk_action_group_add_action@Base 2.8.0 + gtk_action_group_add_action_with_accel@Base 2.8.0 + gtk_action_group_add_actions@Base 2.8.0 + gtk_action_group_add_actions_full@Base 2.8.0 + gtk_action_group_add_radio_actions@Base 2.8.0 + gtk_action_group_add_radio_actions_full@Base 2.8.0 + gtk_action_group_add_toggle_actions@Base 2.8.0 + gtk_action_group_add_toggle_actions_full@Base 2.8.0 + gtk_action_group_get_action@Base 2.8.0 + gtk_action_group_get_name@Base 2.8.0 + gtk_action_group_get_sensitive@Base 2.8.0 + gtk_action_group_get_type@Base 2.8.0 + gtk_action_group_get_visible@Base 2.8.0 + gtk_action_group_list_actions@Base 2.8.0 + gtk_action_group_new@Base 2.8.0 + gtk_action_group_remove_action@Base 2.8.0 + gtk_action_group_set_sensitive@Base 2.8.0 + gtk_action_group_set_translate_func@Base 2.8.0 + gtk_action_group_set_translation_domain@Base 2.8.0 + gtk_action_group_set_visible@Base 2.8.0 + gtk_action_group_translate_string@Base 2.8.0 + gtk_action_is_sensitive@Base 2.8.0 + gtk_action_is_visible@Base 2.8.0 + gtk_action_new@Base 2.8.0 + gtk_action_set_accel_group@Base 2.8.0 + gtk_action_set_accel_path@Base 2.8.0 + gtk_action_set_always_show_image@Base 2.20.0 + gtk_action_set_gicon@Base 2.16.0 + gtk_action_set_icon_name@Base 2.16.0 + gtk_action_set_is_important@Base 2.16.0 + gtk_action_set_label@Base 2.16.0 + gtk_action_set_sensitive@Base 2.8.0 + gtk_action_set_short_label@Base 2.16.0 + gtk_action_set_stock_id@Base 2.16.0 + gtk_action_set_tooltip@Base 2.16.0 + gtk_action_set_visible@Base 2.8.0 + gtk_action_set_visible_horizontal@Base 2.16.0 + gtk_action_set_visible_vertical@Base 2.16.0 + gtk_action_unblock_activate@Base 2.16.0 + gtk_action_unblock_activate_from@Base 2.8.0 + gtk_activatable_do_set_related_action@Base 2.16.0 + gtk_activatable_get_related_action@Base 2.16.0 + gtk_activatable_get_type@Base 2.16.0 + gtk_activatable_get_use_action_appearance@Base 2.16.0 + gtk_activatable_set_related_action@Base 2.16.0 + gtk_activatable_set_use_action_appearance@Base 2.16.0 + gtk_activatable_sync_action_properties@Base 2.16.0 + gtk_adjustment_changed@Base 2.8.0 + gtk_adjustment_clamp_page@Base 2.8.0 + gtk_adjustment_configure@Base 2.14.0 + gtk_adjustment_get_lower@Base 2.14.0 + gtk_adjustment_get_page_increment@Base 2.14.0 + gtk_adjustment_get_page_size@Base 2.14.0 + gtk_adjustment_get_step_increment@Base 2.14.0 + gtk_adjustment_get_type@Base 2.8.0 + gtk_adjustment_get_upper@Base 2.14.0 + gtk_adjustment_get_value@Base 2.8.0 + gtk_adjustment_new@Base 2.8.0 + gtk_adjustment_set_lower@Base 2.14.0 + gtk_adjustment_set_page_increment@Base 2.14.0 + gtk_adjustment_set_page_size@Base 2.14.0 + gtk_adjustment_set_step_increment@Base 2.14.0 + gtk_adjustment_set_upper@Base 2.14.0 + gtk_adjustment_set_value@Base 2.8.0 + gtk_adjustment_value_changed@Base 2.8.0 + gtk_alignment_get_padding@Base 2.8.0 + gtk_alignment_get_type@Base 2.8.0 + gtk_alignment_new@Base 2.8.0 + gtk_alignment_set@Base 2.8.0 + gtk_alignment_set_padding@Base 2.8.0 + gtk_alternative_dialog_button_order@Base 2.8.0 + gtk_anchor_type_get_type@Base 2.8.0 + gtk_arg_flags_get_type@Base 2.8.0 + gtk_arrow_get_type@Base 2.8.0 + gtk_arrow_new@Base 2.8.0 + gtk_arrow_placement_get_type@Base 2.16.0 + gtk_arrow_set@Base 2.8.0 + gtk_arrow_type_get_type@Base 2.8.0 + gtk_aspect_frame_get_type@Base 2.8.0 + gtk_aspect_frame_new@Base 2.8.0 + gtk_aspect_frame_set@Base 2.8.0 + gtk_assistant_add_action_widget@Base 2.10.0 + gtk_assistant_append_page@Base 2.10.0 + gtk_assistant_commit@Base 2.21.8 + gtk_assistant_get_current_page@Base 2.10.0 + gtk_assistant_get_n_pages@Base 2.10.0 + gtk_assistant_get_nth_page@Base 2.10.0 + gtk_assistant_get_page_complete@Base 2.10.0 + gtk_assistant_get_page_header_image@Base 2.10.0 + gtk_assistant_get_page_side_image@Base 2.10.0 + gtk_assistant_get_page_title@Base 2.10.0 + gtk_assistant_get_page_type@Base 2.10.0 + gtk_assistant_get_type@Base 2.10.0 + gtk_assistant_insert_page@Base 2.10.0 + gtk_assistant_new@Base 2.10.0 + gtk_assistant_page_type_get_type@Base 2.10.0 + gtk_assistant_prepend_page@Base 2.10.0 + gtk_assistant_remove_action_widget@Base 2.10.0 + gtk_assistant_set_current_page@Base 2.10.0 + gtk_assistant_set_forward_page_func@Base 2.10.0 + gtk_assistant_set_page_complete@Base 2.10.0 + gtk_assistant_set_page_header_image@Base 2.10.0 + gtk_assistant_set_page_side_image@Base 2.10.0 + gtk_assistant_set_page_title@Base 2.10.0 + gtk_assistant_set_page_type@Base 2.10.0 + gtk_assistant_update_buttons_state@Base 2.10.0 + gtk_attach_options_get_type@Base 2.8.0 + gtk_bin_get_child@Base 2.8.0 + gtk_bin_get_type@Base 2.8.0 + gtk_binary_age@Base 2.8.0 + gtk_binding_entry_add_signal@Base 2.8.0 + gtk_binding_entry_add_signall@Base 2.8.0 + gtk_binding_entry_clear@Base 2.8.0 + gtk_binding_entry_remove@Base 2.8.0 + gtk_binding_entry_skip@Base 2.12.0 + gtk_binding_parse_binding@Base 2.8.0 + gtk_binding_set_activate@Base 2.8.0 + gtk_binding_set_add_path@Base 2.8.0 + gtk_binding_set_by_class@Base 2.8.0 + gtk_binding_set_find@Base 2.8.0 + gtk_binding_set_new@Base 2.8.0 + gtk_bindings_activate@Base 2.8.0 + gtk_bindings_activate_event@Base 2.8.0 + gtk_border_copy@Base 2.8.0 + gtk_border_free@Base 2.8.0 + gtk_border_get_type@Base 2.8.0 + gtk_border_new@Base 2.14.0 + gtk_box_get_homogeneous@Base 2.8.0 + gtk_box_get_spacing@Base 2.8.0 + gtk_box_get_type@Base 2.8.0 + gtk_box_pack_end@Base 2.8.0 + gtk_box_pack_end_defaults@Base 2.8.0 + gtk_box_pack_start@Base 2.8.0 + gtk_box_pack_start_defaults@Base 2.8.0 + gtk_box_query_child_packing@Base 2.8.0 + gtk_box_reorder_child@Base 2.8.0 + gtk_box_set_child_packing@Base 2.8.0 + gtk_box_set_homogeneous@Base 2.8.0 + gtk_box_set_spacing@Base 2.8.0 + gtk_buildable_add_child@Base 2.12.0 + gtk_buildable_construct_child@Base 2.12.0 + gtk_buildable_custom_finished@Base 2.12.0 + gtk_buildable_custom_tag_end@Base 2.12.0 + gtk_buildable_custom_tag_start@Base 2.12.0 + gtk_buildable_get_internal_child@Base 2.12.0 + gtk_buildable_get_name@Base 2.12.0 + gtk_buildable_get_type@Base 2.12.0 + gtk_buildable_parser_finished@Base 2.12.0 + gtk_buildable_set_buildable_property@Base 2.12.0 + gtk_buildable_set_name@Base 2.12.0 + gtk_builder_add_from_file@Base 2.12.0 + gtk_builder_add_from_string@Base 2.12.0 + gtk_builder_add_objects_from_file@Base 2.14.0 + gtk_builder_add_objects_from_string@Base 2.14.0 + gtk_builder_connect_signals@Base 2.12.0 + gtk_builder_connect_signals_full@Base 2.12.0 + gtk_builder_error_get_type@Base 2.12.0 + gtk_builder_error_quark@Base 2.12.0 + gtk_builder_get_object@Base 2.12.0 + gtk_builder_get_objects@Base 2.12.0 + gtk_builder_get_translation_domain@Base 2.12.0 + gtk_builder_get_type@Base 2.12.0 + gtk_builder_get_type_from_name@Base 2.12.0 + gtk_builder_new@Base 2.12.0 + gtk_builder_set_translation_domain@Base 2.12.0 + gtk_builder_value_from_string@Base 2.12.0 + gtk_builder_value_from_string_type@Base 2.12.0 + gtk_button_action_get_type@Base 2.8.0 + gtk_button_box_get_child_ipadding@Base 2.8.0 + gtk_button_box_get_child_secondary@Base 2.8.0 + gtk_button_box_get_child_size@Base 2.8.0 + gtk_button_box_get_layout@Base 2.8.0 + gtk_button_box_get_type@Base 2.8.0 + gtk_button_box_set_child_ipadding@Base 2.8.0 + gtk_button_box_set_child_secondary@Base 2.8.0 + gtk_button_box_set_child_size@Base 2.8.0 + gtk_button_box_set_layout@Base 2.8.0 + gtk_button_box_style_get_type@Base 2.8.0 + gtk_button_clicked@Base 2.8.0 + gtk_button_enter@Base 2.8.0 + gtk_button_get_alignment@Base 2.8.0 + gtk_button_get_event_window@Base 2.21.8 + gtk_button_get_focus_on_click@Base 2.8.0 + gtk_button_get_image@Base 2.8.0 + gtk_button_get_image_position@Base 2.10.0 + gtk_button_get_label@Base 2.8.0 + gtk_button_get_relief@Base 2.8.0 + gtk_button_get_type@Base 2.8.0 + gtk_button_get_use_stock@Base 2.8.0 + gtk_button_get_use_underline@Base 2.8.0 + gtk_button_leave@Base 2.8.0 + gtk_button_new@Base 2.8.0 + gtk_button_new_from_stock@Base 2.8.0 + gtk_button_new_with_label@Base 2.8.0 + gtk_button_new_with_mnemonic@Base 2.8.0 + gtk_button_pressed@Base 2.8.0 + gtk_button_released@Base 2.8.0 + gtk_button_set_alignment@Base 2.8.0 + gtk_button_set_focus_on_click@Base 2.8.0 + gtk_button_set_image@Base 2.8.0 + gtk_button_set_image_position@Base 2.10.0 + gtk_button_set_label@Base 2.8.0 + gtk_button_set_relief@Base 2.8.0 + gtk_button_set_use_stock@Base 2.8.0 + gtk_button_set_use_underline@Base 2.8.0 + gtk_buttons_type_get_type@Base 2.8.0 + gtk_calendar_clear_marks@Base 2.8.0 + gtk_calendar_display_options@Base 2.8.0 + gtk_calendar_display_options_get_type@Base 2.8.0 + gtk_calendar_freeze@Base 2.8.0 + gtk_calendar_get_date@Base 2.8.0 + gtk_calendar_get_detail_height_rows@Base 2.14.0 + gtk_calendar_get_detail_width_chars@Base 2.14.0 + gtk_calendar_get_display_options@Base 2.8.0 + gtk_calendar_get_type@Base 2.8.0 + gtk_calendar_mark_day@Base 2.8.0 + gtk_calendar_new@Base 2.8.0 + gtk_calendar_select_day@Base 2.8.0 + gtk_calendar_select_month@Base 2.8.0 + gtk_calendar_set_detail_func@Base 2.14.0 + gtk_calendar_set_detail_height_rows@Base 2.14.0 + gtk_calendar_set_detail_width_chars@Base 2.14.0 + gtk_calendar_set_display_options@Base 2.8.0 + gtk_calendar_thaw@Base 2.8.0 + gtk_calendar_unmark_day@Base 2.8.0 + gtk_cell_editable_editing_done@Base 2.8.0 + gtk_cell_editable_get_type@Base 2.8.0 + gtk_cell_editable_remove_widget@Base 2.8.0 + gtk_cell_editable_start_editing@Base 2.8.0 + gtk_cell_layout_add_attribute@Base 2.8.0 + gtk_cell_layout_clear@Base 2.8.0 + gtk_cell_layout_clear_attributes@Base 2.8.0 + gtk_cell_layout_get_cells@Base 2.12.0 + gtk_cell_layout_get_type@Base 2.8.0 + gtk_cell_layout_pack_end@Base 2.8.0 + gtk_cell_layout_pack_start@Base 2.8.0 + gtk_cell_layout_reorder@Base 2.8.0 + gtk_cell_layout_set_attributes@Base 2.8.0 + gtk_cell_layout_set_cell_data_func@Base 2.8.0 + gtk_cell_renderer_accel_get_type@Base 2.10.0 + gtk_cell_renderer_accel_mode_get_type@Base 2.10.0 + gtk_cell_renderer_accel_new@Base 2.10.0 + gtk_cell_renderer_activate@Base 2.8.0 + gtk_cell_renderer_combo_get_type@Base 2.8.0 + gtk_cell_renderer_combo_new@Base 2.8.0 + gtk_cell_renderer_editing_canceled@Base 2.8.0 + gtk_cell_renderer_get_alignment@Base 2.18.0 + gtk_cell_renderer_get_fixed_size@Base 2.8.0 + gtk_cell_renderer_get_padding@Base 2.18.0 + gtk_cell_renderer_get_sensitive@Base 2.18.0 + gtk_cell_renderer_get_size@Base 2.8.0 + gtk_cell_renderer_get_type@Base 2.8.0 + gtk_cell_renderer_get_visible@Base 2.18.0 + gtk_cell_renderer_mode_get_type@Base 2.8.0 + gtk_cell_renderer_pixbuf_get_type@Base 2.8.0 + gtk_cell_renderer_pixbuf_new@Base 2.8.0 + gtk_cell_renderer_progress_get_type@Base 2.8.0 + gtk_cell_renderer_progress_new@Base 2.8.0 + gtk_cell_renderer_render@Base 2.8.0 + gtk_cell_renderer_set_alignment@Base 2.18.0 + gtk_cell_renderer_set_fixed_size@Base 2.8.0 + gtk_cell_renderer_set_padding@Base 2.18.0 + gtk_cell_renderer_set_sensitive@Base 2.18.0 + gtk_cell_renderer_set_visible@Base 2.18.0 + gtk_cell_renderer_spin_get_type@Base 2.10.0 + gtk_cell_renderer_spin_new@Base 2.10.0 + gtk_cell_renderer_spinner_get_type@Base 2.20.0 + gtk_cell_renderer_spinner_new@Base 2.20.0 + gtk_cell_renderer_start_editing@Base 2.8.0 + gtk_cell_renderer_state_get_type@Base 2.8.0 + gtk_cell_renderer_stop_editing@Base 2.8.0 + gtk_cell_renderer_text_get_type@Base 2.8.0 + gtk_cell_renderer_text_new@Base 2.8.0 + gtk_cell_renderer_text_set_fixed_height_from_font@Base 2.8.0 + gtk_cell_renderer_toggle_get_activatable@Base 2.18.0 + gtk_cell_renderer_toggle_get_active@Base 2.8.0 + gtk_cell_renderer_toggle_get_radio@Base 2.8.0 + gtk_cell_renderer_toggle_get_type@Base 2.8.0 + gtk_cell_renderer_toggle_new@Base 2.8.0 + gtk_cell_renderer_toggle_set_activatable@Base 2.18.0 + gtk_cell_renderer_toggle_set_active@Base 2.8.0 + gtk_cell_renderer_toggle_set_radio@Base 2.8.0 + gtk_cell_type_get_type@Base 2.8.0 + gtk_cell_view_get_cell_renderers@Base 2.8.0 + gtk_cell_view_get_displayed_row@Base 2.8.0 + gtk_cell_view_get_model@Base 2.16.0 + gtk_cell_view_get_size_of_row@Base 2.8.0 + gtk_cell_view_get_type@Base 2.8.0 + gtk_cell_view_new@Base 2.8.0 + gtk_cell_view_new_with_markup@Base 2.8.0 + gtk_cell_view_new_with_pixbuf@Base 2.8.0 + gtk_cell_view_new_with_text@Base 2.8.0 + gtk_cell_view_set_background_color@Base 2.8.0 + gtk_cell_view_set_displayed_row@Base 2.8.0 + gtk_cell_view_set_model@Base 2.8.0 + gtk_check_button_get_type@Base 2.8.0 + gtk_check_button_new@Base 2.8.0 + gtk_check_button_new_with_label@Base 2.8.0 + gtk_check_button_new_with_mnemonic@Base 2.8.0 + gtk_check_menu_item_get_active@Base 2.8.0 + gtk_check_menu_item_get_draw_as_radio@Base 2.8.0 + gtk_check_menu_item_get_inconsistent@Base 2.8.0 + gtk_check_menu_item_get_type@Base 2.8.0 + gtk_check_menu_item_new@Base 2.8.0 + gtk_check_menu_item_new_with_label@Base 2.8.0 + gtk_check_menu_item_new_with_mnemonic@Base 2.8.0 + gtk_check_menu_item_set_active@Base 2.8.0 + gtk_check_menu_item_set_draw_as_radio@Base 2.8.0 + gtk_check_menu_item_set_inconsistent@Base 2.8.0 + gtk_check_menu_item_set_show_toggle@Base 2.8.0 + gtk_check_menu_item_toggled@Base 2.8.0 + gtk_check_version@Base 2.8.0 + gtk_clipboard_clear@Base 2.8.0 + gtk_clipboard_get@Base 2.8.0 + gtk_clipboard_get_display@Base 2.8.0 + gtk_clipboard_get_for_display@Base 2.8.0 + gtk_clipboard_get_owner@Base 2.8.0 + gtk_clipboard_get_type@Base 2.8.0 + gtk_clipboard_request_contents@Base 2.8.0 + gtk_clipboard_request_image@Base 2.8.0 + gtk_clipboard_request_rich_text@Base 2.10.0 + gtk_clipboard_request_targets@Base 2.8.0 + gtk_clipboard_request_text@Base 2.8.0 + gtk_clipboard_request_uris@Base 2.14.0 + gtk_clipboard_set_can_store@Base 2.8.0 + gtk_clipboard_set_image@Base 2.8.0 + gtk_clipboard_set_text@Base 2.8.0 + gtk_clipboard_set_with_data@Base 2.8.0 + gtk_clipboard_set_with_owner@Base 2.8.0 + gtk_clipboard_store@Base 2.8.0 + gtk_clipboard_wait_for_contents@Base 2.8.0 + gtk_clipboard_wait_for_image@Base 2.8.0 + gtk_clipboard_wait_for_rich_text@Base 2.10.0 + gtk_clipboard_wait_for_targets@Base 2.8.0 + gtk_clipboard_wait_for_text@Base 2.8.0 + gtk_clipboard_wait_for_uris@Base 2.14.0 + gtk_clipboard_wait_is_image_available@Base 2.8.0 + gtk_clipboard_wait_is_rich_text_available@Base 2.10.0 + gtk_clipboard_wait_is_target_available@Base 2.8.0 + gtk_clipboard_wait_is_text_available@Base 2.8.0 + gtk_clipboard_wait_is_uris_available@Base 2.14.0 + gtk_clist_append@Base 2.8.0 + gtk_clist_clear@Base 2.8.0 + gtk_clist_column_title_active@Base 2.8.0 + gtk_clist_column_title_passive@Base 2.8.0 + gtk_clist_column_titles_active@Base 2.8.0 + gtk_clist_column_titles_hide@Base 2.8.0 + gtk_clist_column_titles_passive@Base 2.8.0 + gtk_clist_column_titles_show@Base 2.8.0 + gtk_clist_columns_autosize@Base 2.8.0 + gtk_clist_drag_pos_get_type@Base 2.8.0 + gtk_clist_find_row_from_data@Base 2.8.0 + gtk_clist_freeze@Base 2.8.0 + gtk_clist_get_cell_style@Base 2.8.0 + gtk_clist_get_cell_type@Base 2.8.0 + gtk_clist_get_column_title@Base 2.8.0 + gtk_clist_get_column_widget@Base 2.8.0 + gtk_clist_get_hadjustment@Base 2.8.0 + gtk_clist_get_pixmap@Base 2.8.0 + gtk_clist_get_pixtext@Base 2.8.0 + gtk_clist_get_row_data@Base 2.8.0 + gtk_clist_get_row_style@Base 2.8.0 + gtk_clist_get_selectable@Base 2.8.0 + gtk_clist_get_selection_info@Base 2.8.0 + gtk_clist_get_text@Base 2.8.0 + gtk_clist_get_type@Base 2.8.0 + gtk_clist_get_vadjustment@Base 2.8.0 + gtk_clist_insert@Base 2.8.0 + gtk_clist_moveto@Base 2.8.0 + gtk_clist_new@Base 2.8.0 + gtk_clist_new_with_titles@Base 2.8.0 + gtk_clist_optimal_column_width@Base 2.8.0 + gtk_clist_prepend@Base 2.8.0 + gtk_clist_remove@Base 2.8.0 + gtk_clist_row_is_visible@Base 2.8.0 + gtk_clist_row_move@Base 2.8.0 + gtk_clist_select_all@Base 2.8.0 + gtk_clist_select_row@Base 2.8.0 + gtk_clist_set_auto_sort@Base 2.8.0 + gtk_clist_set_background@Base 2.8.0 + gtk_clist_set_button_actions@Base 2.8.0 + gtk_clist_set_cell_style@Base 2.8.0 + gtk_clist_set_column_auto_resize@Base 2.8.0 + gtk_clist_set_column_justification@Base 2.8.0 + gtk_clist_set_column_max_width@Base 2.8.0 + gtk_clist_set_column_min_width@Base 2.8.0 + gtk_clist_set_column_resizeable@Base 2.8.0 + gtk_clist_set_column_title@Base 2.8.0 + gtk_clist_set_column_visibility@Base 2.8.0 + gtk_clist_set_column_widget@Base 2.8.0 + gtk_clist_set_column_width@Base 2.8.0 + gtk_clist_set_compare_func@Base 2.8.0 + gtk_clist_set_foreground@Base 2.8.0 + gtk_clist_set_hadjustment@Base 2.8.0 + gtk_clist_set_pixmap@Base 2.8.0 + gtk_clist_set_pixtext@Base 2.8.0 + gtk_clist_set_reorderable@Base 2.8.0 + gtk_clist_set_row_data@Base 2.8.0 + gtk_clist_set_row_data_full@Base 2.8.0 + gtk_clist_set_row_height@Base 2.8.0 + gtk_clist_set_row_style@Base 2.8.0 + gtk_clist_set_selectable@Base 2.8.0 + gtk_clist_set_selection_mode@Base 2.8.0 + gtk_clist_set_shadow_type@Base 2.8.0 + gtk_clist_set_shift@Base 2.8.0 + gtk_clist_set_sort_column@Base 2.8.0 + gtk_clist_set_sort_type@Base 2.8.0 + gtk_clist_set_text@Base 2.8.0 + gtk_clist_set_use_drag_icons@Base 2.8.0 + gtk_clist_set_vadjustment@Base 2.8.0 + gtk_clist_sort@Base 2.8.0 + gtk_clist_swap_rows@Base 2.8.0 + gtk_clist_thaw@Base 2.8.0 + gtk_clist_undo_selection@Base 2.8.0 + gtk_clist_unselect_all@Base 2.8.0 + gtk_clist_unselect_row@Base 2.8.0 + gtk_color_button_get_alpha@Base 2.8.0 + gtk_color_button_get_color@Base 2.8.0 + gtk_color_button_get_title@Base 2.8.0 + gtk_color_button_get_type@Base 2.8.0 + gtk_color_button_get_use_alpha@Base 2.8.0 + gtk_color_button_new@Base 2.8.0 + gtk_color_button_new_with_color@Base 2.8.0 + gtk_color_button_set_alpha@Base 2.8.0 + gtk_color_button_set_color@Base 2.8.0 + gtk_color_button_set_title@Base 2.8.0 + gtk_color_button_set_use_alpha@Base 2.8.0 + gtk_color_selection_dialog_get_color_selection@Base 2.14.0 + gtk_color_selection_dialog_get_type@Base 2.8.0 + gtk_color_selection_dialog_new@Base 2.8.0 + gtk_color_selection_get_color@Base 2.8.0 + gtk_color_selection_get_current_alpha@Base 2.8.0 + gtk_color_selection_get_current_color@Base 2.8.0 + gtk_color_selection_get_has_opacity_control@Base 2.8.0 + gtk_color_selection_get_has_palette@Base 2.8.0 + gtk_color_selection_get_previous_alpha@Base 2.8.0 + gtk_color_selection_get_previous_color@Base 2.8.0 + gtk_color_selection_get_type@Base 2.8.0 + gtk_color_selection_is_adjusting@Base 2.8.0 + gtk_color_selection_new@Base 2.8.0 + gtk_color_selection_palette_from_string@Base 2.8.0 + gtk_color_selection_palette_to_string@Base 2.8.0 + gtk_color_selection_set_change_palette_hook@Base 2.8.0 + gtk_color_selection_set_change_palette_with_screen_hook@Base 2.8.0 + gtk_color_selection_set_color@Base 2.8.0 + gtk_color_selection_set_current_alpha@Base 2.8.0 + gtk_color_selection_set_current_color@Base 2.8.0 + gtk_color_selection_set_has_opacity_control@Base 2.8.0 + gtk_color_selection_set_has_palette@Base 2.8.0 + gtk_color_selection_set_previous_alpha@Base 2.8.0 + gtk_color_selection_set_previous_color@Base 2.8.0 + gtk_color_selection_set_update_policy@Base 2.8.0 + gtk_combo_box_append_text@Base 2.8.0 + gtk_combo_box_entry_get_text_column@Base 2.8.0 + gtk_combo_box_entry_get_type@Base 2.8.0 + gtk_combo_box_entry_new@Base 2.8.0 + gtk_combo_box_entry_new_text@Base 2.8.0 + gtk_combo_box_entry_new_with_model@Base 2.8.0 + gtk_combo_box_entry_set_text_column@Base 2.8.0 + gtk_combo_box_get_active@Base 2.8.0 + gtk_combo_box_get_active_iter@Base 2.8.0 + gtk_combo_box_get_active_text@Base 2.8.0 + gtk_combo_box_get_add_tearoffs@Base 2.8.0 + gtk_combo_box_get_button_sensitivity@Base 2.14.0 + gtk_combo_box_get_column_span_column@Base 2.8.0 + gtk_combo_box_get_focus_on_click@Base 2.8.0 + gtk_combo_box_get_model@Base 2.8.0 + gtk_combo_box_get_popup_accessible@Base 2.8.0 + gtk_combo_box_get_row_separator_func@Base 2.8.0 + gtk_combo_box_get_row_span_column@Base 2.8.0 + gtk_combo_box_get_title@Base 2.10.0 + gtk_combo_box_get_type@Base 2.8.0 + gtk_combo_box_get_wrap_width@Base 2.8.0 + gtk_combo_box_insert_text@Base 2.8.0 + gtk_combo_box_new@Base 2.8.0 + gtk_combo_box_new_text@Base 2.8.0 + gtk_combo_box_new_with_model@Base 2.8.0 + gtk_combo_box_popdown@Base 2.8.0 + gtk_combo_box_popup@Base 2.8.0 + gtk_combo_box_prepend_text@Base 2.8.0 + gtk_combo_box_remove_text@Base 2.8.0 + gtk_combo_box_set_active@Base 2.8.0 + gtk_combo_box_set_active_iter@Base 2.8.0 + gtk_combo_box_set_add_tearoffs@Base 2.8.0 + gtk_combo_box_set_button_sensitivity@Base 2.14.0 + gtk_combo_box_set_column_span_column@Base 2.8.0 + gtk_combo_box_set_focus_on_click@Base 2.8.0 + gtk_combo_box_set_model@Base 2.8.0 + gtk_combo_box_set_row_separator_func@Base 2.8.0 + gtk_combo_box_set_row_span_column@Base 2.8.0 + gtk_combo_box_set_title@Base 2.10.0 + gtk_combo_box_set_wrap_width@Base 2.8.0 + gtk_combo_disable_activate@Base 2.8.0 + gtk_combo_get_type@Base 2.8.0 + gtk_combo_new@Base 2.8.0 + gtk_combo_set_case_sensitive@Base 2.8.0 + gtk_combo_set_item_string@Base 2.8.0 + gtk_combo_set_popdown_strings@Base 2.8.0 + gtk_combo_set_use_arrows@Base 2.8.0 + gtk_combo_set_use_arrows_always@Base 2.8.0 + gtk_combo_set_value_in_list@Base 2.8.0 + gtk_container_add@Base 2.8.0 + gtk_container_add_with_properties@Base 2.8.0 + gtk_container_check_resize@Base 2.8.0 + gtk_container_child_get@Base 2.8.0 + gtk_container_child_get_property@Base 2.8.0 + gtk_container_child_get_valist@Base 2.8.0 + gtk_container_child_set@Base 2.8.0 + gtk_container_child_set_property@Base 2.8.0 + gtk_container_child_set_valist@Base 2.8.0 + gtk_container_child_type@Base 2.8.0 + gtk_container_class_find_child_property@Base 2.8.0 + gtk_container_class_install_child_property@Base 2.8.0 + gtk_container_class_list_child_properties@Base 2.8.0 + gtk_container_forall@Base 2.8.0 + gtk_container_foreach@Base 2.8.0 + gtk_container_foreach_full@Base 2.8.0 + gtk_container_get_border_width@Base 2.8.0 + gtk_container_get_children@Base 2.8.0 + gtk_container_get_focus_chain@Base 2.8.0 + gtk_container_get_focus_child@Base 2.14.0 + gtk_container_get_focus_hadjustment@Base 2.8.0 + gtk_container_get_focus_vadjustment@Base 2.8.0 + gtk_container_get_resize_mode@Base 2.8.0 + gtk_container_get_type@Base 2.8.0 + gtk_container_propagate_expose@Base 2.8.0 + gtk_container_remove@Base 2.8.0 + gtk_container_resize_children@Base 2.8.0 + gtk_container_set_border_width@Base 2.8.0 + gtk_container_set_focus_chain@Base 2.8.0 + gtk_container_set_focus_child@Base 2.8.0 + gtk_container_set_focus_hadjustment@Base 2.8.0 + gtk_container_set_focus_vadjustment@Base 2.8.0 + gtk_container_set_reallocate_redraws@Base 2.8.0 + gtk_container_set_resize_mode@Base 2.8.0 + gtk_container_unset_focus_chain@Base 2.8.0 + gtk_corner_type_get_type@Base 2.8.0 + gtk_ctree_collapse@Base 2.8.0 + gtk_ctree_collapse_recursive@Base 2.8.0 + gtk_ctree_collapse_to_depth@Base 2.8.0 + gtk_ctree_expand@Base 2.8.0 + gtk_ctree_expand_recursive@Base 2.8.0 + gtk_ctree_expand_to_depth@Base 2.8.0 + gtk_ctree_expander_style_get_type@Base 2.8.0 + gtk_ctree_expansion_type_get_type@Base 2.8.0 + gtk_ctree_export_to_gnode@Base 2.8.0 + gtk_ctree_find@Base 2.8.0 + gtk_ctree_find_all_by_row_data@Base 2.8.0 + gtk_ctree_find_all_by_row_data_custom@Base 2.8.0 + gtk_ctree_find_by_row_data@Base 2.8.0 + gtk_ctree_find_by_row_data_custom@Base 2.8.0 + gtk_ctree_find_node_ptr@Base 2.8.0 + gtk_ctree_get_node_info@Base 2.8.0 + gtk_ctree_get_type@Base 2.8.0 + gtk_ctree_insert_gnode@Base 2.8.0 + gtk_ctree_insert_node@Base 2.8.0 + gtk_ctree_is_ancestor@Base 2.8.0 + gtk_ctree_is_hot_spot@Base 2.8.0 + gtk_ctree_is_viewable@Base 2.8.0 + gtk_ctree_last@Base 2.8.0 + gtk_ctree_line_style_get_type@Base 2.8.0 + gtk_ctree_move@Base 2.8.0 + gtk_ctree_new@Base 2.8.0 + gtk_ctree_new_with_titles@Base 2.8.0 + gtk_ctree_node_get_cell_style@Base 2.8.0 + gtk_ctree_node_get_cell_type@Base 2.8.0 + gtk_ctree_node_get_pixmap@Base 2.8.0 + gtk_ctree_node_get_pixtext@Base 2.8.0 + gtk_ctree_node_get_row_data@Base 2.8.0 + gtk_ctree_node_get_row_style@Base 2.8.0 + gtk_ctree_node_get_selectable@Base 2.8.0 + gtk_ctree_node_get_text@Base 2.8.0 + gtk_ctree_node_get_type@Base 2.8.0 + gtk_ctree_node_is_visible@Base 2.8.0 + gtk_ctree_node_moveto@Base 2.8.0 + gtk_ctree_node_nth@Base 2.8.0 + gtk_ctree_node_set_background@Base 2.8.0 + gtk_ctree_node_set_cell_style@Base 2.8.0 + gtk_ctree_node_set_foreground@Base 2.8.0 + gtk_ctree_node_set_pixmap@Base 2.8.0 + gtk_ctree_node_set_pixtext@Base 2.8.0 + gtk_ctree_node_set_row_data@Base 2.8.0 + gtk_ctree_node_set_row_data_full@Base 2.8.0 + gtk_ctree_node_set_row_style@Base 2.8.0 + gtk_ctree_node_set_selectable@Base 2.8.0 + gtk_ctree_node_set_shift@Base 2.8.0 + gtk_ctree_node_set_text@Base 2.8.0 + gtk_ctree_pos_get_type@Base 2.8.0 + gtk_ctree_post_recursive@Base 2.8.0 + gtk_ctree_post_recursive_to_depth@Base 2.8.0 + gtk_ctree_pre_recursive@Base 2.8.0 + gtk_ctree_pre_recursive_to_depth@Base 2.8.0 + gtk_ctree_real_select_recursive@Base 2.8.0 + gtk_ctree_remove_node@Base 2.8.0 + gtk_ctree_select@Base 2.8.0 + gtk_ctree_select_recursive@Base 2.8.0 + gtk_ctree_set_drag_compare_func@Base 2.8.0 + gtk_ctree_set_expander_style@Base 2.8.0 + gtk_ctree_set_indent@Base 2.8.0 + gtk_ctree_set_line_style@Base 2.8.0 + gtk_ctree_set_node_info@Base 2.8.0 + gtk_ctree_set_show_stub@Base 2.8.0 + gtk_ctree_set_spacing@Base 2.8.0 + gtk_ctree_sort_node@Base 2.8.0 + gtk_ctree_sort_recursive@Base 2.8.0 + gtk_ctree_toggle_expansion@Base 2.8.0 + gtk_ctree_toggle_expansion_recursive@Base 2.8.0 + gtk_ctree_unselect@Base 2.8.0 + gtk_ctree_unselect_recursive@Base 2.8.0 + gtk_curve_get_type@Base 2.8.0 + gtk_curve_get_vector@Base 2.8.0 + gtk_curve_new@Base 2.8.0 + gtk_curve_reset@Base 2.8.0 + gtk_curve_set_curve_type@Base 2.8.0 + gtk_curve_set_gamma@Base 2.8.0 + gtk_curve_set_range@Base 2.8.0 + gtk_curve_set_vector@Base 2.8.0 + gtk_curve_type_get_type@Base 2.8.0 + gtk_custom_paper_unix_dialog_get_type@Base 2.18.0 + gtk_debug_flag_get_type@Base 2.8.0 + gtk_debug_flags@Base 2.8.0 + gtk_decorated_window_calculate_frame_size@Base 2.8.0 + gtk_decorated_window_init@Base 2.8.0 + gtk_decorated_window_move_resize_window@Base 2.8.0 + gtk_decorated_window_set_title@Base 2.8.0 + gtk_delete_type_get_type@Base 2.8.0 + gtk_dest_defaults_get_type@Base 2.8.0 + gtk_dialog_add_action_widget@Base 2.8.0 + gtk_dialog_add_button@Base 2.8.0 + gtk_dialog_add_buttons@Base 2.8.0 + gtk_dialog_flags_get_type@Base 2.8.0 + gtk_dialog_get_action_area@Base 2.14.0 + gtk_dialog_get_content_area@Base 2.14.0 + gtk_dialog_get_has_separator@Base 2.8.0 + gtk_dialog_get_response_for_widget@Base 2.8.0 + gtk_dialog_get_type@Base 2.8.0 + gtk_dialog_get_widget_for_response@Base 2.20.0 + gtk_dialog_new@Base 2.8.0 + gtk_dialog_new_with_buttons@Base 2.8.0 + gtk_dialog_response@Base 2.8.0 + gtk_dialog_run@Base 2.8.0 + gtk_dialog_set_alternative_button_order@Base 2.8.0 + gtk_dialog_set_alternative_button_order_from_array@Base 2.8.0 + gtk_dialog_set_default_response@Base 2.8.0 + gtk_dialog_set_has_separator@Base 2.8.0 + gtk_dialog_set_response_sensitive@Base 2.8.0 + gtk_direction_type_get_type@Base 2.8.0 + gtk_disable_setlocale@Base 2.8.0 + gtk_drag_begin@Base 2.8.0 + gtk_drag_check_threshold@Base 2.8.0 + gtk_drag_dest_add_image_targets@Base 2.8.0 + gtk_drag_dest_add_text_targets@Base 2.8.0 + gtk_drag_dest_add_uri_targets@Base 2.8.0 + gtk_drag_dest_find_target@Base 2.8.0 + gtk_drag_dest_get_target_list@Base 2.8.0 + gtk_drag_dest_get_track_motion@Base 2.10.0 + gtk_drag_dest_set@Base 2.8.0 + gtk_drag_dest_set_proxy@Base 2.8.0 + gtk_drag_dest_set_target_list@Base 2.8.0 + gtk_drag_dest_set_track_motion@Base 2.10.0 + gtk_drag_dest_unset@Base 2.8.0 + gtk_drag_finish@Base 2.8.0 + gtk_drag_get_data@Base 2.8.0 + gtk_drag_get_source_widget@Base 2.8.0 + gtk_drag_highlight@Base 2.8.0 + gtk_drag_result_get_type@Base 2.12.0 + gtk_drag_set_default_icon@Base 2.8.0 + gtk_drag_set_icon_default@Base 2.8.0 + gtk_drag_set_icon_name@Base 2.8.0 + gtk_drag_set_icon_pixbuf@Base 2.8.0 + gtk_drag_set_icon_pixmap@Base 2.8.0 + gtk_drag_set_icon_stock@Base 2.8.0 + gtk_drag_set_icon_widget@Base 2.8.0 + gtk_drag_source_add_image_targets@Base 2.8.0 + gtk_drag_source_add_text_targets@Base 2.8.0 + gtk_drag_source_add_uri_targets@Base 2.8.0 + gtk_drag_source_get_target_list@Base 2.8.0 + gtk_drag_source_set@Base 2.8.0 + gtk_drag_source_set_icon@Base 2.8.0 + gtk_drag_source_set_icon_name@Base 2.8.0 + gtk_drag_source_set_icon_pixbuf@Base 2.8.0 + gtk_drag_source_set_icon_stock@Base 2.8.0 + gtk_drag_source_set_target_list@Base 2.8.0 + gtk_drag_source_unset@Base 2.8.0 + gtk_drag_unhighlight@Base 2.8.0 + gtk_draw_arrow@Base 2.8.0 + gtk_draw_box@Base 2.8.0 + gtk_draw_box_gap@Base 2.8.0 + gtk_draw_check@Base 2.8.0 + gtk_draw_diamond@Base 2.8.0 + gtk_draw_expander@Base 2.8.0 + gtk_draw_extension@Base 2.8.0 + gtk_draw_flat_box@Base 2.8.0 + gtk_draw_focus@Base 2.8.0 + gtk_draw_handle@Base 2.8.0 + gtk_draw_hline@Base 2.8.0 + gtk_draw_insertion_cursor@Base 2.8.0 + gtk_draw_layout@Base 2.8.0 + gtk_draw_option@Base 2.8.0 + gtk_draw_polygon@Base 2.8.0 + gtk_draw_resize_grip@Base 2.8.0 + gtk_draw_shadow@Base 2.8.0 + gtk_draw_shadow_gap@Base 2.8.0 + gtk_draw_slider@Base 2.8.0 + gtk_draw_string@Base 2.8.0 + gtk_draw_tab@Base 2.8.0 + gtk_draw_vline@Base 2.8.0 + gtk_drawing_area_get_type@Base 2.8.0 + gtk_drawing_area_new@Base 2.8.0 + gtk_drawing_area_size@Base 2.8.0 + gtk_editable_copy_clipboard@Base 2.8.0 + gtk_editable_cut_clipboard@Base 2.8.0 + gtk_editable_delete_selection@Base 2.8.0 + gtk_editable_delete_text@Base 2.8.0 + gtk_editable_get_chars@Base 2.8.0 + gtk_editable_get_editable@Base 2.8.0 + gtk_editable_get_position@Base 2.8.0 + gtk_editable_get_selection_bounds@Base 2.8.0 + gtk_editable_get_type@Base 2.8.0 + gtk_editable_insert_text@Base 2.8.0 + gtk_editable_paste_clipboard@Base 2.8.0 + gtk_editable_select_region@Base 2.8.0 + gtk_editable_set_editable@Base 2.8.0 + gtk_editable_set_position@Base 2.8.0 + gtk_entry_append_text@Base 2.8.0 + gtk_entry_buffer_delete_text@Base 2.18.0 + gtk_entry_buffer_emit_deleted_text@Base 2.18.0 + gtk_entry_buffer_emit_inserted_text@Base 2.18.0 + gtk_entry_buffer_get_bytes@Base 2.18.0 + gtk_entry_buffer_get_length@Base 2.18.0 + gtk_entry_buffer_get_max_length@Base 2.18.0 + gtk_entry_buffer_get_text@Base 2.18.0 + gtk_entry_buffer_get_type@Base 2.18.0 + gtk_entry_buffer_insert_text@Base 2.18.0 + gtk_entry_buffer_new@Base 2.18.0 + gtk_entry_buffer_set_max_length@Base 2.18.0 + gtk_entry_buffer_set_text@Base 2.18.0 + gtk_entry_completion_complete@Base 2.8.0 + gtk_entry_completion_delete_action@Base 2.8.0 + gtk_entry_completion_get_completion_prefix@Base 2.12.0 + gtk_entry_completion_get_entry@Base 2.8.0 + gtk_entry_completion_get_inline_completion@Base 2.8.0 + gtk_entry_completion_get_inline_selection@Base 2.12.0 + gtk_entry_completion_get_minimum_key_length@Base 2.8.0 + gtk_entry_completion_get_model@Base 2.8.0 + gtk_entry_completion_get_popup_completion@Base 2.8.0 + gtk_entry_completion_get_popup_set_width@Base 2.8.0 + gtk_entry_completion_get_popup_single_match@Base 2.8.0 + gtk_entry_completion_get_text_column@Base 2.8.0 + gtk_entry_completion_get_type@Base 2.8.0 + gtk_entry_completion_insert_action_markup@Base 2.8.0 + gtk_entry_completion_insert_action_text@Base 2.8.0 + gtk_entry_completion_insert_prefix@Base 2.8.0 + gtk_entry_completion_new@Base 2.8.0 + gtk_entry_completion_set_inline_completion@Base 2.8.0 + gtk_entry_completion_set_inline_selection@Base 2.12.0 + gtk_entry_completion_set_match_func@Base 2.8.0 + gtk_entry_completion_set_minimum_key_length@Base 2.8.0 + gtk_entry_completion_set_model@Base 2.8.0 + gtk_entry_completion_set_popup_completion@Base 2.8.0 + gtk_entry_completion_set_popup_set_width@Base 2.8.0 + gtk_entry_completion_set_popup_single_match@Base 2.8.0 + gtk_entry_completion_set_text_column@Base 2.8.0 + gtk_entry_get_activates_default@Base 2.8.0 + gtk_entry_get_alignment@Base 2.8.0 + gtk_entry_get_buffer@Base 2.18.0 + gtk_entry_get_completion@Base 2.8.0 + gtk_entry_get_current_icon_drag_source@Base 2.16.0 + gtk_entry_get_cursor_hadjustment@Base 2.12.0 + gtk_entry_get_has_frame@Base 2.8.0 + gtk_entry_get_icon_activatable@Base 2.16.0 + gtk_entry_get_icon_at_pos@Base 2.16.0 + gtk_entry_get_icon_gicon@Base 2.16.0 + gtk_entry_get_icon_name@Base 2.16.0 + gtk_entry_get_icon_pixbuf@Base 2.16.0 + gtk_entry_get_icon_sensitive@Base 2.16.0 + gtk_entry_get_icon_stock@Base 2.16.0 + gtk_entry_get_icon_storage_type@Base 2.16.0 + gtk_entry_get_icon_tooltip_markup@Base 2.16.0 + gtk_entry_get_icon_tooltip_text@Base 2.16.0 + gtk_entry_get_icon_window@Base 2.20.0 + gtk_entry_get_inner_border@Base 2.10.0 + gtk_entry_get_invisible_char@Base 2.8.0 + gtk_entry_get_layout@Base 2.8.0 + gtk_entry_get_layout_offsets@Base 2.8.0 + gtk_entry_get_max_length@Base 2.8.0 + gtk_entry_get_overwrite_mode@Base 2.14.0 + gtk_entry_get_progress_fraction@Base 2.16.0 + gtk_entry_get_progress_pulse_step@Base 2.16.0 + gtk_entry_get_text@Base 2.8.0 + gtk_entry_get_text_length@Base 2.14.0 + gtk_entry_get_text_window@Base 2.20.0 + gtk_entry_get_type@Base 2.8.0 + gtk_entry_get_visibility@Base 2.8.0 + gtk_entry_get_width_chars@Base 2.8.0 + gtk_entry_icon_position_get_type@Base 2.16.0 + gtk_entry_im_context_filter_keypress@Base 2.21.8 + gtk_entry_layout_index_to_text_index@Base 2.8.0 + gtk_entry_new@Base 2.8.0 + gtk_entry_new_with_buffer@Base 2.18.0 + gtk_entry_new_with_max_length@Base 2.8.0 + gtk_entry_prepend_text@Base 2.8.0 + gtk_entry_progress_pulse@Base 2.16.0 + gtk_entry_reset_im_context@Base 2.21.8 + gtk_entry_select_region@Base 2.8.0 + gtk_entry_set_activates_default@Base 2.8.0 + gtk_entry_set_alignment@Base 2.8.0 + gtk_entry_set_buffer@Base 2.18.0 + gtk_entry_set_completion@Base 2.8.0 + gtk_entry_set_cursor_hadjustment@Base 2.12.0 + gtk_entry_set_editable@Base 2.8.0 + gtk_entry_set_has_frame@Base 2.8.0 + gtk_entry_set_icon_activatable@Base 2.16.0 + gtk_entry_set_icon_drag_source@Base 2.16.0 + gtk_entry_set_icon_from_gicon@Base 2.16.0 + gtk_entry_set_icon_from_icon_name@Base 2.16.0 + gtk_entry_set_icon_from_pixbuf@Base 2.16.0 + gtk_entry_set_icon_from_stock@Base 2.16.0 + gtk_entry_set_icon_sensitive@Base 2.16.0 + gtk_entry_set_icon_tooltip_markup@Base 2.16.0 + gtk_entry_set_icon_tooltip_text@Base 2.16.0 + gtk_entry_set_inner_border@Base 2.10.0 + gtk_entry_set_invisible_char@Base 2.8.0 + gtk_entry_set_max_length@Base 2.8.0 + gtk_entry_set_overwrite_mode@Base 2.14.0 + gtk_entry_set_position@Base 2.8.0 + gtk_entry_set_progress_fraction@Base 2.16.0 + gtk_entry_set_progress_pulse_step@Base 2.16.0 + gtk_entry_set_text@Base 2.8.0 + gtk_entry_set_visibility@Base 2.8.0 + gtk_entry_set_width_chars@Base 2.8.0 + gtk_entry_text_index_to_layout_index@Base 2.8.0 + gtk_entry_unset_invisible_char@Base 2.16.0 + gtk_enumerate_printers@Base 2.10.0 + gtk_event_box_get_above_child@Base 2.8.0 + gtk_event_box_get_type@Base 2.8.0 + gtk_event_box_get_visible_window@Base 2.8.0 + gtk_event_box_new@Base 2.8.0 + gtk_event_box_set_above_child@Base 2.8.0 + gtk_event_box_set_visible_window@Base 2.8.0 + gtk_events_pending@Base 2.8.0 + gtk_exit@Base 2.8.0 + gtk_expander_get_expanded@Base 2.8.0 + gtk_expander_get_label@Base 2.8.0 + gtk_expander_get_label_fill@Base 2.21.8 + gtk_expander_get_label_widget@Base 2.8.0 + gtk_expander_get_spacing@Base 2.8.0 + gtk_expander_get_type@Base 2.8.0 + gtk_expander_get_use_markup@Base 2.8.0 + gtk_expander_get_use_underline@Base 2.8.0 + gtk_expander_new@Base 2.8.0 + gtk_expander_new_with_mnemonic@Base 2.8.0 + gtk_expander_set_expanded@Base 2.8.0 + gtk_expander_set_label@Base 2.8.0 + gtk_expander_set_label_fill@Base 2.21.8 + gtk_expander_set_label_widget@Base 2.8.0 + gtk_expander_set_spacing@Base 2.8.0 + gtk_expander_set_use_markup@Base 2.8.0 + gtk_expander_set_use_underline@Base 2.8.0 + gtk_expander_style_get_type@Base 2.8.0 + gtk_false@Base 2.8.0 + gtk_file_chooser_action_get_type@Base 2.8.0 + gtk_file_chooser_add_filter@Base 2.8.0 + gtk_file_chooser_add_shortcut_folder@Base 2.8.0 + gtk_file_chooser_add_shortcut_folder_uri@Base 2.8.0 + gtk_file_chooser_button_get_focus_on_click@Base 2.10.0 + gtk_file_chooser_button_get_title@Base 2.8.0 + gtk_file_chooser_button_get_type@Base 2.8.0 + gtk_file_chooser_button_get_width_chars@Base 2.8.0 + gtk_file_chooser_button_new@Base 2.8.0 + gtk_file_chooser_button_new_with_backend@Base 2.8.0 + gtk_file_chooser_button_new_with_dialog@Base 2.8.0 + gtk_file_chooser_button_set_focus_on_click@Base 2.10.0 + gtk_file_chooser_button_set_title@Base 2.8.0 + gtk_file_chooser_button_set_width_chars@Base 2.8.0 + gtk_file_chooser_confirmation_get_type@Base 2.8.0 + gtk_file_chooser_dialog_get_type@Base 2.8.0 + gtk_file_chooser_dialog_new@Base 2.8.0 + gtk_file_chooser_dialog_new_with_backend@Base 2.8.0 + gtk_file_chooser_error_get_type@Base 2.8.0 + gtk_file_chooser_error_quark@Base 2.8.0 + gtk_file_chooser_get_action@Base 2.8.0 + gtk_file_chooser_get_create_folders@Base 2.18.0 + gtk_file_chooser_get_current_folder@Base 2.8.0 + gtk_file_chooser_get_current_folder_file@Base 2.14.0 + gtk_file_chooser_get_current_folder_uri@Base 2.8.0 + gtk_file_chooser_get_do_overwrite_confirmation@Base 2.8.0 + gtk_file_chooser_get_extra_widget@Base 2.8.0 + gtk_file_chooser_get_file@Base 2.14.0 + gtk_file_chooser_get_filename@Base 2.8.0 + gtk_file_chooser_get_filenames@Base 2.8.0 + gtk_file_chooser_get_files@Base 2.14.0 + gtk_file_chooser_get_filter@Base 2.8.0 + gtk_file_chooser_get_local_only@Base 2.8.0 + gtk_file_chooser_get_preview_file@Base 2.14.0 + gtk_file_chooser_get_preview_filename@Base 2.8.0 + gtk_file_chooser_get_preview_uri@Base 2.8.0 + gtk_file_chooser_get_preview_widget@Base 2.8.0 + gtk_file_chooser_get_preview_widget_active@Base 2.8.0 + gtk_file_chooser_get_select_multiple@Base 2.8.0 + gtk_file_chooser_get_show_hidden@Base 2.8.0 + gtk_file_chooser_get_type@Base 2.8.0 + gtk_file_chooser_get_uri@Base 2.8.0 + gtk_file_chooser_get_uris@Base 2.8.0 + gtk_file_chooser_get_use_preview_label@Base 2.8.0 + gtk_file_chooser_list_filters@Base 2.8.0 + gtk_file_chooser_list_shortcut_folder_uris@Base 2.8.0 + gtk_file_chooser_list_shortcut_folders@Base 2.8.0 + gtk_file_chooser_remove_filter@Base 2.8.0 + gtk_file_chooser_remove_shortcut_folder@Base 2.8.0 + gtk_file_chooser_remove_shortcut_folder_uri@Base 2.8.0 + gtk_file_chooser_select_all@Base 2.8.0 + gtk_file_chooser_select_file@Base 2.14.0 + gtk_file_chooser_select_filename@Base 2.8.0 + gtk_file_chooser_select_uri@Base 2.8.0 + gtk_file_chooser_set_action@Base 2.8.0 + gtk_file_chooser_set_create_folders@Base 2.18.0 + gtk_file_chooser_set_current_folder@Base 2.8.0 + gtk_file_chooser_set_current_folder_file@Base 2.14.0 + gtk_file_chooser_set_current_folder_uri@Base 2.8.0 + gtk_file_chooser_set_current_name@Base 2.8.0 + gtk_file_chooser_set_do_overwrite_confirmation@Base 2.8.0 + gtk_file_chooser_set_extra_widget@Base 2.8.0 + gtk_file_chooser_set_file@Base 2.14.0 + gtk_file_chooser_set_filename@Base 2.8.0 + gtk_file_chooser_set_filter@Base 2.8.0 + gtk_file_chooser_set_local_only@Base 2.8.0 + gtk_file_chooser_set_preview_widget@Base 2.8.0 + gtk_file_chooser_set_preview_widget_active@Base 2.8.0 + gtk_file_chooser_set_select_multiple@Base 2.8.0 + gtk_file_chooser_set_show_hidden@Base 2.8.0 + gtk_file_chooser_set_uri@Base 2.8.0 + gtk_file_chooser_set_use_preview_label@Base 2.8.0 + gtk_file_chooser_unselect_all@Base 2.8.0 + gtk_file_chooser_unselect_file@Base 2.14.0 + gtk_file_chooser_unselect_filename@Base 2.8.0 + gtk_file_chooser_unselect_uri@Base 2.8.0 + gtk_file_chooser_widget_get_type@Base 2.8.0 + gtk_file_chooser_widget_new@Base 2.8.0 + gtk_file_chooser_widget_new_with_backend@Base 2.8.0 + gtk_file_filter_add_custom@Base 2.8.0 + gtk_file_filter_add_mime_type@Base 2.8.0 + gtk_file_filter_add_pattern@Base 2.8.0 + gtk_file_filter_add_pixbuf_formats@Base 2.8.0 + gtk_file_filter_filter@Base 2.8.0 + gtk_file_filter_flags_get_type@Base 2.8.0 + gtk_file_filter_get_name@Base 2.8.0 + gtk_file_filter_get_needed@Base 2.8.0 + gtk_file_filter_get_type@Base 2.8.0 + gtk_file_filter_new@Base 2.8.0 + gtk_file_filter_set_name@Base 2.8.0 + gtk_file_selection_complete@Base 2.8.0 + gtk_file_selection_get_filename@Base 2.8.0 + gtk_file_selection_get_select_multiple@Base 2.8.0 + gtk_file_selection_get_selections@Base 2.8.0 + gtk_file_selection_get_type@Base 2.8.0 + gtk_file_selection_hide_fileop_buttons@Base 2.8.0 + gtk_file_selection_new@Base 2.8.0 + gtk_file_selection_set_filename@Base 2.8.0 + gtk_file_selection_set_select_multiple@Base 2.8.0 + gtk_file_selection_show_fileop_buttons@Base 2.8.0 + gtk_fixed_get_has_window@Base 2.8.0 + gtk_fixed_get_type@Base 2.8.0 + gtk_fixed_move@Base 2.8.0 + gtk_fixed_new@Base 2.8.0 + gtk_fixed_put@Base 2.8.0 + gtk_fixed_set_has_window@Base 2.8.0 + gtk_font_button_get_font_name@Base 2.8.0 + gtk_font_button_get_show_size@Base 2.8.0 + gtk_font_button_get_show_style@Base 2.8.0 + gtk_font_button_get_title@Base 2.8.0 + gtk_font_button_get_type@Base 2.8.0 + gtk_font_button_get_use_font@Base 2.8.0 + gtk_font_button_get_use_size@Base 2.8.0 + gtk_font_button_new@Base 2.8.0 + gtk_font_button_new_with_font@Base 2.8.0 + gtk_font_button_set_font_name@Base 2.8.0 + gtk_font_button_set_show_size@Base 2.8.0 + gtk_font_button_set_show_style@Base 2.8.0 + gtk_font_button_set_title@Base 2.8.0 + gtk_font_button_set_use_font@Base 2.8.0 + gtk_font_button_set_use_size@Base 2.8.0 + gtk_font_selection_dialog_get_apply_button@Base 2.14.0 + gtk_font_selection_dialog_get_cancel_button@Base 2.14.0 + gtk_font_selection_dialog_get_font@Base 2.8.0 + gtk_font_selection_dialog_get_font_name@Base 2.8.0 + gtk_font_selection_dialog_get_font_selection@Base 2.21.8 + gtk_font_selection_dialog_get_ok_button@Base 2.14.0 + gtk_font_selection_dialog_get_preview_text@Base 2.8.0 + gtk_font_selection_dialog_get_type@Base 2.8.0 + gtk_font_selection_dialog_new@Base 2.8.0 + gtk_font_selection_dialog_set_font_name@Base 2.8.0 + gtk_font_selection_dialog_set_preview_text@Base 2.8.0 + gtk_font_selection_get_face@Base 2.14.0 + gtk_font_selection_get_face_list@Base 2.14.0 + gtk_font_selection_get_family@Base 2.14.0 + gtk_font_selection_get_family_list@Base 2.14.0 + gtk_font_selection_get_font@Base 2.8.0 + gtk_font_selection_get_font_name@Base 2.8.0 + gtk_font_selection_get_preview_entry@Base 2.14.0 + gtk_font_selection_get_preview_text@Base 2.8.0 + gtk_font_selection_get_size@Base 2.14.0 + gtk_font_selection_get_size_entry@Base 2.14.0 + gtk_font_selection_get_size_list@Base 2.14.0 + gtk_font_selection_get_type@Base 2.8.0 + gtk_font_selection_new@Base 2.8.0 + gtk_font_selection_set_font_name@Base 2.8.0 + gtk_font_selection_set_preview_text@Base 2.8.0 + gtk_frame_get_label@Base 2.8.0 + gtk_frame_get_label_align@Base 2.8.0 + gtk_frame_get_label_widget@Base 2.8.0 + gtk_frame_get_shadow_type@Base 2.8.0 + gtk_frame_get_type@Base 2.8.0 + gtk_frame_new@Base 2.8.0 + gtk_frame_set_label@Base 2.8.0 + gtk_frame_set_label_align@Base 2.8.0 + gtk_frame_set_label_widget@Base 2.8.0 + gtk_frame_set_shadow_type@Base 2.8.0 + gtk_gamma_curve_get_type@Base 2.8.0 + gtk_gamma_curve_new@Base 2.8.0 + gtk_gc_get@Base 2.8.0 + gtk_gc_release@Base 2.8.0 + gtk_get_current_event@Base 2.8.0 + gtk_get_current_event_state@Base 2.8.0 + gtk_get_current_event_time@Base 2.8.0 + gtk_get_default_language@Base 2.8.0 + gtk_get_event_widget@Base 2.8.0 + gtk_get_option_group@Base 2.8.0 + gtk_grab_add@Base 2.8.0 + gtk_grab_get_current@Base 2.8.0 + gtk_grab_remove@Base 2.8.0 + gtk_handle_box_get_child_detached@Base 2.14.0 + gtk_handle_box_get_handle_position@Base 2.8.0 + gtk_handle_box_get_shadow_type@Base 2.8.0 + gtk_handle_box_get_snap_edge@Base 2.8.0 + gtk_handle_box_get_type@Base 2.8.0 + gtk_handle_box_new@Base 2.8.0 + gtk_handle_box_set_handle_position@Base 2.8.0 + gtk_handle_box_set_shadow_type@Base 2.8.0 + gtk_handle_box_set_snap_edge@Base 2.8.0 + gtk_hbox_get_type@Base 2.8.0 + gtk_hbox_new@Base 2.8.0 + gtk_hbutton_box_get_layout_default@Base 2.8.0 + gtk_hbutton_box_get_spacing_default@Base 2.8.0 + gtk_hbutton_box_get_type@Base 2.8.0 + gtk_hbutton_box_new@Base 2.8.0 + gtk_hbutton_box_set_layout_default@Base 2.8.0 + gtk_hbutton_box_set_spacing_default@Base 2.8.0 + gtk_hpaned_get_type@Base 2.8.0 + gtk_hpaned_new@Base 2.8.0 + gtk_hruler_get_type@Base 2.8.0 + gtk_hruler_new@Base 2.8.0 + gtk_hscale_get_type@Base 2.8.0 + gtk_hscale_new@Base 2.8.0 + gtk_hscale_new_with_range@Base 2.8.0 + gtk_hscrollbar_get_type@Base 2.8.0 + gtk_hscrollbar_new@Base 2.8.0 + gtk_hseparator_get_type@Base 2.8.0 + gtk_hseparator_new@Base 2.8.0 + gtk_hsv_get_color@Base 2.8.0 + gtk_hsv_get_metrics@Base 2.8.0 + gtk_hsv_get_type@Base 2.8.0 + gtk_hsv_is_adjusting@Base 2.8.0 + gtk_hsv_new@Base 2.8.0 + gtk_hsv_set_color@Base 2.8.0 + gtk_hsv_set_metrics@Base 2.8.0 + gtk_hsv_to_rgb@Base 2.8.0 + gtk_icon_factory_add@Base 2.8.0 + gtk_icon_factory_add_default@Base 2.8.0 + gtk_icon_factory_get_type@Base 2.8.0 + gtk_icon_factory_lookup@Base 2.8.0 + gtk_icon_factory_lookup_default@Base 2.8.0 + gtk_icon_factory_new@Base 2.8.0 + gtk_icon_factory_remove_default@Base 2.8.0 + gtk_icon_info_copy@Base 2.8.0 + gtk_icon_info_free@Base 2.8.0 + gtk_icon_info_get_attach_points@Base 2.8.0 + gtk_icon_info_get_base_size@Base 2.8.0 + gtk_icon_info_get_builtin_pixbuf@Base 2.8.0 + gtk_icon_info_get_display_name@Base 2.8.0 + gtk_icon_info_get_embedded_rect@Base 2.8.0 + gtk_icon_info_get_filename@Base 2.8.0 + gtk_icon_info_get_type@Base 2.8.0 + gtk_icon_info_load_icon@Base 2.8.0 + gtk_icon_info_new_for_pixbuf@Base 2.14.0 + gtk_icon_info_set_raw_coordinates@Base 2.8.0 + gtk_icon_lookup_flags_get_type@Base 2.8.0 + gtk_icon_set_add_source@Base 2.8.0 + gtk_icon_set_copy@Base 2.8.0 + gtk_icon_set_get_sizes@Base 2.8.0 + gtk_icon_set_get_type@Base 2.8.0 + gtk_icon_set_new@Base 2.8.0 + gtk_icon_set_new_from_pixbuf@Base 2.8.0 + gtk_icon_set_ref@Base 2.8.0 + gtk_icon_set_render_icon@Base 2.8.0 + gtk_icon_set_unref@Base 2.8.0 + gtk_icon_size_from_name@Base 2.8.0 + gtk_icon_size_get_name@Base 2.8.0 + gtk_icon_size_get_type@Base 2.8.0 + gtk_icon_size_lookup@Base 2.8.0 + gtk_icon_size_lookup_for_settings@Base 2.8.0 + gtk_icon_size_register@Base 2.8.0 + gtk_icon_size_register_alias@Base 2.8.0 + gtk_icon_source_copy@Base 2.8.0 + gtk_icon_source_free@Base 2.8.0 + gtk_icon_source_get_direction@Base 2.8.0 + gtk_icon_source_get_direction_wildcarded@Base 2.8.0 + gtk_icon_source_get_filename@Base 2.8.0 + gtk_icon_source_get_icon_name@Base 2.8.0 + gtk_icon_source_get_pixbuf@Base 2.8.0 + gtk_icon_source_get_size@Base 2.8.0 + gtk_icon_source_get_size_wildcarded@Base 2.8.0 + gtk_icon_source_get_state@Base 2.8.0 + gtk_icon_source_get_state_wildcarded@Base 2.8.0 + gtk_icon_source_get_type@Base 2.8.0 + gtk_icon_source_new@Base 2.8.0 + gtk_icon_source_set_direction@Base 2.8.0 + gtk_icon_source_set_direction_wildcarded@Base 2.8.0 + gtk_icon_source_set_filename@Base 2.8.0 + gtk_icon_source_set_icon_name@Base 2.8.0 + gtk_icon_source_set_pixbuf@Base 2.8.0 + gtk_icon_source_set_size@Base 2.8.0 + gtk_icon_source_set_size_wildcarded@Base 2.8.0 + gtk_icon_source_set_state@Base 2.8.0 + gtk_icon_source_set_state_wildcarded@Base 2.8.0 + gtk_icon_theme_add_builtin_icon@Base 2.8.0 + gtk_icon_theme_append_search_path@Base 2.8.0 + gtk_icon_theme_choose_icon@Base 2.12.0 + gtk_icon_theme_error_get_type@Base 2.8.0 + gtk_icon_theme_error_quark@Base 2.8.0 + gtk_icon_theme_get_default@Base 2.8.0 + gtk_icon_theme_get_example_icon_name@Base 2.8.0 + gtk_icon_theme_get_for_screen@Base 2.8.0 + gtk_icon_theme_get_icon_sizes@Base 2.8.0 + gtk_icon_theme_get_search_path@Base 2.8.0 + gtk_icon_theme_get_type@Base 2.8.0 + gtk_icon_theme_has_icon@Base 2.8.0 + gtk_icon_theme_list_contexts@Base 2.12.0 + gtk_icon_theme_list_icons@Base 2.8.0 + gtk_icon_theme_load_icon@Base 2.8.0 + gtk_icon_theme_lookup_by_gicon@Base 2.14.0 + gtk_icon_theme_lookup_icon@Base 2.8.0 + gtk_icon_theme_new@Base 2.8.0 + gtk_icon_theme_prepend_search_path@Base 2.8.0 + gtk_icon_theme_rescan_if_needed@Base 2.8.0 + gtk_icon_theme_set_custom_theme@Base 2.8.0 + gtk_icon_theme_set_screen@Base 2.8.0 + gtk_icon_theme_set_search_path@Base 2.8.0 + gtk_icon_view_convert_widget_to_bin_window_coords@Base 2.12.0 + gtk_icon_view_create_drag_icon@Base 2.8.0 + gtk_icon_view_drop_position_get_type@Base 2.8.0 + gtk_icon_view_enable_model_drag_dest@Base 2.8.0 + gtk_icon_view_enable_model_drag_source@Base 2.8.0 + gtk_icon_view_get_column_spacing@Base 2.8.0 + gtk_icon_view_get_columns@Base 2.8.0 + gtk_icon_view_get_cursor@Base 2.8.0 + gtk_icon_view_get_dest_item_at_pos@Base 2.8.0 + gtk_icon_view_get_drag_dest_item@Base 2.8.0 + gtk_icon_view_get_item_at_pos@Base 2.8.0 + gtk_icon_view_get_item_column@Base 2.21.8 + gtk_icon_view_get_item_orientation@Base 2.21.8 + gtk_icon_view_get_item_padding@Base 2.18.0 + gtk_icon_view_get_item_row@Base 2.21.8 + gtk_icon_view_get_item_width@Base 2.8.0 + gtk_icon_view_get_margin@Base 2.8.0 + gtk_icon_view_get_markup_column@Base 2.8.0 + gtk_icon_view_get_model@Base 2.8.0 + gtk_icon_view_get_orientation@Base 2.8.0 + gtk_icon_view_get_path_at_pos@Base 2.8.0 + gtk_icon_view_get_pixbuf_column@Base 2.8.0 + gtk_icon_view_get_reorderable@Base 2.8.0 + gtk_icon_view_get_row_spacing@Base 2.8.0 + gtk_icon_view_get_selected_items@Base 2.8.0 + gtk_icon_view_get_selection_mode@Base 2.8.0 + gtk_icon_view_get_spacing@Base 2.8.0 + gtk_icon_view_get_text_column@Base 2.8.0 + gtk_icon_view_get_tooltip_column@Base 2.12.0 + gtk_icon_view_get_tooltip_context@Base 2.12.0 + gtk_icon_view_get_type@Base 2.8.0 + gtk_icon_view_get_visible_range@Base 2.8.0 + gtk_icon_view_item_activated@Base 2.8.0 + gtk_icon_view_new@Base 2.8.0 + gtk_icon_view_new_with_model@Base 2.8.0 + gtk_icon_view_path_is_selected@Base 2.8.0 + gtk_icon_view_scroll_to_path@Base 2.8.0 + gtk_icon_view_select_all@Base 2.8.0 + gtk_icon_view_select_path@Base 2.8.0 + gtk_icon_view_selected_foreach@Base 2.8.0 + gtk_icon_view_set_column_spacing@Base 2.8.0 + gtk_icon_view_set_columns@Base 2.8.0 + gtk_icon_view_set_cursor@Base 2.8.0 + gtk_icon_view_set_drag_dest_item@Base 2.8.0 + gtk_icon_view_set_item_orientation@Base 2.21.8 + gtk_icon_view_set_item_padding@Base 2.18.0 + gtk_icon_view_set_item_width@Base 2.8.0 + gtk_icon_view_set_margin@Base 2.8.0 + gtk_icon_view_set_markup_column@Base 2.8.0 + gtk_icon_view_set_model@Base 2.8.0 + gtk_icon_view_set_orientation@Base 2.8.0 + gtk_icon_view_set_pixbuf_column@Base 2.8.0 + gtk_icon_view_set_reorderable@Base 2.8.0 + gtk_icon_view_set_row_spacing@Base 2.8.0 + gtk_icon_view_set_selection_mode@Base 2.8.0 + gtk_icon_view_set_spacing@Base 2.8.0 + gtk_icon_view_set_text_column@Base 2.8.0 + gtk_icon_view_set_tooltip_cell@Base 2.12.0 + gtk_icon_view_set_tooltip_column@Base 2.12.0 + gtk_icon_view_set_tooltip_item@Base 2.12.0 + gtk_icon_view_unselect_all@Base 2.8.0 + gtk_icon_view_unselect_path@Base 2.8.0 + gtk_icon_view_unset_model_drag_dest@Base 2.8.0 + gtk_icon_view_unset_model_drag_source@Base 2.8.0 + gtk_identifier_get_type@Base 2.8.0 + gtk_idle_add@Base 2.8.0 + gtk_idle_add_full@Base 2.8.0 + gtk_idle_add_priority@Base 2.8.0 + gtk_idle_remove@Base 2.8.0 + gtk_idle_remove_by_data@Base 2.8.0 + gtk_im_context_delete_surrounding@Base 2.8.0 + gtk_im_context_filter_keypress@Base 2.8.0 + gtk_im_context_focus_in@Base 2.8.0 + gtk_im_context_focus_out@Base 2.8.0 + gtk_im_context_get_preedit_string@Base 2.8.0 + gtk_im_context_get_surrounding@Base 2.8.0 + gtk_im_context_get_type@Base 2.8.0 + gtk_im_context_reset@Base 2.8.0 + gtk_im_context_set_client_window@Base 2.8.0 + gtk_im_context_set_cursor_location@Base 2.8.0 + gtk_im_context_set_surrounding@Base 2.8.0 + gtk_im_context_set_use_preedit@Base 2.8.0 + gtk_im_context_simple_add_table@Base 2.8.0 + gtk_im_context_simple_get_type@Base 2.8.0 + gtk_im_context_simple_new@Base 2.8.0 + gtk_im_multicontext_append_menuitems@Base 2.8.0 + gtk_im_multicontext_get_context_id@Base 2.16.0 + gtk_im_multicontext_get_type@Base 2.8.0 + gtk_im_multicontext_new@Base 2.8.0 + gtk_im_multicontext_set_context_id@Base 2.16.0 + gtk_im_preedit_style_get_type@Base 2.8.0 + gtk_im_status_style_get_type@Base 2.8.0 + gtk_image_clear@Base 2.8.0 + gtk_image_get@Base 2.8.0 + gtk_image_get_animation@Base 2.8.0 + gtk_image_get_gicon@Base 2.14.0 + gtk_image_get_icon_name@Base 2.8.0 + gtk_image_get_icon_set@Base 2.8.0 + gtk_image_get_image@Base 2.8.0 + gtk_image_get_pixbuf@Base 2.8.0 + gtk_image_get_pixel_size@Base 2.8.0 + gtk_image_get_pixmap@Base 2.8.0 + gtk_image_get_stock@Base 2.8.0 + gtk_image_get_storage_type@Base 2.8.0 + gtk_image_get_type@Base 2.8.0 + gtk_image_menu_item_get_always_show_image@Base 2.16.0 + gtk_image_menu_item_get_image@Base 2.8.0 + gtk_image_menu_item_get_type@Base 2.8.0 + gtk_image_menu_item_get_use_stock@Base 2.16.0 + gtk_image_menu_item_new@Base 2.8.0 + gtk_image_menu_item_new_from_stock@Base 2.8.0 + gtk_image_menu_item_new_with_label@Base 2.8.0 + gtk_image_menu_item_new_with_mnemonic@Base 2.8.0 + gtk_image_menu_item_set_accel_group@Base 2.16.0 + gtk_image_menu_item_set_always_show_image@Base 2.16.0 + gtk_image_menu_item_set_image@Base 2.8.0 + gtk_image_menu_item_set_use_stock@Base 2.16.0 + gtk_image_new@Base 2.8.0 + gtk_image_new_from_animation@Base 2.8.0 + gtk_image_new_from_file@Base 2.8.0 + gtk_image_new_from_gicon@Base 2.14.0 + gtk_image_new_from_icon_name@Base 2.8.0 + gtk_image_new_from_icon_set@Base 2.8.0 + gtk_image_new_from_image@Base 2.8.0 + gtk_image_new_from_pixbuf@Base 2.8.0 + gtk_image_new_from_pixmap@Base 2.8.0 + gtk_image_new_from_stock@Base 2.8.0 + gtk_image_set@Base 2.8.0 + gtk_image_set_from_animation@Base 2.8.0 + gtk_image_set_from_file@Base 2.8.0 + gtk_image_set_from_gicon@Base 2.14.0 + gtk_image_set_from_icon_name@Base 2.8.0 + gtk_image_set_from_icon_set@Base 2.8.0 + gtk_image_set_from_image@Base 2.8.0 + gtk_image_set_from_pixbuf@Base 2.8.0 + gtk_image_set_from_pixmap@Base 2.8.0 + gtk_image_set_from_stock@Base 2.8.0 + gtk_image_set_pixel_size@Base 2.8.0 + gtk_image_type_get_type@Base 2.8.0 + gtk_info_bar_add_action_widget@Base 2.18.0 + gtk_info_bar_add_button@Base 2.18.0 + gtk_info_bar_add_buttons@Base 2.18.0 + gtk_info_bar_get_action_area@Base 2.18.0 + gtk_info_bar_get_content_area@Base 2.18.0 + gtk_info_bar_get_message_type@Base 2.18.0 + gtk_info_bar_get_type@Base 2.18.0 + gtk_info_bar_new@Base 2.18.0 + gtk_info_bar_new_with_buttons@Base 2.18.0 + gtk_info_bar_response@Base 2.18.0 + gtk_info_bar_set_default_response@Base 2.18.0 + gtk_info_bar_set_message_type@Base 2.18.0 + gtk_info_bar_set_response_sensitive@Base 2.18.0 + gtk_init@Base 2.8.0 + gtk_init_add@Base 2.8.0 + gtk_init_check@Base 2.8.0 + gtk_init_with_args@Base 2.8.0 + gtk_input_add_full@Base 2.8.0 + gtk_input_dialog_get_type@Base 2.8.0 + gtk_input_dialog_new@Base 2.8.0 + gtk_input_remove@Base 2.8.0 + gtk_interface_age@Base 2.8.0 + gtk_invisible_get_screen@Base 2.8.0 + gtk_invisible_get_type@Base 2.8.0 + gtk_invisible_new@Base 2.8.0 + gtk_invisible_new_for_screen@Base 2.8.0 + gtk_invisible_set_screen@Base 2.8.0 + gtk_item_deselect@Base 2.8.0 + gtk_item_factories_path_delete@Base 2.8.0 + gtk_item_factory_add_foreign@Base 2.8.0 + gtk_item_factory_construct@Base 2.8.0 + gtk_item_factory_create_item@Base 2.8.0 + gtk_item_factory_create_items@Base 2.8.0 + gtk_item_factory_create_items_ac@Base 2.8.0 + gtk_item_factory_create_menu_entries@Base 2.8.0 + gtk_item_factory_delete_entries@Base 2.8.0 + gtk_item_factory_delete_entry@Base 2.8.0 + gtk_item_factory_delete_item@Base 2.8.0 + gtk_item_factory_from_path@Base 2.8.0 + gtk_item_factory_from_widget@Base 2.8.0 + gtk_item_factory_get_item@Base 2.8.0 + gtk_item_factory_get_item_by_action@Base 2.8.0 + gtk_item_factory_get_type@Base 2.8.0 + gtk_item_factory_get_widget@Base 2.8.0 + gtk_item_factory_get_widget_by_action@Base 2.8.0 + gtk_item_factory_new@Base 2.8.0 + gtk_item_factory_path_from_widget@Base 2.8.0 + gtk_item_factory_popup@Base 2.8.0 + gtk_item_factory_popup_data@Base 2.8.0 + gtk_item_factory_popup_data_from_widget@Base 2.8.0 + gtk_item_factory_popup_with_data@Base 2.8.0 + gtk_item_factory_set_translate_func@Base 2.8.0 + gtk_item_get_type@Base 2.8.0 + gtk_item_select@Base 2.8.0 + gtk_item_toggle@Base 2.8.0 + gtk_justification_get_type@Base 2.8.0 + gtk_key_snooper_install@Base 2.8.0 + gtk_key_snooper_remove@Base 2.8.0 + gtk_label_get@Base 2.8.0 + gtk_label_get_angle@Base 2.8.0 + gtk_label_get_attributes@Base 2.8.0 + gtk_label_get_current_uri@Base 2.18.0 + gtk_label_get_ellipsize@Base 2.8.0 + gtk_label_get_justify@Base 2.8.0 + gtk_label_get_label@Base 2.8.0 + gtk_label_get_layout@Base 2.8.0 + gtk_label_get_layout_offsets@Base 2.8.0 + gtk_label_get_line_wrap@Base 2.8.0 + gtk_label_get_line_wrap_mode@Base 2.10.0 + gtk_label_get_max_width_chars@Base 2.8.0 + gtk_label_get_mnemonic_keyval@Base 2.8.0 + gtk_label_get_mnemonic_widget@Base 2.8.0 + gtk_label_get_selectable@Base 2.8.0 + gtk_label_get_selection_bounds@Base 2.8.0 + gtk_label_get_single_line_mode@Base 2.8.0 + gtk_label_get_text@Base 2.8.0 + gtk_label_get_track_visited_links@Base 2.18.0 + gtk_label_get_type@Base 2.8.0 + gtk_label_get_use_markup@Base 2.8.0 + gtk_label_get_use_underline@Base 2.8.0 + gtk_label_get_width_chars@Base 2.8.0 + gtk_label_new@Base 2.8.0 + gtk_label_new_with_mnemonic@Base 2.8.0 + gtk_label_parse_uline@Base 2.8.0 + gtk_label_select_region@Base 2.8.0 + gtk_label_set_angle@Base 2.8.0 + gtk_label_set_attributes@Base 2.8.0 + gtk_label_set_ellipsize@Base 2.8.0 + gtk_label_set_justify@Base 2.8.0 + gtk_label_set_label@Base 2.8.0 + gtk_label_set_line_wrap@Base 2.8.0 + gtk_label_set_line_wrap_mode@Base 2.10.0 + gtk_label_set_markup@Base 2.8.0 + gtk_label_set_markup_with_mnemonic@Base 2.8.0 + gtk_label_set_max_width_chars@Base 2.8.0 + gtk_label_set_mnemonic_widget@Base 2.8.0 + gtk_label_set_pattern@Base 2.8.0 + gtk_label_set_selectable@Base 2.8.0 + gtk_label_set_single_line_mode@Base 2.8.0 + gtk_label_set_text@Base 2.8.0 + gtk_label_set_text_with_mnemonic@Base 2.8.0 + gtk_label_set_track_visited_links@Base 2.18.0 + gtk_label_set_use_markup@Base 2.8.0 + gtk_label_set_use_underline@Base 2.8.0 + gtk_label_set_width_chars@Base 2.8.0 + gtk_layout_freeze@Base 2.8.0 + gtk_layout_get_bin_window@Base 2.14.0 + gtk_layout_get_hadjustment@Base 2.8.0 + gtk_layout_get_size@Base 2.8.0 + gtk_layout_get_type@Base 2.8.0 + gtk_layout_get_vadjustment@Base 2.8.0 + gtk_layout_move@Base 2.8.0 + gtk_layout_new@Base 2.8.0 + gtk_layout_put@Base 2.8.0 + gtk_layout_set_hadjustment@Base 2.8.0 + gtk_layout_set_size@Base 2.8.0 + gtk_layout_set_vadjustment@Base 2.8.0 + gtk_layout_thaw@Base 2.8.0 + gtk_link_button_get_type@Base 2.10.0 + gtk_link_button_get_uri@Base 2.10.0 + gtk_link_button_get_visited@Base 2.14.0 + gtk_link_button_new@Base 2.10.0 + gtk_link_button_new_with_label@Base 2.10.0 + gtk_link_button_set_uri@Base 2.10.0 + gtk_link_button_set_uri_hook@Base 2.10.0 + gtk_link_button_set_visited@Base 2.14.0 + gtk_list_append_items@Base 2.8.0 + gtk_list_child_position@Base 2.8.0 + gtk_list_clear_items@Base 2.8.0 + gtk_list_end_drag_selection@Base 2.8.0 + gtk_list_end_selection@Base 2.8.0 + gtk_list_extend_selection@Base 2.8.0 + gtk_list_get_type@Base 2.8.0 + gtk_list_insert_items@Base 2.8.0 + gtk_list_item_deselect@Base 2.8.0 + gtk_list_item_get_type@Base 2.8.0 + gtk_list_item_new@Base 2.8.0 + gtk_list_item_new_with_label@Base 2.8.0 + gtk_list_item_select@Base 2.8.0 + gtk_list_new@Base 2.8.0 + gtk_list_prepend_items@Base 2.8.0 + gtk_list_remove_items@Base 2.8.0 + gtk_list_remove_items_no_unref@Base 2.8.0 + gtk_list_scroll_horizontal@Base 2.8.0 + gtk_list_scroll_vertical@Base 2.8.0 + gtk_list_select_all@Base 2.8.0 + gtk_list_select_child@Base 2.8.0 + gtk_list_select_item@Base 2.8.0 + gtk_list_set_selection_mode@Base 2.8.0 + gtk_list_start_selection@Base 2.8.0 + gtk_list_store_append@Base 2.8.0 + gtk_list_store_clear@Base 2.8.0 + gtk_list_store_get_type@Base 2.8.0 + gtk_list_store_insert@Base 2.8.0 + gtk_list_store_insert_after@Base 2.8.0 + gtk_list_store_insert_before@Base 2.8.0 + gtk_list_store_insert_with_values@Base 2.8.0 + gtk_list_store_insert_with_valuesv@Base 2.8.0 + gtk_list_store_iter_is_valid@Base 2.8.0 + gtk_list_store_move_after@Base 2.8.0 + gtk_list_store_move_before@Base 2.8.0 + gtk_list_store_new@Base 2.8.0 + gtk_list_store_newv@Base 2.8.0 + gtk_list_store_prepend@Base 2.8.0 + gtk_list_store_remove@Base 2.8.0 + gtk_list_store_reorder@Base 2.8.0 + gtk_list_store_set@Base 2.8.0 + gtk_list_store_set_column_types@Base 2.8.0 + gtk_list_store_set_valist@Base 2.8.0 + gtk_list_store_set_value@Base 2.8.0 + gtk_list_store_set_valuesv@Base 2.12.0 + gtk_list_store_swap@Base 2.8.0 + gtk_list_toggle_add_mode@Base 2.8.0 + gtk_list_toggle_focus_row@Base 2.8.0 + gtk_list_toggle_row@Base 2.8.0 + gtk_list_undo_selection@Base 2.8.0 + gtk_list_unselect_all@Base 2.8.0 + gtk_list_unselect_child@Base 2.8.0 + gtk_list_unselect_item@Base 2.8.0 + gtk_main@Base 2.8.0 + gtk_main_do_event@Base 2.8.0 + gtk_main_iteration@Base 2.8.0 + gtk_main_iteration_do@Base 2.8.0 + gtk_main_level@Base 2.8.0 + gtk_main_quit@Base 2.8.0 + gtk_major_version@Base 2.8.0 + gtk_marshal_BOOLEAN__POINTER@Base 2.8.0 + gtk_marshal_BOOLEAN__POINTER_INT_INT@Base 2.8.0 + gtk_marshal_BOOLEAN__POINTER_INT_INT_UINT@Base 2.8.0 + gtk_marshal_BOOLEAN__POINTER_POINTER_INT_INT@Base 2.8.0 + gtk_marshal_BOOLEAN__POINTER_STRING_STRING_POINTER@Base 2.8.0 + gtk_marshal_BOOLEAN__VOID@Base 2.8.0 + gtk_marshal_ENUM__ENUM@Base 2.8.0 + gtk_marshal_INT__POINTER@Base 2.8.0 + gtk_marshal_INT__POINTER_CHAR_CHAR@Base 2.8.0 + gtk_marshal_VOID__ENUM_FLOAT@Base 2.8.0 + gtk_marshal_VOID__ENUM_FLOAT_BOOLEAN@Base 2.8.0 + gtk_marshal_VOID__INT_INT@Base 2.8.0 + gtk_marshal_VOID__INT_INT_POINTER@Base 2.8.0 + gtk_marshal_VOID__POINTER_INT@Base 2.8.0 + gtk_marshal_VOID__POINTER_INT_INT_POINTER_UINT_UINT@Base 2.8.0 + gtk_marshal_VOID__POINTER_POINTER@Base 2.8.0 + gtk_marshal_VOID__POINTER_POINTER_POINTER@Base 2.8.0 + gtk_marshal_VOID__POINTER_POINTER_UINT_UINT@Base 2.8.0 + gtk_marshal_VOID__POINTER_STRING_STRING@Base 2.8.0 + gtk_marshal_VOID__POINTER_UINT@Base 2.8.0 + gtk_marshal_VOID__POINTER_UINT_ENUM@Base 2.8.0 + gtk_marshal_VOID__POINTER_UINT_UINT@Base 2.8.0 + gtk_marshal_VOID__STRING_INT_POINTER@Base 2.8.0 + gtk_marshal_VOID__UINT_POINTER_UINT_ENUM_ENUM_POINTER@Base 2.8.0 + gtk_marshal_VOID__UINT_POINTER_UINT_UINT_ENUM@Base 2.8.0 + gtk_marshal_VOID__UINT_STRING@Base 2.8.0 + gtk_match_type_get_type@Base 2.8.0 + gtk_menu_attach@Base 2.8.0 + gtk_menu_attach_to_widget@Base 2.8.0 + gtk_menu_bar_get_child_pack_direction@Base 2.8.0 + gtk_menu_bar_get_pack_direction@Base 2.8.0 + gtk_menu_bar_get_type@Base 2.8.0 + gtk_menu_bar_new@Base 2.8.0 + gtk_menu_bar_set_child_pack_direction@Base 2.8.0 + gtk_menu_bar_set_pack_direction@Base 2.8.0 + gtk_menu_detach@Base 2.8.0 + gtk_menu_direction_type_get_type@Base 2.8.0 + gtk_menu_get_accel_group@Base 2.8.0 + gtk_menu_get_accel_path@Base 2.14.0 + gtk_menu_get_active@Base 2.8.0 + gtk_menu_get_attach_widget@Base 2.8.0 + gtk_menu_get_for_attach_widget@Base 2.8.0 + gtk_menu_get_monitor@Base 2.14.0 + gtk_menu_get_reserve_toggle_size@Base 2.18.0 + gtk_menu_get_tearoff_state@Base 2.8.0 + gtk_menu_get_title@Base 2.8.0 + gtk_menu_get_type@Base 2.8.0 + gtk_menu_item_activate@Base 2.8.0 + gtk_menu_item_deselect@Base 2.8.0 + gtk_menu_item_get_accel_path@Base 2.14.0 + gtk_menu_item_get_label@Base 2.16.0 + gtk_menu_item_get_right_justified@Base 2.8.0 + gtk_menu_item_get_submenu@Base 2.8.0 + gtk_menu_item_get_type@Base 2.8.0 + gtk_menu_item_get_use_underline@Base 2.16.0 + gtk_menu_item_new@Base 2.8.0 + gtk_menu_item_new_with_label@Base 2.8.0 + gtk_menu_item_new_with_mnemonic@Base 2.8.0 + gtk_menu_item_remove_submenu@Base 2.8.0 + gtk_menu_item_select@Base 2.8.0 + gtk_menu_item_set_accel_path@Base 2.8.0 + gtk_menu_item_set_label@Base 2.16.0 + gtk_menu_item_set_right_justified@Base 2.8.0 + gtk_menu_item_set_submenu@Base 2.8.0 + gtk_menu_item_set_use_underline@Base 2.16.0 + gtk_menu_item_toggle_size_allocate@Base 2.8.0 + gtk_menu_item_toggle_size_request@Base 2.8.0 + gtk_menu_new@Base 2.8.0 + gtk_menu_popdown@Base 2.8.0 + gtk_menu_popup@Base 2.8.0 + gtk_menu_reorder_child@Base 2.8.0 + gtk_menu_reposition@Base 2.8.0 + gtk_menu_set_accel_group@Base 2.8.0 + gtk_menu_set_accel_path@Base 2.8.0 + gtk_menu_set_active@Base 2.8.0 + gtk_menu_set_monitor@Base 2.8.0 + gtk_menu_set_reserve_toggle_size@Base 2.18.0 + gtk_menu_set_screen@Base 2.8.0 + gtk_menu_set_tearoff_state@Base 2.8.0 + gtk_menu_set_title@Base 2.8.0 + gtk_menu_shell_activate_item@Base 2.8.0 + gtk_menu_shell_append@Base 2.8.0 + gtk_menu_shell_cancel@Base 2.8.0 + gtk_menu_shell_deactivate@Base 2.8.0 + gtk_menu_shell_deselect@Base 2.8.0 + gtk_menu_shell_get_take_focus@Base 2.8.0 + gtk_menu_shell_get_type@Base 2.8.0 + gtk_menu_shell_insert@Base 2.8.0 + gtk_menu_shell_prepend@Base 2.8.0 + gtk_menu_shell_select_first@Base 2.8.0 + gtk_menu_shell_select_item@Base 2.8.0 + gtk_menu_shell_set_take_focus@Base 2.8.0 + gtk_menu_tool_button_get_menu@Base 2.8.0 + gtk_menu_tool_button_get_type@Base 2.8.0 + gtk_menu_tool_button_new@Base 2.8.0 + gtk_menu_tool_button_new_from_stock@Base 2.8.0 + gtk_menu_tool_button_set_arrow_tooltip@Base 2.8.0 + gtk_menu_tool_button_set_arrow_tooltip_markup@Base 2.12.0 + gtk_menu_tool_button_set_arrow_tooltip_text@Base 2.12.0 + gtk_menu_tool_button_set_menu@Base 2.8.0 + gtk_message_dialog_format_secondary_markup@Base 2.8.0 + gtk_message_dialog_format_secondary_text@Base 2.8.0 + gtk_message_dialog_get_image@Base 2.14.0 + gtk_message_dialog_get_message_area@Base 2.21.8 + gtk_message_dialog_get_type@Base 2.8.0 + gtk_message_dialog_new@Base 2.8.0 + gtk_message_dialog_new_with_markup@Base 2.8.0 + gtk_message_dialog_set_image@Base 2.10.0 + gtk_message_dialog_set_markup@Base 2.8.0 + gtk_message_type_get_type@Base 2.8.0 + gtk_metric_type_get_type@Base 2.8.0 + gtk_micro_version@Base 2.8.0 + gtk_minor_version@Base 2.8.0 + gtk_misc_get_alignment@Base 2.8.0 + gtk_misc_get_padding@Base 2.8.0 + gtk_misc_get_type@Base 2.8.0 + gtk_misc_set_alignment@Base 2.8.0 + gtk_misc_set_padding@Base 2.8.0 + gtk_mount_operation_get_parent@Base 2.14.0 + gtk_mount_operation_get_screen@Base 2.14.0 + gtk_mount_operation_get_type@Base 2.14.0 + gtk_mount_operation_is_showing@Base 2.14.0 + gtk_mount_operation_new@Base 2.14.0 + gtk_mount_operation_set_parent@Base 2.14.0 + gtk_mount_operation_set_screen@Base 2.14.0 + gtk_movement_step_get_type@Base 2.8.0 + gtk_notebook_append_page@Base 2.8.0 + gtk_notebook_append_page_menu@Base 2.8.0 + gtk_notebook_get_action_widget@Base 2.20.0 + gtk_notebook_get_current_page@Base 2.8.0 + gtk_notebook_get_group@Base 2.12.0 + gtk_notebook_get_group_id@Base 2.10.0 + gtk_notebook_get_menu_label@Base 2.8.0 + gtk_notebook_get_menu_label_text@Base 2.8.0 + gtk_notebook_get_n_pages@Base 2.8.0 + gtk_notebook_get_nth_page@Base 2.8.0 + gtk_notebook_get_scrollable@Base 2.8.0 + gtk_notebook_get_show_border@Base 2.8.0 + gtk_notebook_get_show_tabs@Base 2.8.0 + gtk_notebook_get_tab_detachable@Base 2.10.0 + gtk_notebook_get_tab_hborder@Base 2.21.8 + gtk_notebook_get_tab_vborder@Base 2.21.8 + gtk_notebook_get_tab_label@Base 2.8.0 + gtk_notebook_get_tab_label_text@Base 2.8.0 + gtk_notebook_get_tab_pos@Base 2.8.0 + gtk_notebook_get_tab_reorderable@Base 2.10.0 + gtk_notebook_get_type@Base 2.8.0 + gtk_notebook_insert_page@Base 2.8.0 + gtk_notebook_insert_page_menu@Base 2.8.0 + gtk_notebook_new@Base 2.8.0 + gtk_notebook_next_page@Base 2.8.0 + gtk_notebook_page_num@Base 2.8.0 + gtk_notebook_popup_disable@Base 2.8.0 + gtk_notebook_popup_enable@Base 2.8.0 + gtk_notebook_prepend_page@Base 2.8.0 + gtk_notebook_prepend_page_menu@Base 2.8.0 + gtk_notebook_prev_page@Base 2.8.0 + gtk_notebook_query_tab_label_packing@Base 2.8.0 + gtk_notebook_remove_page@Base 2.8.0 + gtk_notebook_reorder_child@Base 2.8.0 + gtk_notebook_set_action_widget@Base 2.20.0 + gtk_notebook_set_current_page@Base 2.8.0 + gtk_notebook_set_group@Base 2.12.0 + gtk_notebook_set_group_id@Base 2.10.0 + gtk_notebook_set_homogeneous_tabs@Base 2.8.0 + gtk_notebook_set_menu_label@Base 2.8.0 + gtk_notebook_set_menu_label_text@Base 2.8.0 + gtk_notebook_set_scrollable@Base 2.8.0 + gtk_notebook_set_show_border@Base 2.8.0 + gtk_notebook_set_show_tabs@Base 2.8.0 + gtk_notebook_set_tab_border@Base 2.8.0 + gtk_notebook_set_tab_detachable@Base 2.10.0 + gtk_notebook_set_tab_hborder@Base 2.8.0 + gtk_notebook_set_tab_label@Base 2.8.0 + gtk_notebook_set_tab_label_packing@Base 2.8.0 + gtk_notebook_set_tab_label_text@Base 2.8.0 + gtk_notebook_set_tab_pos@Base 2.8.0 + gtk_notebook_set_tab_reorderable@Base 2.10.0 + gtk_notebook_set_tab_vborder@Base 2.8.0 + gtk_notebook_set_window_creation_hook@Base 2.10.0 + gtk_notebook_tab_get_type@Base 2.8.0 + gtk_number_up_layout_get_type@Base 2.14.0 + gtk_object_add_arg_type@Base 2.8.0 + gtk_object_destroy@Base 2.8.0 + gtk_object_flags_get_type@Base 2.8.0 + gtk_object_get@Base 2.8.0 + gtk_object_get_data@Base 2.8.0 + gtk_object_get_data_by_id@Base 2.8.0 + gtk_object_get_type@Base 2.8.0 + gtk_object_get_user_data@Base 2.8.0 + gtk_object_new@Base 2.8.0 + gtk_object_ref@Base 2.8.0 + gtk_object_remove_data@Base 2.8.0 + gtk_object_remove_data_by_id@Base 2.8.0 + gtk_object_remove_no_notify@Base 2.8.0 + gtk_object_remove_no_notify_by_id@Base 2.8.0 + gtk_object_set@Base 2.8.0 + gtk_object_set_data@Base 2.8.0 + gtk_object_set_data_by_id@Base 2.8.0 + gtk_object_set_data_by_id_full@Base 2.8.0 + gtk_object_set_data_full@Base 2.8.0 + gtk_object_set_user_data@Base 2.8.0 + gtk_object_sink@Base 2.8.0 + gtk_object_unref@Base 2.8.0 + gtk_object_weakref@Base 2.8.0 + gtk_object_weakunref@Base 2.8.0 + gtk_offscreen_window_get_pixbuf@Base 2.20.0 + gtk_offscreen_window_get_pixmap@Base 2.20.0 + gtk_offscreen_window_get_type@Base 2.20.0 + gtk_offscreen_window_new@Base 2.20.0 + gtk_old_editable_changed@Base 2.8.0 + gtk_old_editable_claim_selection@Base 2.8.0 + gtk_old_editable_get_type@Base 2.8.0 + gtk_option_menu_get_history@Base 2.8.0 + gtk_option_menu_get_menu@Base 2.8.0 + gtk_option_menu_get_type@Base 2.8.0 + gtk_option_menu_new@Base 2.8.0 + gtk_option_menu_remove_menu@Base 2.8.0 + gtk_option_menu_set_history@Base 2.8.0 + gtk_option_menu_set_menu@Base 2.8.0 + gtk_orientable_get_orientation@Base 2.16.0 + gtk_orientable_get_type@Base 2.16.0 + gtk_orientable_set_orientation@Base 2.16.0 + gtk_orientation_get_type@Base 2.8.0 + gtk_pack_direction_get_type@Base 2.8.0 + gtk_pack_type_get_type@Base 2.8.0 + gtk_page_orientation_get_type@Base 2.10.0 + gtk_page_set_get_type@Base 2.10.0 + gtk_page_setup_copy@Base 2.10.0 + gtk_page_setup_get_bottom_margin@Base 2.10.0 + gtk_page_setup_get_left_margin@Base 2.10.0 + gtk_page_setup_get_orientation@Base 2.10.0 + gtk_page_setup_get_page_height@Base 2.10.0 + gtk_page_setup_get_page_width@Base 2.10.0 + gtk_page_setup_get_paper_height@Base 2.10.0 + gtk_page_setup_get_paper_size@Base 2.10.0 + gtk_page_setup_get_paper_width@Base 2.10.0 + gtk_page_setup_get_right_margin@Base 2.10.0 + gtk_page_setup_get_top_margin@Base 2.10.0 + gtk_page_setup_get_type@Base 2.10.0 + gtk_page_setup_load_file@Base 2.14.0 + gtk_page_setup_load_key_file@Base 2.14.0 + gtk_page_setup_new@Base 2.10.0 + gtk_page_setup_new_from_file@Base 2.12.0 + gtk_page_setup_new_from_key_file@Base 2.12.0 + gtk_page_setup_set_bottom_margin@Base 2.10.0 + gtk_page_setup_set_left_margin@Base 2.10.0 + gtk_page_setup_set_orientation@Base 2.10.0 + gtk_page_setup_set_paper_size@Base 2.10.0 + gtk_page_setup_set_paper_size_and_default_margins@Base 2.10.0 + gtk_page_setup_set_right_margin@Base 2.10.0 + gtk_page_setup_set_top_margin@Base 2.10.0 + gtk_page_setup_to_file@Base 2.12.0 + gtk_page_setup_to_key_file@Base 2.12.0 + gtk_page_setup_unix_dialog_get_page_setup@Base 2.10.0 + gtk_page_setup_unix_dialog_get_print_settings@Base 2.10.0 + gtk_page_setup_unix_dialog_get_type@Base 2.10.0 + gtk_page_setup_unix_dialog_new@Base 2.10.0 + gtk_page_setup_unix_dialog_set_page_setup@Base 2.10.0 + gtk_page_setup_unix_dialog_set_print_settings@Base 2.10.0 + gtk_paint_arrow@Base 2.8.0 + gtk_paint_box@Base 2.8.0 + gtk_paint_box_gap@Base 2.8.0 + gtk_paint_check@Base 2.8.0 + gtk_paint_diamond@Base 2.8.0 + gtk_paint_expander@Base 2.8.0 + gtk_paint_extension@Base 2.8.0 + gtk_paint_flat_box@Base 2.8.0 + gtk_paint_focus@Base 2.8.0 + gtk_paint_handle@Base 2.8.0 + gtk_paint_hline@Base 2.8.0 + gtk_paint_layout@Base 2.8.0 + gtk_paint_option@Base 2.8.0 + gtk_paint_polygon@Base 2.8.0 + gtk_paint_resize_grip@Base 2.8.0 + gtk_paint_shadow@Base 2.8.0 + gtk_paint_shadow_gap@Base 2.8.0 + gtk_paint_slider@Base 2.8.0 + gtk_paint_spinner@Base 2.20.0 + gtk_paint_string@Base 2.8.0 + gtk_paint_tab@Base 2.8.0 + gtk_paint_vline@Base 2.8.0 + gtk_paned_add1@Base 2.8.0 + gtk_paned_add2@Base 2.8.0 + gtk_paned_compute_position@Base 2.8.0 + gtk_paned_get_child1@Base 2.8.0 + gtk_paned_get_child2@Base 2.8.0 + gtk_paned_get_handle_window@Base 2.20.0 + gtk_paned_get_position@Base 2.8.0 + gtk_paned_get_type@Base 2.8.0 + gtk_paned_pack1@Base 2.8.0 + gtk_paned_pack2@Base 2.8.0 + gtk_paned_set_position@Base 2.8.0 + gtk_paper_size_copy@Base 2.10.0 + gtk_paper_size_free@Base 2.10.0 + gtk_paper_size_get_default@Base 2.10.0 + gtk_paper_size_get_default_bottom_margin@Base 2.10.0 + gtk_paper_size_get_default_left_margin@Base 2.10.0 + gtk_paper_size_get_default_right_margin@Base 2.10.0 + gtk_paper_size_get_default_top_margin@Base 2.10.0 + gtk_paper_size_get_display_name@Base 2.10.0 + gtk_paper_size_get_height@Base 2.10.0 + gtk_paper_size_get_name@Base 2.10.0 + gtk_paper_size_get_paper_sizes@Base 2.12.0 + gtk_paper_size_get_ppd_name@Base 2.10.0 + gtk_paper_size_get_type@Base 2.10.0 + gtk_paper_size_get_width@Base 2.10.0 + gtk_paper_size_is_custom@Base 2.10.0 + gtk_paper_size_is_equal@Base 2.10.0 + gtk_paper_size_new@Base 2.10.0 + gtk_paper_size_new_custom@Base 2.10.0 + gtk_paper_size_new_from_key_file@Base 2.12.0 + gtk_paper_size_new_from_ppd@Base 2.10.0 + gtk_paper_size_set_size@Base 2.10.0 + gtk_paper_size_to_key_file@Base 2.12.0 + gtk_parse_args@Base 2.8.0 + gtk_path_bar_get_type@Base 2.8.0 + gtk_path_priority_type_get_type@Base 2.8.0 + gtk_path_type_get_type@Base 2.8.0 + gtk_pixmap_get@Base 2.8.0 + gtk_pixmap_get_type@Base 2.8.0 + gtk_pixmap_new@Base 2.8.0 + gtk_pixmap_set@Base 2.8.0 + gtk_pixmap_set_build_insensitive@Base 2.8.0 + gtk_plug_construct@Base 2.8.0 + gtk_plug_construct_for_display@Base 2.8.0 + gtk_plug_get_embedded@Base 2.14.0 + gtk_plug_get_id@Base 2.8.0 + gtk_plug_get_socket_window@Base 2.14.0 + gtk_plug_get_type@Base 2.8.0 + gtk_plug_new@Base 2.8.0 + gtk_plug_new_for_display@Base 2.8.0 + gtk_policy_type_get_type@Base 2.8.0 + gtk_position_type_get_type@Base 2.8.0 + gtk_preview_draw_row@Base 2.8.0 + gtk_preview_get_cmap@Base 2.8.0 + gtk_preview_get_info@Base 2.8.0 + gtk_preview_get_type@Base 2.8.0 + gtk_preview_get_visual@Base 2.8.0 + gtk_preview_new@Base 2.8.0 + gtk_preview_put@Base 2.8.0 + gtk_preview_reset@Base 2.8.0 + gtk_preview_set_color_cube@Base 2.8.0 + gtk_preview_set_dither@Base 2.8.0 + gtk_preview_set_expand@Base 2.8.0 + gtk_preview_set_gamma@Base 2.8.0 + gtk_preview_set_install_cmap@Base 2.8.0 + gtk_preview_set_reserved@Base 2.8.0 + gtk_preview_size@Base 2.8.0 + gtk_preview_type_get_type@Base 2.8.0 + gtk_preview_uninit@Base 2.8.0 + gtk_print_backend_add_printer@Base 2.10.0 + gtk_print_backend_destroy@Base 2.10.0 + gtk_print_backend_error_quark@Base 2.10.0 + gtk_print_backend_find_printer@Base 2.10.0 + gtk_print_backend_get_printer_list@Base 2.10.0 + gtk_print_backend_get_type@Base 2.10.0 + gtk_print_backend_load_modules@Base 2.10.0 + gtk_print_backend_print_stream@Base 2.10.0 + gtk_print_backend_printer_list_is_done@Base 2.10.0 + gtk_print_backend_remove_printer@Base 2.10.0 + gtk_print_backend_set_list_done@Base 2.10.0 + gtk_print_backend_set_password@Base 2.18.0 + gtk_print_capabilities_get_type@Base 2.10.0 + gtk_print_context_create_pango_context@Base 2.10.0 + gtk_print_context_create_pango_layout@Base 2.10.0 + gtk_print_context_get_cairo_context@Base 2.10.0 + gtk_print_context_get_dpi_x@Base 2.10.0 + gtk_print_context_get_dpi_y@Base 2.10.0 + gtk_print_context_get_hard_margins@Base 2.20.0 + gtk_print_context_get_height@Base 2.10.0 + gtk_print_context_get_page_setup@Base 2.10.0 + gtk_print_context_get_pango_fontmap@Base 2.10.0 + gtk_print_context_get_type@Base 2.10.0 + gtk_print_context_get_width@Base 2.10.0 + gtk_print_context_set_cairo_context@Base 2.10.0 + gtk_print_duplex_get_type@Base 2.10.0 + gtk_print_error_get_type@Base 2.10.0 + gtk_print_error_quark@Base 2.10.0 + gtk_print_job_get_printer@Base 2.10.0 + gtk_print_job_get_settings@Base 2.10.0 + gtk_print_job_get_status@Base 2.10.0 + gtk_print_job_get_surface@Base 2.10.0 + gtk_print_job_get_title@Base 2.10.0 + gtk_print_job_get_track_print_status@Base 2.10.0 + gtk_print_job_get_type@Base 2.10.0 + gtk_print_job_new@Base 2.10.0 + gtk_print_job_send@Base 2.10.0 + gtk_print_job_set_source_file@Base 2.10.0 + gtk_print_job_set_status@Base 2.10.0 + gtk_print_job_set_track_print_status@Base 2.10.0 + gtk_print_operation_action_get_type@Base 2.10.0 + gtk_print_operation_cancel@Base 2.10.0 + gtk_print_operation_draw_page_finish@Base 2.16.0 + gtk_print_operation_get_default_page_setup@Base 2.10.0 + gtk_print_operation_get_embed_page_setup@Base 2.18.0 + gtk_print_operation_get_error@Base 2.10.0 + gtk_print_operation_get_has_selection@Base 2.18.0 + gtk_print_operation_get_n_pages_to_print@Base 2.18.0 + gtk_print_operation_get_print_settings@Base 2.10.0 + gtk_print_operation_get_status@Base 2.10.0 + gtk_print_operation_get_status_string@Base 2.10.0 + gtk_print_operation_get_support_selection@Base 2.18.0 + gtk_print_operation_get_type@Base 2.10.0 + gtk_print_operation_is_finished@Base 2.10.0 + gtk_print_operation_new@Base 2.10.0 + gtk_print_operation_preview_end_preview@Base 2.10.0 + gtk_print_operation_preview_get_type@Base 2.10.0 + gtk_print_operation_preview_is_selected@Base 2.10.0 + gtk_print_operation_preview_render_page@Base 2.10.0 + gtk_print_operation_result_get_type@Base 2.10.0 + gtk_print_operation_run@Base 2.10.0 + gtk_print_operation_set_allow_async@Base 2.10.0 + gtk_print_operation_set_current_page@Base 2.10.0 + gtk_print_operation_set_custom_tab_label@Base 2.10.0 + gtk_print_operation_set_default_page_setup@Base 2.10.0 + gtk_print_operation_set_defer_drawing@Base 2.16.0 + gtk_print_operation_set_embed_page_setup@Base 2.18.0 + gtk_print_operation_set_export_filename@Base 2.10.0 + gtk_print_operation_set_has_selection@Base 2.18.0 + gtk_print_operation_set_job_name@Base 2.10.0 + gtk_print_operation_set_n_pages@Base 2.10.0 + gtk_print_operation_set_print_settings@Base 2.10.0 + gtk_print_operation_set_show_progress@Base 2.10.0 + gtk_print_operation_set_support_selection@Base 2.18.0 + gtk_print_operation_set_track_print_status@Base 2.10.0 + gtk_print_operation_set_unit@Base 2.10.0 + gtk_print_operation_set_use_full_page@Base 2.10.0 + gtk_print_pages_get_type@Base 2.10.0 + gtk_print_quality_get_type@Base 2.10.0 + gtk_print_run_page_setup_dialog@Base 2.10.0 + gtk_print_run_page_setup_dialog_async@Base 2.10.0 + gtk_print_settings_copy@Base 2.10.0 + gtk_print_settings_foreach@Base 2.10.0 + gtk_print_settings_get@Base 2.10.0 + gtk_print_settings_get_bool@Base 2.10.0 + gtk_print_settings_get_collate@Base 2.10.0 + gtk_print_settings_get_default_source@Base 2.10.0 + gtk_print_settings_get_dither@Base 2.10.0 + gtk_print_settings_get_double@Base 2.10.0 + gtk_print_settings_get_double_with_default@Base 2.10.0 + gtk_print_settings_get_duplex@Base 2.10.0 + gtk_print_settings_get_finishings@Base 2.10.0 + gtk_print_settings_get_int@Base 2.10.0 + gtk_print_settings_get_int_with_default@Base 2.10.0 + gtk_print_settings_get_length@Base 2.10.0 + gtk_print_settings_get_media_type@Base 2.10.0 + gtk_print_settings_get_n_copies@Base 2.10.0 + gtk_print_settings_get_number_up@Base 2.10.0 + gtk_print_settings_get_number_up_layout@Base 2.14.0 + gtk_print_settings_get_orientation@Base 2.10.0 + gtk_print_settings_get_output_bin@Base 2.10.0 + gtk_print_settings_get_page_ranges@Base 2.10.0 + gtk_print_settings_get_page_set@Base 2.10.0 + gtk_print_settings_get_paper_height@Base 2.10.0 + gtk_print_settings_get_paper_size@Base 2.10.0 + gtk_print_settings_get_paper_width@Base 2.10.0 + gtk_print_settings_get_print_pages@Base 2.10.0 + gtk_print_settings_get_printer@Base 2.10.0 + gtk_print_settings_get_printer_lpi@Base 2.16.0 + gtk_print_settings_get_quality@Base 2.10.0 + gtk_print_settings_get_resolution@Base 2.10.0 + gtk_print_settings_get_resolution_x@Base 2.16.0 + gtk_print_settings_get_resolution_y@Base 2.16.0 + gtk_print_settings_get_reverse@Base 2.10.0 + gtk_print_settings_get_scale@Base 2.10.0 + gtk_print_settings_get_type@Base 2.10.0 + gtk_print_settings_get_use_color@Base 2.10.0 + gtk_print_settings_has_key@Base 2.10.0 + gtk_print_settings_load_file@Base 2.14.0 + gtk_print_settings_load_key_file@Base 2.14.0 + gtk_print_settings_new@Base 2.10.0 + gtk_print_settings_new_from_file@Base 2.12.0 + gtk_print_settings_new_from_key_file@Base 2.12.0 + gtk_print_settings_set@Base 2.10.0 + gtk_print_settings_set_bool@Base 2.10.0 + gtk_print_settings_set_collate@Base 2.10.0 + gtk_print_settings_set_default_source@Base 2.10.0 + gtk_print_settings_set_dither@Base 2.10.0 + gtk_print_settings_set_double@Base 2.10.0 + gtk_print_settings_set_duplex@Base 2.10.0 + gtk_print_settings_set_finishings@Base 2.10.0 + gtk_print_settings_set_int@Base 2.10.0 + gtk_print_settings_set_length@Base 2.10.0 + gtk_print_settings_set_media_type@Base 2.10.0 + gtk_print_settings_set_n_copies@Base 2.10.0 + gtk_print_settings_set_number_up@Base 2.10.0 + gtk_print_settings_set_number_up_layout@Base 2.14.0 + gtk_print_settings_set_orientation@Base 2.10.0 + gtk_print_settings_set_output_bin@Base 2.10.0 + gtk_print_settings_set_page_ranges@Base 2.10.0 + gtk_print_settings_set_page_set@Base 2.10.0 + gtk_print_settings_set_paper_height@Base 2.10.0 + gtk_print_settings_set_paper_size@Base 2.10.0 + gtk_print_settings_set_paper_width@Base 2.10.0 + gtk_print_settings_set_print_pages@Base 2.10.0 + gtk_print_settings_set_printer@Base 2.10.0 + gtk_print_settings_set_printer_lpi@Base 2.16.0 + gtk_print_settings_set_quality@Base 2.10.0 + gtk_print_settings_set_resolution@Base 2.10.0 + gtk_print_settings_set_resolution_xy@Base 2.16.0 + gtk_print_settings_set_reverse@Base 2.10.0 + gtk_print_settings_set_scale@Base 2.10.0 + gtk_print_settings_set_use_color@Base 2.10.0 + gtk_print_settings_to_file@Base 2.12.0 + gtk_print_settings_to_key_file@Base 2.12.0 + gtk_print_settings_unset@Base 2.10.0 + gtk_print_status_get_type@Base 2.10.0 + gtk_print_unix_dialog_add_custom_tab@Base 2.10.0 + gtk_print_unix_dialog_get_current_page@Base 2.10.0 + gtk_print_unix_dialog_get_embed_page_setup@Base 2.18.0 + gtk_print_unix_dialog_get_has_selection@Base 2.18.0 + gtk_print_unix_dialog_get_manual_capabilities@Base 2.18.0 + gtk_print_unix_dialog_get_page_setup@Base 2.10.0 + gtk_print_unix_dialog_get_page_setup_set@Base 2.18.0 + gtk_print_unix_dialog_get_selected_printer@Base 2.10.0 + gtk_print_unix_dialog_get_settings@Base 2.10.0 + gtk_print_unix_dialog_get_support_selection@Base 2.18.0 + gtk_print_unix_dialog_get_type@Base 2.10.0 + gtk_print_unix_dialog_new@Base 2.10.0 + gtk_print_unix_dialog_set_current_page@Base 2.10.0 + gtk_print_unix_dialog_set_embed_page_setup@Base 2.18.0 + gtk_print_unix_dialog_set_has_selection@Base 2.18.0 + gtk_print_unix_dialog_set_manual_capabilities@Base 2.10.0 + gtk_print_unix_dialog_set_page_setup@Base 2.10.0 + gtk_print_unix_dialog_set_settings@Base 2.10.0 + gtk_print_unix_dialog_set_support_selection@Base 2.18.0 + gtk_printer_accepts_pdf@Base 2.10.0 + gtk_printer_accepts_ps@Base 2.10.0 + gtk_printer_compare@Base 2.10.0 + gtk_printer_get_backend@Base 2.10.0 + gtk_printer_get_capabilities@Base 2.12.0 + gtk_printer_get_default_page_size@Base 2.14.0 + gtk_printer_get_description@Base 2.10.0 + gtk_printer_get_hard_margins@Base 2.20.0 + gtk_printer_get_icon_name@Base 2.10.0 + gtk_printer_get_job_count@Base 2.10.0 + gtk_printer_get_location@Base 2.10.0 + gtk_printer_get_name@Base 2.10.0 + gtk_printer_get_state_message@Base 2.10.0 + gtk_printer_get_type@Base 2.10.0 + gtk_printer_has_details@Base 2.12.0 + gtk_printer_is_accepting_jobs@Base 2.14.0 + gtk_printer_is_active@Base 2.10.0 + gtk_printer_is_default@Base 2.10.0 + gtk_printer_is_new@Base 2.10.0 + gtk_printer_is_paused@Base 2.14.0 + gtk_printer_is_virtual@Base 2.10.0 + gtk_printer_list_papers@Base 2.12.0 + gtk_printer_new@Base 2.10.0 + gtk_printer_option_allocate_choices@Base 2.10.0 + gtk_printer_option_choices_from_array@Base 2.10.0 + gtk_printer_option_clear_has_conflict@Base 2.10.0 + gtk_printer_option_get_activates_default@Base 2.18.0 + gtk_printer_option_get_type@Base 2.10.0 + gtk_printer_option_has_choice@Base 2.10.0 + gtk_printer_option_new@Base 2.10.0 + gtk_printer_option_set@Base 2.10.0 + gtk_printer_option_set_activates_default@Base 2.18.0 + gtk_printer_option_set_add@Base 2.10.0 + gtk_printer_option_set_boolean@Base 2.10.0 + gtk_printer_option_set_clear_conflicts@Base 2.10.0 + gtk_printer_option_set_foreach@Base 2.10.0 + gtk_printer_option_set_foreach_in_group@Base 2.10.0 + gtk_printer_option_set_get_groups@Base 2.10.0 + gtk_printer_option_set_get_type@Base 2.10.0 + gtk_printer_option_set_has_conflict@Base 2.10.0 + gtk_printer_option_set_lookup@Base 2.10.0 + gtk_printer_option_set_new@Base 2.10.0 + gtk_printer_option_set_remove@Base 2.10.0 + gtk_printer_option_widget_get_external_label@Base 2.10.0 + gtk_printer_option_widget_get_type@Base 2.10.0 + gtk_printer_option_widget_get_value@Base 2.10.0 + gtk_printer_option_widget_has_external_label@Base 2.10.0 + gtk_printer_option_widget_new@Base 2.10.0 + gtk_printer_option_widget_set_source@Base 2.10.0 + gtk_printer_request_details@Base 2.12.0 + gtk_printer_set_description@Base 2.10.0 + gtk_printer_set_has_details@Base 2.10.0 + gtk_printer_set_icon_name@Base 2.10.0 + gtk_printer_set_is_accepting_jobs@Base 2.14.0 + gtk_printer_set_is_active@Base 2.10.0 + gtk_printer_set_is_default@Base 2.10.0 + gtk_printer_set_is_new@Base 2.10.0 + gtk_printer_set_is_paused@Base 2.14.0 + gtk_printer_set_job_count@Base 2.10.0 + gtk_printer_set_location@Base 2.10.0 + gtk_printer_set_state_message@Base 2.10.0 + gtk_private_flags_get_type@Base 2.8.0 + gtk_progress_bar_get_ellipsize@Base 2.8.0 + gtk_progress_bar_get_fraction@Base 2.8.0 + gtk_progress_bar_get_orientation@Base 2.8.0 + gtk_progress_bar_get_pulse_step@Base 2.8.0 + gtk_progress_bar_get_text@Base 2.8.0 + gtk_progress_bar_get_type@Base 2.8.0 + gtk_progress_bar_new@Base 2.8.0 + gtk_progress_bar_new_with_adjustment@Base 2.8.0 + gtk_progress_bar_orientation_get_type@Base 2.8.0 + gtk_progress_bar_pulse@Base 2.8.0 + gtk_progress_bar_set_activity_blocks@Base 2.8.0 + gtk_progress_bar_set_activity_step@Base 2.8.0 + gtk_progress_bar_set_bar_style@Base 2.8.0 + gtk_progress_bar_set_discrete_blocks@Base 2.8.0 + gtk_progress_bar_set_ellipsize@Base 2.8.0 + gtk_progress_bar_set_fraction@Base 2.8.0 + gtk_progress_bar_set_orientation@Base 2.8.0 + gtk_progress_bar_set_pulse_step@Base 2.8.0 + gtk_progress_bar_set_text@Base 2.8.0 + gtk_progress_bar_style_get_type@Base 2.8.0 + gtk_progress_bar_update@Base 2.8.0 + gtk_progress_configure@Base 2.8.0 + gtk_progress_get_current_percentage@Base 2.8.0 + gtk_progress_get_current_text@Base 2.8.0 + gtk_progress_get_percentage_from_value@Base 2.8.0 + gtk_progress_get_text_from_value@Base 2.8.0 + gtk_progress_get_type@Base 2.8.0 + gtk_progress_get_value@Base 2.8.0 + gtk_progress_set_activity_mode@Base 2.8.0 + gtk_progress_set_adjustment@Base 2.8.0 + gtk_progress_set_format_string@Base 2.8.0 + gtk_progress_set_percentage@Base 2.8.0 + gtk_progress_set_show_text@Base 2.8.0 + gtk_progress_set_text_alignment@Base 2.8.0 + gtk_progress_set_value@Base 2.8.0 + gtk_propagate_event@Base 2.8.0 + gtk_quit_add@Base 2.8.0 + gtk_quit_add_destroy@Base 2.8.0 + gtk_quit_add_full@Base 2.8.0 + gtk_quit_remove@Base 2.8.0 + gtk_quit_remove_by_data@Base 2.8.0 + gtk_radio_action_get_current_value@Base 2.8.0 + gtk_radio_action_get_group@Base 2.8.0 + gtk_radio_action_get_type@Base 2.8.0 + gtk_radio_action_new@Base 2.8.0 + gtk_radio_action_set_current_value@Base 2.10.0 + gtk_radio_action_set_group@Base 2.8.0 + gtk_radio_button_get_group@Base 2.8.0 + gtk_radio_button_get_type@Base 2.8.0 + gtk_radio_button_new@Base 2.8.0 + gtk_radio_button_new_from_widget@Base 2.8.0 + gtk_radio_button_new_with_label@Base 2.8.0 + gtk_radio_button_new_with_label_from_widget@Base 2.8.0 + gtk_radio_button_new_with_mnemonic@Base 2.8.0 + gtk_radio_button_new_with_mnemonic_from_widget@Base 2.8.0 + gtk_radio_button_set_group@Base 2.8.0 + gtk_radio_menu_item_get_group@Base 2.8.0 + gtk_radio_menu_item_get_type@Base 2.8.0 + gtk_radio_menu_item_new@Base 2.8.0 + gtk_radio_menu_item_new_from_widget@Base 2.8.0 + gtk_radio_menu_item_new_with_label@Base 2.8.0 + gtk_radio_menu_item_new_with_label_from_widget@Base 2.8.0 + gtk_radio_menu_item_new_with_mnemonic@Base 2.8.0 + gtk_radio_menu_item_new_with_mnemonic_from_widget@Base 2.8.0 + gtk_radio_menu_item_set_group@Base 2.8.0 + gtk_radio_tool_button_get_group@Base 2.8.0 + gtk_radio_tool_button_get_type@Base 2.8.0 + gtk_radio_tool_button_new@Base 2.8.0 + gtk_radio_tool_button_new_from_stock@Base 2.8.0 + gtk_radio_tool_button_new_from_widget@Base 2.8.0 + gtk_radio_tool_button_new_with_stock_from_widget@Base 2.8.0 + gtk_radio_tool_button_set_group@Base 2.8.0 + gtk_range_get_adjustment@Base 2.8.0 + gtk_range_get_fill_level@Base 2.12.0 + gtk_range_get_flippable@Base 2.18.0 + gtk_range_get_inverted@Base 2.8.0 + gtk_range_get_lower_stepper_sensitivity@Base 2.10.0 + gtk_range_get_min_slider_size@Base 2.20.0 + gtk_range_get_range_rect@Base 2.20.0 + gtk_range_get_restrict_to_fill_level@Base 2.12.0 + gtk_range_get_show_fill_level@Base 2.12.0 + gtk_range_get_slider_range@Base 2.20.0 + gtk_range_get_slider_size_fixed@Base 2.20.0 + gtk_range_get_type@Base 2.8.0 + gtk_range_get_update_policy@Base 2.8.0 + gtk_range_get_upper_stepper_sensitivity@Base 2.10.0 + gtk_range_get_value@Base 2.8.0 + gtk_range_set_adjustment@Base 2.8.0 + gtk_range_set_fill_level@Base 2.12.0 + gtk_range_set_flippable@Base 2.18.0 + gtk_range_set_increments@Base 2.8.0 + gtk_range_set_inverted@Base 2.8.0 + gtk_range_set_lower_stepper_sensitivity@Base 2.10.0 + gtk_range_set_min_slider_size@Base 2.20.0 + gtk_range_set_range@Base 2.8.0 + gtk_range_set_restrict_to_fill_level@Base 2.12.0 + gtk_range_set_show_fill_level@Base 2.12.0 + gtk_range_set_slider_size_fixed@Base 2.20.0 + gtk_range_set_update_policy@Base 2.8.0 + gtk_range_set_upper_stepper_sensitivity@Base 2.10.0 + gtk_range_set_value@Base 2.8.0 + gtk_rc_add_class_style@Base 2.8.0 + gtk_rc_add_default_file@Base 2.8.0 + gtk_rc_add_widget_class_style@Base 2.8.0 + gtk_rc_add_widget_name_style@Base 2.8.0 + gtk_rc_find_module_in_path@Base 2.8.0 + gtk_rc_find_pixmap_in_path@Base 2.8.0 + gtk_rc_flags_get_type@Base 2.8.0 + gtk_rc_get_default_files@Base 2.8.0 + gtk_rc_get_im_module_file@Base 2.8.0 + gtk_rc_get_im_module_path@Base 2.8.0 + gtk_rc_get_module_dir@Base 2.8.0 + gtk_rc_get_style@Base 2.8.0 + gtk_rc_get_style_by_paths@Base 2.8.0 + gtk_rc_get_theme_dir@Base 2.8.0 + gtk_rc_parse@Base 2.8.0 + gtk_rc_parse_color@Base 2.8.0 + gtk_rc_parse_color_full@Base 2.12.0 + gtk_rc_parse_priority@Base 2.8.0 + gtk_rc_parse_state@Base 2.8.0 + gtk_rc_parse_string@Base 2.8.0 + gtk_rc_property_parse_border@Base 2.8.0 + gtk_rc_property_parse_color@Base 2.8.0 + gtk_rc_property_parse_enum@Base 2.8.0 + gtk_rc_property_parse_flags@Base 2.8.0 + gtk_rc_property_parse_requisition@Base 2.8.0 + gtk_rc_reparse_all@Base 2.8.0 + gtk_rc_reparse_all_for_settings@Base 2.8.0 + gtk_rc_reset_styles@Base 2.8.0 + gtk_rc_scanner_new@Base 2.8.0 + gtk_rc_set_default_files@Base 2.8.0 + gtk_rc_style_copy@Base 2.8.0 + gtk_rc_style_get_type@Base 2.8.0 + gtk_rc_style_new@Base 2.8.0 + gtk_rc_style_ref@Base 2.8.0 + gtk_rc_style_unref@Base 2.8.0 + gtk_rc_token_type_get_type@Base 2.8.0 + gtk_recent_action_get_show_numbers@Base 2.12.0 + gtk_recent_action_get_type@Base 2.12.0 + gtk_recent_action_new@Base 2.12.0 + gtk_recent_action_new_for_manager@Base 2.12.0 + gtk_recent_action_set_show_numbers@Base 2.12.0 + gtk_recent_chooser_add_filter@Base 2.10.0 + gtk_recent_chooser_dialog_get_type@Base 2.10.0 + gtk_recent_chooser_dialog_new@Base 2.10.0 + gtk_recent_chooser_dialog_new_for_manager@Base 2.10.0 + gtk_recent_chooser_error_get_type@Base 2.10.0 + gtk_recent_chooser_error_quark@Base 2.10.0 + gtk_recent_chooser_get_current_item@Base 2.10.0 + gtk_recent_chooser_get_current_uri@Base 2.10.0 + gtk_recent_chooser_get_filter@Base 2.10.0 + gtk_recent_chooser_get_items@Base 2.10.0 + gtk_recent_chooser_get_limit@Base 2.10.0 + gtk_recent_chooser_get_local_only@Base 2.10.0 + gtk_recent_chooser_get_select_multiple@Base 2.10.0 + gtk_recent_chooser_get_show_icons@Base 2.10.0 + gtk_recent_chooser_get_show_not_found@Base 2.10.0 + gtk_recent_chooser_get_show_numbers@Base 2.10.0 + gtk_recent_chooser_get_show_private@Base 2.10.0 + gtk_recent_chooser_get_show_tips@Base 2.10.0 + gtk_recent_chooser_get_sort_type@Base 2.10.0 + gtk_recent_chooser_get_type@Base 2.10.0 + gtk_recent_chooser_get_uris@Base 2.10.0 + gtk_recent_chooser_list_filters@Base 2.10.0 + gtk_recent_chooser_menu_get_show_numbers@Base 2.10.0 + gtk_recent_chooser_menu_get_type@Base 2.10.0 + gtk_recent_chooser_menu_new@Base 2.10.0 + gtk_recent_chooser_menu_new_for_manager@Base 2.10.0 + gtk_recent_chooser_menu_set_show_numbers@Base 2.10.0 + gtk_recent_chooser_remove_filter@Base 2.10.0 + gtk_recent_chooser_select_all@Base 2.10.0 + gtk_recent_chooser_select_uri@Base 2.10.0 + gtk_recent_chooser_set_current_uri@Base 2.10.0 + gtk_recent_chooser_set_filter@Base 2.10.0 + gtk_recent_chooser_set_limit@Base 2.10.0 + gtk_recent_chooser_set_local_only@Base 2.10.0 + gtk_recent_chooser_set_select_multiple@Base 2.10.0 + gtk_recent_chooser_set_show_icons@Base 2.10.0 + gtk_recent_chooser_set_show_not_found@Base 2.10.0 + gtk_recent_chooser_set_show_numbers@Base 2.10.0 + gtk_recent_chooser_set_show_private@Base 2.10.0 + gtk_recent_chooser_set_show_tips@Base 2.10.0 + gtk_recent_chooser_set_sort_func@Base 2.10.0 + gtk_recent_chooser_set_sort_type@Base 2.10.0 + gtk_recent_chooser_unselect_all@Base 2.10.0 + gtk_recent_chooser_unselect_uri@Base 2.10.0 + gtk_recent_chooser_widget_get_type@Base 2.10.0 + gtk_recent_chooser_widget_new@Base 2.10.0 + gtk_recent_chooser_widget_new_for_manager@Base 2.10.0 + gtk_recent_filter_add_age@Base 2.10.0 + gtk_recent_filter_add_application@Base 2.10.0 + gtk_recent_filter_add_custom@Base 2.10.0 + gtk_recent_filter_add_group@Base 2.10.0 + gtk_recent_filter_add_mime_type@Base 2.10.0 + gtk_recent_filter_add_pattern@Base 2.10.0 + gtk_recent_filter_add_pixbuf_formats@Base 2.10.0 + gtk_recent_filter_filter@Base 2.10.0 + gtk_recent_filter_flags_get_type@Base 2.10.0 + gtk_recent_filter_get_name@Base 2.10.0 + gtk_recent_filter_get_needed@Base 2.10.0 + gtk_recent_filter_get_type@Base 2.10.0 + gtk_recent_filter_new@Base 2.10.0 + gtk_recent_filter_set_name@Base 2.10.0 + gtk_recent_info_exists@Base 2.10.0 + gtk_recent_info_get_added@Base 2.10.0 + gtk_recent_info_get_age@Base 2.10.0 + gtk_recent_info_get_application_info@Base 2.10.0 + gtk_recent_info_get_applications@Base 2.10.0 + gtk_recent_info_get_description@Base 2.10.0 + gtk_recent_info_get_display_name@Base 2.10.0 + gtk_recent_info_get_groups@Base 2.10.0 + gtk_recent_info_get_icon@Base 2.10.0 + gtk_recent_info_get_mime_type@Base 2.10.0 + gtk_recent_info_get_modified@Base 2.10.0 + gtk_recent_info_get_private_hint@Base 2.10.0 + gtk_recent_info_get_short_name@Base 2.10.0 + gtk_recent_info_get_type@Base 2.10.0 + gtk_recent_info_get_uri@Base 2.10.0 + gtk_recent_info_get_uri_display@Base 2.10.0 + gtk_recent_info_get_visited@Base 2.10.0 + gtk_recent_info_has_application@Base 2.10.0 + gtk_recent_info_has_group@Base 2.10.0 + gtk_recent_info_is_local@Base 2.10.0 + gtk_recent_info_last_application@Base 2.10.0 + gtk_recent_info_match@Base 2.10.0 + gtk_recent_info_ref@Base 2.10.0 + gtk_recent_info_unref@Base 2.10.0 + gtk_recent_manager_add_full@Base 2.10.0 + gtk_recent_manager_add_item@Base 2.10.0 + gtk_recent_manager_error_get_type@Base 2.10.0 + gtk_recent_manager_error_quark@Base 2.10.0 + gtk_recent_manager_get_default@Base 2.10.0 + gtk_recent_manager_get_for_screen@Base 2.10.0 + gtk_recent_manager_get_items@Base 2.10.0 + gtk_recent_manager_get_limit@Base 2.10.0 + gtk_recent_manager_get_type@Base 2.10.0 + gtk_recent_manager_has_item@Base 2.10.0 + gtk_recent_manager_lookup_item@Base 2.10.0 + gtk_recent_manager_move_item@Base 2.10.0 + gtk_recent_manager_new@Base 2.10.0 + gtk_recent_manager_purge_items@Base 2.10.0 + gtk_recent_manager_remove_item@Base 2.10.0 + gtk_recent_manager_set_limit@Base 2.10.0 + gtk_recent_manager_set_screen@Base 2.10.0 + gtk_recent_sort_type_get_type@Base 2.10.0 + gtk_relief_style_get_type@Base 2.8.0 + gtk_requisition_copy@Base 2.8.0 + gtk_requisition_free@Base 2.8.0 + gtk_requisition_get_type@Base 2.8.0 + gtk_resize_mode_get_type@Base 2.8.0 + gtk_response_type_get_type@Base 2.8.0 + gtk_rgb_to_hsv@Base 2.8.0 + gtk_ruler_draw_pos@Base 2.8.0 + gtk_ruler_draw_ticks@Base 2.8.0 + gtk_ruler_get_metric@Base 2.8.0 + gtk_ruler_get_range@Base 2.8.0 + gtk_ruler_get_type@Base 2.8.0 + gtk_ruler_set_metric@Base 2.8.0 + gtk_ruler_set_range@Base 2.8.0 + gtk_scale_add_mark@Base 2.16.0 + gtk_scale_button_get_adjustment@Base 2.12.0 + gtk_scale_button_get_minus_button@Base 2.14.0 + gtk_scale_button_get_orientation@Base 2.14.0 + gtk_scale_button_get_plus_button@Base 2.14.0 + gtk_scale_button_get_popup@Base 2.14.0 + gtk_scale_button_get_type@Base 2.12.0 + gtk_scale_button_get_value@Base 2.12.0 + gtk_scale_button_new@Base 2.12.0 + gtk_scale_button_set_adjustment@Base 2.12.0 + gtk_scale_button_set_icons@Base 2.12.0 + gtk_scale_button_set_orientation@Base 2.14.0 + gtk_scale_button_set_value@Base 2.12.0 + gtk_scale_clear_marks@Base 2.16.0 + gtk_scale_get_digits@Base 2.8.0 + gtk_scale_get_draw_value@Base 2.8.0 + gtk_scale_get_layout@Base 2.8.0 + gtk_scale_get_layout_offsets@Base 2.8.0 + gtk_scale_get_type@Base 2.8.0 + gtk_scale_get_value_pos@Base 2.8.0 + gtk_scale_set_digits@Base 2.8.0 + gtk_scale_set_draw_value@Base 2.8.0 + gtk_scale_set_value_pos@Base 2.8.0 + gtk_scroll_step_get_type@Base 2.8.0 + gtk_scroll_type_get_type@Base 2.8.0 + gtk_scrollbar_get_type@Base 2.8.0 + gtk_scrolled_window_add_with_viewport@Base 2.8.0 + gtk_scrolled_window_get_hadjustment@Base 2.8.0 + gtk_scrolled_window_get_hscrollbar@Base 2.8.0 + gtk_scrolled_window_get_placement@Base 2.8.0 + gtk_scrolled_window_get_policy@Base 2.8.0 + gtk_scrolled_window_get_shadow_type@Base 2.8.0 + gtk_scrolled_window_get_type@Base 2.8.0 + gtk_scrolled_window_get_vadjustment@Base 2.8.0 + gtk_scrolled_window_get_vscrollbar@Base 2.8.0 + gtk_scrolled_window_new@Base 2.8.0 + gtk_scrolled_window_set_hadjustment@Base 2.8.0 + gtk_scrolled_window_set_placement@Base 2.8.0 + gtk_scrolled_window_set_policy@Base 2.8.0 + gtk_scrolled_window_set_shadow_type@Base 2.8.0 + gtk_scrolled_window_set_vadjustment@Base 2.8.0 + gtk_scrolled_window_unset_placement@Base 2.10.0 + gtk_selection_add_target@Base 2.8.0 + gtk_selection_add_targets@Base 2.8.0 + gtk_selection_clear@Base 2.8.0 + gtk_selection_clear_targets@Base 2.8.0 + gtk_selection_convert@Base 2.8.0 + gtk_selection_data_copy@Base 2.8.0 + gtk_selection_data_free@Base 2.8.0 + gtk_selection_data_get_data@Base 2.14.0 + gtk_selection_data_get_data_type@Base 2.14.0 + gtk_selection_data_get_display@Base 2.14.0 + gtk_selection_data_get_format@Base 2.14.0 + gtk_selection_data_get_length@Base 2.14.0 + gtk_selection_data_get_pixbuf@Base 2.8.0 + gtk_selection_data_get_selection@Base 2.16.0 + gtk_selection_data_get_target@Base 2.14.0 + gtk_selection_data_get_targets@Base 2.8.0 + gtk_selection_data_get_text@Base 2.8.0 + gtk_selection_data_get_type@Base 2.8.0 + gtk_selection_data_get_uris@Base 2.8.0 + gtk_selection_data_set@Base 2.8.0 + gtk_selection_data_set_pixbuf@Base 2.8.0 + gtk_selection_data_set_text@Base 2.8.0 + gtk_selection_data_set_uris@Base 2.8.0 + gtk_selection_data_targets_include_image@Base 2.8.0 + gtk_selection_data_targets_include_rich_text@Base 2.10.0 + gtk_selection_data_targets_include_text@Base 2.8.0 + gtk_selection_data_targets_include_uri@Base 2.10.0 + gtk_selection_mode_get_type@Base 2.8.0 + gtk_selection_owner_set@Base 2.8.0 + gtk_selection_owner_set_for_display@Base 2.8.0 + gtk_selection_remove_all@Base 2.8.0 + gtk_sensitivity_type_get_type@Base 2.10.0 + gtk_separator_get_type@Base 2.8.0 + gtk_separator_menu_item_get_type@Base 2.8.0 + gtk_separator_menu_item_new@Base 2.8.0 + gtk_separator_tool_item_get_draw@Base 2.8.0 + gtk_separator_tool_item_get_type@Base 2.8.0 + gtk_separator_tool_item_new@Base 2.8.0 + gtk_separator_tool_item_set_draw@Base 2.8.0 + gtk_set_locale@Base 2.8.0 + gtk_settings_get_default@Base 2.8.0 + gtk_settings_get_for_screen@Base 2.8.0 + gtk_settings_get_type@Base 2.8.0 + gtk_settings_install_property@Base 2.8.0 + gtk_settings_install_property_parser@Base 2.8.0 + gtk_settings_set_double_property@Base 2.8.0 + gtk_settings_set_long_property@Base 2.8.0 + gtk_settings_set_property_value@Base 2.8.0 + gtk_settings_set_string_property@Base 2.8.0 + gtk_shadow_type_get_type@Base 2.8.0 + gtk_show_about_dialog@Base 2.8.0 + gtk_show_uri@Base 2.14.0 + gtk_side_type_get_type@Base 2.8.0 + gtk_signal_compat_matched@Base 2.8.0 + gtk_signal_connect_full@Base 2.8.0 + gtk_signal_connect_object_while_alive@Base 2.8.0 + gtk_signal_connect_while_alive@Base 2.8.0 + gtk_signal_emit@Base 2.8.0 + gtk_signal_emit_by_name@Base 2.8.0 + gtk_signal_emit_stop_by_name@Base 2.8.0 + gtk_signal_emitv@Base 2.8.0 + gtk_signal_emitv_by_name@Base 2.8.0 + gtk_signal_new@Base 2.8.0 + gtk_signal_newv@Base 2.8.0 + gtk_signal_run_type_get_type@Base 2.8.0 + gtk_size_group_add_widget@Base 2.8.0 + gtk_size_group_get_ignore_hidden@Base 2.8.0 + gtk_size_group_get_mode@Base 2.8.0 + gtk_size_group_get_type@Base 2.8.0 + gtk_size_group_get_widgets@Base 2.10.0 + gtk_size_group_mode_get_type@Base 2.8.0 + gtk_size_group_new@Base 2.8.0 + gtk_size_group_remove_widget@Base 2.8.0 + gtk_size_group_set_ignore_hidden@Base 2.8.0 + gtk_size_group_set_mode@Base 2.8.0 + gtk_socket_add_id@Base 2.8.0 + gtk_socket_get_id@Base 2.8.0 + gtk_socket_get_plug_window@Base 2.14.0 + gtk_socket_get_type@Base 2.8.0 + gtk_socket_new@Base 2.8.0 + gtk_socket_steal@Base 2.8.0 + gtk_sort_type_get_type@Base 2.8.0 + gtk_spin_button_configure@Base 2.8.0 + gtk_spin_button_get_adjustment@Base 2.8.0 + gtk_spin_button_get_digits@Base 2.8.0 + gtk_spin_button_get_increments@Base 2.8.0 + gtk_spin_button_get_numeric@Base 2.8.0 + gtk_spin_button_get_range@Base 2.8.0 + gtk_spin_button_get_snap_to_ticks@Base 2.8.0 + gtk_spin_button_get_type@Base 2.8.0 + gtk_spin_button_get_update_policy@Base 2.8.0 + gtk_spin_button_get_value@Base 2.8.0 + gtk_spin_button_get_value_as_int@Base 2.8.0 + gtk_spin_button_get_wrap@Base 2.8.0 + gtk_spin_button_new@Base 2.8.0 + gtk_spin_button_new_with_range@Base 2.8.0 + gtk_spin_button_set_adjustment@Base 2.8.0 + gtk_spin_button_set_digits@Base 2.8.0 + gtk_spin_button_set_increments@Base 2.8.0 + gtk_spin_button_set_numeric@Base 2.8.0 + gtk_spin_button_set_range@Base 2.8.0 + gtk_spin_button_set_snap_to_ticks@Base 2.8.0 + gtk_spin_button_set_update_policy@Base 2.8.0 + gtk_spin_button_set_value@Base 2.8.0 + gtk_spin_button_set_wrap@Base 2.8.0 + gtk_spin_button_spin@Base 2.8.0 + gtk_spin_button_update@Base 2.8.0 + gtk_spin_button_update_policy_get_type@Base 2.8.0 + gtk_spin_type_get_type@Base 2.8.0 + gtk_spinner_get_type@Base 2.20.0 + gtk_spinner_new@Base 2.20.0 + gtk_spinner_start@Base 2.20.0 + gtk_spinner_stop@Base 2.20.0 + gtk_state_type_get_type@Base 2.8.0 + gtk_status_icon_get_blinking@Base 2.10.0 + gtk_status_icon_get_geometry@Base 2.10.0 + gtk_status_icon_get_gicon@Base 2.14.0 + gtk_status_icon_get_has_tooltip@Base 2.16.0 + gtk_status_icon_get_icon_name@Base 2.10.0 + gtk_status_icon_get_pixbuf@Base 2.10.0 + gtk_status_icon_get_screen@Base 2.12.0 + gtk_status_icon_get_size@Base 2.10.0 + gtk_status_icon_get_stock@Base 2.10.0 + gtk_status_icon_get_storage_type@Base 2.10.0 + gtk_status_icon_get_title@Base 2.18.0 + gtk_status_icon_get_tooltip_markup@Base 2.16.0 + gtk_status_icon_get_tooltip_text@Base 2.16.0 + gtk_status_icon_get_type@Base 2.10.0 + gtk_status_icon_get_visible@Base 2.10.0 + gtk_status_icon_get_x11_window_id@Base 2.14.0 + gtk_status_icon_is_embedded@Base 2.10.0 + gtk_status_icon_new@Base 2.10.0 + gtk_status_icon_new_from_file@Base 2.10.0 + gtk_status_icon_new_from_gicon@Base 2.14.0 + gtk_status_icon_new_from_icon_name@Base 2.10.0 + gtk_status_icon_new_from_pixbuf@Base 2.10.0 + gtk_status_icon_new_from_stock@Base 2.10.0 + gtk_status_icon_position_menu@Base 2.10.0 + gtk_status_icon_set_blinking@Base 2.10.0 + gtk_status_icon_set_from_file@Base 2.10.0 + gtk_status_icon_set_from_gicon@Base 2.14.0 + gtk_status_icon_set_from_icon_name@Base 2.10.0 + gtk_status_icon_set_from_pixbuf@Base 2.10.0 + gtk_status_icon_set_from_stock@Base 2.10.0 + gtk_status_icon_set_has_tooltip@Base 2.16.0 + gtk_status_icon_set_name@Base 2.20.0 + gtk_status_icon_set_screen@Base 2.12.0 + gtk_status_icon_set_title@Base 2.18.0 + gtk_status_icon_set_tooltip@Base 2.10.0 + gtk_status_icon_set_tooltip_markup@Base 2.16.0 + gtk_status_icon_set_tooltip_text@Base 2.16.0 + gtk_status_icon_set_visible@Base 2.10.0 + gtk_statusbar_get_context_id@Base 2.8.0 + gtk_statusbar_get_has_resize_grip@Base 2.8.0 + gtk_statusbar_get_message_area@Base 2.20.0 + gtk_statusbar_get_type@Base 2.8.0 + gtk_statusbar_new@Base 2.8.0 + gtk_statusbar_pop@Base 2.8.0 + gtk_statusbar_push@Base 2.8.0 + gtk_statusbar_remove@Base 2.8.0 + gtk_statusbar_remove_all@Base 2.21.8 + gtk_statusbar_set_has_resize_grip@Base 2.8.0 + gtk_stock_add@Base 2.8.0 + gtk_stock_add_static@Base 2.8.0 + gtk_stock_item_copy@Base 2.8.0 + gtk_stock_item_free@Base 2.8.0 + gtk_stock_list_ids@Base 2.8.0 + gtk_stock_lookup@Base 2.8.0 + gtk_stock_set_translate_func@Base 2.8.0 + gtk_style_apply_default_background@Base 2.8.0 + gtk_style_attach@Base 2.8.0 + gtk_style_copy@Base 2.8.0 + gtk_style_detach@Base 2.8.0 + gtk_style_get@Base 2.16.0 + gtk_style_get_font@Base 2.8.0 + gtk_style_get_style_property@Base 2.16.0 + gtk_style_get_type@Base 2.8.0 + gtk_style_get_valist@Base 2.16.0 + gtk_style_lookup_color@Base 2.10.0 + gtk_style_lookup_icon_set@Base 2.8.0 + gtk_style_new@Base 2.8.0 + gtk_style_ref@Base 2.8.0 + gtk_style_render_icon@Base 2.8.0 + gtk_style_set_background@Base 2.8.0 + gtk_style_set_font@Base 2.8.0 + gtk_style_unref@Base 2.8.0 + gtk_submenu_direction_get_type@Base 2.8.0 + gtk_submenu_placement_get_type@Base 2.8.0 + gtk_table_attach@Base 2.8.0 + gtk_table_attach_defaults@Base 2.8.0 + gtk_table_get_col_spacing@Base 2.8.0 + gtk_table_get_default_col_spacing@Base 2.8.0 + gtk_table_get_default_row_spacing@Base 2.8.0 + gtk_table_get_homogeneous@Base 2.8.0 + gtk_table_get_row_spacing@Base 2.8.0 + gtk_table_get_size@Base 2.21.8 + gtk_table_get_type@Base 2.8.0 + gtk_table_new@Base 2.8.0 + gtk_table_resize@Base 2.8.0 + gtk_table_set_col_spacing@Base 2.8.0 + gtk_table_set_col_spacings@Base 2.8.0 + gtk_table_set_homogeneous@Base 2.8.0 + gtk_table_set_row_spacing@Base 2.8.0 + gtk_table_set_row_spacings@Base 2.8.0 + gtk_target_flags_get_type@Base 2.8.0 + gtk_target_list_add@Base 2.8.0 + gtk_target_list_add_image_targets@Base 2.8.0 + gtk_target_list_add_rich_text_targets@Base 2.10.0 + gtk_target_list_add_table@Base 2.8.0 + gtk_target_list_add_text_targets@Base 2.8.0 + gtk_target_list_add_uri_targets@Base 2.8.0 + gtk_target_list_find@Base 2.8.0 + gtk_target_list_get_type@Base 2.10.0 + gtk_target_list_new@Base 2.8.0 + gtk_target_list_ref@Base 2.8.0 + gtk_target_list_remove@Base 2.8.0 + gtk_target_list_unref@Base 2.8.0 + gtk_target_table_free@Base 2.10.0 + gtk_target_table_new_from_list@Base 2.10.0 + gtk_targets_include_image@Base 2.10.0 + gtk_targets_include_rich_text@Base 2.10.0 + gtk_targets_include_text@Base 2.10.0 + gtk_targets_include_uri@Base 2.10.0 + gtk_tearoff_menu_item_get_type@Base 2.8.0 + gtk_tearoff_menu_item_new@Base 2.8.0 + gtk_test_create_simple_window@Base 2.14.0 + gtk_test_create_widget@Base 2.14.0 + gtk_test_display_button_window@Base 2.14.0 + gtk_test_find_label@Base 2.14.0 + gtk_test_find_sibling@Base 2.14.0 + gtk_test_find_widget@Base 2.14.0 + gtk_test_init@Base 2.14.0 + gtk_test_list_all_types@Base 2.14.0 + gtk_test_register_all_types@Base 2.14.0 + gtk_test_slider_get_value@Base 2.14.0 + gtk_test_slider_set_perc@Base 2.14.0 + gtk_test_spin_button_click@Base 2.14.0 + gtk_test_text_get@Base 2.14.0 + gtk_test_text_set@Base 2.14.0 + gtk_test_widget_click@Base 2.14.0 + gtk_test_widget_send_key@Base 2.14.0 + gtk_text_anchored_child_set_layout@Base 2.8.0 + gtk_text_attr_appearance_type@Base 2.8.0 + gtk_text_attributes_copy@Base 2.8.0 + gtk_text_attributes_copy_values@Base 2.8.0 + gtk_text_attributes_get_type@Base 2.8.0 + gtk_text_attributes_new@Base 2.8.0 + gtk_text_attributes_ref@Base 2.8.0 + gtk_text_attributes_unref@Base 2.8.0 + gtk_text_backward_delete@Base 2.8.0 + gtk_text_buffer_add_mark@Base 2.12.0 + gtk_text_buffer_add_selection_clipboard@Base 2.8.0 + gtk_text_buffer_apply_tag@Base 2.8.0 + gtk_text_buffer_apply_tag_by_name@Base 2.8.0 + gtk_text_buffer_backspace@Base 2.8.0 + gtk_text_buffer_begin_user_action@Base 2.8.0 + gtk_text_buffer_copy_clipboard@Base 2.8.0 + gtk_text_buffer_create_child_anchor@Base 2.8.0 + gtk_text_buffer_create_mark@Base 2.8.0 + gtk_text_buffer_create_tag@Base 2.8.0 + gtk_text_buffer_cut_clipboard@Base 2.8.0 + gtk_text_buffer_delete@Base 2.8.0 + gtk_text_buffer_delete_interactive@Base 2.8.0 + gtk_text_buffer_delete_mark@Base 2.8.0 + gtk_text_buffer_delete_mark_by_name@Base 2.8.0 + gtk_text_buffer_delete_selection@Base 2.8.0 + gtk_text_buffer_deserialize@Base 2.10.0 + gtk_text_buffer_deserialize_get_can_create_tags@Base 2.10.0 + gtk_text_buffer_deserialize_set_can_create_tags@Base 2.10.0 + gtk_text_buffer_end_user_action@Base 2.8.0 + gtk_text_buffer_get_bounds@Base 2.8.0 + gtk_text_buffer_get_char_count@Base 2.8.0 + gtk_text_buffer_get_copy_target_list@Base 2.10.0 + gtk_text_buffer_get_deserialize_formats@Base 2.10.0 + gtk_text_buffer_get_end_iter@Base 2.8.0 + gtk_text_buffer_get_has_selection@Base 2.10.0 + gtk_text_buffer_get_insert@Base 2.8.0 + gtk_text_buffer_get_iter_at_child_anchor@Base 2.8.0 + gtk_text_buffer_get_iter_at_line@Base 2.8.0 + gtk_text_buffer_get_iter_at_line_index@Base 2.8.0 + gtk_text_buffer_get_iter_at_line_offset@Base 2.8.0 + gtk_text_buffer_get_iter_at_mark@Base 2.8.0 + gtk_text_buffer_get_iter_at_offset@Base 2.8.0 + gtk_text_buffer_get_line_count@Base 2.8.0 + gtk_text_buffer_get_mark@Base 2.8.0 + gtk_text_buffer_get_modified@Base 2.8.0 + gtk_text_buffer_get_paste_target_list@Base 2.10.0 + gtk_text_buffer_get_selection_bound@Base 2.8.0 + gtk_text_buffer_get_selection_bounds@Base 2.8.0 + gtk_text_buffer_get_serialize_formats@Base 2.10.0 + gtk_text_buffer_get_slice@Base 2.8.0 + gtk_text_buffer_get_start_iter@Base 2.8.0 + gtk_text_buffer_get_tag_table@Base 2.8.0 + gtk_text_buffer_get_text@Base 2.8.0 + gtk_text_buffer_get_type@Base 2.8.0 + gtk_text_buffer_insert@Base 2.8.0 + gtk_text_buffer_insert_at_cursor@Base 2.8.0 + gtk_text_buffer_insert_child_anchor@Base 2.8.0 + gtk_text_buffer_insert_interactive@Base 2.8.0 + gtk_text_buffer_insert_interactive_at_cursor@Base 2.8.0 + gtk_text_buffer_insert_pixbuf@Base 2.8.0 + gtk_text_buffer_insert_range@Base 2.8.0 + gtk_text_buffer_insert_range_interactive@Base 2.8.0 + gtk_text_buffer_insert_with_tags@Base 2.8.0 + gtk_text_buffer_insert_with_tags_by_name@Base 2.8.0 + gtk_text_buffer_move_mark@Base 2.8.0 + gtk_text_buffer_move_mark_by_name@Base 2.8.0 + gtk_text_buffer_new@Base 2.8.0 + gtk_text_buffer_paste_clipboard@Base 2.8.0 + gtk_text_buffer_place_cursor@Base 2.8.0 + gtk_text_buffer_register_deserialize_format@Base 2.10.0 + gtk_text_buffer_register_deserialize_tagset@Base 2.10.0 + gtk_text_buffer_register_serialize_format@Base 2.10.0 + gtk_text_buffer_register_serialize_tagset@Base 2.10.0 + gtk_text_buffer_remove_all_tags@Base 2.8.0 + gtk_text_buffer_remove_selection_clipboard@Base 2.8.0 + gtk_text_buffer_remove_tag@Base 2.8.0 + gtk_text_buffer_remove_tag_by_name@Base 2.8.0 + gtk_text_buffer_select_range@Base 2.8.0 + gtk_text_buffer_serialize@Base 2.10.0 + gtk_text_buffer_set_modified@Base 2.8.0 + gtk_text_buffer_set_text@Base 2.8.0 + gtk_text_buffer_target_info_get_type@Base 2.10.0 + gtk_text_buffer_unregister_deserialize_format@Base 2.10.0 + gtk_text_buffer_unregister_serialize_format@Base 2.10.0 + gtk_text_byte_begins_utf8_char@Base 2.8.0 + gtk_text_char_type@Base 2.8.0 + gtk_text_child_anchor_get_deleted@Base 2.8.0 + gtk_text_child_anchor_get_type@Base 2.8.0 + gtk_text_child_anchor_get_widgets@Base 2.8.0 + gtk_text_child_anchor_new@Base 2.8.0 + gtk_text_child_anchor_queue_resize@Base 2.8.0 + gtk_text_child_anchor_register_child@Base 2.8.0 + gtk_text_child_anchor_unregister_child@Base 2.8.0 + gtk_text_child_type@Base 2.8.0 + gtk_text_direction_get_type@Base 2.8.0 + gtk_text_forward_delete@Base 2.8.0 + gtk_text_freeze@Base 2.8.0 + gtk_text_get_length@Base 2.8.0 + gtk_text_get_point@Base 2.8.0 + gtk_text_get_type@Base 2.8.0 + gtk_text_insert@Base 2.8.0 + gtk_text_iter_backward_char@Base 2.8.0 + gtk_text_iter_backward_chars@Base 2.8.0 + gtk_text_iter_backward_cursor_position@Base 2.8.0 + gtk_text_iter_backward_cursor_positions@Base 2.8.0 + gtk_text_iter_backward_find_char@Base 2.8.0 + gtk_text_iter_backward_line@Base 2.8.0 + gtk_text_iter_backward_lines@Base 2.8.0 + gtk_text_iter_backward_search@Base 2.8.0 + gtk_text_iter_backward_sentence_start@Base 2.8.0 + gtk_text_iter_backward_sentence_starts@Base 2.8.0 + gtk_text_iter_backward_to_tag_toggle@Base 2.8.0 + gtk_text_iter_backward_visible_cursor_position@Base 2.8.0 + gtk_text_iter_backward_visible_cursor_positions@Base 2.8.0 + gtk_text_iter_backward_visible_line@Base 2.8.0 + gtk_text_iter_backward_visible_lines@Base 2.8.0 + gtk_text_iter_backward_visible_word_start@Base 2.8.0 + gtk_text_iter_backward_visible_word_starts@Base 2.8.0 + gtk_text_iter_backward_word_start@Base 2.8.0 + gtk_text_iter_backward_word_starts@Base 2.8.0 + gtk_text_iter_begins_tag@Base 2.8.0 + gtk_text_iter_can_insert@Base 2.8.0 + gtk_text_iter_compare@Base 2.8.0 + gtk_text_iter_copy@Base 2.8.0 + gtk_text_iter_editable@Base 2.8.0 + gtk_text_iter_ends_line@Base 2.8.0 + gtk_text_iter_ends_sentence@Base 2.8.0 + gtk_text_iter_ends_tag@Base 2.8.0 + gtk_text_iter_ends_word@Base 2.8.0 + gtk_text_iter_equal@Base 2.8.0 + gtk_text_iter_forward_char@Base 2.8.0 + gtk_text_iter_forward_chars@Base 2.8.0 + gtk_text_iter_forward_cursor_position@Base 2.8.0 + gtk_text_iter_forward_cursor_positions@Base 2.8.0 + gtk_text_iter_forward_find_char@Base 2.8.0 + gtk_text_iter_forward_line@Base 2.8.0 + gtk_text_iter_forward_lines@Base 2.8.0 + gtk_text_iter_forward_search@Base 2.8.0 + gtk_text_iter_forward_sentence_end@Base 2.8.0 + gtk_text_iter_forward_sentence_ends@Base 2.8.0 + gtk_text_iter_forward_to_end@Base 2.8.0 + gtk_text_iter_forward_to_line_end@Base 2.8.0 + gtk_text_iter_forward_to_tag_toggle@Base 2.8.0 + gtk_text_iter_forward_visible_cursor_position@Base 2.8.0 + gtk_text_iter_forward_visible_cursor_positions@Base 2.8.0 + gtk_text_iter_forward_visible_line@Base 2.8.0 + gtk_text_iter_forward_visible_lines@Base 2.8.0 + gtk_text_iter_forward_visible_word_end@Base 2.8.0 + gtk_text_iter_forward_visible_word_ends@Base 2.8.0 + gtk_text_iter_forward_word_end@Base 2.8.0 + gtk_text_iter_forward_word_ends@Base 2.8.0 + gtk_text_iter_free@Base 2.8.0 + gtk_text_iter_get_attributes@Base 2.8.0 + gtk_text_iter_get_buffer@Base 2.8.0 + gtk_text_iter_get_bytes_in_line@Base 2.8.0 + gtk_text_iter_get_char@Base 2.8.0 + gtk_text_iter_get_chars_in_line@Base 2.8.0 + gtk_text_iter_get_child_anchor@Base 2.8.0 + gtk_text_iter_get_language@Base 2.8.0 + gtk_text_iter_get_line@Base 2.8.0 + gtk_text_iter_get_line_index@Base 2.8.0 + gtk_text_iter_get_line_offset@Base 2.8.0 + gtk_text_iter_get_marks@Base 2.8.0 + gtk_text_iter_get_offset@Base 2.8.0 + gtk_text_iter_get_pixbuf@Base 2.8.0 + gtk_text_iter_get_slice@Base 2.8.0 + gtk_text_iter_get_tags@Base 2.8.0 + gtk_text_iter_get_text@Base 2.8.0 + gtk_text_iter_get_toggled_tags@Base 2.8.0 + gtk_text_iter_get_type@Base 2.8.0 + gtk_text_iter_get_visible_line_index@Base 2.8.0 + gtk_text_iter_get_visible_line_offset@Base 2.8.0 + gtk_text_iter_get_visible_slice@Base 2.8.0 + gtk_text_iter_get_visible_text@Base 2.8.0 + gtk_text_iter_has_tag@Base 2.8.0 + gtk_text_iter_in_range@Base 2.8.0 + gtk_text_iter_inside_sentence@Base 2.8.0 + gtk_text_iter_inside_word@Base 2.8.0 + gtk_text_iter_is_cursor_position@Base 2.8.0 + gtk_text_iter_is_end@Base 2.8.0 + gtk_text_iter_is_start@Base 2.8.0 + gtk_text_iter_order@Base 2.8.0 + gtk_text_iter_set_line@Base 2.8.0 + gtk_text_iter_set_line_index@Base 2.8.0 + gtk_text_iter_set_line_offset@Base 2.8.0 + gtk_text_iter_set_offset@Base 2.8.0 + gtk_text_iter_set_visible_line_index@Base 2.8.0 + gtk_text_iter_set_visible_line_offset@Base 2.8.0 + gtk_text_iter_starts_line@Base 2.8.0 + gtk_text_iter_starts_sentence@Base 2.8.0 + gtk_text_iter_starts_word@Base 2.8.0 + gtk_text_iter_toggles_tag@Base 2.8.0 + gtk_text_layout_changed@Base 2.8.0 + gtk_text_layout_clamp_iter_to_vrange@Base 2.8.0 + gtk_text_layout_cursors_changed@Base 2.12.0 + gtk_text_layout_default_style_changed@Base 2.8.0 + gtk_text_layout_draw@Base 2.8.0 + gtk_text_layout_free_line_data@Base 2.8.0 + gtk_text_layout_free_line_display@Base 2.8.0 + gtk_text_layout_get_buffer@Base 2.8.0 + gtk_text_layout_get_cursor_locations@Base 2.8.0 + gtk_text_layout_get_cursor_visible@Base 2.8.0 + gtk_text_layout_get_iter_at_line@Base 2.8.0 + gtk_text_layout_get_iter_at_pixel@Base 2.8.0 + gtk_text_layout_get_iter_at_position@Base 2.8.0 + gtk_text_layout_get_iter_location@Base 2.8.0 + gtk_text_layout_get_line_at_y@Base 2.8.0 + gtk_text_layout_get_line_display@Base 2.8.0 + gtk_text_layout_get_line_yrange@Base 2.8.0 + gtk_text_layout_get_lines@Base 2.8.0 + gtk_text_layout_get_size@Base 2.8.0 + gtk_text_layout_get_type@Base 2.8.0 + gtk_text_layout_invalidate@Base 2.8.0 + gtk_text_layout_invalidate_cursors@Base 2.12.0 + gtk_text_layout_is_valid@Base 2.8.0 + gtk_text_layout_iter_starts_line@Base 2.8.0 + gtk_text_layout_move_iter_to_line_end@Base 2.8.0 + gtk_text_layout_move_iter_to_next_line@Base 2.8.0 + gtk_text_layout_move_iter_to_previous_line@Base 2.8.0 + gtk_text_layout_move_iter_to_x@Base 2.8.0 + gtk_text_layout_move_iter_visually@Base 2.8.0 + gtk_text_layout_new@Base 2.8.0 + gtk_text_layout_set_buffer@Base 2.8.0 + gtk_text_layout_set_contexts@Base 2.8.0 + gtk_text_layout_set_cursor_direction@Base 2.8.0 + gtk_text_layout_set_cursor_visible@Base 2.8.0 + gtk_text_layout_set_default_style@Base 2.8.0 + gtk_text_layout_set_keyboard_direction@Base 2.8.0 + gtk_text_layout_set_overwrite_mode@Base 2.12.0 + gtk_text_layout_set_preedit_string@Base 2.8.0 + gtk_text_layout_set_screen_width@Base 2.8.0 + gtk_text_layout_spew@Base 2.8.0 + gtk_text_layout_validate@Base 2.8.0 + gtk_text_layout_validate_yrange@Base 2.8.0 + gtk_text_layout_wrap@Base 2.8.0 + gtk_text_layout_wrap_loop_end@Base 2.8.0 + gtk_text_layout_wrap_loop_start@Base 2.8.0 + gtk_text_left_mark_type@Base 2.8.0 + gtk_text_line_segment_split@Base 2.8.0 + gtk_text_mark_get_buffer@Base 2.8.0 + gtk_text_mark_get_deleted@Base 2.8.0 + gtk_text_mark_get_left_gravity@Base 2.8.0 + gtk_text_mark_get_name@Base 2.8.0 + gtk_text_mark_get_type@Base 2.8.0 + gtk_text_mark_get_visible@Base 2.8.0 + gtk_text_mark_new@Base 2.12.0 + gtk_text_mark_set_visible@Base 2.8.0 + gtk_text_new@Base 2.8.0 + gtk_text_pixbuf_type@Base 2.8.0 + gtk_text_right_mark_type@Base 2.8.0 + gtk_text_search_flags_get_type@Base 2.8.0 + gtk_text_set_adjustments@Base 2.8.0 + gtk_text_set_editable@Base 2.8.0 + gtk_text_set_line_wrap@Base 2.8.0 + gtk_text_set_point@Base 2.8.0 + gtk_text_set_word_wrap@Base 2.8.0 + gtk_text_tag_event@Base 2.8.0 + gtk_text_tag_get_priority@Base 2.8.0 + gtk_text_tag_get_type@Base 2.8.0 + gtk_text_tag_new@Base 2.8.0 + gtk_text_tag_set_priority@Base 2.8.0 + gtk_text_tag_table_add@Base 2.8.0 + gtk_text_tag_table_foreach@Base 2.8.0 + gtk_text_tag_table_get_size@Base 2.8.0 + gtk_text_tag_table_get_type@Base 2.8.0 + gtk_text_tag_table_lookup@Base 2.8.0 + gtk_text_tag_table_new@Base 2.8.0 + gtk_text_tag_table_remove@Base 2.8.0 + gtk_text_thaw@Base 2.8.0 + gtk_text_toggle_off_type@Base 2.8.0 + gtk_text_toggle_on_type@Base 2.8.0 + gtk_text_unknown_char_utf8@Base 2.8.0 + gtk_text_view_add_child_at_anchor@Base 2.8.0 + gtk_text_view_add_child_in_window@Base 2.8.0 + gtk_text_view_backward_display_line@Base 2.8.0 + gtk_text_view_backward_display_line_start@Base 2.8.0 + gtk_text_view_buffer_to_window_coords@Base 2.8.0 + gtk_text_view_forward_display_line@Base 2.8.0 + gtk_text_view_forward_display_line_end@Base 2.8.0 + gtk_text_view_get_accepts_tab@Base 2.8.0 + gtk_text_view_get_border_window_size@Base 2.8.0 + gtk_text_view_get_buffer@Base 2.8.0 + gtk_text_view_get_cursor_visible@Base 2.8.0 + gtk_text_view_get_default_attributes@Base 2.8.0 + gtk_text_view_get_editable@Base 2.8.0 + gtk_text_view_get_hadjustment@Base 2.21.8 + gtk_text_view_get_indent@Base 2.8.0 + gtk_text_view_get_iter_at_location@Base 2.8.0 + gtk_text_view_get_iter_at_position@Base 2.8.0 + gtk_text_view_get_iter_location@Base 2.8.0 + gtk_text_view_get_justification@Base 2.8.0 + gtk_text_view_get_left_margin@Base 2.8.0 + gtk_text_view_get_line_at_y@Base 2.8.0 + gtk_text_view_get_line_yrange@Base 2.8.0 + gtk_text_view_get_overwrite@Base 2.8.0 + gtk_text_view_get_pixels_above_lines@Base 2.8.0 + gtk_text_view_get_pixels_below_lines@Base 2.8.0 + gtk_text_view_get_pixels_inside_wrap@Base 2.8.0 + gtk_text_view_get_right_margin@Base 2.8.0 + gtk_text_view_get_tabs@Base 2.8.0 + gtk_text_view_get_type@Base 2.8.0 + gtk_text_view_get_vadjustment@Base 2.21.8 + gtk_text_view_get_visible_rect@Base 2.8.0 + gtk_text_view_get_window@Base 2.8.0 + gtk_text_view_get_window_type@Base 2.8.0 + gtk_text_view_get_wrap_mode@Base 2.8.0 + gtk_text_view_im_context_filter_keypress@Base 2.21.8 + gtk_text_view_move_child@Base 2.8.0 + gtk_text_view_move_mark_onscreen@Base 2.8.0 + gtk_text_view_move_visually@Base 2.8.0 + gtk_text_view_new@Base 2.8.0 + gtk_text_view_new_with_buffer@Base 2.8.0 + gtk_text_view_reset_im_context@Base 2.21.8 + gtk_text_view_place_cursor_onscreen@Base 2.8.0 + gtk_text_view_scroll_mark_onscreen@Base 2.8.0 + gtk_text_view_scroll_to_iter@Base 2.8.0 + gtk_text_view_scroll_to_mark@Base 2.8.0 + gtk_text_view_set_accepts_tab@Base 2.8.0 + gtk_text_view_set_border_window_size@Base 2.8.0 + gtk_text_view_set_buffer@Base 2.8.0 + gtk_text_view_set_cursor_visible@Base 2.8.0 + gtk_text_view_set_editable@Base 2.8.0 + gtk_text_view_set_indent@Base 2.8.0 + gtk_text_view_set_justification@Base 2.8.0 + gtk_text_view_set_left_margin@Base 2.8.0 + gtk_text_view_set_overwrite@Base 2.8.0 + gtk_text_view_set_pixels_above_lines@Base 2.8.0 + gtk_text_view_set_pixels_below_lines@Base 2.8.0 + gtk_text_view_set_pixels_inside_wrap@Base 2.8.0 + gtk_text_view_set_right_margin@Base 2.8.0 + gtk_text_view_set_tabs@Base 2.8.0 + gtk_text_view_set_wrap_mode@Base 2.8.0 + gtk_text_view_starts_display_line@Base 2.8.0 + gtk_text_view_window_to_buffer_coords@Base 2.8.0 + gtk_text_window_type_get_type@Base 2.8.0 + gtk_theme_engine_create_rc_style@Base 2.8.0 + gtk_theme_engine_get@Base 2.8.0 + gtk_theme_engine_get_type@Base 2.8.0 + gtk_timeout_add@Base 2.8.0 + gtk_timeout_add_full@Base 2.8.0 + gtk_timeout_remove@Base 2.8.0 + gtk_tips_query_get_type@Base 2.8.0 + gtk_tips_query_new@Base 2.8.0 + gtk_tips_query_set_caller@Base 2.8.0 + gtk_tips_query_set_labels@Base 2.8.0 + gtk_tips_query_start_query@Base 2.8.0 + gtk_tips_query_stop_query@Base 2.8.0 + gtk_toggle_action_get_active@Base 2.8.0 + gtk_toggle_action_get_draw_as_radio@Base 2.8.0 + gtk_toggle_action_get_type@Base 2.8.0 + gtk_toggle_action_new@Base 2.8.0 + gtk_toggle_action_set_active@Base 2.8.0 + gtk_toggle_action_set_draw_as_radio@Base 2.8.0 + gtk_toggle_action_toggled@Base 2.8.0 + gtk_toggle_button_get_active@Base 2.8.0 + gtk_toggle_button_get_inconsistent@Base 2.8.0 + gtk_toggle_button_get_mode@Base 2.8.0 + gtk_toggle_button_get_type@Base 2.8.0 + gtk_toggle_button_new@Base 2.8.0 + gtk_toggle_button_new_with_label@Base 2.8.0 + gtk_toggle_button_new_with_mnemonic@Base 2.8.0 + gtk_toggle_button_set_active@Base 2.8.0 + gtk_toggle_button_set_inconsistent@Base 2.8.0 + gtk_toggle_button_set_mode@Base 2.8.0 + gtk_toggle_button_toggled@Base 2.8.0 + gtk_toggle_tool_button_get_active@Base 2.8.0 + gtk_toggle_tool_button_get_type@Base 2.8.0 + gtk_toggle_tool_button_new@Base 2.8.0 + gtk_toggle_tool_button_new_from_stock@Base 2.8.0 + gtk_toggle_tool_button_set_active@Base 2.8.0 + gtk_tool_button_get_icon_name@Base 2.8.0 + gtk_tool_button_get_icon_widget@Base 2.8.0 + gtk_tool_button_get_label@Base 2.8.0 + gtk_tool_button_get_label_widget@Base 2.8.0 + gtk_tool_button_get_stock_id@Base 2.8.0 + gtk_tool_button_get_type@Base 2.8.0 + gtk_tool_button_get_use_underline@Base 2.8.0 + gtk_tool_button_new@Base 2.8.0 + gtk_tool_button_new_from_stock@Base 2.8.0 + gtk_tool_button_set_icon_name@Base 2.8.0 + gtk_tool_button_set_icon_widget@Base 2.8.0 + gtk_tool_button_set_label@Base 2.8.0 + gtk_tool_button_set_label_widget@Base 2.8.0 + gtk_tool_button_set_stock_id@Base 2.8.0 + gtk_tool_button_set_use_underline@Base 2.8.0 + gtk_tool_item_get_ellipsize_mode@Base 2.20.0 + gtk_tool_item_get_expand@Base 2.8.0 + gtk_tool_item_get_homogeneous@Base 2.8.0 + gtk_tool_item_get_icon_size@Base 2.8.0 + gtk_tool_item_get_is_important@Base 2.8.0 + gtk_tool_item_get_orientation@Base 2.8.0 + gtk_tool_item_get_proxy_menu_item@Base 2.8.0 + gtk_tool_item_get_relief_style@Base 2.8.0 + gtk_tool_item_get_text_alignment@Base 2.20.0 + gtk_tool_item_get_text_orientation@Base 2.20.0 + gtk_tool_item_get_text_size_group@Base 2.20.0 + gtk_tool_item_get_toolbar_style@Base 2.8.0 + gtk_tool_item_get_type@Base 2.8.0 + gtk_tool_item_get_use_drag_window@Base 2.8.0 + gtk_tool_item_get_visible_horizontal@Base 2.8.0 + gtk_tool_item_get_visible_vertical@Base 2.8.0 + gtk_tool_item_group_get_collapsed@Base 2.20.0 + gtk_tool_item_group_get_drop_item@Base 2.20.0 + gtk_tool_item_group_get_ellipsize@Base 2.20.0 + gtk_tool_item_group_get_header_relief@Base 2.20.0 + gtk_tool_item_group_get_item_position@Base 2.20.0 + gtk_tool_item_group_get_label@Base 2.20.0 + gtk_tool_item_group_get_label_widget@Base 2.20.0 + gtk_tool_item_group_get_n_items@Base 2.20.0 + gtk_tool_item_group_get_nth_item@Base 2.20.0 + gtk_tool_item_group_get_type@Base 2.20.0 + gtk_tool_item_group_insert@Base 2.20.0 + gtk_tool_item_group_new@Base 2.20.0 + gtk_tool_item_group_set_collapsed@Base 2.20.0 + gtk_tool_item_group_set_ellipsize@Base 2.20.0 + gtk_tool_item_group_set_header_relief@Base 2.20.0 + gtk_tool_item_group_set_item_position@Base 2.20.0 + gtk_tool_item_group_set_label@Base 2.20.0 + gtk_tool_item_group_set_label_widget@Base 2.20.0 + gtk_tool_item_new@Base 2.8.0 + gtk_tool_item_rebuild_menu@Base 2.8.0 + gtk_tool_item_retrieve_proxy_menu_item@Base 2.8.0 + gtk_tool_item_set_expand@Base 2.8.0 + gtk_tool_item_set_homogeneous@Base 2.8.0 + gtk_tool_item_set_is_important@Base 2.8.0 + gtk_tool_item_set_proxy_menu_item@Base 2.8.0 + gtk_tool_item_set_tooltip@Base 2.8.0 + gtk_tool_item_set_tooltip_markup@Base 2.12.0 + gtk_tool_item_set_tooltip_text@Base 2.12.0 + gtk_tool_item_set_use_drag_window@Base 2.8.0 + gtk_tool_item_set_visible_horizontal@Base 2.8.0 + gtk_tool_item_set_visible_vertical@Base 2.8.0 + gtk_tool_item_toolbar_reconfigured@Base 2.14.0 + gtk_tool_palette_add_drag_dest@Base 2.20.0 + gtk_tool_palette_drag_targets_get_type@Base 2.20.0 + gtk_tool_palette_get_drag_item@Base 2.20.0 + gtk_tool_palette_get_drag_target_group@Base 2.20.0 + gtk_tool_palette_get_drag_target_item@Base 2.20.0 + gtk_tool_palette_get_drop_group@Base 2.20.0 + gtk_tool_palette_get_drop_item@Base 2.20.0 + gtk_tool_palette_get_exclusive@Base 2.20.0 + gtk_tool_palette_get_expand@Base 2.20.0 + gtk_tool_palette_get_group_position@Base 2.20.0 + gtk_tool_palette_get_hadjustment@Base 2.20.0 + gtk_tool_palette_get_icon_size@Base 2.20.0 + gtk_tool_palette_get_style@Base 2.20.0 + gtk_tool_palette_get_type@Base 2.20.0 + gtk_tool_palette_get_vadjustment@Base 2.20.0 + gtk_tool_palette_new@Base 2.20.0 + gtk_tool_palette_set_drag_source@Base 2.20.0 + gtk_tool_palette_set_exclusive@Base 2.20.0 + gtk_tool_palette_set_expand@Base 2.20.0 + gtk_tool_palette_set_group_position@Base 2.20.0 + gtk_tool_palette_set_icon_size@Base 2.20.0 + gtk_tool_palette_set_style@Base 2.20.0 + gtk_tool_palette_unset_icon_size@Base 2.20.0 + gtk_tool_palette_unset_style@Base 2.20.0 + gtk_tool_shell_get_ellipsize_mode@Base 2.20.0 + gtk_tool_shell_get_icon_size@Base 2.14.0 + gtk_tool_shell_get_orientation@Base 2.14.0 + gtk_tool_shell_get_relief_style@Base 2.14.0 + gtk_tool_shell_get_style@Base 2.14.0 + gtk_tool_shell_get_text_alignment@Base 2.20.0 + gtk_tool_shell_get_text_orientation@Base 2.20.0 + gtk_tool_shell_get_text_size_group@Base 2.20.0 + gtk_tool_shell_get_type@Base 2.14.0 + gtk_tool_shell_rebuild_menu@Base 2.14.0 + gtk_toolbar_append_element@Base 2.8.0 + gtk_toolbar_append_item@Base 2.8.0 + gtk_toolbar_append_space@Base 2.8.0 + gtk_toolbar_append_widget@Base 2.8.0 + gtk_toolbar_child_type_get_type@Base 2.8.0 + gtk_toolbar_get_drop_index@Base 2.8.0 + gtk_toolbar_get_icon_size@Base 2.8.0 + gtk_toolbar_get_item_index@Base 2.8.0 + gtk_toolbar_get_n_items@Base 2.8.0 + gtk_toolbar_get_nth_item@Base 2.8.0 + gtk_toolbar_get_orientation@Base 2.8.0 + gtk_toolbar_get_relief_style@Base 2.8.0 + gtk_toolbar_get_show_arrow@Base 2.8.0 + gtk_toolbar_get_style@Base 2.8.0 + gtk_toolbar_get_tooltips@Base 2.8.0 + gtk_toolbar_get_type@Base 2.8.0 + gtk_toolbar_insert@Base 2.8.0 + gtk_toolbar_insert_element@Base 2.8.0 + gtk_toolbar_insert_item@Base 2.8.0 + gtk_toolbar_insert_space@Base 2.8.0 + gtk_toolbar_insert_stock@Base 2.8.0 + gtk_toolbar_insert_widget@Base 2.8.0 + gtk_toolbar_new@Base 2.8.0 + gtk_toolbar_prepend_element@Base 2.8.0 + gtk_toolbar_prepend_item@Base 2.8.0 + gtk_toolbar_prepend_space@Base 2.8.0 + gtk_toolbar_prepend_widget@Base 2.8.0 + gtk_toolbar_remove_space@Base 2.8.0 + gtk_toolbar_set_drop_highlight_item@Base 2.8.0 + gtk_toolbar_set_icon_size@Base 2.8.0 + gtk_toolbar_set_orientation@Base 2.8.0 + gtk_toolbar_set_show_arrow@Base 2.8.0 + gtk_toolbar_set_style@Base 2.8.0 + gtk_toolbar_set_tooltips@Base 2.8.0 + gtk_toolbar_space_style_get_type@Base 2.8.0 + gtk_toolbar_style_get_type@Base 2.8.0 + gtk_toolbar_unset_icon_size@Base 2.8.0 + gtk_toolbar_unset_style@Base 2.8.0 + gtk_tooltip_get_type@Base 2.12.0 + gtk_tooltip_set_custom@Base 2.12.0 + gtk_tooltip_set_icon@Base 2.12.0 + gtk_tooltip_set_icon_from_gicon@Base 2.20.0 + gtk_tooltip_set_icon_from_icon_name@Base 2.14.0 + gtk_tooltip_set_icon_from_stock@Base 2.12.0 + gtk_tooltip_set_markup@Base 2.12.0 + gtk_tooltip_set_text@Base 2.12.0 + gtk_tooltip_set_tip_area@Base 2.12.0 + gtk_tooltip_trigger_tooltip_query@Base 2.12.0 + gtk_tooltips_data_get@Base 2.8.0 + gtk_tooltips_disable@Base 2.8.0 + gtk_tooltips_enable@Base 2.8.0 + gtk_tooltips_force_window@Base 2.8.0 + gtk_tooltips_get_info_from_tip_window@Base 2.8.0 + gtk_tooltips_get_type@Base 2.8.0 + gtk_tooltips_new@Base 2.8.0 + gtk_tooltips_set_delay@Base 2.8.0 + gtk_tooltips_set_tip@Base 2.8.0 + gtk_tray_icon_get_type@Base 2.10.0 + gtk_tree_append@Base 2.8.0 + gtk_tree_child_position@Base 2.8.0 + gtk_tree_clear_items@Base 2.8.0 + gtk_tree_drag_dest_drag_data_received@Base 2.8.0 + gtk_tree_drag_dest_get_type@Base 2.8.0 + gtk_tree_drag_dest_row_drop_possible@Base 2.8.0 + gtk_tree_drag_source_drag_data_delete@Base 2.8.0 + gtk_tree_drag_source_drag_data_get@Base 2.8.0 + gtk_tree_drag_source_get_type@Base 2.8.0 + gtk_tree_drag_source_row_draggable@Base 2.8.0 + gtk_tree_get_row_drag_data@Base 2.8.0 + gtk_tree_get_type@Base 2.8.0 + gtk_tree_insert@Base 2.8.0 + gtk_tree_item_collapse@Base 2.8.0 + gtk_tree_item_deselect@Base 2.8.0 + gtk_tree_item_expand@Base 2.8.0 + gtk_tree_item_get_type@Base 2.8.0 + gtk_tree_item_new@Base 2.8.0 + gtk_tree_item_new_with_label@Base 2.8.0 + gtk_tree_item_remove_subtree@Base 2.8.0 + gtk_tree_item_select@Base 2.8.0 + gtk_tree_item_set_subtree@Base 2.8.0 + gtk_tree_iter_copy@Base 2.8.0 + gtk_tree_iter_free@Base 2.8.0 + gtk_tree_iter_get_type@Base 2.8.0 + gtk_tree_model_filter_clear_cache@Base 2.8.0 + gtk_tree_model_filter_convert_child_iter_to_iter@Base 2.8.0 + gtk_tree_model_filter_convert_child_path_to_path@Base 2.8.0 + gtk_tree_model_filter_convert_iter_to_child_iter@Base 2.8.0 + gtk_tree_model_filter_convert_path_to_child_path@Base 2.8.0 + gtk_tree_model_filter_get_model@Base 2.8.0 + gtk_tree_model_filter_get_type@Base 2.8.0 + gtk_tree_model_filter_new@Base 2.8.0 + gtk_tree_model_filter_refilter@Base 2.8.0 + gtk_tree_model_filter_set_modify_func@Base 2.8.0 + gtk_tree_model_filter_set_visible_column@Base 2.8.0 + gtk_tree_model_filter_set_visible_func@Base 2.8.0 + gtk_tree_model_flags_get_type@Base 2.8.0 + gtk_tree_model_foreach@Base 2.8.0 + gtk_tree_model_get@Base 2.8.0 + gtk_tree_model_get_column_type@Base 2.8.0 + gtk_tree_model_get_flags@Base 2.8.0 + gtk_tree_model_get_iter@Base 2.8.0 + gtk_tree_model_get_iter_first@Base 2.8.0 + gtk_tree_model_get_iter_from_string@Base 2.8.0 + gtk_tree_model_get_n_columns@Base 2.8.0 + gtk_tree_model_get_path@Base 2.8.0 + gtk_tree_model_get_string_from_iter@Base 2.8.0 + gtk_tree_model_get_type@Base 2.8.0 + gtk_tree_model_get_valist@Base 2.8.0 + gtk_tree_model_get_value@Base 2.8.0 + gtk_tree_model_iter_children@Base 2.8.0 + gtk_tree_model_iter_has_child@Base 2.8.0 + gtk_tree_model_iter_n_children@Base 2.8.0 + gtk_tree_model_iter_next@Base 2.8.0 + gtk_tree_model_iter_nth_child@Base 2.8.0 + gtk_tree_model_iter_parent@Base 2.8.0 + gtk_tree_model_ref_node@Base 2.8.0 + gtk_tree_model_row_changed@Base 2.8.0 + gtk_tree_model_row_deleted@Base 2.8.0 + gtk_tree_model_row_has_child_toggled@Base 2.8.0 + gtk_tree_model_row_inserted@Base 2.8.0 + gtk_tree_model_rows_reordered@Base 2.8.0 + gtk_tree_model_sort_clear_cache@Base 2.8.0 + gtk_tree_model_sort_convert_child_iter_to_iter@Base 2.8.0 + gtk_tree_model_sort_convert_child_path_to_path@Base 2.8.0 + gtk_tree_model_sort_convert_iter_to_child_iter@Base 2.8.0 + gtk_tree_model_sort_convert_path_to_child_path@Base 2.8.0 + gtk_tree_model_sort_get_model@Base 2.8.0 + gtk_tree_model_sort_get_type@Base 2.8.0 + gtk_tree_model_sort_iter_is_valid@Base 2.8.0 + gtk_tree_model_sort_new_with_model@Base 2.8.0 + gtk_tree_model_sort_reset_default_sort_func@Base 2.8.0 + gtk_tree_model_unref_node@Base 2.8.0 + gtk_tree_new@Base 2.8.0 + gtk_tree_path_append_index@Base 2.8.0 + gtk_tree_path_compare@Base 2.8.0 + gtk_tree_path_copy@Base 2.8.0 + gtk_tree_path_down@Base 2.8.0 + gtk_tree_path_free@Base 2.8.0 + gtk_tree_path_get_depth@Base 2.8.0 + gtk_tree_path_get_indices@Base 2.8.0 + gtk_tree_path_get_indices_with_depth@Base 2.21.8 + gtk_tree_path_get_type@Base 2.8.0 + gtk_tree_path_is_ancestor@Base 2.8.0 + gtk_tree_path_is_descendant@Base 2.8.0 + gtk_tree_path_new@Base 2.8.0 + gtk_tree_path_new_first@Base 2.8.0 + gtk_tree_path_new_from_indices@Base 2.8.0 + gtk_tree_path_new_from_string@Base 2.8.0 + gtk_tree_path_next@Base 2.8.0 + gtk_tree_path_prepend_index@Base 2.8.0 + gtk_tree_path_prev@Base 2.8.0 + gtk_tree_path_to_string@Base 2.8.0 + gtk_tree_path_up@Base 2.8.0 + gtk_tree_prepend@Base 2.8.0 + gtk_tree_remove_item@Base 2.8.0 + gtk_tree_remove_items@Base 2.8.0 + gtk_tree_row_reference_copy@Base 2.8.0 + gtk_tree_row_reference_deleted@Base 2.8.0 + gtk_tree_row_reference_free@Base 2.8.0 + gtk_tree_row_reference_get_model@Base 2.8.0 + gtk_tree_row_reference_get_path@Base 2.8.0 + gtk_tree_row_reference_get_type@Base 2.8.0 + gtk_tree_row_reference_inserted@Base 2.8.0 + gtk_tree_row_reference_new@Base 2.8.0 + gtk_tree_row_reference_new_proxy@Base 2.8.0 + gtk_tree_row_reference_reordered@Base 2.8.0 + gtk_tree_row_reference_valid@Base 2.8.0 + gtk_tree_select_child@Base 2.8.0 + gtk_tree_select_item@Base 2.8.0 + gtk_tree_selection_count_selected_rows@Base 2.8.0 + gtk_tree_selection_get_mode@Base 2.8.0 + gtk_tree_selection_get_select_function@Base 2.14.0 + gtk_tree_selection_get_selected@Base 2.8.0 + gtk_tree_selection_get_selected_rows@Base 2.8.0 + gtk_tree_selection_get_tree_view@Base 2.8.0 + gtk_tree_selection_get_type@Base 2.8.0 + gtk_tree_selection_get_user_data@Base 2.8.0 + gtk_tree_selection_iter_is_selected@Base 2.8.0 + gtk_tree_selection_path_is_selected@Base 2.8.0 + gtk_tree_selection_select_all@Base 2.8.0 + gtk_tree_selection_select_iter@Base 2.8.0 + gtk_tree_selection_select_path@Base 2.8.0 + gtk_tree_selection_select_range@Base 2.8.0 + gtk_tree_selection_selected_foreach@Base 2.8.0 + gtk_tree_selection_set_mode@Base 2.8.0 + gtk_tree_selection_set_select_function@Base 2.8.0 + gtk_tree_selection_unselect_all@Base 2.8.0 + gtk_tree_selection_unselect_iter@Base 2.8.0 + gtk_tree_selection_unselect_path@Base 2.8.0 + gtk_tree_selection_unselect_range@Base 2.8.0 + gtk_tree_set_row_drag_data@Base 2.8.0 + gtk_tree_set_selection_mode@Base 2.8.0 + gtk_tree_set_view_lines@Base 2.8.0 + gtk_tree_set_view_mode@Base 2.8.0 + gtk_tree_sortable_get_sort_column_id@Base 2.8.0 + gtk_tree_sortable_get_type@Base 2.8.0 + gtk_tree_sortable_has_default_sort_func@Base 2.8.0 + gtk_tree_sortable_set_default_sort_func@Base 2.8.0 + gtk_tree_sortable_set_sort_column_id@Base 2.8.0 + gtk_tree_sortable_set_sort_func@Base 2.8.0 + gtk_tree_sortable_sort_column_changed@Base 2.8.0 + gtk_tree_store_append@Base 2.8.0 + gtk_tree_store_clear@Base 2.8.0 + gtk_tree_store_get_type@Base 2.8.0 + gtk_tree_store_insert@Base 2.8.0 + gtk_tree_store_insert_after@Base 2.8.0 + gtk_tree_store_insert_before@Base 2.8.0 + gtk_tree_store_insert_with_values@Base 2.10.0 + gtk_tree_store_insert_with_valuesv@Base 2.10.0 + gtk_tree_store_is_ancestor@Base 2.8.0 + gtk_tree_store_iter_depth@Base 2.8.0 + gtk_tree_store_iter_is_valid@Base 2.8.0 + gtk_tree_store_move_after@Base 2.8.0 + gtk_tree_store_move_before@Base 2.8.0 + gtk_tree_store_new@Base 2.8.0 + gtk_tree_store_newv@Base 2.8.0 + gtk_tree_store_prepend@Base 2.8.0 + gtk_tree_store_remove@Base 2.8.0 + gtk_tree_store_reorder@Base 2.8.0 + gtk_tree_store_set@Base 2.8.0 + gtk_tree_store_set_column_types@Base 2.8.0 + gtk_tree_store_set_valist@Base 2.8.0 + gtk_tree_store_set_value@Base 2.8.0 + gtk_tree_store_set_valuesv@Base 2.12.0 + gtk_tree_store_swap@Base 2.8.0 + gtk_tree_unselect_child@Base 2.8.0 + gtk_tree_unselect_item@Base 2.8.0 + gtk_tree_view_append_column@Base 2.8.0 + gtk_tree_view_collapse_all@Base 2.8.0 + gtk_tree_view_collapse_row@Base 2.8.0 + gtk_tree_view_column_add_attribute@Base 2.8.0 + gtk_tree_view_column_cell_get_position@Base 2.8.0 + gtk_tree_view_column_cell_get_size@Base 2.8.0 + gtk_tree_view_column_cell_is_visible@Base 2.8.0 + gtk_tree_view_column_cell_set_cell_data@Base 2.8.0 + gtk_tree_view_column_clear@Base 2.8.0 + gtk_tree_view_column_clear_attributes@Base 2.8.0 + gtk_tree_view_column_clicked@Base 2.8.0 + gtk_tree_view_column_focus_cell@Base 2.8.0 + gtk_tree_view_column_get_alignment@Base 2.8.0 + gtk_tree_view_column_get_cell_renderers@Base 2.8.0 + gtk_tree_view_column_get_clickable@Base 2.8.0 + gtk_tree_view_column_get_expand@Base 2.8.0 + gtk_tree_view_column_get_fixed_width@Base 2.8.0 + gtk_tree_view_column_get_max_width@Base 2.8.0 + gtk_tree_view_column_get_min_width@Base 2.8.0 + gtk_tree_view_column_get_reorderable@Base 2.8.0 + gtk_tree_view_column_get_resizable@Base 2.8.0 + gtk_tree_view_column_get_sizing@Base 2.8.0 + gtk_tree_view_column_get_sort_column_id@Base 2.8.0 + gtk_tree_view_column_get_sort_indicator@Base 2.8.0 + gtk_tree_view_column_get_sort_order@Base 2.8.0 + gtk_tree_view_column_get_spacing@Base 2.8.0 + gtk_tree_view_column_get_title@Base 2.8.0 + gtk_tree_view_column_get_tree_view@Base 2.12.0 + gtk_tree_view_column_get_type@Base 2.8.0 + gtk_tree_view_column_get_visible@Base 2.8.0 + gtk_tree_view_column_get_widget@Base 2.8.0 + gtk_tree_view_column_get_width@Base 2.8.0 + gtk_tree_view_column_new@Base 2.8.0 + gtk_tree_view_column_new_with_attributes@Base 2.8.0 + gtk_tree_view_column_pack_end@Base 2.8.0 + gtk_tree_view_column_pack_start@Base 2.8.0 + gtk_tree_view_column_queue_resize@Base 2.8.0 + gtk_tree_view_column_set_alignment@Base 2.8.0 + gtk_tree_view_column_set_attributes@Base 2.8.0 + gtk_tree_view_column_set_cell_data_func@Base 2.8.0 + gtk_tree_view_column_set_clickable@Base 2.8.0 + gtk_tree_view_column_set_expand@Base 2.8.0 + gtk_tree_view_column_set_fixed_width@Base 2.8.0 + gtk_tree_view_column_set_max_width@Base 2.8.0 + gtk_tree_view_column_set_min_width@Base 2.8.0 + gtk_tree_view_column_set_reorderable@Base 2.8.0 + gtk_tree_view_column_set_resizable@Base 2.8.0 + gtk_tree_view_column_set_sizing@Base 2.8.0 + gtk_tree_view_column_set_sort_column_id@Base 2.8.0 + gtk_tree_view_column_set_sort_indicator@Base 2.8.0 + gtk_tree_view_column_set_sort_order@Base 2.8.0 + gtk_tree_view_column_set_spacing@Base 2.8.0 + gtk_tree_view_column_set_title@Base 2.8.0 + gtk_tree_view_column_set_visible@Base 2.8.0 + gtk_tree_view_column_set_widget@Base 2.8.0 + gtk_tree_view_column_sizing_get_type@Base 2.8.0 + gtk_tree_view_columns_autosize@Base 2.8.0 + gtk_tree_view_convert_bin_window_to_tree_coords@Base 2.12.0 + gtk_tree_view_convert_bin_window_to_widget_coords@Base 2.12.0 + gtk_tree_view_convert_tree_to_bin_window_coords@Base 2.12.0 + gtk_tree_view_convert_tree_to_widget_coords@Base 2.12.0 + gtk_tree_view_convert_widget_to_bin_window_coords@Base 2.12.0 + gtk_tree_view_convert_widget_to_tree_coords@Base 2.12.0 + gtk_tree_view_create_row_drag_icon@Base 2.8.0 + gtk_tree_view_drop_position_get_type@Base 2.8.0 + gtk_tree_view_enable_model_drag_dest@Base 2.8.0 + gtk_tree_view_enable_model_drag_source@Base 2.8.0 + gtk_tree_view_expand_all@Base 2.8.0 + gtk_tree_view_expand_row@Base 2.8.0 + gtk_tree_view_expand_to_path@Base 2.8.0 + gtk_tree_view_get_background_area@Base 2.8.0 + gtk_tree_view_get_bin_window@Base 2.8.0 + gtk_tree_view_get_cell_area@Base 2.8.0 + gtk_tree_view_get_column@Base 2.8.0 + gtk_tree_view_get_columns@Base 2.8.0 + gtk_tree_view_get_cursor@Base 2.8.0 + gtk_tree_view_get_dest_row_at_pos@Base 2.8.0 + gtk_tree_view_get_drag_dest_row@Base 2.8.0 + gtk_tree_view_get_enable_search@Base 2.8.0 + gtk_tree_view_get_enable_tree_lines@Base 2.10.0 + gtk_tree_view_get_expander_column@Base 2.8.0 + gtk_tree_view_get_fixed_height_mode@Base 2.8.0 + gtk_tree_view_get_grid_lines@Base 2.10.0 + gtk_tree_view_get_hadjustment@Base 2.8.0 + gtk_tree_view_get_headers_clickable@Base 2.10.0 + gtk_tree_view_get_headers_visible@Base 2.8.0 + gtk_tree_view_get_hover_expand@Base 2.8.0 + gtk_tree_view_get_hover_selection@Base 2.8.0 + gtk_tree_view_get_level_indentation@Base 2.12.0 + gtk_tree_view_get_model@Base 2.8.0 + gtk_tree_view_get_path_at_pos@Base 2.8.0 + gtk_tree_view_get_reorderable@Base 2.8.0 + gtk_tree_view_get_row_separator_func@Base 2.8.0 + gtk_tree_view_get_rubber_banding@Base 2.10.0 + gtk_tree_view_get_rules_hint@Base 2.8.0 + gtk_tree_view_get_search_column@Base 2.8.0 + gtk_tree_view_get_search_entry@Base 2.10.0 + gtk_tree_view_get_search_equal_func@Base 2.8.0 + gtk_tree_view_get_search_position_func@Base 2.10.0 + gtk_tree_view_get_selection@Base 2.8.0 + gtk_tree_view_get_show_expanders@Base 2.12.0 + gtk_tree_view_get_tooltip_column@Base 2.12.0 + gtk_tree_view_get_tooltip_context@Base 2.12.0 + gtk_tree_view_get_type@Base 2.8.0 + gtk_tree_view_get_vadjustment@Base 2.8.0 + gtk_tree_view_get_visible_range@Base 2.8.0 + gtk_tree_view_get_visible_rect@Base 2.8.0 + gtk_tree_view_grid_lines_get_type@Base 2.10.0 + gtk_tree_view_insert_column@Base 2.8.0 + gtk_tree_view_insert_column_with_attributes@Base 2.8.0 + gtk_tree_view_insert_column_with_data_func@Base 2.8.0 + gtk_tree_view_is_rubber_banding_active@Base 2.12.0 + gtk_tree_view_map_expanded_rows@Base 2.8.0 + gtk_tree_view_mode_get_type@Base 2.8.0 + gtk_tree_view_move_column_after@Base 2.8.0 + gtk_tree_view_new@Base 2.8.0 + gtk_tree_view_new_with_model@Base 2.8.0 + gtk_tree_view_remove_column@Base 2.8.0 + gtk_tree_view_row_activated@Base 2.8.0 + gtk_tree_view_row_expanded@Base 2.8.0 + gtk_tree_view_scroll_to_cell@Base 2.8.0 + gtk_tree_view_scroll_to_point@Base 2.8.0 + gtk_tree_view_set_column_drag_function@Base 2.8.0 + gtk_tree_view_set_cursor@Base 2.8.0 + gtk_tree_view_set_cursor_on_cell@Base 2.8.0 + gtk_tree_view_set_destroy_count_func@Base 2.8.0 + gtk_tree_view_set_drag_dest_row@Base 2.8.0 + gtk_tree_view_set_enable_search@Base 2.8.0 + gtk_tree_view_set_enable_tree_lines@Base 2.10.0 + gtk_tree_view_set_expander_column@Base 2.8.0 + gtk_tree_view_set_fixed_height_mode@Base 2.8.0 + gtk_tree_view_set_grid_lines@Base 2.10.0 + gtk_tree_view_set_hadjustment@Base 2.8.0 + gtk_tree_view_set_headers_clickable@Base 2.8.0 + gtk_tree_view_set_headers_visible@Base 2.8.0 + gtk_tree_view_set_hover_expand@Base 2.8.0 + gtk_tree_view_set_hover_selection@Base 2.8.0 + gtk_tree_view_set_level_indentation@Base 2.12.0 + gtk_tree_view_set_model@Base 2.8.0 + gtk_tree_view_set_reorderable@Base 2.8.0 + gtk_tree_view_set_row_separator_func@Base 2.8.0 + gtk_tree_view_set_rubber_banding@Base 2.10.0 + gtk_tree_view_set_rules_hint@Base 2.8.0 + gtk_tree_view_set_search_column@Base 2.8.0 + gtk_tree_view_set_search_entry@Base 2.10.0 + gtk_tree_view_set_search_equal_func@Base 2.8.0 + gtk_tree_view_set_search_position_func@Base 2.10.0 + gtk_tree_view_set_show_expanders@Base 2.12.0 + gtk_tree_view_set_tooltip_cell@Base 2.12.0 + gtk_tree_view_set_tooltip_column@Base 2.12.0 + gtk_tree_view_set_tooltip_row@Base 2.12.0 + gtk_tree_view_set_vadjustment@Base 2.8.0 + gtk_tree_view_tree_to_widget_coords@Base 2.8.0 + gtk_tree_view_unset_rows_drag_dest@Base 2.8.0 + gtk_tree_view_unset_rows_drag_source@Base 2.8.0 + gtk_tree_view_widget_to_tree_coords@Base 2.8.0 + gtk_true@Base 2.8.0 + gtk_type_class@Base 2.8.0 + gtk_type_enum_find_value@Base 2.8.0 + gtk_type_enum_get_values@Base 2.8.0 + gtk_type_flags_find_value@Base 2.8.0 + gtk_type_flags_get_values@Base 2.8.0 + gtk_type_init@Base 2.8.0 + gtk_type_new@Base 2.8.0 + gtk_type_unique@Base 2.8.0 + gtk_ui_manager_add_ui@Base 2.8.0 + gtk_ui_manager_add_ui_from_file@Base 2.8.0 + gtk_ui_manager_add_ui_from_string@Base 2.8.0 + gtk_ui_manager_ensure_update@Base 2.8.0 + gtk_ui_manager_get_accel_group@Base 2.8.0 + gtk_ui_manager_get_action@Base 2.8.0 + gtk_ui_manager_get_action_groups@Base 2.8.0 + gtk_ui_manager_get_add_tearoffs@Base 2.8.0 + gtk_ui_manager_get_toplevels@Base 2.8.0 + gtk_ui_manager_get_type@Base 2.8.0 + gtk_ui_manager_get_ui@Base 2.8.0 + gtk_ui_manager_get_widget@Base 2.8.0 + gtk_ui_manager_insert_action_group@Base 2.8.0 + gtk_ui_manager_item_type_get_type@Base 2.8.0 + gtk_ui_manager_new@Base 2.8.0 + gtk_ui_manager_new_merge_id@Base 2.8.0 + gtk_ui_manager_remove_action_group@Base 2.8.0 + gtk_ui_manager_remove_ui@Base 2.8.0 + gtk_ui_manager_set_add_tearoffs@Base 2.8.0 + gtk_unit_get_type@Base 2.10.0 + gtk_update_type_get_type@Base 2.8.0 + gtk_vbox_get_type@Base 2.8.0 + gtk_vbox_new@Base 2.8.0 + gtk_vbutton_box_get_layout_default@Base 2.8.0 + gtk_vbutton_box_get_spacing_default@Base 2.8.0 + gtk_vbutton_box_get_type@Base 2.8.0 + gtk_vbutton_box_new@Base 2.8.0 + gtk_vbutton_box_set_layout_default@Base 2.8.0 + gtk_vbutton_box_set_spacing_default@Base 2.8.0 + gtk_viewport_get_bin_window@Base 2.20.0 + gtk_viewport_get_hadjustment@Base 2.8.0 + gtk_viewport_get_shadow_type@Base 2.8.0 + gtk_viewport_get_type@Base 2.8.0 + gtk_viewport_get_vadjustment@Base 2.8.0 + gtk_viewport_get_view_window@Base 2.21.8 + gtk_viewport_new@Base 2.8.0 + gtk_viewport_set_hadjustment@Base 2.8.0 + gtk_viewport_set_shadow_type@Base 2.8.0 + gtk_viewport_set_vadjustment@Base 2.8.0 + gtk_visibility_get_type@Base 2.8.0 + gtk_volume_button_get_type@Base 2.12.0 + gtk_volume_button_new@Base 2.12.0 + gtk_vpaned_get_type@Base 2.8.0 + gtk_vpaned_new@Base 2.8.0 + gtk_vruler_get_type@Base 2.8.0 + gtk_vruler_new@Base 2.8.0 + gtk_vscale_get_type@Base 2.8.0 + gtk_vscale_new@Base 2.8.0 + gtk_vscale_new_with_range@Base 2.8.0 + gtk_vscrollbar_get_type@Base 2.8.0 + gtk_vscrollbar_new@Base 2.8.0 + gtk_vseparator_get_type@Base 2.8.0 + gtk_vseparator_new@Base 2.8.0 + gtk_widget_activate@Base 2.8.0 + gtk_widget_add_accelerator@Base 2.8.0 + gtk_widget_add_events@Base 2.8.0 + gtk_widget_add_mnemonic_label@Base 2.8.0 + gtk_widget_can_activate_accel@Base 2.8.0 + gtk_widget_child_focus@Base 2.8.0 + gtk_widget_child_notify@Base 2.8.0 + gtk_widget_class_find_style_property@Base 2.8.0 + gtk_widget_class_install_style_property@Base 2.8.0 + gtk_widget_class_install_style_property_parser@Base 2.8.0 + gtk_widget_class_list_style_properties@Base 2.8.0 + gtk_widget_class_path@Base 2.8.0 + gtk_widget_create_pango_context@Base 2.8.0 + gtk_widget_create_pango_layout@Base 2.8.0 + gtk_widget_destroy@Base 2.8.0 + gtk_widget_destroyed@Base 2.8.0 + gtk_widget_draw@Base 2.8.0 + gtk_widget_ensure_style@Base 2.8.0 + gtk_widget_error_bell@Base 2.12.0 + gtk_widget_event@Base 2.8.0 + gtk_widget_flags_get_type@Base 2.8.0 + gtk_widget_freeze_child_notify@Base 2.8.0 + gtk_widget_get_accessible@Base 2.8.0 + gtk_widget_get_action@Base 2.10.0 + gtk_widget_get_allocation@Base 2.18.0 + gtk_widget_get_ancestor@Base 2.8.0 + gtk_widget_get_app_paintable@Base 2.18.0 + gtk_widget_get_can_default@Base 2.18.0 + gtk_widget_get_can_focus@Base 2.18.0 + gtk_widget_get_child_requisition@Base 2.8.0 + gtk_widget_get_child_visible@Base 2.8.0 + gtk_widget_get_clipboard@Base 2.8.0 + gtk_widget_get_colormap@Base 2.8.0 + gtk_widget_get_composite_name@Base 2.8.0 + gtk_widget_get_default_colormap@Base 2.8.0 + gtk_widget_get_default_direction@Base 2.8.0 + gtk_widget_get_default_style@Base 2.8.0 + gtk_widget_get_default_visual@Base 2.8.0 + gtk_widget_get_direction@Base 2.8.0 + gtk_widget_get_display@Base 2.8.0 + gtk_widget_get_double_buffered@Base 2.18.0 + gtk_widget_get_events@Base 2.8.0 + gtk_widget_get_extension_events@Base 2.8.0 + gtk_widget_get_has_tooltip@Base 2.12.0 + gtk_widget_get_has_window@Base 2.18.0 + gtk_widget_get_modifier_style@Base 2.8.0 + gtk_widget_get_mapped@Base 2.20.0 + gtk_widget_get_name@Base 2.8.0 + gtk_widget_get_no_show_all@Base 2.8.0 + gtk_widget_get_pango_context@Base 2.8.0 + gtk_widget_get_parent@Base 2.8.0 + gtk_widget_get_parent_window@Base 2.8.0 + gtk_widget_get_pointer@Base 2.8.0 + gtk_widget_get_realized@Base 2.20.0 + gtk_widget_get_receives_default@Base 2.18.0 + gtk_widget_get_requisition@Base 2.20.0 + gtk_widget_get_root_window@Base 2.8.0 + gtk_widget_get_screen@Base 2.8.0 + gtk_widget_get_sensitive@Base 2.18.0 + gtk_widget_get_settings@Base 2.8.0 + gtk_widget_get_size_request@Base 2.8.0 + gtk_widget_get_snapshot@Base 2.14.0 + gtk_widget_get_state@Base 2.18.0 + gtk_widget_get_style@Base 2.8.0 + gtk_widget_get_tooltip_markup@Base 2.12.0 + gtk_widget_get_tooltip_text@Base 2.12.0 + gtk_widget_get_tooltip_window@Base 2.12.0 + gtk_widget_get_toplevel@Base 2.8.0 + gtk_widget_get_type@Base 2.8.0 + gtk_widget_get_visible@Base 2.18.0 + gtk_widget_get_visual@Base 2.8.0 + gtk_widget_get_window@Base 2.14.0 + gtk_widget_grab_default@Base 2.8.0 + gtk_widget_grab_focus@Base 2.8.0 + gtk_widget_has_default@Base 2.18.0 + gtk_widget_has_focus@Base 2.18.0 + gtk_widget_has_grab@Base 2.18.0 + gtk_widget_has_rc_style@Base 2.20.0 + gtk_widget_has_screen@Base 2.8.0 + gtk_widget_help_type_get_type@Base 2.8.0 + gtk_widget_hide@Base 2.8.0 + gtk_widget_hide_all@Base 2.8.0 + gtk_widget_hide_on_delete@Base 2.8.0 + gtk_widget_input_shape_combine_mask@Base 2.10.0 + gtk_widget_intersect@Base 2.8.0 + gtk_widget_is_ancestor@Base 2.8.0 + gtk_widget_is_composited@Base 2.10.0 + gtk_widget_is_drawable@Base 2.18.0 + gtk_widget_is_focus@Base 2.8.0 + gtk_widget_is_sensitive@Base 2.18.0 + gtk_widget_is_toplevel@Base 2.18.0 + gtk_widget_keynav_failed@Base 2.12.0 + gtk_widget_list_accel_closures@Base 2.8.0 + gtk_widget_list_mnemonic_labels@Base 2.8.0 + gtk_widget_map@Base 2.8.0 + gtk_widget_mnemonic_activate@Base 2.8.0 + gtk_widget_modify_base@Base 2.8.0 + gtk_widget_modify_bg@Base 2.8.0 + gtk_widget_modify_cursor@Base 2.12.0 + gtk_widget_modify_fg@Base 2.8.0 + gtk_widget_modify_font@Base 2.8.0 + gtk_widget_modify_style@Base 2.8.0 + gtk_widget_modify_text@Base 2.8.0 + gtk_widget_new@Base 2.8.0 + gtk_widget_path@Base 2.8.0 + gtk_widget_pop_colormap@Base 2.8.0 + gtk_widget_pop_composite_child@Base 2.8.0 + gtk_widget_push_colormap@Base 2.8.0 + gtk_widget_push_composite_child@Base 2.8.0 + gtk_widget_queue_clear@Base 2.8.0 + gtk_widget_queue_clear_area@Base 2.8.0 + gtk_widget_queue_draw@Base 2.8.0 + gtk_widget_queue_draw_area@Base 2.8.0 + gtk_widget_queue_resize@Base 2.8.0 + gtk_widget_queue_resize_no_redraw@Base 2.8.0 + gtk_widget_realize@Base 2.8.0 + gtk_widget_ref@Base 2.8.0 + gtk_widget_region_intersect@Base 2.8.0 + gtk_widget_remove_accelerator@Base 2.8.0 + gtk_widget_remove_mnemonic_label@Base 2.8.0 + gtk_widget_render_icon@Base 2.8.0 + gtk_widget_reparent@Base 2.8.0 + gtk_widget_reset_rc_styles@Base 2.8.0 + gtk_widget_reset_shapes@Base 2.8.0 + gtk_widget_send_expose@Base 2.8.0 + gtk_widget_send_focus_change@Base 2.21.8 + gtk_widget_set@Base 2.8.0 + gtk_widget_set_accel_path@Base 2.8.0 + gtk_widget_set_allocation@Base 2.18.0 + gtk_widget_set_app_paintable@Base 2.8.0 + gtk_widget_set_can_default@Base 2.18.0 + gtk_widget_set_can_focus@Base 2.18.0 + gtk_widget_set_child_visible@Base 2.8.0 + gtk_widget_set_colormap@Base 2.8.0 + gtk_widget_set_composite_name@Base 2.8.0 + gtk_widget_set_default_colormap@Base 2.8.0 + gtk_widget_set_default_direction@Base 2.8.0 + gtk_widget_set_direction@Base 2.8.0 + gtk_widget_set_double_buffered@Base 2.8.0 + gtk_widget_set_events@Base 2.8.0 + gtk_widget_set_extension_events@Base 2.8.0 + gtk_widget_set_has_tooltip@Base 2.12.0 + gtk_widget_set_has_window@Base 2.18.0 + gtk_widget_set_mapped@Base 2.20.0 + gtk_widget_set_name@Base 2.8.0 + gtk_widget_set_no_show_all@Base 2.8.0 + gtk_widget_set_parent@Base 2.8.0 + gtk_widget_set_parent_window@Base 2.8.0 + gtk_widget_set_realized@Base 2.20.0 + gtk_widget_set_receives_default@Base 2.18.0 + gtk_widget_set_redraw_on_allocate@Base 2.8.0 + gtk_widget_set_scroll_adjustments@Base 2.8.0 + gtk_widget_set_sensitive@Base 2.8.0 + gtk_widget_set_size_request@Base 2.8.0 + gtk_widget_set_state@Base 2.8.0 + gtk_widget_set_style@Base 2.8.0 + gtk_widget_set_tooltip_markup@Base 2.12.0 + gtk_widget_set_tooltip_text@Base 2.12.0 + gtk_widget_set_tooltip_window@Base 2.12.0 + gtk_widget_set_uposition@Base 2.8.0 + gtk_widget_set_usize@Base 2.8.0 + gtk_widget_set_visible@Base 2.18.0 + gtk_widget_set_window@Base 2.18.0 + gtk_widget_shape_combine_mask@Base 2.8.0 + gtk_widget_show@Base 2.8.0 + gtk_widget_show_all@Base 2.8.0 + gtk_widget_show_now@Base 2.8.0 + gtk_widget_size_allocate@Base 2.8.0 + gtk_widget_size_request@Base 2.8.0 + gtk_widget_style_attach@Base 2.20.0 + gtk_widget_style_get@Base 2.8.0 + gtk_widget_style_get_property@Base 2.8.0 + gtk_widget_style_get_valist@Base 2.8.0 + gtk_widget_thaw_child_notify@Base 2.8.0 + gtk_widget_translate_coordinates@Base 2.8.0 + gtk_widget_trigger_tooltip_query@Base 2.12.0 + gtk_widget_unmap@Base 2.8.0 + gtk_widget_unparent@Base 2.8.0 + gtk_widget_unrealize@Base 2.8.0 + gtk_widget_unref@Base 2.8.0 + gtk_window_activate_default@Base 2.8.0 + gtk_window_activate_focus@Base 2.8.0 + gtk_window_activate_key@Base 2.8.0 + gtk_window_add_accel_group@Base 2.8.0 + gtk_window_add_embedded_xid@Base 2.8.0 + gtk_window_add_mnemonic@Base 2.8.0 + gtk_window_begin_move_drag@Base 2.8.0 + gtk_window_begin_resize_drag@Base 2.8.0 + gtk_window_deiconify@Base 2.8.0 + gtk_window_fullscreen@Base 2.8.0 + gtk_window_get_accept_focus@Base 2.8.0 + gtk_window_get_decorated@Base 2.8.0 + gtk_window_get_default_icon_list@Base 2.8.0 + gtk_window_get_default_icon_name@Base 2.16.0 + gtk_window_get_default_size@Base 2.8.0 + gtk_window_get_default_widget@Base 2.14.0 + gtk_window_get_deletable@Base 2.10.0 + gtk_window_get_destroy_with_parent@Base 2.8.0 + gtk_window_get_focus@Base 2.8.0 + gtk_window_get_focus_on_map@Base 2.8.0 + gtk_window_get_frame_dimensions@Base 2.8.0 + gtk_window_get_gravity@Base 2.8.0 + gtk_window_get_group@Base 2.10.0 + gtk_window_get_has_frame@Base 2.8.0 + gtk_window_get_icon@Base 2.8.0 + gtk_window_get_icon_list@Base 2.8.0 + gtk_window_get_icon_name@Base 2.8.0 + gtk_window_get_mnemonic_modifier@Base 2.8.0 + gtk_window_get_mnemonics_visible@Base 2.20.0 + gtk_window_get_modal@Base 2.8.0 + gtk_window_get_opacity@Base 2.12.0 + gtk_window_get_position@Base 2.8.0 + gtk_window_get_resizable@Base 2.8.0 + gtk_window_get_role@Base 2.8.0 + gtk_window_get_screen@Base 2.8.0 + gtk_window_get_size@Base 2.8.0 + gtk_window_get_skip_pager_hint@Base 2.8.0 + gtk_window_get_skip_taskbar_hint@Base 2.8.0 + gtk_window_get_title@Base 2.8.0 + gtk_window_get_transient_for@Base 2.8.0 + gtk_window_get_type@Base 2.8.0 + gtk_window_get_type_hint@Base 2.8.0 + gtk_window_get_urgency_hint@Base 2.8.0 + gtk_window_get_window_type@Base 2.20.0 + gtk_window_group_add_window@Base 2.8.0 + gtk_window_group_get_current_grab@Base 2.21.8 + gtk_window_group_get_type@Base 2.8.0 + gtk_window_group_list_windows@Base 2.14.0 + gtk_window_group_new@Base 2.8.0 + gtk_window_group_remove_window@Base 2.8.0 + gtk_window_has_group@Base 2.21.8 + gtk_window_has_toplevel_focus@Base 2.8.0 + gtk_window_iconify@Base 2.8.0 + gtk_window_is_active@Base 2.8.0 + gtk_window_list_toplevels@Base 2.8.0 + gtk_window_maximize@Base 2.8.0 + gtk_window_mnemonic_activate@Base 2.8.0 + gtk_window_move@Base 2.8.0 + gtk_window_new@Base 2.8.0 + gtk_window_parse_geometry@Base 2.8.0 + gtk_window_position_get_type@Base 2.8.0 + gtk_window_present@Base 2.8.0 + gtk_window_present_with_time@Base 2.8.0 + gtk_window_propagate_key_event@Base 2.8.0 + gtk_window_remove_accel_group@Base 2.8.0 + gtk_window_remove_embedded_xid@Base 2.8.0 + gtk_window_remove_mnemonic@Base 2.8.0 + gtk_window_reshow_with_initial_size@Base 2.8.0 + gtk_window_resize@Base 2.8.0 + gtk_window_set_accept_focus@Base 2.8.0 + gtk_window_set_auto_startup_notification@Base 2.8.0 + gtk_window_set_decorated@Base 2.8.0 + gtk_window_set_default@Base 2.8.0 + gtk_window_set_default_icon@Base 2.8.0 + gtk_window_set_default_icon_from_file@Base 2.8.0 + gtk_window_set_default_icon_list@Base 2.8.0 + gtk_window_set_default_icon_name@Base 2.8.0 + gtk_window_set_default_size@Base 2.8.0 + gtk_window_set_deletable@Base 2.10.0 + gtk_window_set_destroy_with_parent@Base 2.8.0 + gtk_window_set_focus@Base 2.8.0 + gtk_window_set_focus_on_map@Base 2.8.0 + gtk_window_set_frame_dimensions@Base 2.8.0 + gtk_window_set_geometry_hints@Base 2.8.0 + gtk_window_set_gravity@Base 2.8.0 + gtk_window_set_has_frame@Base 2.8.0 + gtk_window_set_icon@Base 2.8.0 + gtk_window_set_icon_from_file@Base 2.8.0 + gtk_window_set_icon_list@Base 2.8.0 + gtk_window_set_icon_name@Base 2.8.0 + gtk_window_set_keep_above@Base 2.8.0 + gtk_window_set_keep_below@Base 2.8.0 + gtk_window_set_mnemonic_modifier@Base 2.8.0 + gtk_window_set_mnemonics_visible@Base 2.20.0 + gtk_window_set_modal@Base 2.8.0 + gtk_window_set_opacity@Base 2.12.0 + gtk_window_set_policy@Base 2.8.0 + gtk_window_set_position@Base 2.8.0 + gtk_window_set_resizable@Base 2.8.0 + gtk_window_set_role@Base 2.8.0 + gtk_window_set_screen@Base 2.8.0 + gtk_window_set_skip_pager_hint@Base 2.8.0 + gtk_window_set_skip_taskbar_hint@Base 2.8.0 + gtk_window_set_startup_id@Base 2.12.0 + gtk_window_set_title@Base 2.8.0 + gtk_window_set_transient_for@Base 2.8.0 + gtk_window_set_type_hint@Base 2.8.0 + gtk_window_set_urgency_hint@Base 2.8.0 + gtk_window_set_wmclass@Base 2.8.0 + gtk_window_stick@Base 2.8.0 + gtk_window_type_get_type@Base 2.8.0 + gtk_window_unfullscreen@Base 2.8.0 + gtk_window_unmaximize@Base 2.8.0 + gtk_window_unstick@Base 2.8.0 + gtk_wrap_mode_get_type@Base 2.8.0 + hildon_gtk_file_chooser_install_properties@Base 2.10.0 + ubuntu_gtk_menu_shell_activate_mnemonic@Base 2.21.6-1ubuntu5.1 + ubuntu_gtk_widget_set_has_grab@Base 2.21.6-1ubuntu3 + ubuntu_menu_proxy_activate_menu@Base 2.21.6-1ubuntu5.1 + ubuntu_menu_proxy_get@Base 2.21.1-1ubuntu2 + ubuntu_menu_proxy_get_type@Base 2.21.1-1ubuntu2 + ubuntu_menu_proxy_insert@Base 2.21.1-1ubuntu2 + ubuntu_menu_proxy_module_get@Base 2.21.1-1ubuntu2 + ubuntu_menu_proxy_module_get_type@Base 2.21.1-1ubuntu2 + ubuntu_menu_proxy_show_local@Base 2.21.1-1ubuntu2 --- gtk+2.0-2.22.0.orig/debian/libgail18.symbols +++ gtk+2.0-2.22.0/debian/libgail18.symbols @@ -0,0 +1,16 @@ +libgailutil.so.18 libgail18 #MINVER# +* Build-Depends-Package: libgail-dev + gail_misc_add_attribute@Base 1.18.0 + gail_misc_add_to_attr_set@Base 1.18.0 + gail_misc_buffer_get_run_attributes@Base 1.18.0 + gail_misc_get_default_attributes@Base 1.18.0 + gail_misc_get_extents_from_pango_rectangle@Base 1.18.0 + gail_misc_get_index_at_point_in_layout@Base 1.18.0 + gail_misc_get_origins@Base 1.18.0 + gail_misc_layout_get_run_attributes@Base 1.18.0 + gail_text_util_buffer_setup@Base 1.18.0 + gail_text_util_get_substring@Base 1.18.0 + gail_text_util_get_text@Base 1.18.0 + gail_text_util_get_type@Base 1.18.0 + gail_text_util_new@Base 1.18.0 + gail_text_util_text_setup@Base 1.18.0 --- gtk+2.0-2.22.0.orig/debian/libgail-doc.links +++ gtk+2.0-2.22.0/debian/libgail-doc.links @@ -0,0 +1 @@ +/usr/share/gtk-doc/html/gail-libgail-util /usr/share/doc/libgail-doc/html --- gtk+2.0-2.22.0.orig/debian/control +++ gtk+2.0-2.22.0/debian/control @@ -0,0 +1,310 @@ +Source: gtk+2.0 +Section: libs +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Sebastien Bacher +Uploaders: Debian GNOME Maintainers , Sebastian Dröge +Build-Depends: debhelper (>= 5.0.22), + gettext, + pkg-config, + autotools-dev, + libglib2.0-dev (>= 2.25.8), + libgdk-pixbuf2.0-dev (>= 2.21.0), + libpango1.0-dev (>= 1.20), + libatk1.0-dev (>= 1.29.2), + libx11-dev (>= 2:1.3.3-2), + libxext-dev (>= 2:1.1.1-3), + libxi-dev (>= 2:1.3-4), + libxrandr-dev (>= 1:1.2.99), + libxt-dev, + libxrender-dev (>= 1:0.9.5-2), + libxft-dev, + libxcursor-dev (>= 1:1.1.10-2), + libxcomposite-dev (>= 1:0.2.0-3), + libxdamage-dev (>= 1:1.0.1-3), + libxkbfile-dev, + libxinerama-dev (>= 2:1.1-3), + libxfixes-dev (>= 1:3.0.0-3), + libcairo2-dev (>= 1.6.4-6.1), + gnome-pkg-tools (>= 0.11), + chrpath, + dpkg-dev (>= 1.13.19), + x11proto-xext-dev, + libcups2-dev (>= 1.2), + gobject-introspection, + gir1.0-freedesktop, + libgirepository1.0-dev, + gir1.0-glib-2.0, + gir1.0-atk-1.0, + gir1.0-pango-1.0, + gir1.0-gdkpixbuf-2.0, + quilt, + gawk, + xsltproc, + shared-mime-info +Build-Depends-Indep: gtk-doc-tools (>= 1.8), + docbook-xml, + libglib2.0-doc, + libatk1.0-doc, + libpango1.0-doc, + libcairo2-doc +Standards-Version: 3.8.4 +Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gtk/ubuntu +Homepage: http://www.gtk.org/ + +Package: libgtk2.0-0 +Architecture: any +Depends: libgtk2.0-common, + ${misc:Depends}, + ${shlibs:Depends}, + shared-mime-info +Provides: gtk2.0-binver-2.10.0 +Recommends: hicolor-icon-theme, + libgtk2.0-bin +Conflicts: appmenu-gtk (<< 0.1.3) +Suggests: librsvg2-common, + gvfs +Description: The GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the shared libraries. + +Package: libgtk2.0-0-udeb +XC-Package-Type: udeb +Section: debian-installer +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Provides: gtk2.0-binver-2.10.0 +Description: The GTK+ graphical user interface library - minimal runtime + This is a udeb, or a microdeb, for the debian-installer. + . + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the minimal runtime library using X11 needed + by the Debian installer. + +Package: libgtk2.0-common +Section: misc +Architecture: all +Depends: ${misc:Depends} +Recommends: libgtk2.0-0 +Description: Common files for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the common files which the libraries need. + +Package: libgtk2.0-bin +Section: misc +Architecture: all +Depends: ${misc:Depends}, + libgtk2.0-0 (>= ${source:Version}), + libgtk2.0-common +Description: The programs for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the program files which is used for the libraries + and others. + +Package: libgtk2.0-dev +Section: libdevel +Architecture: any +Depends: libgtk2.0-0 (= ${binary:Version}), + libgtk2.0-common, + ${misc:Depends}, + ${shlibs:Depends}, + libglib2.0-dev (>= 2.25.8), + libgdk-pixbuf2.0-dev (>= 2.21.0), + libpango1.0-dev (>= 1.20), + libatk1.0-dev (>= 1.29.2), + libcairo2-dev (>= 1.6.4-6.1), + libx11-dev (>= 2:1.0.0-6), + libxext-dev (>= 1:1.0.1-2), + libxinerama-dev (>= 1:1.0.1-4.1), + libxi-dev (>= 1:1.0.1-4), + libxrandr-dev (>= 1:1.2.99), + libxcursor-dev, + libxfixes-dev (>= 1:3.0.0-3), + libxcomposite-dev (>= 1:0.2.0-3), + libxdamage-dev (>= 1:1.0.1-3), + pkg-config, + libxml2-utils +Recommends: python (>= 2.4), + debhelper +Suggests: libgtk2.0-doc +Replaces: gir-repository-dev +Description: Development files for the GTK+ library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the header files and static libraries which is + needed for developing the GTK+ applications. + +Package: libgtk2.0-0-dbg +Section: debug +Priority: extra +Architecture: any +Depends: libgtk2.0-0 (= ${binary:Version}), + libgtk2.0-common, + ${misc:Depends} +Description: The GTK+ libraries and debugging symbols + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains detached debugging symbols. + . + Most people will not need this package. + +Package: libgtk2.0-doc +Section: doc +Architecture: all +Depends: lynx | www-browser, + ${misc:Depends} +Recommends: libglib2.0-doc, + libatk1.0-doc, + libpango1.0-doc +Description: Documentation for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the HTML documentation for the GTK+ library + in /usr/share/doc/libgtk2.0-doc/ . + +Package: gtk2.0-examples +Section: x11 +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + libgtk2.0-0 (= ${binary:Version}) +Description: Examples files for the GTK+ 2.0 + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the examples files and a demonstration program + for the GTK+-2.0. + +Package: gtk2-engines-pixbuf +Section: graphics +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + libgtk2.0-0 (= ${binary:Version}), + libgtk2.0-common +Description: Pixbuf-based theme for GTK+ 2.x + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the pixbuf theme engine. + +Package: gir1.0-gtk-2.0 +Architecture: any +Depends: libgtk2.0-common, + ${misc:Depends}, + ${shlibs:Depends}, + ${gir:Depends} +Conflicts: gobject-introspection-repository +Description: The GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package can be used by other packages using the GIRepository format to + generate dynamic bindings. + +Package: libgail18 +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + libgtk2.0-0 (= ${binary:Version}) +Replaces: libgail17, libgtk2.0-0 (<< 2.14.5) +Description: GNOME Accessibility Implementation Library -- shared libraries + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the shared library. + +Package: libgail-common +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + libgail18 (= ${binary:Version}) +Description: GNOME Accessibility Implementation Library -- common modules + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains core shared libraries. + +Package: libgail-dev +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, + libgail18 (= ${binary:Version}), + libgail-common (= ${binary:Version}), + libgtk2.0-dev (= ${binary:Version}), + pkg-config, + libatk1.0-dev (>= 1.13.0) +Suggests: libgail-doc +Replaces: libgtk2.0-dev (<< 2.14.5) +Description: GNOME Accessibility Implementation Library -- development files + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the development files for Gail. + +Package: libgail-dbg +Architecture: any +Section: debug +Priority: extra +Depends: ${misc:Depends}, libgail18 (= ${binary:Version}) +Recommends: libgtk2.0-0-dbg +Replaces: libgtk2.0-0-dbg (<< 2.14.5) +Description: Gail libraries and debugging symbols + Gail is the "GNOME Accessibility Implementation Library". + . + This package contains detached debugging symbols. + . + Most people will not need this package. + +Package: libgail-doc +Architecture: all +Section: doc +Depends: ${misc:Depends}, lynx | www-browser +Replaces: libgtk2.0-doc (<< 2.14.5) +Description: documentation files of the Gail library + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the documentation files for Gail. --- gtk+2.0-2.22.0.orig/debian/control.in +++ gtk+2.0-2.22.0/debian/control.in @@ -0,0 +1,310 @@ +Source: gtk+@APIVER@ +Section: libs +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Sebastien Bacher +Uploaders: @GNOME_TEAM@ +Build-Depends: debhelper (>= 5.0.22), + gettext, + pkg-config, + autotools-dev, + libglib2.0-dev (>= 2.25.8), + libgdk-pixbuf2.0-dev (>= 2.21.0), + libpango1.0-dev (>= 1.20), + libatk1.0-dev (>= 1.29.2), + libx11-dev (>= 2:1.3.3-2), + libxext-dev (>= 2:1.1.1-3), + libxi-dev (>= 2:1.3-4), + libxrandr-dev (>= 1:1.2.99), + libxt-dev, + libxrender-dev (>= 1:0.9.5-2), + libxft-dev, + libxcursor-dev (>= 1:1.1.10-2), + libxcomposite-dev (>= 1:0.2.0-3), + libxdamage-dev (>= 1:1.0.1-3), + libxkbfile-dev, + libxinerama-dev (>= 2:1.1-3), + libxfixes-dev (>= 1:3.0.0-3), + libcairo2-dev (>= 1.6.4-6.1), + gnome-pkg-tools (>= 0.11), + chrpath, + dpkg-dev (>= 1.13.19), + x11proto-xext-dev, + libcups2-dev (>= 1.2), + gobject-introspection, + gir1.0-freedesktop, + libgirepository1.0-dev, + gir1.0-glib-2.0, + gir1.0-atk-1.0, + gir1.0-pango-1.0, + gir1.0-gdkpixbuf-2.0, + quilt, + gawk, + xsltproc, + shared-mime-info +Build-Depends-Indep: gtk-doc-tools (>= 1.8), + docbook-xml, + libglib2.0-doc, + libatk1.0-doc, + libpango1.0-doc, + libcairo2-doc +Standards-Version: 3.8.4 +Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gtk/ubuntu +Homepage: http://www.gtk.org/ + +Package: @SHARED_PKG@ +Architecture: any +Depends: @COMMON_PKG@, + ${misc:Depends}, + ${shlibs:Depends}, + shared-mime-info +Provides: @GTK_BINVER_DEP@ +Recommends: hicolor-icon-theme, + @BIN_PKG@ +Conflicts: appmenu-gtk (<< 0.1.3) +Suggests: librsvg2-common, + gvfs +Description: The GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the shared libraries. + +Package: @UDEB_PKG@ +XC-Package-Type: udeb +Section: debian-installer +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Provides: @GTK_BINVER_DEP@ +Description: The GTK+ graphical user interface library - minimal runtime + This is a udeb, or a microdeb, for the debian-installer. + . + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the minimal runtime library using X11 needed + by the Debian installer. + +Package: @COMMON_PKG@ +Section: misc +Architecture: all +Depends: ${misc:Depends} +Recommends: @SHARED_PKG@ +Description: Common files for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the common files which the libraries need. + +Package: @BIN_PKG@ +Section: misc +Architecture: all +Depends: ${misc:Depends}, + @SHARED_PKG@ (>= ${source:Version}), + @COMMON_PKG@ +Description: The programs for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the program files which is used for the libraries + and others. + +Package: @DEV_PKG@ +Section: libdevel +Architecture: any +Depends: @SHARED_PKG@ (= ${binary:Version}), + @COMMON_PKG@, + ${misc:Depends}, + ${shlibs:Depends}, + libglib2.0-dev (>= 2.25.8), + libgdk-pixbuf2.0-dev (>= 2.21.0), + libpango1.0-dev (>= 1.20), + libatk1.0-dev (>= 1.29.2), + libcairo2-dev (>= 1.6.4-6.1), + libx11-dev (>= 2:1.0.0-6), + libxext-dev (>= 1:1.0.1-2), + libxinerama-dev (>= 1:1.0.1-4.1), + libxi-dev (>= 1:1.0.1-4), + libxrandr-dev (>= 1:1.2.99), + libxcursor-dev, + libxfixes-dev (>= 1:3.0.0-3), + libxcomposite-dev (>= 1:0.2.0-3), + libxdamage-dev (>= 1:1.0.1-3), + pkg-config, + libxml2-utils +Recommends: python (>= 2.4), + debhelper +Suggests: @DOC_PKG@ +Replaces: gir-repository-dev +Description: Development files for the GTK+ library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the header files and static libraries which is + needed for developing the GTK+ applications. + +Package: @DEBUG_PKG@ +Section: debug +Priority: extra +Architecture: any +Depends: @SHARED_PKG@ (= ${binary:Version}), + @COMMON_PKG@, + ${misc:Depends} +Description: The GTK+ libraries and debugging symbols + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains detached debugging symbols. + . + Most people will not need this package. + +Package: @DOC_PKG@ +Section: doc +Architecture: all +Depends: lynx | www-browser, + ${misc:Depends} +Recommends: libglib2.0-doc, + libatk1.0-doc, + libpango1.0-doc +Description: Documentation for the GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the HTML documentation for the GTK+ library + in /usr/share/doc/@DOC_PKG@/ . + +Package: @EXAMPLES_PKG@ +Section: x11 +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + @SHARED_PKG@ (= ${binary:Version}) +Description: Examples files for the GTK+ 2.0 + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the examples files and a demonstration program + for the GTK+-2.0. + +Package: @PIXBUF_PKG@ +Section: graphics +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + @SHARED_PKG@ (= ${binary:Version}), + @COMMON_PKG@ +Description: Pixbuf-based theme for GTK+ 2.x + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package contains the pixbuf theme engine. + +Package: gir1.0-gtk-2.0 +Architecture: any +Depends: @COMMON_PKG@, + ${misc:Depends}, + ${shlibs:Depends}, + ${gir:Depends} +Conflicts: gobject-introspection-repository +Description: The GTK+ graphical user interface library + The GTK+ is a multi-platform toolkit for creating graphical user + interfaces. Offering a complete set of widgets, the GTK+ is suitable + for projects ranging from small one-off tools to complete application + suites. + . + This package can be used by other packages using the GIRepository format to + generate dynamic bindings. + +Package: libgail18 +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + @SHARED_PKG@ (= ${binary:Version}) +Replaces: libgail17, libgtk2.0-0 (<< 2.14.5) +Description: GNOME Accessibility Implementation Library -- shared libraries + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the shared library. + +Package: libgail-common +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends}, + libgail18 (= ${binary:Version}) +Description: GNOME Accessibility Implementation Library -- common modules + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains core shared libraries. + +Package: libgail-dev +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, + libgail18 (= ${binary:Version}), + libgail-common (= ${binary:Version}), + @DEV_PKG@ (= ${binary:Version}), + pkg-config, + libatk1.0-dev (>= 1.13.0) +Suggests: libgail-doc +Replaces: libgtk2.0-dev (<< 2.14.5) +Description: GNOME Accessibility Implementation Library -- development files + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the development files for Gail. + +Package: libgail-dbg +Architecture: any +Section: debug +Priority: extra +Depends: ${misc:Depends}, libgail18 (= ${binary:Version}) +Recommends: @DEBUG_PKG@ +Replaces: libgtk2.0-0-dbg (<< 2.14.5) +Description: Gail libraries and debugging symbols + Gail is the "GNOME Accessibility Implementation Library". + . + This package contains detached debugging symbols. + . + Most people will not need this package. + +Package: libgail-doc +Architecture: all +Section: doc +Depends: ${misc:Depends}, lynx | www-browser +Replaces: libgtk2.0-doc (<< 2.14.5) +Description: documentation files of the Gail library + Gail implements ATK interfaces for GTK+ widgets which are dynamically + loadable at runtime by a GTK+ application. Once loaded, those parts of + an application that use standard GTK+ widgets will have a basic level + of accessibility, without the need to modify the application at all. + . + This package contains the documentation files for Gail. --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-common.install +++ gtk+2.0-2.22.0/debian/libgtk2.0-common.install @@ -0,0 +1,3 @@ +# from the shared flavor +debian/install/shared/usr/share/locale usr/share +debian/install/shared/usr/share/themes usr/share --- gtk+2.0-2.22.0.orig/debian/libgail-doc.doc-base.gail-reference +++ gtk+2.0-2.22.0/debian/libgail-doc.doc-base.gail-reference @@ -0,0 +1,10 @@ +Document: gail-reference +Title: Gail Reference Manual +Author: Padraig O'Briain +Abstract: This manual describes APIs for libgail-util +Section: Accessibility + +Format: HTML +Index: /usr/share/gtk-doc/html/gail-libgail-util/index.html +Files: /usr/share/gtk-doc/html/gail-libgail-util/*.html + --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0-dbg.preinst +++ gtk+2.0-2.22.0/debian/libgtk2.0-0-dbg.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk2.0-0-dbg +oldsymtarget=libgtk2.0-0 +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0-udeb.install.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-0-udeb.install.in @@ -0,0 +1,2 @@ +# from the shared flavor +debian/install/shared_udeb/@LIBDIR@/libg?k*.so.* @LIBDIR@ --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-doc.doc-base.gtk.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-doc.doc-base.gtk.in @@ -0,0 +1,11 @@ +Document: gtk +Title: GTK+ Reference Manual +Author: Damon Chaplin et al. +Abstract: The GTK+ library provides a graphical user interface for + C programs, and is used in projects such as GIMP, GNOME, and Mozilla. + This document covers programming using the GTK+ library. +Section: Programming/C + +Format: HTML +Index: /usr/share/doc/@DOC_PKG@/gtk/index.html +Files: /usr/share/doc/@DOC_PKG@/gtk/*.html --- gtk+2.0-2.22.0.orig/debian/update-icon-caches +++ gtk+2.0-2.22.0/debian/update-icon-caches @@ -0,0 +1,26 @@ +#!/bin/sh + +case "$1" in + ""|-h|--help) + echo "Usage: $0 directory [ ... ]" + exit 1 + ;; +esac + +for dir in "$@"; do + if [ ! -d "$dir" ]; then + continue + fi + if [ -f "$dir"/index.theme ]; then + # Generate or regenerate the cache + if ! gtk-update-icon-cache --force --quiet "$dir"; then + echo "WARNING: icon cache generation failed for $dir" + fi + else + # No more index.theme, remove the cache if it exists + rm -f "$dir"/icon-theme.cache + rmdir -p --ignore-fail-on-non-empty "$dir" + fi +done + +exit 0 --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-bin.preinst +++ gtk+2.0-2.22.0/debian/libgtk2.0-bin.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk2.0-bin +oldsymtarget=libgtk2.0-0 +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-doc.doc-base.gdk +++ gtk+2.0-2.22.0/debian/libgtk2.0-doc.doc-base.gdk @@ -0,0 +1,13 @@ +Document: gdk +Title: GDK Reference Manual +Author: Damon Chaplin et al. +Abstract: The GDK library provides an OS-independant wrapper around the + most fundamental graphical user interface functions. This allows + GTK+ to be ported to non-X11 systems, as long as GDK is ported first. + . + This document covers programming in GDK. +Section: Programming/C + +Format: HTML +Index: /usr/share/doc/libgtk2.0-doc/gdk/index.html +Files: /usr/share/doc/libgtk2.0-doc/gdk/*.html --- gtk+2.0-2.22.0.orig/debian/gtk2.0-examples.examples +++ gtk+2.0-2.22.0/debian/gtk2.0-examples.examples @@ -0,0 +1,2 @@ +# from the source +examples/* --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0.preinst +++ gtk+2.0-2.22.0/debian/libgtk2.0-0.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc symlinks as it's a directory since 2.12.5-2 +pkg=libgtk2.0-0 +oldsymtarget=libgtk2.0-common +if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then + rm -f /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.22.0.orig/debian/rules +++ gtk+2.0-2.22.0/debian/rules @@ -0,0 +1,355 @@ +#!/usr/bin/make -f + +# Debian GNOME Maintainers +DISABLE_UPDATE_UPLOADERS := 1 +include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk +include /usr/share/gnome-pkg-tools/1/rules/check-dist.mk +# get-orig-source target +-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk + +GNOME_MODULE := gtk+ + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +STAMP_DIR := debian/stampdir + +PATCH_DIR := debian/patches + +# rules in this debian/rules Makefile can be built concurrently as well as +# upstream rules in Makefile; all $(MAKE) invocations will inherit this flag, +# if you recurse into debian/rules ($(MAKE) +# -f debian/rules in rules), you need to pass a flag to avoid adding "-jX" when +# the childs encounters this line +DEB_BUILD_OPTIONS_PARALLEL ?= $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) +PARALLEL_FLAGS += $(if $(DEB_BUILD_OPTIONS_PARALLEL),-j$(DEB_BUILD_OPTIONS_PARALLEL)) + +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) + +# relative libdir +ifneq (,$(findstring multiarch,$(DEB_BUILD_OPTIONS))) +LIBDIR := usr/lib/$(DEB_HOST_GNU_TYPE) +else +LIBDIR := usr/lib +endif + +# ppc64 support; see #386815 +ifeq ($(DEB_HOST_GNU_CPU),powerpc64) + CFLAGS += -mminimal-toc +endif + +# default CFLAGS; these can be expanded with $(call flavor_get, ) +CFLAGS += -Wall -g -O$(if $(findstring noopt,$(DEB_BUILD_OPTIONS)),0,2) + +# default LDFLAGS; these can be expanded with $(call flavor_get, ) +# currently fails in the cups gtkprint backend +#LDFLAGS += -Wl,-z,defs + +DEBVERSION := $(shell dpkg-parsechangelog | sed -n -e 's/^Version: //p') +VERSION := $(shell echo $(DEBVERSION) | sed -e 's/-[^-]*$$//') +APIVER := 2.0 +SONAME := 0 +SHVER := 2.21.8 + +# earliest version that this release has backwards binary compatibility for +GTK_BINARY_VERSION := 2.10.0 + +# Gtk binary version virtual Provide +GTK_BINVER_DEP := gtk$(APIVER)-binver-$(GTK_BINARY_VERSION) + +# relative base directory for all types of modules +MODULES_BASE_PATH := $(LIBDIR)/gtk-$(APIVER)/$(GTK_BINARY_VERSION) + +# package names +SHARED_PKG := libgtk$(APIVER)-$(SONAME) +COMMON_PKG := libgtk$(APIVER)-common +DEV_PKG := libgtk$(APIVER)-dev +UDEB_PKG := $(SHARED_PKG)-udeb +DOC_PKG := libgtk$(APIVER)-doc +BIN_PKG := libgtk$(APIVER)-bin +DEBUG_PKG := $(SHARED_PKG)-dbg +EXAMPLES_PKG := gtk$(APIVER)-examples +PIXBUF_PKG := gtk2-engines-pixbuf + +# package groups, used in rule dependencies and in cleanup +BINARY_INDEP_PKGS := $(COMMON_PKG) $(BIN_PKG) $(DOC_PKG) libgail-doc +BINARY_ARCH_PKGS := $(SHARED_PKG) gir1.0-gtk-2.0 $(UDEB_PKG) $(DEV_PKG) $(DEBUG_PKG) $(EXAMPLES_PKG) $(PIXBUF_PKG) libgail18 libgail-dbg libgail-dev libgail-common +ALL_PKGS := $(BINARY_INDEP_PKGS) $(BINARY_ARCH_PKGS) + +# list of flavors we build; each gets a builddir, a configure pass (configure +# args are defined below), a build pass, and an install pass (in two steps) +# Note: the shared flavor is required +FLAVORS := shared shared_udeb static + +# current flavor we're building; this is only expanded in flavor specific +# targets +current_flavor = $* + +# macro to get a value for the current flavor we're building; for example +# when building the shared flavor, $(call flavor_get,CFLAGS) will expand to +# shared_CFLAGS if it's set or to CFLAGS otherwise; pay attention to not adding +# superflous spaces when for the arguments of $(call ); only some vars can +# be expanded in this way though +flavor_get = $(or $($(current_flavor)_$(1)),$($(1))) + +# build dir for the current flavor; this is only expanded in flavor specific +# targets +builddir = $(buildbasedir)/$(current_flavor) +buildbasedir = $(CURDIR)/debian/build + +# install dir for the current flavor; this is only expanded in flavor specific +# targets +installdir = $(installbasedir)/$(current_flavor) +installbasedir = $(CURDIR)/debian/install + +# temporary directory for the minimal MIME cache generation +mimedir = debian/build-mime +mimexml = /usr/share/mime/packages/freedesktop.org.xml + +# configure flags +configure_flags := \ + --prefix=/usr \ + --libdir=/$(LIBDIR) \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + --sysconfdir=/etc \ + --enable-test-print-backend \ + --enable-introspection=no \ + --with-xinput=yes \ + --build=$(DEB_BUILD_GNU_TYPE) +ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) + configure_flags += --host=$(DEB_HOST_GNU_TYPE) +endif + +shared_configure_flags := $(configure_flags) \ + --enable-shared \ + --enable-introspection=yes \ + --disable-static +shared_udeb_configure_flags := $(shared_configure_flags) \ + --disable-xcomposite \ + --disable-xdamage \ + --disable-xfixes \ + --disable-xrandr +static_configure_flags := $(configure_flags) \ + --with-included-loaders=yes \ + --disable-modules \ + --disable-shared \ + --enable-static + +# optional optimized flavor for some arches +OPTLIBDIR := +# sample code +#ifneq ($(filter $(DEB_HOST_ARCH), armel),) +#FLAVORS += opt +#OPTLIBDIR := $(LIBDIR)/vfp +#opt_CFLAGS += $(CFLAGS) -mfpu=vfp -mfloat-abi=softfp +#opt_configure_flags := $(or $(shared_configure_flags),$(configure_flags)) +#endif + +# list of flavors to run the test suite on +CHECK_FLAVORS := $(filter opt shared static, $(FLAVORS)) + +DH_INSTALLDOCS_FILES := NEWS README ChangeLog + +# macro computing the list of 'debian/.*" files which have a corresponding +# ".in" file; pass the list of packages in $(1) +dh_subst_files = $(patsubst %.in,%,$(wildcard $(addprefix debian/, $(addsuffix *.in, $(1))))) + +# Gruik gruik generation of .devhelp files for the FAQ and tutorial +debian/gtk-%.devhelp: docs/%/html/book1.html + gawk -f debian/gruik2devhelp.awk -v name=gtk-$* $< > $@ +devhelpfiles: debian/gtk-faq.devhelp debian/gtk-tutorial.devhelp + +debian/dh_gtkmodules.1: debian/dh_gtkmodules + cd debian && pod2man -c "Gtk" -r "$(DEBVERSION)" dh_gtkmodules dh_gtkmodules.1 + +patch: $(STAMP_DIR)/patch-stamp + +$(STAMP_DIR)/patch-stamp: + dh_testdir + mkdir $(STAMP_DIR) + # apply patches + QUILT_PATCHES=$(PATCH_DIR) quilt --quiltrc /dev/null push -a || test $$? = 2 + # backup the original files to restore them in the clean target + -test -r config.sub && cp config.sub config.sub.orig + -test -r config.guess && cp config.guess config.guess.orig + -test -r /usr/share/misc/config.sub && \ + cp -f /usr/share/misc/config.sub config.sub + -test -r /usr/share/misc/config.guess && \ + cp -f /usr/share/misc/config.guess config.guess + touch $@ + +$(STAMP_DIR)/configure-stamp-%: $(STAMP_DIR)/patch-stamp + dh_testdir + mkdir -p $(builddir) + cd $(builddir) && \ + CFLAGS="$(call flavor_get,CFLAGS)" \ + LDFLAGS="$(call flavor_get,LDFLAGS)" \ + $(CURDIR)/configure $(call flavor_get,configure_flags) + touch $@ + +configure: $(addprefix $(STAMP_DIR)/configure-stamp-, $(FLAVORS)) + +$(STAMP_DIR)/build-stamp-%: $(STAMP_DIR)/configure-stamp-% + dh_testdir + LD_LIBRARY_PATH=$(builddir)/gtk/.libs:$(builddir)/gdk/.libs:$(LD_LIBRARY_PATH) \ + $(MAKE) $(PARALLEL_FLAGS) -C $(builddir) + touch $@ + +build: $(addprefix $(STAMP_DIR)/build-stamp-, $(FLAVORS)) + +$(STAMP_DIR)/check-stamp-%: $(STAMP_DIR)/build-stamp-% + dh_testdir + # setting LD_LIBRARY_PATH for "make check" might be needed in the + # future, but doesn't seem necessary right now + #LD_LIBRARY_PATH=$(builddir)/gtk/.libs:$(builddir)/gdk/.libs:$(LD_LIBRARY_PATH) + # testsuite failures are ignored + -$(MAKE) -C $(builddir) check + touch $@ + +check: $(addprefix $(STAMP_DIR)/check-stamp-, $(CHECK_FLAVORS)) + +$(STAMP_DIR)/install-stamp-%: $(STAMP_DIR)/build-stamp-% + mkdir -p $(installdir) + $(MAKE) -C $(builddir) install \ + DESTDIR=$(installdir) + touch $@ + +install: $(addprefix $(STAMP_DIR)/install-stamp-, $(FLAVORS)) + +# gross kludge to force control generation with the %.in target +clean:: + touch debian/control.in + +debian/%: debian/%.in + dh_testdir + sed \ + -e "s#@SONAME@#$(SONAME)#g" \ + -e "s#@APIVER@#$(APIVER)#g" \ + -e "s#@VERSION@#$(VERSION)#g" \ + -e "s#@GTK_BINVER_DEP@#$(GTK_BINVER_DEP)#g" \ + -e "s#@SHARED_PKG@#$(SHARED_PKG)#g" \ + -e "s#@COMMON_PKG@#$(COMMON_PKG)#g" \ + -e "s#@DEV_PKG@#$(DEV_PKG)#g" \ + -e "s#@UDEB_PKG@#$(UDEB_PKG)#g" \ + -e "s#@DOC_PKG@#$(DOC_PKG)#g" \ + -e "s#@BIN_PKG@#$(BIN_PKG)#g" \ + -e "s#@DEBUG_PKG@#$(DEBUG_PKG)#g" \ + -e "s#@EXAMPLES_PKG@#$(EXAMPLES_PKG)#g" \ + -e "s#@PIXBUF_PKG@#$(PIXBUF_PKG)#g" \ + -e "s#@GNOME_TEAM@#$(UPLOADERS)#g" \ + -e "s#@GTK_BINARY_VERSION@#$(GTK_BINARY_VERSION)#g" \ + -e "s#@LIBDIR@#$(LIBDIR)#g" \ + -e 's#@OPTLIBDIR@#$(OPTLIBDIR)#g' \ + -e "s#@MODULES_BASE_PATH@#$(MODULES_BASE_PATH)#g" \ + $@.in \ + $(wildcard $(if $(filter opt,$(FLAVORS)),$@.opt)) \ + > $@ + +clean:: debian/control + dh_testdir + dh_testroot + # remove install and build dirs + rm -rf $(installbasedir) + rm -rf $(buildbasedir) + rm -rf $(mimedir) + # restore files from backup (before unpatching) + -test -r config.sub.orig && mv -f config.sub.orig config.sub + -test -r config.guess.orig && mv -f config.guess.orig config.guess + # unapply patches, if any + QUILT_PATCHES=$(PATCH_DIR) quilt --quiltrc /dev/null pop -a -R || test $$? = 2 + -rm -rf .pc + rm -f debian/*.devhelp + -rm -rf $(STAMP_DIR) + -rm -f $(call dh_subst_files,$(ALL_PKGS)) + -rm -f debian/dh_gtkmodules debian/dh_gtkmodules.1 + dh_clean + +maybe_check = $(if $(findstring nocheck,$(DEB_BUILD_OPTIONS)),,check) + +# FIXME: devhelpfiles disabled for now +binary-indep: build $(maybe_check) install $(call dh_subst_files,$(BINARY_INDEP_PKGS)) + dh_testdir + dh_testroot + dh_install -i + dh_installchangelogs + # do not merge the calls: dh_installdocs will only install some files + # in the first package + dh_installdocs -p$(COMMON_PKG) $(DH_INSTALLDOCS_FILES) + dh_installdocs -p$(DOC_PKG) $(DH_INSTALLDOCS_FILES) + # install copyright in all packages; the -p is for the special behavior + # of dh_installdocs (ship README.Debian etc. in the first package) + dh_installdocs -p$(COMMON_PKG) -i + dh_installman -i + dh_link -i + dh_compress -i -X.sgml -X.devhelp + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary-arch: build $(maybe_check) install $(call dh_subst_files,$(BINARY_ARCH_PKGS)) debian/dh_gtkmodules debian/dh_gtkmodules.1 + dh_testdir + dh_testroot + dh_install -s + # empty the dependency_libs in the *.la files + sed -i "/dependency_libs/ s/'.*'/''/" debian/*/$(LIBDIR)/*.la + # we don't need the rpath in the udeb + chrpath -d debian/$(UDEB_PKG)/$(LIBDIR)/*x11*.so.* + dh_installchangelogs + # do not merge the calls: dh_installdocs only installs in the first pkg + dh_installdocs -p$(EXAMPLES_PKG) $(DH_INSTALLDOCS_FILES) + dh_installdocs -p$(PIXBUF_PKG) $(DH_INSTALLDOCS_FILES) + # install copyright in all packages; the -p is for the special behavior + # of dh_installdocs (ship README.Debian etc. in the first package) + dh_installdocs -p$(PIXBUF_PKG) -s + dh_installman -s + # generate a minimal MIME cache for the udeb + mkdir -p $(mimedir)/packages + [ -f $(mimexml) ] + xsltproc -nonet debian/keep-png-only.xsl $(mimexml) \ + > $(mimedir)/packages/png.freedesktop.org.xml + update-mime-database $(mimedir) + dh_install -p$(UDEB_PKG) $(mimedir)/mime.cache usr/share/mime + dh_installexamples -s + dh_link -s + dh_strip -s --dbg-package=$(DEBUG_PKG) -N$(UDEB_PKG) -Nlibgail18 -Nlibgail-common + dh_strip -plibgail18 -plibgail-common --dbg-package=libgail-dbg + dh_strip -p$(UDEB_PKG) + dh_compress -s -X.sgml -X.devhelp + dh_fixperms -s -X$(LIBDIR)/$(SHARED_PKG) + dh_makeshlibs -p$(SHARED_PKG) \ + -X$(MODULES_BASE_PATH) \ + -V"$(SHARED_PKG) (>= $(SHVER))" \ + --add-udeb=$(UDEB_PKG) \ + -- -c4 + dh_makeshlibs -plibgail18 \ + -X$(MODULES_BASE_PATH) \ + -V"libgail18 (>= $(SHVER)), libgail-common (>= $(SHVER))" \ + -- -c4 + dh_girepository -pgir1.0-gtk-2.0 + dh_installdeb -s + # override shlibs for libraries from this source before computing + # dependencies of packages generated from this source; we already have + # inter-dependencies expressed manually in the control file, we do not + # need the shlibs to add duplicates + cat debian/*/DEBIAN/shlibs | \ + sed -n -r -e 's/(([^ ]+: )?([^ ]+) ([^ ]+)) .*/\1/p' \ + > debian/shlibs.local + dh_shlibdeps + -rm -f debian/shlibs.local + dh_gencontrol -s + dh_md5sums -s + dh_builddeb -s + +list-missing: + perl -w debian/dh_listmissing.pl $(foreach f,$(FLAVORS),$(subst $(CURDIR)/,,$(installbasedir))/$(f)) 2>&1 | \ + egrep -v '(\.la|$(LIBDIR)/gtk-2.0/$(GTK_BINARY_VERSION)/[^/]+/[^/]+\.a) has been installed' >&2 + +binary: binary-indep binary-arch +.PHONY: patch configure build check install clean binary-indep binary-arch list-missing binary devhelpfiles --- gtk+2.0-2.22.0.orig/debian/gir1.0-gtk-2.0.install.in +++ gtk+2.0-2.22.0/debian/gir1.0-gtk-2.0.install.in @@ -0,0 +1 @@ +debian/install/shared/usr/lib/girepository-1.0/ usr/lib/ --- gtk+2.0-2.22.0.orig/debian/compat +++ gtk+2.0-2.22.0/debian/compat @@ -0,0 +1 @@ +5 --- gtk+2.0-2.22.0.orig/debian/watch +++ gtk+2.0-2.22.0/debian/watch @@ -0,0 +1,3 @@ +version=2 +http://download.gnome.org/sources/gtk+/([\d\.]+)\d/ \ + gtk\+-(.*)\.tar\.gz --- gtk+2.0-2.22.0.orig/debian/update-icon-caches.8 +++ gtk+2.0-2.22.0/debian/update-icon-caches.8 @@ -0,0 +1,19 @@ +.TH UPDATE-ICON-CACHES 8 "13 July 2007" +.SH NAME +update-icon-caches \- Update wrapper script for the icon caches +.SH SYNOPSIS +\fBupdate-icon-caches\fP \fIdirectory\fP [ \fI...\fP ] +.SH DESCRIPTION +\fBupdate-icon-caches\fP is a wrapper script for updating the icon +caches in a list of directories. +.P +In each of the directories passed as arguments, the icon cache is +updated if it is already present. It is not created if it does not +already exist. +.P +If the theme index file is not present, the icon cache is removed. +.SH SEE ALSO +.BR gtk-update-icon-cache (1) +.SH AUTHOR +This manual page was written by Josselin Mouette , +for the Debian GNU/Linux system. --- gtk+2.0-2.22.0.orig/debian/libgail-dbg.dirs +++ gtk+2.0-2.22.0/debian/libgail-dbg.dirs @@ -0,0 +1 @@ +usr/lib/debug/ --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-doc.doc-base.gtk-faq +++ gtk+2.0-2.22.0/debian/libgtk2.0-doc.doc-base.gtk-faq @@ -0,0 +1,12 @@ +Document: gtk2-faq +Title: GTK+2.0 Frequently Asked Questions +Author: Tony Gale, Shawn Amundson, and Emmanuel Deloget +Abstract: This document is intended to answer questions that are + likely to be frequently asked by programmers using the GTK+ + graphical user interface library, or people who are just looking at + using GTK+, GNOME, or GIMP. +Section: Programming/C + +Format: HTML +Index: /usr/share/doc/libgtk2.0-doc/faq/book1.html +Files: /usr/share/doc/libgtk2.0-doc/faq/*.html --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-bin.prerm +++ gtk+2.0-2.22.0/debian/libgtk2.0-bin.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk2.0-bin +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.22.0.orig/debian/README.Debian +++ gtk+2.0-2.22.0/debian/README.Debian @@ -0,0 +1,50 @@ +GTK+2.0 for Debian +------------------- + +Static libraries issue +====================== +If you wish to link the GTK+ 2.0 libraries statically into your program, +please note that you *can not* use the '-static' flag to gcc. +Instead, you have to link your program *dynamically* and link *only* +the GTK+ 2.0 libraries statically, like this: + +$ gcc -export-dynamic -o foo foo.c \ + -Wl,-Bstatic `pkg-config --cflags --libs gtk+-2.0` -Wl,-Bdynamic \ + [other dynamically linked libraries] + +The reason for this is that GTK+ 2.0 uses dlopen(3) in order to load +some modules. Undefined symbols in these modules are resolved by the +dynamic linker. If the program is linked statically, the linker has +no way of finding out which symbols are already present in the program +and might causes strange problem so that proper symbols isn't used -- +Initialize function in statically linked libraries is called, and some +global variable is initialized, dynamically loaded modules might also +expects those initialized global variable. + + +Key binding +=========== +gnome-settings-daemon overrides gtk-key-theme-name in your gtkrc. so if you +use GNOME 2, it won't work, and it's not a bug. +Please use gnome-keybinding-properties instead of gtk-key-theme-name in your +gtkrc. + + +Emacs-style key bindings +======================== +Gtk provides a way of configuring key bindings in Gtk Widgets, especially +to move the cursor in text fields. The default behavior in older Gtk versions +was similar to Emacs, and still available for users to configure. You can +configure the Emacs-style key binding theme in your ~/.gtkrc-2.0 file as +follows: + gtk-key-theme-name = "Emacs" + +Please note that applications can still override this configuration, and this +is the case of the GNOME Desktop: gnome-settings-daemon loads the key theme +from the "/desktop/gnome/interface/gtk_key_theme" GConf entry. This can be +modified with gconf-editor. + + +This file is the initial work of Akira TAGOH and was updated +by Loic Minier . + --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-common.preinst.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-common.preinst.in @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +if [ -L /usr/share/doc/@COMMON_PKG@ ]; then + rm -f /usr/share/doc/@COMMON_PKG@ +fi + +#DEBHELPER# --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0.install.opt +++ gtk+2.0-2.22.0/debian/libgtk2.0-0.install.opt @@ -0,0 +1,3 @@ +# from the optimised flavor +debian/install/opt/@LIBDIR@/libgtk*.so.* @OPTLIBDIR@ +debian/install/opt/@LIBDIR@/libgdk*.so.* @OPTLIBDIR@ --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-dev.manpages +++ gtk+2.0-2.22.0/debian/libgtk2.0-dev.manpages @@ -0,0 +1,2 @@ +debian/dh_gtkmodules.1 +docs/reference/gtk/gtk-builder-convert.1 --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0-dbg.links.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-0-dbg.links.in @@ -0,0 +1,2 @@ +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@DEBUG_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@DEBUG_PKG@/README.gz --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0.triggers.in +++ gtk+2.0-2.22.0/debian/libgtk2.0-0.triggers.in @@ -0,0 +1 @@ +interest /@MODULES_BASE_PATH@/immodules --- gtk+2.0-2.22.0.orig/debian/libgail18.opt +++ gtk+2.0-2.22.0/debian/libgail18.opt @@ -0,0 +1,2 @@ +# from the optimised flavor +debian/install/opt/@LIBDIR@/libgail*.so.* @OPTLIBDIR@ --- gtk+2.0-2.22.0.orig/debian/libgail-common.install.in +++ gtk+2.0-2.22.0/debian/libgail-common.install.in @@ -0,0 +1 @@ +debian/install/shared/@LIBDIR@/gtk-@APIVER@/modules/*.so @LIBDIR@/gtk-@APIVER@/modules --- gtk+2.0-2.22.0.orig/debian/libgail18.install +++ gtk+2.0-2.22.0/debian/libgail18.install @@ -0,0 +1 @@ +debian/install/shared/usr/lib/libgail*.so.* /usr/lib --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-dev.prerm +++ gtk+2.0-2.22.0/debian/libgtk2.0-dev.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk2.0-dev +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.22.0.orig/debian/gtk-options.7 +++ gtk+2.0-2.22.0/debian/gtk-options.7 @@ -0,0 +1,107 @@ +.\" gtk-options.7 - Standard Command Line Options for Gnome Programs +.\" Copyright 2003 Jochen Voss +.\" You may redistribute and modify this manual page +.\" under the terms of the GPL. +.TH gtk\-options 7 "2003\-10\-20" "GTK+ 1.2" "GTK+ User\'s Manual" +.SH NAME +gtk\-options \- Standard Command Line Options for GTK+ Programs +.SH SYNOPSIS +.IR "program " [ "standard options" "] [" "specific options" "] " arguments +.SH DESCRIPTION +This manual page describes the command line options, which are common +to all GTK+ based applications. +.SH OPTIONS +.SS GTK+ OPTIONS +.TP +\fB\-\-gtk\-module\fR=\fIMODULE\fR +Load an additional Gtk module. +.TP +\fB\-\-gtk\-debug\fR=\fIFLAGS\fR +A colon separated list of GTK+ debugging flags to set. +Valid flags are +.IR objects , +.IR misc , +.IR signals , +.IR dnd , +and +.IR plugsocket . +The special value +.I all +enables all flags. +.TP +\fB\-\-gtk\-no\-debug\fR=\fIFLAGS\fR +GTK+ debugging flags to unset. Use this options to override the +.I GTK_DEBUG +environment variable. +.TP +\fB\-\-g\-fatal\-warnings\fR +Make all warnings fatal. +.SS GDK OPTIONS +.TP +\fB\-\-display\fR=\fIDISPLAY\fR +Set the X display to use. Use this option to override the +.I DISPLAY +environment variable. +.TP +\fB\-\-screen\fR=\fISCREEN\fR +X screen to use. Use this options to override the screen part +of the +.I DISPLAY +environment variable (see the +.I DISPLAY NAMES +section of the +.IR X (7x) +manual page). +.TP +\fB\-\-sync\fR +Make X calls synchronous. This slows down the program considerably, +but may be useful for debugging purposes. +.TP +\fB\-\-no\-xshm\fR +Do not use the X server\'s XSHM shared memory extension. This slows down the +program. +.TP +\fB\-\-name\fR=\fINAME\fR +Program name as used by the window manager. +.TP +\fB\-\-class\fR=\fICLASS\fR +Program class as used by the window manager. +.HP +\fB\-\-gxid_host\fR=\fIHOST\fR +.HP +\fB\-\-gxid_port\fR=\fIPORT\fR +.HP +\fB\-\-xim\-preedit\fR +.TP +\fB\-\-xim\-status\fR +Control the X input method. +.TP +\fB\-\-gdk\-debug\fR=\fIFLAGS\fR +A colon\-separated list of GDK debugging flags to set. This only works +if your GDK library was compile with debugging support. Valid flags +are +.IR events , +.IR misc , +.IR dnd , +.IR color\-context , +and +.IR xim . +The special value +.I all +enables all valid flags. +.TP +\fB\-\-gdk\-no\-debug\fR=\fIFLAGS\fR +A colon\-separated list of GDK debugging flags to unset. +Use this options to override the +.I GDK_DEBUG +environment variable. +.SH "SEE ALSO" +.BR X (7x), +the GTK+ documentation, and +the GDK documentation. +.PP +For most GTK+ programs there will be additional command line options, +which are specific to the program. These will be explained in the +application\'s documentation. +.SH AUTHOR +This manual page was written by Jochen Voss . --- gtk+2.0-2.22.0.orig/debian/gruik2devhelp.awk +++ gtk+2.0-2.22.0/debian/gruik2devhelp.awk @@ -0,0 +1,29 @@ +#! /usr/bin/awk -f + +BEGIN { print ""; + level=1 } + +title == 1 { print "(.*)"; + print ""; + title=0 } +/^><DD$/ { level++ } +/^><\/DD$/ { level-- } + +intext == 0 && href != "" && /^>([^<>]*)<.*$/ { n=n gensub("^>(.*)<.*$", "\\1",1); } +intext == 1 && href != "" && /^([^<>]*)$/ { n=n $0 " "; } +intext == 0 && href != "" && /^>([^<>]*)$/ { n=n gensub("^>(.*)$", "\\1",1) " "; intext=1 } +intext == 1 && href != "" && /^([^<>]*)<.*$/ { n=n gensub("^([^<>]*)<.*$", "\\1",1); intext=0 } +href != "" && /<\/A$/ { for (i=level; i<lastlevel+1; i++) print "</sub>"; + print "<sub name=\"" n "\" link=\"" href "\">"; + href = ""; + lastlevel = level } +ending != 1 && /^HREF=".*"$/ { href=gensub("^HREF=\"(.*)\"$","\\1",1); + n = ""; + intext = 0 } +/^CLASS="NAVFOOTER"$/ { ending = 1 } + +END { for (i=0; i<lastlevel; i++) print "</sub>"; + print "</chapters>"; + print "</book>" } --- gtk+2.0-2.22.0.orig/debian/gtk2-engines-pixbuf.links.in +++ gtk+2.0-2.22.0/debian/gtk2-engines-pixbuf.links.in @@ -0,0 +1,2 @@ +usr/share/doc/@COMMON_PKG@/NEWS.gz usr/share/doc/@PIXBUF_PKG@/NEWS.gz +usr/share/doc/@COMMON_PKG@/README.gz usr/share/doc/@PIXBUF_PKG@/README.gz --- gtk+2.0-2.22.0.orig/debian/libgail-doc.install +++ gtk+2.0-2.22.0/debian/libgail-doc.install @@ -0,0 +1 @@ +debian/install/shared/usr/share/gtk-doc/html/gail* usr/share/gtk-doc/html --- gtk+2.0-2.22.0.orig/debian/libgtk2.0-0-dbg.prerm +++ gtk+2.0-2.22.0/debian/libgtk2.0-0-dbg.prerm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +# remove /usr/share/doc directory as it was a symlink prior to 2.12.5-2 +pkg=libgtk2.0-0-dbg +if [ "$1" = upgrade ] && [ ! -L /usr/share/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then + rm -rf /usr/share/doc/$pkg +fi + +#DEBHELPER# + --- gtk+2.0-2.22.0.orig/debian/patches/002_static-linking-dont-build-perf.patch +++ gtk+2.0-2.22.0/debian/patches/002_static-linking-dont-build-perf.patch @@ -0,0 +1,21 @@ +Description: don't build perf measurement tools in static builds +Bug: http://bugzilla.gnome.org/show_bug.cgi?id=346559 + +Index: gtk+2.0-2.21.5/Makefile.am +=================================================================== +--- gtk+2.0-2.21.5.orig/Makefile.am 2010-07-12 18:23:43.000000000 +0200 ++++ gtk+2.0-2.21.5/Makefile.am 2010-07-22 17:54:31.193051851 +0200 +@@ -1,7 +1,12 @@ + ## Makefile.am for GTK+ + include $(top_srcdir)/Makefile.decl + +-SRC_SUBDIRS = gdk gtk modules demos tests perf ++# don't build perf measurement tools in static builds ++if !ENABLE_STATIC ++MAYBE_PERF = perf ++endif ++ ++SRC_SUBDIRS = gdk gtk modules demos tests $(MAYBE_PERF) + SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build + + # require automake 1.4 --- gtk+2.0-2.22.0.orig/debian/patches/011_immodule-cache-dir.patch +++ gtk+2.0-2.22.0/debian/patches/011_immodule-cache-dir.patch @@ -0,0 +1,13 @@ +Index: gtk+2.0-2.21.5/gtk/gtkrc.c +=================================================================== +--- gtk+2.0-2.21.5.orig/gtk/gtkrc.c 2010-07-12 18:23:45.000000000 +0200 ++++ gtk+2.0-2.21.5/gtk/gtkrc.c 2010-07-22 17:55:14.909054236 +0200 +@@ -450,7 +450,7 @@ + if (im_module_file) + result = g_strdup (im_module_file); + else +- result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtk.immodules", NULL); ++ result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules", NULL); + } + + return result; --- gtk+2.0-2.22.0.orig/debian/patches/061_use_pdf_as_default_printing_standard.patch +++ gtk+2.0-2.22.0/debian/patches/061_use_pdf_as_default_printing_standard.patch @@ -0,0 +1,45 @@ +Index: gtk+2.0-2.21.5/modules/printbackends/cups/gtkprintbackendcups.c +=================================================================== +--- gtk+2.0-2.21.5.orig/modules/printbackends/cups/gtkprintbackendcups.c 2010-06-28 01:19:39.000000000 +0200 ++++ gtk+2.0-2.21.5/modules/printbackends/cups/gtkprintbackendcups.c 2010-07-22 17:57:22.973051749 +0200 +@@ -344,8 +344,9 @@ + + /* TODO: check if it is a ps or pdf printer */ + +- surface = cairo_ps_surface_create_for_stream (_cairo_write_to_cups, cache_io, width, height); ++ surface = cairo_pdf_surface_create_for_stream (_cairo_write_to_cups, cache_io, width, height); + ++ /* + ppd_file = gtk_printer_cups_get_ppd (GTK_PRINTER_CUPS (printer)); + + if (ppd_file != NULL) +@@ -403,6 +404,7 @@ + + if (level == 3) + cairo_ps_surface_restrict_to_level (surface, CAIRO_PS_LEVEL_3); ++ */ + + cairo_surface_set_fallback_resolution (surface, + 2.0 * gtk_print_settings_get_printer_lpi (settings), +Index: gtk+2.0-2.21.5/modules/printbackends/lpr/gtkprintbackendlpr.c +=================================================================== +--- gtk+2.0-2.21.5.orig/modules/printbackends/lpr/gtkprintbackendlpr.c 2010-06-16 17:27:06.000000000 +0200 ++++ gtk+2.0-2.21.5/modules/printbackends/lpr/gtkprintbackendlpr.c 2010-07-22 17:57:23.001065368 +0200 +@@ -31,6 +31,8 @@ + #include <cairo.h> + #include <cairo-ps.h> + ++#include <cairo-pdf.h> ++ + #include <glib/gi18n-lib.h> + + #include <gtk/gtk.h> +@@ -209,7 +211,7 @@ + { + cairo_surface_t *surface; + +- surface = cairo_ps_surface_create_for_stream (_cairo_write, cache_io, width, height); ++ surface = cairo_pdf_surface_create_for_stream (_cairo_write, cache_io, width, height); + + cairo_surface_set_fallback_resolution (surface, + 2.0 * gtk_print_settings_get_printer_lpi (settings), --- gtk+2.0-2.22.0.orig/debian/patches/063_treeview_almost_fixed.patch +++ gtk+2.0-2.22.0/debian/patches/063_treeview_almost_fixed.patch @@ -0,0 +1,79 @@ +# Description: "ubuntu-almost-fixed-height" private property to speed-up software-center +# Ubuntu: https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/514879 +# Upstream: https://bugzilla.gnome.org/607447 +=== modified file 'gtk/gtktreeprivate.h' +Index: gtk+-2.21.7/gtk/gtktreeprivate.h +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtktreeprivate.h 2010-08-31 01:09:37.000000000 +1000 ++++ gtk+-2.21.7/gtk/gtktreeprivate.h 2010-09-01 12:21:13.782617000 +1000 +@@ -265,6 +265,7 @@ + + guint fixed_height_mode : 1; + guint fixed_height_check : 1; ++ guint ubuntu_almost_fixed_height_mode : 1; + + guint reorderable : 1; + guint header_has_focus : 1; +Index: gtk+-2.21.7/gtk/gtktreeview.c +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtktreeview.c 2010-09-01 12:21:08.992617001 +1000 ++++ gtk+-2.21.7/gtk/gtktreeview.c 2010-09-01 12:21:13.792617000 +1000 +@@ -137,6 +137,7 @@ + PROP_ENABLE_SEARCH, + PROP_SEARCH_COLUMN, + PROP_FIXED_HEIGHT_MODE, ++ PROP_UBUNTU_ALMOST_FIXED_HEIGHT_MODE, + PROP_HOVER_SELECTION, + PROP_HOVER_EXPAND, + PROP_SHOW_EXPANDERS, +@@ -661,6 +662,15 @@ + P_("Speeds up GtkTreeView by assuming that all rows have the same height"), + FALSE, + GTK_PARAM_READWRITE)); ++ ++ /* Private ubuntu extension to fix bugzilla bug #607447 */ ++ g_object_class_install_property (o_class, ++ PROP_UBUNTU_ALMOST_FIXED_HEIGHT_MODE, ++ g_param_spec_boolean ("ubuntu-almost-fixed-height-mode", ++ "Private Ubuntu extension", ++ "Private Ubuntu extension", ++ FALSE, ++ GTK_PARAM_READWRITE)); + + /** + * GtkTreeView:hover-selection: +@@ -1347,6 +1357,7 @@ + tree_view->priv->fixed_height = -1; + tree_view->priv->fixed_height_mode = FALSE; + tree_view->priv->fixed_height_check = 0; ++ tree_view->priv->ubuntu_almost_fixed_height_mode = FALSE; + gtk_tree_view_set_adjustments (tree_view, NULL, NULL); + tree_view->priv->selection = _gtk_tree_selection_new_with_tree_view (tree_view); + tree_view->priv->enable_search = TRUE; +@@ -1429,6 +1440,9 @@ + case PROP_FIXED_HEIGHT_MODE: + gtk_tree_view_set_fixed_height_mode (tree_view, g_value_get_boolean (value)); + break; ++ case PROP_UBUNTU_ALMOST_FIXED_HEIGHT_MODE: ++ tree_view->priv->ubuntu_almost_fixed_height_mode = g_value_get_boolean (value); ++ break; + case PROP_HOVER_SELECTION: + tree_view->priv->hover_selection = g_value_get_boolean (value); + break; +@@ -8343,7 +8357,15 @@ + if (tree == NULL) + goto done; + +- if (tree_view->priv->fixed_height_mode ++ if (tree_view->priv->ubuntu_almost_fixed_height_mode ++ && tree_view->priv->fixed_height >= 0) ++ { ++ _gtk_rbtree_node_mark_invalid (tree, node); ++ validate_visible_area (tree_view); ++ if (gtk_widget_get_realized (GTK_WIDGET (tree_view))) ++ gtk_tree_view_node_queue_redraw (tree_view, tree, node); ++ } ++ else if (tree_view->priv->fixed_height_mode + && tree_view->priv->fixed_height >= 0) + { + _gtk_rbtree_node_set_height (tree, node, tree_view->priv->fixed_height); --- gtk+2.0-2.22.0.orig/debian/patches/series +++ gtk+2.0-2.22.0/debian/patches/series @@ -0,0 +1,23 @@ +001_static-linking-dont-query-immodules.patch +002_static-linking-dont-build-perf.patch +003_gdk.pc_privates.patch +004_gtk+-ximian-gtk2-filesel-navbutton-5.patch +005_support_disabling_x11_extensions.patch +009_gtk-export-filechooser.patch +011_immodule-cache-dir.patch +012_ubuntu-set-grab-add.patch +015_default-fallback-icon-theme.patch +022_disable-viqr-im-for-vi-locale.patch +041_ia32-libs.patch +042_treeview_single-focus.patch +043_ubuntu_menu_proxy.patch +060_ignore-random-icons.patch +061_use_pdf_as_default_printing_standard.patch +062_dnd_menubar.patch +063_treeview_almost_fixed.patch +064_gir_build_workaround.patch +070_mandatory-relibtoolize.patch +071_no_offscreen_widgets_grabbing.patch +072_indicator_menu_update.patch +091_bugzilla_tooltip_refresh.patch +092_default_to_xdg_document_dir.patch --- gtk+2.0-2.22.0.orig/debian/patches/009_gtk-export-filechooser.patch +++ gtk+2.0-2.22.0/debian/patches/009_gtk-export-filechooser.patch @@ -0,0 +1,233 @@ +2007-06-24 Loic Minier <lool@dooz.org> + + * gtk/Makefile.am (gtk_private_h_sources, gtk_semi_private_h_sources): + export gtkquery.h and gtksearchengine.h as semi-private + * gtk/gtkquery.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef guard + * gtk/gtksearchengine.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef + guard + +2007-02-07 Kristian Rietveld <kris@imendio.com> + + * gtk/gtkfilechooserutils.[ch] + (hildon_gtk_file_chooser_install_properties): conditionalize with + MAEMO_CHANGES, port over doc comment. + +2006-12-04 Tommi Komulainen <tommi.komulainen@nokia.com> + + Export enough symbols for implementing GtkFileChooser interface + outside gtk. + + * gtk/gtk.symbols: add hildon_gtk_file_chooser_install_properties + * gtk/Makefile.am (INCLUDES): add -DGTK_FILE_CHOOSER_ENABLE_UNSUPPORTED + (gtk_private_h_sources, gtk_semi_private_h_sources): export + gtkfilesystemmodel.h, gtkfilechooserprivate.h, and + gtkfilechooserutils.h as semi-private + * gtk/gtkfilechooserutils.c + (hildon_gtk_file_chooser_install_properties): add exported version of + _gtk_file_chooser_install_properties + * gtk/gtkfilesystemmodel.h: add GTK_FILE_SYSTEM_ENABLE_UNSUPPORTED + #ifdef guard + * gtk/gtkfilechooserprivate.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED + #ifdef guard + * gtk/gtkfilechooserutils.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED + #ifdef guard, declare hildon_gtk_file_chooser_install_properties + + * tests/autotestfilechooser.c: build with + GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED +Index: gtk+2.0-2.21.6/gtk/Makefile.am +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/Makefile.am 2010-08-16 22:57:55.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/Makefile.am 2010-08-17 11:51:57.600996862 +0200 +@@ -49,6 +49,8 @@ + -I$(top_srcdir) -I../gdk \ + -I$(top_srcdir)/gdk \ + -DGDK_DISABLE_DEPRECATED \ ++ -DMAEMO_CHANGES \ ++ -DGTK_FILE_CHOOSER_ENABLE_UNSUPPORTED \ + -DGTK_DISABLE_DEPRECATED \ + -DGTK_FILE_SYSTEM_ENABLE_UNSUPPORTED \ + -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \ +@@ -356,12 +358,16 @@ + # Installed header files without compatibility guarantees + # that are not included in gtk/gtk.h + gtk_semi_private_h_sources = \ +- gtktextlayout.h ++ gtktextlayout.h \ ++ gtkfilesystem.h \ ++ gtkfilesystemmodel.h \ ++ gtkfilechooserprivate.h \ ++ gtkfilechooserutils.h \ ++ gtkquery.h \ ++ gtksearchengine.h + + # GTK+ header files that don't get installed + gtk_private_h_sources = \ +- gtkquery.h \ +- gtksearchengine.h \ + gtksearchenginesimple.h \ + gtkdndcursors.h \ + gtkentryprivate.h \ +@@ -370,11 +376,7 @@ + gtkfilechooserdefault.h \ + gtkfilechooserembed.h \ + gtkfilechooserentry.h \ +- gtkfilechooserprivate.h \ + gtkfilechoosersettings.h \ +- gtkfilechooserutils.h \ +- gtkfilesystem.h \ +- gtkfilesystemmodel.h \ + gtkiconcache.h \ + gtkintl.h \ + gtkkeyhash.h \ +Index: gtk+2.0-2.21.6/gtk/gtk.symbols +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtk.symbols 2010-08-16 22:57:55.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtk.symbols 2010-08-17 11:51:57.600996862 +0200 +@@ -1641,6 +1641,12 @@ + #endif + #endif + ++#if IN_HEADER(__GTK_FILE_CHOOSER_UTILS_H__) ++#if IN_FILE(__GTK_FILE_CHOOSER_UTILS_C__) ++hildon_gtk_file_chooser_install_properties ++#endif ++#endif ++ + #if IN_HEADER(__GTK_FILE_CHOOSER_WIDGET_H__) + #if IN_FILE(__GTK_FILE_CHOOSER_WIDGET_C__) + gtk_file_chooser_widget_get_type G_GNUC_CONST +Index: gtk+2.0-2.21.6/gtk/gtkfilechooserprivate.h +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtkfilechooserprivate.h 2010-08-16 22:57:55.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtkfilechooserprivate.h 2010-08-17 11:51:57.819997600 +0200 +@@ -21,6 +21,14 @@ + #ifndef __GTK_FILE_CHOOSER_PRIVATE_H__ + #define __GTK_FILE_CHOOSER_PRIVATE_H__ + ++/* This is a "semi-private" header; it is meant only for ++ * alternate GtkFileChooser implementations; no stability guarantees ++ * are made at this point ++ */ ++#ifndef GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED ++#error "gtkfilechooserprivate.h is not supported API for general use" ++#endif ++ + #include "gtkfilechooser.h" + #include "gtkfilesystem.h" + #include "gtkfilesystemmodel.h" +Index: gtk+2.0-2.21.6/gtk/gtkfilechooserutils.c +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtkfilechooserutils.c 2010-08-16 22:57:55.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtkfilechooserutils.c 2010-08-17 11:51:57.819997600 +0200 +@@ -122,6 +122,22 @@ + "create-folders"); + } + ++#ifdef MAEMO_CHANGES ++/** ++ * hildon_gtk_file_chooser_install_properties: ++ * ++ * Exactly the same as the private _gtk_file_chooser_install_properties() ++ * but exported for hildon-fm. ++ * ++ * Since: maemo 2.0 ++ */ ++void ++hildon_gtk_file_chooser_install_properties (GObjectClass *klass) ++{ ++ _gtk_file_chooser_install_properties (klass); ++} ++#endif /* MAEMO_CHANGES */ ++ + /** + * _gtk_file_chooser_delegate_iface_init: + * @iface: a #GtkFileChoserIface structure +@@ -363,3 +379,6 @@ + g_signal_emit_by_name (data, "confirm-overwrite", &conf); + return conf; + } ++ ++#define __GTK_FILE_CHOOSER_UTILS_C__ ++#include "gtkaliasdef.c" +Index: gtk+2.0-2.21.6/gtk/gtkfilechooserutils.h +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtkfilechooserutils.h 2010-08-16 22:57:55.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtkfilechooserutils.h 2010-08-17 11:51:57.819997600 +0200 +@@ -22,6 +22,14 @@ + #ifndef __GTK_FILE_CHOOSER_UTILS_H__ + #define __GTK_FILE_CHOOSER_UTILS_H__ + ++/* This is a "semi-private" header; it is meant only for ++ * alternate GtkFileChooser implementations; no stability guarantees ++ * are made at this point ++ */ ++#ifndef GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED ++#error "gtkfilechooserutils.h is not supported API for general use" ++#endif ++ + #include "gtkfilechooserprivate.h" + + G_BEGIN_DECLS +@@ -46,6 +54,9 @@ + } GtkFileChooserProp; + + void _gtk_file_chooser_install_properties (GObjectClass *klass); ++#ifdef MAEMO_CHANGES ++void hildon_gtk_file_chooser_install_properties (GObjectClass *klass); ++#endif /* MAEMO_CHANGES */ + + void _gtk_file_chooser_delegate_iface_init (GtkFileChooserIface *iface); + void _gtk_file_chooser_set_delegate (GtkFileChooser *receiver, +Index: gtk+2.0-2.21.6/gtk/gtkfilesystemmodel.h +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtkfilesystemmodel.h 2010-06-16 17:27:02.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtkfilesystemmodel.h 2010-08-17 11:51:57.823997341 +0200 +@@ -21,6 +21,10 @@ + #ifndef __GTK_FILE_SYSTEM_MODEL_H__ + #define __GTK_FILE_SYSTEM_MODEL_H__ + ++#ifndef GTK_FILE_SYSTEM_ENABLE_UNSUPPORTED ++#error "GtkFileSystemModel is not supported API for general use" ++#endif ++ + #include <gio/gio.h> + #include <gtk/gtkfilefilter.h> + #include <gtk/gtktreemodel.h> +Index: gtk+2.0-2.21.6/gtk/gtkquery.h +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtkquery.h 2009-04-02 15:54:56.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtkquery.h 2010-08-17 11:51:57.823997341 +0200 +@@ -23,6 +23,14 @@ + #ifndef __GTK_QUERY_H__ + #define __GTK_QUERY_H__ + ++/* This is a "semi-private" header; it is meant only for ++ * alternate GtkFileChooser implementations; no stability guarantees ++ * are made at this point ++ */ ++#ifndef GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED ++#error "gtkfilechooserprivate.h is not supported API for general use" ++#endif ++ + #include <glib-object.h> + + G_BEGIN_DECLS +Index: gtk+2.0-2.21.6/gtk/gtksearchengine.h +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtksearchengine.h 2010-04-09 04:29:58.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtksearchengine.h 2010-08-17 11:51:57.873067895 +0200 +@@ -23,6 +23,14 @@ + #ifndef __GTK_SEARCH_ENGINE_H__ + #define __GTK_SEARCH_ENGINE_H__ + ++/* This is a "semi-private" header; it is meant only for ++ * alternate GtkFileChooser implementations; no stability guarantees ++ * are made at this point ++ */ ++#ifndef GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED ++#error "gtkfilechooserprivate.h is not supported API for general use" ++#endif ++ + #include "gtkquery.h" + + G_BEGIN_DECLS --- gtk+2.0-2.22.0.orig/debian/patches/092_default_to_xdg_document_dir.patch +++ gtk+2.0-2.22.0/debian/patches/092_default_to_xdg_document_dir.patch @@ -0,0 +1,17 @@ +Description: Use XDG_DOCUMENTS_DIR as default for 'Print to File' + This patch uses $XDG_DOCUMENTS_DIR as the default directory rather + than the home directory when the user selects Print to File in the + GtkPrinterOptionWidget. +Author: Bilal Akhtar <bilalakhtar@ubuntu.com> +Bug-Ubuntu: https://launchpad.net/bugs/611011 +--- a/gtk/gtkprinteroptionwidget.c ++++ b/gtk/gtkprinteroptionwidget.c +@@ -794,6 +794,8 @@ + priv->entry = gtk_entry_new (); + priv->combo = gtk_file_chooser_button_new (source->display_text, + GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER); ++ gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (priv->combo), ++ g_get_user_special_dir (G_USER_DIRECTORY_DOCUMENTS)); + + g_object_set (priv->combo, "local-only", FALSE, NULL); + gtk_entry_set_activates_default (GTK_ENTRY (priv->entry), --- gtk+2.0-2.22.0.orig/debian/patches/064_gir_build_workaround.patch +++ gtk+2.0-2.22.0/debian/patches/064_gir_build_workaround.patch @@ -0,0 +1,26 @@ +Index: gtk+2.0-2.22.0/gdk/Makefile.am +=================================================================== +--- gtk+2.0-2.22.0.orig/gdk/Makefile.am 2010-09-23 05:00:45.000000000 +0200 ++++ gtk+2.0-2.22.0/gdk/Makefile.am 2010-09-27 21:46:54.000000000 +0200 +@@ -197,7 +197,7 @@ + gdkenumtypes.h + + Gdk-2.0.gir: $(gdktargetlib) Makefile +-Gdk_2_0_gir_SCANNERFLAGS = --warn-all ++Gdk_2_0_gir_SCANNERFLAGS = --warn-all --strip-prefix=Gdk + Gdk_2_0_gir_INCLUDES = Gio-2.0 GdkPixbuf-2.0 Pango-1.0 cairo-1.0 + Gdk_2_0_gir_LIBS = $(gdktargetlib) + Gdk_2_0_gir_FILES = $(introspection_files) +@@ -242,11 +242,9 @@ + GdkX11_2_0_gir_INCLUDES = Gio-2.0 Gdk-2.0 GdkPixbuf-2.0 Pango-1.0 xlib-2.0 + GdkX11_2_0_gir_LIBS = $(gdktargetlib) + GdkX11_2_0_gir_FILES = $(x11_introspection_files) +-GdkX11_2_0_gir_CFLAGS = $(INCLUDES) -L$(top_builddir)/gdk ++GdkX11_2_0_gir_CFLAGS = $(INCLUDES) -L$(top_builddir)/gdk -I.. -I$(srcdir) + INTROSPECTION_GIRS += GdkX11-2.0.gir + +-introspection_files += $(filter-out x11/gdkx.h, $(x11_introspection_files)) +- + endif # USE_X11 + + girdir = $(datadir)/gir-1.0 --- gtk+2.0-2.22.0.orig/debian/patches/015_default-fallback-icon-theme.patch +++ gtk+2.0-2.22.0/debian/patches/015_default-fallback-icon-theme.patch @@ -0,0 +1,13 @@ +Index: gtk+2.0-2.21.5/gtk/gtksettings.c +=================================================================== +--- gtk+2.0-2.21.5.orig/gtk/gtksettings.c 2010-07-12 18:23:45.000000000 +0200 ++++ gtk+2.0-2.21.5/gtk/gtksettings.c 2010-07-22 17:55:16.033053648 +0200 +@@ -310,7 +310,7 @@ + g_param_spec_string ("gtk-fallback-icon-theme", + P_("Fallback Icon Theme Name"), + P_("Name of a icon theme to fall back to"), +- NULL, ++ "gnome", + GTK_PARAM_READWRITE), + NULL); + g_assert (result == PROP_FALLBACK_ICON_THEME); --- gtk+2.0-2.22.0.orig/debian/patches/062_dnd_menubar.patch +++ gtk+2.0-2.22.0/debian/patches/062_dnd_menubar.patch @@ -0,0 +1,75 @@ +# Comment: let click on menubar to do dnd +# Upstream: https://bugzilla.gnome.org/show_bug.cgi?id=611313 +# +Index: gtk+-2.21.7/gtk/gtkmenushell.c +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtkmenushell.c 2010-09-01 12:21:09.552617001 +1000 ++++ gtk+-2.21.7/gtk/gtkmenushell.c 2010-09-01 12:21:11.762617001 +1000 +@@ -394,6 +394,14 @@ + FALSE, + GTK_PARAM_READWRITE)); + ++ ++ gtk_widget_class_install_style_property (widget_class, ++ g_param_spec_boolean ("window-dragging", ++ P_("Window dragging"), ++ P_("Window dragging"), ++ FALSE, ++ GTK_PARAM_READWRITE)); ++ + g_type_class_add_private (object_class, sizeof (GtkMenuShellPrivate)); + } + +@@ -657,18 +665,45 @@ + + if (!menu_shell->active || !menu_shell->button) + { +- _gtk_menu_shell_activate (menu_shell); ++ gboolean initially_active = menu_shell->active; + + menu_shell->button = event->button; + +- if (menu_item && _gtk_menu_item_is_selectable (menu_item) && +- menu_item->parent == widget && +- menu_item != menu_shell->active_menu_item) ++ if (menu_item) ++ { ++ if (_gtk_menu_item_is_selectable (menu_item) && ++ menu_item->parent == widget && ++ menu_item != menu_shell->active_menu_item) ++ { ++ _gtk_menu_shell_activate (menu_shell); ++ menu_shell->button = event->button; ++ ++ if (GTK_MENU_SHELL_GET_CLASS (menu_shell)->submenu_placement == GTK_TOP_BOTTOM) ++ { ++ menu_shell->activate_time = event->time; ++ gtk_menu_shell_select_item (menu_shell, menu_item); ++ } ++ } ++ } ++ else + { +- if (GTK_MENU_SHELL_GET_CLASS (menu_shell)->submenu_placement == GTK_TOP_BOTTOM) ++ if (!initially_active) + { +- menu_shell->activate_time = event->time; +- gtk_menu_shell_select_item (menu_shell, menu_item); ++ gboolean window_drag = FALSE; ++ ++ gtk_widget_style_get (widget, ++ "window-dragging", &window_drag, ++ NULL); ++ ++ if (window_drag) ++ { ++ gtk_menu_shell_deactivate (menu_shell); ++ gtk_window_begin_move_drag (GTK_WINDOW (gtk_widget_get_toplevel (widget)), ++ event->button, ++ event->x_root, ++ event->y_root, ++ event->time); ++ } + } + } + } --- gtk+2.0-2.22.0.orig/debian/patches/042_treeview_single-focus.patch +++ gtk+2.0-2.22.0/debian/patches/042_treeview_single-focus.patch @@ -0,0 +1,14 @@ +Index: gtk+2.0-2.21.6/gtk/gtktreeview.c +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtktreeview.c 2010-08-16 22:57:56.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtktreeview.c 2010-08-17 11:52:07.864006434 +0200 +@@ -9616,7 +9616,8 @@ + + if (cursor_path) + { +- if (tree_view->priv->selection->type == GTK_SELECTION_MULTIPLE) ++ if (tree_view->priv->selection->type == GTK_SELECTION_MULTIPLE || ++ tree_view->priv->selection->type == GTK_SELECTION_SINGLE) + gtk_tree_view_real_set_cursor (tree_view, cursor_path, FALSE, FALSE); + else + gtk_tree_view_real_set_cursor (tree_view, cursor_path, TRUE, FALSE); --- gtk+2.0-2.22.0.orig/debian/patches/041_ia32-libs.patch +++ gtk+2.0-2.22.0/debian/patches/041_ia32-libs.patch @@ -0,0 +1,72 @@ +Index: gtk+2.0-2.21.5/gtk/gtkrc.c +=================================================================== +--- gtk+2.0-2.21.5.orig/gtk/gtkrc.c 2010-07-22 17:55:14.000000000 +0200 ++++ gtk+2.0-2.21.5/gtk/gtkrc.c 2010-07-22 17:57:19.657052790 +0200 +@@ -450,7 +450,20 @@ + if (im_module_file) + result = g_strdup (im_module_file); + else +- result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules", NULL); ++ { ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++# if defined (__i386__) ++ result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules.32", NULL); ++# else ++ result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules.64", NULL); ++# endif ++ /* Prefer compat gtk.immodules file if it's usable. */ ++ if (g_file_test(result, G_FILE_TEST_EXISTS)) ++ return result; ++ g_free (result); ++#endif ++ result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules", NULL); ++ } + } + + return result; +@@ -522,7 +535,21 @@ + else + { + const gchar *home; +- str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc", NULL); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++# if defined (__i386__) ++ str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc.32", NULL); ++# else ++ str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc.64", NULL); ++# endif ++ /* Prefer compat gtkrc if it's usable. */ ++ if (!g_file_test(str, G_FILE_TEST_EXISTS)) ++ { ++ g_free (str), /* continue in next line */ ++#endif ++ str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc", NULL); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++ } ++#endif + + gtk_rc_add_default_file (str); + g_free (str); +@@ -530,7 +557,21 @@ + home = g_get_home_dir (); + if (home) + { +- str = g_build_filename (home, ".gtkrc-2.0", NULL); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++# if defined (__i386__) ++ str = g_build_filename (home, ".gtkrc-2.0.32", NULL); ++# else ++ str = g_build_filename (home, ".gtkrc-2.0.64", NULL); ++# endif ++ /* Prefer compat .gtkrc-2.0 if it's usable. */ ++ if (!g_file_test(str, G_FILE_TEST_EXISTS)) ++ { ++ g_free (str), /* continue in next line */ ++#endif ++ str = g_build_filename (home, ".gtkrc-2.0", NULL); ++#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) ++ } ++#endif + gtk_rc_add_default_file (str); + g_free (str); + } --- gtk+2.0-2.22.0.orig/debian/patches/003_gdk.pc_privates.patch +++ gtk+2.0-2.22.0/debian/patches/003_gdk.pc_privates.patch @@ -0,0 +1,48 @@ +Index: gtk+2.0-2.21.5/configure.in +=================================================================== +--- gtk+2.0-2.21.5.orig/configure.in 2010-07-22 17:53:08.402066616 +0200 ++++ gtk+2.0-2.21.5/configure.in 2010-07-22 17:54:32.685052226 +0200 +@@ -1310,23 +1310,27 @@ + + # Pull in gio-unix for GDesktopAppInfo usage, see at least gdkapplaunchcontext-x11.c + if test "x$gdktarget" = "xx11"; then +- GDK_PACKAGES="$PANGO_PACKAGES gio-unix-2.0 $X_PACKAGES gdk-pixbuf-2.0 cairo-$cairo_backend" ++ GDK_PACKAGES="$PANGO_PACKAGES gdk-pixbuf-2.0" ++ GDK_PRIVATE_PACKAGES="gio-unix-2.0 $X_PACKAGES cairo-$cairo_backend" + else +- GDK_PACKAGES="$PANGO_PACKAGES gio-2.0 gdk-pixbuf-2.0 cairo-$cairo_backend" ++ GDK_PACKAGES="$PANGO_PACKAGES gdk-pixbuf-2.0" ++ GDK_PRIVATE_PACKAGES="gio-2.0 cairo-$cairo_backend" + fi + +-GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PACKAGES`" +-GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PACKAGES` $GDK_EXTRA_CFLAGS" ++GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PACKAGES $GDK_PRIVATE_PACKAGES`" ++GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PACKAGES $GDK_PRIVATE_PACKAGES` $GDK_EXTRA_CFLAGS" + # + # If we aren't writing explicit dependencies, then don't put the extra libraries we need + # into the pkg-config files + # + if test $enable_explicit_deps != yes ; then +- GDK_PACKAGES="$PANGO_PACKAGES gdk-pixbuf-2.0" + GDK_EXTRA_LIBS= ++else ++ GDK_PACKAGES="$GDK_PACKAGES $GDK_PRIVATE_PACKAGES" + fi + + AC_SUBST(GDK_PACKAGES) ++AC_SUBST(GDK_PRIVATE_PACKAGES) + AC_SUBST(GDK_EXTRA_LIBS) + AC_SUBST(GDK_EXTRA_CFLAGS) + AC_SUBST(GDK_DEP_LIBS) +Index: gtk+2.0-2.21.5/gdk-2.0.pc.in +=================================================================== +--- gtk+2.0-2.21.5.orig/gdk-2.0.pc.in 2010-07-12 18:23:43.000000000 +0200 ++++ gtk+2.0-2.21.5/gdk-2.0.pc.in 2010-07-22 17:54:32.685052226 +0200 +@@ -8,5 +8,6 @@ + Description: GTK+ Drawing Kit (${target} target) + Version: @VERSION@ + Requires: @GDK_PACKAGES@ ++Requires.private: @GDK_PRIVATE_PACKAGES@ + Libs: -L${libdir} -lgdk-${target}-@GTK_API_VERSION@ @GDK_EXTRA_LIBS@ + Cflags: -I${includedir}/gtk-2.0 -I${libdir}/gtk-2.0/include @GDK_EXTRA_CFLAGS@ --- gtk+2.0-2.22.0.orig/debian/patches/022_disable-viqr-im-for-vi-locale.patch +++ gtk+2.0-2.22.0/debian/patches/022_disable-viqr-im-for-vi-locale.patch @@ -0,0 +1,13 @@ +Index: gtk+2.0-2.21.5/modules/input/imviqr.c +=================================================================== +--- gtk+2.0-2.21.5.orig/modules/input/imviqr.c 2010-06-16 17:27:05.000000000 +0200 ++++ gtk+2.0-2.21.5/modules/input/imviqr.c 2010-07-22 17:56:01.021052474 +0200 +@@ -244,7 +244,7 @@ + N_("Vietnamese (VIQR)"), /* Human readable name */ + GETTEXT_PACKAGE, /* Translation domain */ + GTK_LOCALEDIR, /* Dir for bindtextdomain (not strictly needed for "gtk+") */ +- "vi" /* Languages for which this module is the default */ ++ "" /* Languages for which this module is the default */ + }; + + static const GtkIMContextInfo *info_list[] = { --- gtk+2.0-2.22.0.orig/debian/patches/005_support_disabling_x11_extensions.patch +++ gtk+2.0-2.22.0/debian/patches/005_support_disabling_x11_extensions.patch @@ -0,0 +1,67 @@ +Bug: https://bugzilla.gnome.org/show_bug.cgi?id=612918 +Author: Cyril Brulebois <kibi@debian.org> + +Support disabling X11 extensions + +Index: gtk+2.0-2.21.5/configure.in +=================================================================== +--- gtk+2.0-2.21.5.orig/configure.in 2010-07-22 17:54:32.685052226 +0200 ++++ gtk+2.0-2.21.5/configure.in 2010-07-22 17:54:36.285051810 +0200 +@@ -241,6 +241,18 @@ + [AC_HELP_STRING([--enable-xinerama], + [support xinerama extension if available [default=yes]])],, + [enable_xinerama="yes"]) ++AC_ARG_ENABLE(xrandr, ++ [AC_HELP_STRING([--enable-xrandr], ++ [support XRandR extension if available [default=yes]])]) ++AC_ARG_ENABLE(xfixes, ++ [AC_HELP_STRING([--enable-xfixes], ++ [support XFixes extension if available [default=yes]])]) ++AC_ARG_ENABLE(xcomposite, ++ [AC_HELP_STRING([--enable-xcomposite], ++ [support X Composite extension if available [default=yes]])]) ++AC_ARG_ENABLE(xdamage, ++ [AC_HELP_STRING([--enable-xdamage], ++ [support X Damage extension if available [default=yes]])]) + AC_ARG_ENABLE(rebuilds, + [AC_HELP_STRING([--disable-rebuilds], + [disable all source autogeneration rules])],, +@@ -1187,7 +1199,8 @@ + AM_CONDITIONAL(XINPUT_XFREE, test x$with_xinput = xxfree || test x$with_xinput = xyes) + + # Check for the RANDR extension +- if $PKG_CONFIG --exists "xrandr >= 1.2.99" ; then ++ if test x"$enable_xrandr" != xno && \ ++ $PKG_CONFIG --exists "xrandr >= 1.2.99" ; then + AC_DEFINE(HAVE_RANDR, 1, [Have the Xrandr extension library]) + + X_PACKAGES="$X_PACKAGES xrandr" +@@ -1203,7 +1216,8 @@ + + # Checks for XFixes extension + +- if $PKG_CONFIG --exists xfixes ; then ++ if test x"$enable_xfixes" != xno && \ ++ $PKG_CONFIG --exists xfixes ; then + AC_DEFINE(HAVE_XFIXES, 1, [Have the XFIXES X extension]) + + X_PACKAGES="$X_PACKAGES xfixes" +@@ -1212,7 +1226,8 @@ + + # Checks for Xcomposite extension + +- if $PKG_CONFIG --exists xcomposite ; then ++ if test x"$enable_xcomposite" != xno && \ ++ $PKG_CONFIG --exists xcomposite ; then + AC_DEFINE(HAVE_XCOMPOSITE, 1, [Have the XCOMPOSITE X extension]) + + X_PACKAGES="$X_PACKAGES xcomposite" +@@ -1221,7 +1236,7 @@ + + # Checks for Xdamage extension + +- if $PKG_CONFIG --exists xdamage ; then ++ if test x"$enable_xdamage" != xno && $PKG_CONFIG --exists xdamage ; then + AC_DEFINE(HAVE_XDAMAGE, 1, [Have the XDAMAGE X extension]) + + X_PACKAGES="$X_PACKAGES xdamage" --- gtk+2.0-2.22.0.orig/debian/patches/070_mandatory-relibtoolize.patch +++ gtk+2.0-2.22.0/debian/patches/070_mandatory-relibtoolize.patch @@ -0,0 +1,1654 @@ +Index: gtk+2.0-2.22.0/aclocal.m4 +=================================================================== +--- gtk+2.0-2.22.0.orig/aclocal.m4 2010-09-23 05:16:13.000000000 +0200 ++++ gtk+2.0-2.22.0/aclocal.m4 2010-09-27 21:47:08.000000000 +0200 +@@ -13,8 +13,8 @@ + + m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.66],, +-[m4_warning([this file was generated for autoconf 2.66. ++m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],, ++[m4_warning([this file was generated for autoconf 2.67. + You have another version of autoconf. It may work, but is not guaranteed to. + If you have problems, you may need to regenerate the build system entirely. + To do so, use the procedure documented by the package, typically `autoreconf'.])]) +@@ -801,7 +801,7 @@ + Consider adjusting the PKG_CONFIG_PATH environment variable if you + installed software in a non-standard prefix. + +-_PKG_TEXT]) ++_PKG_TEXT])dnl + ]) + elif test $pkg_failed = untried; then + AC_MSG_RESULT([no]) +@@ -812,7 +812,7 @@ + + _PKG_TEXT + +-To get pkg-config, see <http://pkg-config.freedesktop.org/>.]) ++To get pkg-config, see <http://pkg-config.freedesktop.org/>.])dnl + ]) + else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS +Index: gtk+2.0-2.22.0/build/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/build/Makefile.in 2010-09-23 16:27:21.000000000 +0200 ++++ gtk+2.0-2.22.0/build/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -160,6 +160,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/build/win32/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/build/win32/Makefile.in 2010-09-23 16:27:21.000000000 +0200 ++++ gtk+2.0-2.22.0/build/win32/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -160,6 +160,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/build/win32/vs9/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/build/win32/vs9/Makefile.in 2010-09-23 16:27:21.000000000 +0200 ++++ gtk+2.0-2.22.0/build/win32/vs9/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -120,6 +120,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/configure +=================================================================== +--- gtk+2.0-2.22.0.orig/configure 2010-09-23 16:27:27.000000000 +0200 ++++ gtk+2.0-2.22.0/configure 2010-09-27 21:47:21.000000000 +0200 +@@ -1,6 +1,6 @@ + #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.66 for gtk+ 2.22.0. ++# Generated by GNU Autoconf 2.67 for gtk+ 2.22.0. + # + # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B>. + # +@@ -673,6 +673,7 @@ + GDK_DEP_LIBS + GDK_EXTRA_CFLAGS + GDK_EXTRA_LIBS ++GDK_PRIVATE_PACKAGES + GDK_PACKAGES + USE_DIRECTFB_FALSE + USE_DIRECTFB_TRUE +@@ -822,6 +823,8 @@ + CXXFLAGS + ac_ct_CXX + CXX ++ENABLE_STATIC_FALSE ++ENABLE_STATIC_TRUE + am__fastdepCC_FALSE + am__fastdepCC_TRUE + CCDEPMODE +@@ -935,13 +938,16 @@ + enable_fast_install + with_gnu_ld + enable_libtool_lock +-with_gnu_ld + enable_largefile + enable_maintainer_mode + enable_debug + enable_shm + enable_xkb + enable_xinerama ++enable_xrandr ++enable_xfixes ++enable_xcomposite ++enable_xdamage + enable_rebuilds + enable_visibility + with_xinput +@@ -972,17 +978,11 @@ + CPPFLAGS + CXX + CXXFLAGS +-LDFLAGS +-LIBS +-CPPFLAGS + CCC + CPP + CXXCPP + CCAS + CCASFLAGS +-CC +-LDFLAGS +-LIBS + PKG_CONFIG + PKG_CONFIG_PATH + PKG_CONFIG_LIBDIR +@@ -990,9 +990,6 @@ + BASE_DEPENDENCIES_LIBS + CAIRO_BACKEND_CFLAGS + CAIRO_BACKEND_LIBS +-PKG_CONFIG +-PKG_CONFIG_PATH +-PKG_CONFIG_LIBDIR + XMKMF + DIRECTFB_CFLAGS + DIRECTFB_LIBS' +@@ -1058,8 +1055,9 @@ + fi + + case $ac_option in +- *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; +- *) ac_optarg=yes ;; ++ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; ++ *=) ac_optarg= ;; ++ *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. +@@ -1637,6 +1635,12 @@ + --enable-xkb support XKB [default=maybe] + --enable-xinerama support xinerama extension if available + [default=yes] ++ --enable-xrandr support XRandR extension if available [default=yes] ++ --enable-xfixes support XFixes extension if available [default=yes] ++ --enable-xcomposite support X Composite extension if available ++ [default=yes] ++ --enable-xdamage support X Damage extension if available ++ [default=yes] + --disable-rebuilds disable all source autogeneration rules + --disable-visibility don't use ELF visibility attributes + --enable-explicit-deps=[yes/no/auto] +@@ -1774,7 +1778,7 @@ + if $ac_init_version; then + cat <<\_ACEOF + gtk+ configure 2.22.0 +-generated by GNU Autoconf 2.66 ++generated by GNU Autoconf 2.67 + + Copyright (C) 2010 Free Software Foundation, Inc. + This configure script is free software; the Free Software Foundation +@@ -1961,7 +1965,7 @@ + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 +- test $ac_status = 0; } >/dev/null && { ++ test $ac_status = 0; } > conftest.i && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : +@@ -2107,7 +2111,7 @@ + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 +- test $ac_status = 0; } >/dev/null && { ++ test $ac_status = 0; } > conftest.i && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err + }; then : +@@ -2216,7 +2220,7 @@ + else + ac_header_preproc=no + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 + $as_echo "$ac_header_preproc" >&6; } + +@@ -2321,7 +2325,7 @@ + running configure, to aid debugging if configure makes a mistake. + + It was created by gtk+ $as_me 2.22.0, which was +-generated by GNU Autoconf 2.66. Invocation command line was ++generated by GNU Autoconf 2.67. Invocation command line was + + $ $0 $@ + +@@ -2579,7 +2583,7 @@ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + as_fn_error $? "failed to load site script $ac_site_file +-See \`config.log' for more details" "$LINENO" 5; } ++See \`config.log' for more details" "$LINENO" 5 ; } + fi + done + +@@ -2814,11 +2818,11 @@ + ' + case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) +- as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; ++ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;; + esac + case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) +- as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; ++ as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;; + esac + + # Do `set' in a subshell so we don't clobber the current shell's +@@ -3280,7 +3284,7 @@ + $as_echo "$ac_cv_build" >&6; } + case $ac_cv_build in + *-*-*) ;; +-*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; ++*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;; + esac + build=$ac_cv_build + ac_save_IFS=$IFS; IFS='-' +@@ -3313,7 +3317,7 @@ + $as_echo "$ac_cv_host" >&6; } + case $ac_cv_host in + *-*-*) ;; +-*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; ++*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;; + esac + host=$ac_cv_host + ac_save_IFS=$IFS; IFS='-' +@@ -3664,7 +3668,7 @@ + test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + as_fn_error $? "no acceptable C compiler found in \$PATH +-See \`config.log' for more details" "$LINENO" 5; } ++See \`config.log' for more details" "$LINENO" 5 ; } + + # Provide some information about the compiler. + $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +@@ -3779,7 +3783,7 @@ + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + as_fn_error 77 "C compiler cannot create executables +-See \`config.log' for more details" "$LINENO" 5; } ++See \`config.log' for more details" "$LINENO" 5 ; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } +@@ -3822,7 +3826,7 @@ + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + as_fn_error $? "cannot compute suffix of executables: cannot compile and link +-See \`config.log' for more details" "$LINENO" 5; } ++See \`config.log' for more details" "$LINENO" 5 ; } + fi + rm -f conftest conftest$ac_cv_exeext + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +@@ -3881,7 +3885,7 @@ + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + as_fn_error $? "cannot run C compiled programs. + If you meant to cross compile, use \`--host'. +-See \`config.log' for more details" "$LINENO" 5; } ++See \`config.log' for more details" "$LINENO" 5 ; } + fi + fi + fi +@@ -3933,7 +3937,7 @@ + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + as_fn_error $? "cannot compute suffix of object files: cannot compile +-See \`config.log' for more details" "$LINENO" 5; } ++See \`config.log' for more details" "$LINENO" 5 ; } + fi + rm -f conftest.$ac_cv_objext conftest.$ac_ext + fi +@@ -4373,6 +4377,14 @@ + + + ++ if test "$enable_static" = yes; then ++ ENABLE_STATIC_TRUE= ++ ENABLE_STATIC_FALSE='#' ++else ++ ENABLE_STATIC_TRUE='#' ++ ENABLE_STATIC_FALSE= ++fi ++ + + if test -n "$ac_tool_prefix"; then + for ac_prog in $CCC c++ g++ gcc CC cxx cc++ cl +@@ -7987,7 +7999,7 @@ + # Broken: fails on valid input. + continue + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +@@ -8003,11 +8015,11 @@ + ac_preproc_ok=: + break + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.i conftest.err conftest.$ac_ext + if $ac_preproc_ok; then : + break + fi +@@ -8046,7 +8058,7 @@ + # Broken: fails on valid input. + continue + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +@@ -8062,18 +8074,18 @@ + ac_preproc_ok=: + break + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.i conftest.err conftest.$ac_ext + if $ac_preproc_ok; then : + + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +-See \`config.log' for more details" "$LINENO" 5; } ++See \`config.log' for more details" "$LINENO" 5 ; } + fi + + ac_ext=c +@@ -12046,7 +12058,7 @@ + # Broken: fails on valid input. + continue + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +@@ -12062,11 +12074,11 @@ + ac_preproc_ok=: + break + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.i conftest.err conftest.$ac_ext + if $ac_preproc_ok; then : + break + fi +@@ -12105,7 +12117,7 @@ + # Broken: fails on valid input. + continue + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +@@ -12121,18 +12133,18 @@ + ac_preproc_ok=: + break + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.i conftest.err conftest.$ac_ext + if $ac_preproc_ok; then : + + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check +-See \`config.log' for more details" "$LINENO" 5; } ++See \`config.log' for more details" "$LINENO" 5 ; } + fi + + ac_ext=c +@@ -15466,7 +15478,7 @@ + + lt_cl_version="\ + gtk+ config.lt 2.22.0 +-configured by $0, generated by GNU Autoconf 2.66. ++configured by $0, generated by GNU Autoconf 2.67. + + Copyright (C) 2010 Free Software Foundation, Inc. + This config.lt script is free software; the Free Software Foundation +@@ -15485,10 +15497,10 @@ + lt_cl_silent=: ;; + + -*) as_fn_error $? "unrecognized option: $1 +-Try \`$0 --help' for more information." "$LINENO" 5 ;; ++Try \`$0 --help' for more information." "$LINENO" 5 ;; + + *) as_fn_error $? "unrecognized argument: $1 +-Try \`$0 --help' for more information." "$LINENO" 5 ;; ++Try \`$0 --help' for more information." "$LINENO" 5 ;; + esac + shift + done +@@ -17321,6 +17333,26 @@ + enable_xinerama="yes" + fi + ++# Check whether --enable-xrandr was given. ++if test "${enable_xrandr+set}" = set; then : ++ enableval=$enable_xrandr; ++fi ++ ++# Check whether --enable-xfixes was given. ++if test "${enable_xfixes+set}" = set; then : ++ enableval=$enable_xfixes; ++fi ++ ++# Check whether --enable-xcomposite was given. ++if test "${enable_xcomposite+set}" = set; then : ++ enableval=$enable_xcomposite; ++fi ++ ++# Check whether --enable-xdamage was given. ++if test "${enable_xdamage+set}" = set; then : ++ enableval=$enable_xdamage; ++fi ++ + # Check whether --enable-rebuilds was given. + if test "${enable_rebuilds+set}" = set; then : + enableval=$enable_rebuilds; +@@ -17359,7 +17391,7 @@ + + case $gdktarget in + x11|win32|quartz|directfb) ;; +- *) as_fn_error $? "Invalid target for GDK: use x11, quartz, directfb or win32." "$LINENO" 5;; ++ *) as_fn_error $? "Invalid target for GDK: use x11, quartz, directfb or win32." "$LINENO" 5 ;; + esac + + gdktargetlib=libgdk-$gdktarget-$GTK_API_VERSION.la +@@ -17404,11 +17436,11 @@ + ' + case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) +- as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; ++ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;; + esac + case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) +- as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; ++ as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;; + esac + + # Do `set' in a subshell so we don't clobber the current shell's +@@ -17804,7 +17836,7 @@ + test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 + $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + as_fn_error $? "no acceptable C compiler found in \$PATH +-See \`config.log' for more details" "$LINENO" 5; } ++See \`config.log' for more details" "$LINENO" 5 ; } + + # Provide some information about the compiler. + $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +@@ -18587,7 +18619,6 @@ + Alternatively, you may set the environment variables BASE_DEPENDENCIES_CFLAGS + and BASE_DEPENDENCIES_LIBS to avoid the need to call pkg-config. + See the pkg-config man page for more details." "$LINENO" 5 +- + elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } +@@ -18602,8 +18633,7 @@ + See the pkg-config man page for more details. + + To get pkg-config, see <http://pkg-config.freedesktop.org/>. +-See \`config.log' for more details" "$LINENO" 5; } +- ++See \`config.log' for more details" "$LINENO" 5 ; } + else + BASE_DEPENDENCIES_CFLAGS=$pkg_cv_BASE_DEPENDENCIES_CFLAGS + BASE_DEPENDENCIES_LIBS=$pkg_cv_BASE_DEPENDENCIES_LIBS +@@ -18689,7 +18719,6 @@ + Alternatively, you may set the environment variables CAIRO_BACKEND_CFLAGS + and CAIRO_BACKEND_LIBS to avoid the need to call pkg-config. + See the pkg-config man page for more details." "$LINENO" 5 +- + elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } +@@ -18704,8 +18733,7 @@ + See the pkg-config man page for more details. + + To get pkg-config, see <http://pkg-config.freedesktop.org/>. +-See \`config.log' for more details" "$LINENO" 5; } +- ++See \`config.log' for more details" "$LINENO" 5 ; } + else + CAIRO_BACKEND_CFLAGS=$pkg_cv_CAIRO_BACKEND_CFLAGS + CAIRO_BACKEND_LIBS=$pkg_cv_CAIRO_BACKEND_LIBS +@@ -20940,7 +20968,7 @@ + else + gdk_wchar_h=no + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + if test $gdk_wchar_h = yes; then + + $as_echo "#define HAVE_WCHAR_H 1" >>confdefs.h +@@ -20961,7 +20989,7 @@ + else + gdk_wctype_h=no + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + if test $gdk_wctype_h = yes; then + + $as_echo "#define HAVE_WCTYPE_H 1" >>confdefs.h +@@ -21079,7 +21107,7 @@ + else + gtk_uxtheme_h=no + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + if test $gtk_uxtheme_h = yes; then + + $as_echo "#define HAVE_UXTHEME_H 1" >>confdefs.h +@@ -21723,7 +21751,7 @@ + have_x=disabled + else + case $x_includes,$x_libraries in #( +- *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( ++ *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5 ;; #( + *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +@@ -21827,7 +21855,7 @@ + fi + done + fi +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + fi # $ac_x_includes = no + + if test "$ac_x_libraries" = no; then +@@ -22853,7 +22881,8 @@ + + + # Check for the RANDR extension +- if $PKG_CONFIG --exists "xrandr >= 1.2.99" ; then ++ if test x"$enable_xrandr" != xno && \ ++ $PKG_CONFIG --exists "xrandr >= 1.2.99" ; then + + $as_echo "#define HAVE_RANDR 1" >>confdefs.h + +@@ -22873,7 +22902,8 @@ + + # Checks for XFixes extension + +- if $PKG_CONFIG --exists xfixes ; then ++ if test x"$enable_xfixes" != xno && \ ++ $PKG_CONFIG --exists xfixes ; then + + $as_echo "#define HAVE_XFIXES 1" >>confdefs.h + +@@ -22884,7 +22914,8 @@ + + # Checks for Xcomposite extension + +- if $PKG_CONFIG --exists xcomposite ; then ++ if test x"$enable_xcomposite" != xno && \ ++ $PKG_CONFIG --exists xcomposite ; then + + $as_echo "#define HAVE_XCOMPOSITE 1" >>confdefs.h + +@@ -22895,7 +22926,7 @@ + + # Checks for Xdamage extension + +- if $PKG_CONFIG --exists xdamage ; then ++ if test x"$enable_xdamage" != xno && $PKG_CONFIG --exists xdamage ; then + + $as_echo "#define HAVE_XDAMAGE 1" >>confdefs.h + +@@ -23064,7 +23095,6 @@ + Alternatively, you may set the environment variables DIRECTFB_CFLAGS + and DIRECTFB_LIBS to avoid the need to call pkg-config. + See the pkg-config man page for more details." "$LINENO" 5 +- + elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } +@@ -23079,8 +23109,7 @@ + See the pkg-config man page for more details. + + To get pkg-config, see <http://pkg-config.freedesktop.org/>. +-See \`config.log' for more details" "$LINENO" 5; } +- ++See \`config.log' for more details" "$LINENO" 5 ; } + else + DIRECTFB_CFLAGS=$pkg_cv_DIRECTFB_CFLAGS + DIRECTFB_LIBS=$pkg_cv_DIRECTFB_LIBS +@@ -23173,20 +23202,23 @@ + + # Pull in gio-unix for GDesktopAppInfo usage, see at least gdkapplaunchcontext-x11.c + if test "x$gdktarget" = "xx11"; then +- GDK_PACKAGES="$PANGO_PACKAGES gio-unix-2.0 $X_PACKAGES gdk-pixbuf-2.0 cairo-$cairo_backend" ++ GDK_PACKAGES="$PANGO_PACKAGES gdk-pixbuf-2.0" ++ GDK_PRIVATE_PACKAGES="gio-unix-2.0 $X_PACKAGES cairo-$cairo_backend" + else +- GDK_PACKAGES="$PANGO_PACKAGES gio-2.0 gdk-pixbuf-2.0 cairo-$cairo_backend" ++ GDK_PACKAGES="$PANGO_PACKAGES gdk-pixbuf-2.0" ++ GDK_PRIVATE_PACKAGES="gio-2.0 cairo-$cairo_backend" + fi + +-GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PACKAGES`" +-GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PACKAGES` $GDK_EXTRA_CFLAGS" ++GDK_DEP_LIBS="$GDK_EXTRA_LIBS `$PKG_CONFIG --libs $GDK_PACKAGES $GDK_PRIVATE_PACKAGES`" ++GDK_DEP_CFLAGS="`$PKG_CONFIG --cflags gthread-2.0 $GDK_PACKAGES $GDK_PRIVATE_PACKAGES` $GDK_EXTRA_CFLAGS" + # + # If we aren't writing explicit dependencies, then don't put the extra libraries we need + # into the pkg-config files + # + if test $enable_explicit_deps != yes ; then +- GDK_PACKAGES="$PANGO_PACKAGES gdk-pixbuf-2.0" + GDK_EXTRA_LIBS= ++else ++ GDK_PACKAGES="$GDK_PACKAGES $GDK_PRIVATE_PACKAGES" + fi + + +@@ -23196,6 +23228,7 @@ + + + ++ + ######################################## + # Check for Accessibility Toolkit flags + ######################################## +@@ -24493,6 +24526,10 @@ + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. + Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi ++if test -z "${ENABLE_STATIC_TRUE}" && test -z "${ENABLE_STATIC_FALSE}"; then ++ as_fn_error $? "conditional \"ENABLE_STATIC\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 ++fi + if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. + Usually this means the macro was only invoked conditionally." "$LINENO" 5 +@@ -25126,7 +25163,7 @@ + # values after options handling. + ac_log=" + This file was extended by gtk+ $as_me 2.22.0, which was +-generated by GNU Autoconf 2.66. Invocation command line was ++generated by GNU Autoconf 2.67. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS +@@ -25192,7 +25229,7 @@ + ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" + ac_cs_version="\\ + gtk+ config.status 2.22.0 +-configured by $0, generated by GNU Autoconf 2.66, ++configured by $0, generated by GNU Autoconf 2.67, + with options \\"\$ac_cs_config\\" + + Copyright (C) 2010 Free Software Foundation, Inc. +@@ -25213,11 +25250,16 @@ + while test $# != 0 + do + case $1 in +- --*=*) ++ --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; ++ --*=) ++ ac_option=`expr "X$1" : 'X\([^=]*\)='` ++ ac_optarg= ++ ac_shift=: ++ ;; + *) + ac_option=$1 + ac_optarg=$2 +@@ -25239,6 +25281,7 @@ + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; +@@ -25782,7 +25825,7 @@ + "modules/printbackends/test/Makefile") CONFIG_FILES="$CONFIG_FILES modules/printbackends/test/Makefile" ;; + "perf/Makefile") CONFIG_FILES="$CONFIG_FILES perf/Makefile" ;; + +- *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; ++ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;; + esac + done + +@@ -26098,7 +26141,7 @@ + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; +- :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; ++ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac +@@ -26126,7 +26169,7 @@ + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || +- as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; ++ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" +@@ -26153,7 +26196,7 @@ + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin" \ +- || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac +Index: gtk+2.0-2.22.0/demos/gtk-demo/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/demos/gtk-demo/Makefile.in 2010-09-23 16:27:21.000000000 +0200 ++++ gtk+2.0-2.22.0/demos/gtk-demo/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -196,6 +196,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/demos/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/demos/Makefile.in 2010-09-23 16:27:21.000000000 +0200 ++++ gtk+2.0-2.22.0/demos/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -216,6 +216,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/docs/faq/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/docs/faq/Makefile.in 2010-09-23 16:27:21.000000000 +0200 ++++ gtk+2.0-2.22.0/docs/faq/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -120,6 +120,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/docs/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/docs/Makefile.in 2010-09-23 16:27:21.000000000 +0200 ++++ gtk+2.0-2.22.0/docs/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -160,6 +160,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/docs/reference/gdk/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/docs/reference/gdk/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/docs/reference/gdk/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -127,6 +127,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/docs/reference/gtk/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/docs/reference/gtk/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/docs/reference/gtk/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -152,6 +152,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/docs/reference/libgail-util/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/docs/reference/libgail-util/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/docs/reference/libgail-util/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -126,6 +126,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/docs/reference/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/docs/reference/Makefile.in 2010-09-23 16:27:21.000000000 +0200 ++++ gtk+2.0-2.22.0/docs/reference/Makefile.in 2010-09-27 21:47:22.000000000 +0200 +@@ -160,6 +160,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/docs/tools/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/docs/tools/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/docs/tools/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -155,6 +155,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/docs/tutorial/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/docs/tutorial/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/docs/tutorial/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -120,6 +120,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/gdk/directfb/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gdk/directfb/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/gdk/directfb/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -184,6 +184,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/gdk/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gdk/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/gdk/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -42,8 +42,7 @@ + $(srcdir)/Makefile.in $(top_srcdir)/Makefile.decl COPYING + @HAVE_INTROSPECTION_TRUE@am__append_1 = Gdk-2.0.gir + @HAVE_INTROSPECTION_TRUE@@USE_X11_TRUE@am__append_2 = GdkX11-2.0.gir +-@HAVE_INTROSPECTION_TRUE@@USE_X11_TRUE@am__append_3 = $(filter-out x11/gdkx.h, $(x11_introspection_files)) +-@HAVE_INTROSPECTION_TRUE@am__append_4 = $(gir_DATA) $(typelibs_DATA) ++@HAVE_INTROSPECTION_TRUE@am__append_3 = $(gir_DATA) $(typelibs_DATA) + subdir = gdk + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 + am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \ +@@ -308,6 +307,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -519,7 +519,7 @@ + + SUBDIRS = $(gdktarget) . tests + DIST_SUBDIRS = win32 x11 quartz directfb tests +-CLEANFILES = $(am__append_4) ++CLEANFILES = $(am__append_3) + INCLUDES = \ + -DG_LOG_DOMAIN=\"Gdk\" \ + -DGDK_COMPILATION \ +@@ -666,12 +666,13 @@ + libgdk_win32_2_0_la_LIBADD = win32/libgdk-win32.la $(GDK_DEP_LIBS) + libgdk_win32_2_0_la_DEPENDENCIES = win32/libgdk-win32.la win32/rc/gdk-win32-res.o gdk.def + libgdk_win32_2_0_la_LDFLAGS = -Wl,win32/rc/gdk-win32-res.o -export-symbols $(srcdir)/gdk.def $(LDADD) +-@HAVE_INTROSPECTION_TRUE@introspection_files = $(filter-out \ +-@HAVE_INTROSPECTION_TRUE@ gdkkeysyms-compat.h, \ +-@HAVE_INTROSPECTION_TRUE@ $(gdk_public_h_sources)) \ +-@HAVE_INTROSPECTION_TRUE@ $(gdk_c_sources) gdkenumtypes.c \ +-@HAVE_INTROSPECTION_TRUE@ gdkenumtypes.h $(am__append_3) +-@HAVE_INTROSPECTION_TRUE@Gdk_2_0_gir_SCANNERFLAGS = --warn-all ++@HAVE_INTROSPECTION_TRUE@introspection_files = \ ++@HAVE_INTROSPECTION_TRUE@ $(filter-out gdkkeysyms-compat.h, $(gdk_public_h_sources)) \ ++@HAVE_INTROSPECTION_TRUE@ $(gdk_c_sources) \ ++@HAVE_INTROSPECTION_TRUE@ gdkenumtypes.c \ ++@HAVE_INTROSPECTION_TRUE@ gdkenumtypes.h ++ ++@HAVE_INTROSPECTION_TRUE@Gdk_2_0_gir_SCANNERFLAGS = --warn-all --strip-prefix=Gdk + @HAVE_INTROSPECTION_TRUE@Gdk_2_0_gir_INCLUDES = Gio-2.0 GdkPixbuf-2.0 Pango-1.0 cairo-1.0 + @HAVE_INTROSPECTION_TRUE@Gdk_2_0_gir_LIBS = $(gdktargetlib) + @HAVE_INTROSPECTION_TRUE@Gdk_2_0_gir_FILES = $(introspection_files) +@@ -712,7 +713,7 @@ + @HAVE_INTROSPECTION_TRUE@@USE_X11_TRUE@GdkX11_2_0_gir_INCLUDES = Gio-2.0 Gdk-2.0 GdkPixbuf-2.0 Pango-1.0 xlib-2.0 + @HAVE_INTROSPECTION_TRUE@@USE_X11_TRUE@GdkX11_2_0_gir_LIBS = $(gdktargetlib) + @HAVE_INTROSPECTION_TRUE@@USE_X11_TRUE@GdkX11_2_0_gir_FILES = $(x11_introspection_files) +-@HAVE_INTROSPECTION_TRUE@@USE_X11_TRUE@GdkX11_2_0_gir_CFLAGS = $(INCLUDES) -L$(top_builddir)/gdk ++@HAVE_INTROSPECTION_TRUE@@USE_X11_TRUE@GdkX11_2_0_gir_CFLAGS = $(INCLUDES) -L$(top_builddir)/gdk -I.. -I$(srcdir) + @HAVE_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0 + @HAVE_INTROSPECTION_TRUE@gir_DATA = $(INTROSPECTION_GIRS) + @HAVE_INTROSPECTION_TRUE@typelibsdir = $(libdir)/girepository-1.0 +Index: gtk+2.0-2.22.0/gdk/quartz/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gdk/quartz/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/gdk/quartz/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -183,6 +183,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/gdk/tests/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gdk/tests/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/gdk/tests/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -125,6 +125,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/gdk/win32/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gdk/win32/Makefile.in 2010-09-23 16:27:22.000000000 +0200 ++++ gtk+2.0-2.22.0/gdk/win32/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -221,6 +221,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/gdk/win32/rc/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gdk/win32/rc/Makefile.in 2010-09-23 16:27:23.000000000 +0200 ++++ gtk+2.0-2.22.0/gdk/win32/rc/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -122,6 +122,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/gdk/x11/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gdk/x11/Makefile.in 2010-09-23 16:27:23.000000000 +0200 ++++ gtk+2.0-2.22.0/gdk/x11/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -212,6 +212,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/gtk/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gtk/Makefile.in 2010-09-23 16:27:23.000000000 +0200 ++++ gtk+2.0-2.22.0/gtk/Makefile.in 2010-09-27 21:47:23.000000000 +0200 +@@ -151,12 +151,13 @@ + gtkinfobar.c gtkinputdialog.c gtkinvisible.c gtkitem.c \ + gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c \ + gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c \ +- gtkmenu.c gtkmenubar.c gtkmenuitem.c gtkmenushell.c \ +- gtkmenutoolbutton.c gtkmessagedialog.c gtkmisc.c \ +- gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ +- gtknotebook.c gtkobject.c gtkoffscreenwindow.c gtkorientable.c \ +- gtkpagesetup.c gtkpaned.c gtkpango.c gtkpapersize.c \ +- gtkpathbar.c gtkplug.c gtkprintcontext.c gtkprintoperation.c \ ++ gtkmenu.c gtkmenubar.c gtkmenuitem.c ubuntumenuproxy.c \ ++ ubuntumenuproxymodule.c gtkmenushell.c gtkmenutoolbutton.c \ ++ gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c \ ++ gtkmountoperation.c gtknotebook.c gtkobject.c \ ++ gtkoffscreenwindow.c gtkorientable.c gtkpagesetup.c gtkpaned.c \ ++ gtkpango.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkprintcontext.c gtkprintoperation.c \ + gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ + gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ + gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ +@@ -237,26 +238,27 @@ + gtkinfobar.lo gtkinputdialog.lo gtkinvisible.lo gtkitem.lo \ + gtkkeyhash.lo gtklabel.lo gtklayout.lo gtklinkbutton.lo \ + gtkliststore.lo gtkmain.lo gtkmarshal.lo gtkmarshalers.lo \ +- gtkmenu.lo gtkmenubar.lo gtkmenuitem.lo gtkmenushell.lo \ +- gtkmenutoolbutton.lo gtkmessagedialog.lo gtkmisc.lo \ +- gtkmnemonichash.lo gtkmodules.lo gtkmountoperation.lo \ +- gtknotebook.lo gtkobject.lo gtkoffscreenwindow.lo \ +- gtkorientable.lo gtkpagesetup.lo gtkpaned.lo gtkpango.lo \ +- gtkpapersize.lo gtkpathbar.lo gtkplug.lo gtkprintcontext.lo \ +- gtkprintoperation.lo gtkprintoperationpreview.lo \ +- gtkprintsettings.lo gtkprintutils.lo gtkprogressbar.lo \ +- gtkradioaction.lo gtkradiobutton.lo gtkradiomenuitem.lo \ +- gtkradiotoolbutton.lo gtkrange.lo gtkrbtree.lo gtkrc.lo \ +- gtkrecentaction.lo gtkrecentchooserdefault.lo \ +- gtkrecentchooserdialog.lo gtkrecentchoosermenu.lo \ +- gtkrecentchooserwidget.lo gtkrecentchooserutils.lo \ +- gtkrecentchooser.lo gtkrecentfilter.lo gtkrecentmanager.lo \ +- gtkruler.lo gtkscale.lo gtkscalebutton.lo gtkscrollbar.lo \ +- gtkscrolledwindow.lo gtkselection.lo gtkseparator.lo \ +- gtkseparatormenuitem.lo gtkseparatortoolitem.lo gtksettings.lo \ +- gtksizegroup.lo gtkshow.lo gtksocket.lo gtkspinbutton.lo \ +- gtkspinner.lo gtkstatusbar.lo gtkstatusicon.lo gtkstock.lo \ +- gtkstyle.lo gtktable.lo gtktearoffmenuitem.lo gtktestutils.lo \ ++ gtkmenu.lo gtkmenubar.lo gtkmenuitem.lo ubuntumenuproxy.lo \ ++ ubuntumenuproxymodule.lo gtkmenushell.lo gtkmenutoolbutton.lo \ ++ gtkmessagedialog.lo gtkmisc.lo gtkmnemonichash.lo \ ++ gtkmodules.lo gtkmountoperation.lo gtknotebook.lo gtkobject.lo \ ++ gtkoffscreenwindow.lo gtkorientable.lo gtkpagesetup.lo \ ++ gtkpaned.lo gtkpango.lo gtkpapersize.lo gtkpathbar.lo \ ++ gtkplug.lo gtkprintcontext.lo gtkprintoperation.lo \ ++ gtkprintoperationpreview.lo gtkprintsettings.lo \ ++ gtkprintutils.lo gtkprogressbar.lo gtkradioaction.lo \ ++ gtkradiobutton.lo gtkradiomenuitem.lo gtkradiotoolbutton.lo \ ++ gtkrange.lo gtkrbtree.lo gtkrc.lo gtkrecentaction.lo \ ++ gtkrecentchooserdefault.lo gtkrecentchooserdialog.lo \ ++ gtkrecentchoosermenu.lo gtkrecentchooserwidget.lo \ ++ gtkrecentchooserutils.lo gtkrecentchooser.lo \ ++ gtkrecentfilter.lo gtkrecentmanager.lo gtkruler.lo gtkscale.lo \ ++ gtkscalebutton.lo gtkscrollbar.lo gtkscrolledwindow.lo \ ++ gtkselection.lo gtkseparator.lo gtkseparatormenuitem.lo \ ++ gtkseparatortoolitem.lo gtksettings.lo gtksizegroup.lo \ ++ gtkshow.lo gtksocket.lo gtkspinbutton.lo gtkspinner.lo \ ++ gtkstatusbar.lo gtkstatusicon.lo gtkstock.lo gtkstyle.lo \ ++ gtktable.lo gtktearoffmenuitem.lo gtktestutils.lo \ + gtktextbtree.lo gtktextbuffer.lo gtktextbufferrichtext.lo \ + gtktextbufferserialize.lo gtktextchild.lo gtktextdisplay.lo \ + gtktextiter.lo gtktextlayout.lo gtktextmark.lo \ +@@ -342,12 +344,13 @@ + gtkinfobar.c gtkinputdialog.c gtkinvisible.c gtkitem.c \ + gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c \ + gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c \ +- gtkmenu.c gtkmenubar.c gtkmenuitem.c gtkmenushell.c \ +- gtkmenutoolbutton.c gtkmessagedialog.c gtkmisc.c \ +- gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ +- gtknotebook.c gtkobject.c gtkoffscreenwindow.c gtkorientable.c \ +- gtkpagesetup.c gtkpaned.c gtkpango.c gtkpapersize.c \ +- gtkpathbar.c gtkplug.c gtkprintcontext.c gtkprintoperation.c \ ++ gtkmenu.c gtkmenubar.c gtkmenuitem.c ubuntumenuproxy.c \ ++ ubuntumenuproxymodule.c gtkmenushell.c gtkmenutoolbutton.c \ ++ gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c \ ++ gtkmountoperation.c gtknotebook.c gtkobject.c \ ++ gtkoffscreenwindow.c gtkorientable.c gtkpagesetup.c gtkpaned.c \ ++ gtkpango.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkprintcontext.c gtkprintoperation.c \ + gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ + gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ + gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ +@@ -429,12 +432,13 @@ + gtkinfobar.c gtkinputdialog.c gtkinvisible.c gtkitem.c \ + gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c \ + gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c \ +- gtkmenu.c gtkmenubar.c gtkmenuitem.c gtkmenushell.c \ +- gtkmenutoolbutton.c gtkmessagedialog.c gtkmisc.c \ +- gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ +- gtknotebook.c gtkobject.c gtkoffscreenwindow.c gtkorientable.c \ +- gtkpagesetup.c gtkpaned.c gtkpango.c gtkpapersize.c \ +- gtkpathbar.c gtkplug.c gtkprintcontext.c gtkprintoperation.c \ ++ gtkmenu.c gtkmenubar.c gtkmenuitem.c ubuntumenuproxy.c \ ++ ubuntumenuproxymodule.c gtkmenushell.c gtkmenutoolbutton.c \ ++ gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c \ ++ gtkmountoperation.c gtknotebook.c gtkobject.c \ ++ gtkoffscreenwindow.c gtkorientable.c gtkpagesetup.c gtkpaned.c \ ++ gtkpango.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkprintcontext.c gtkprintoperation.c \ + gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ + gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ + gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ +@@ -516,12 +520,13 @@ + gtkinfobar.c gtkinputdialog.c gtkinvisible.c gtkitem.c \ + gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c \ + gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c \ +- gtkmenu.c gtkmenubar.c gtkmenuitem.c gtkmenushell.c \ +- gtkmenutoolbutton.c gtkmessagedialog.c gtkmisc.c \ +- gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ +- gtknotebook.c gtkobject.c gtkoffscreenwindow.c gtkorientable.c \ +- gtkpagesetup.c gtkpaned.c gtkpango.c gtkpapersize.c \ +- gtkpathbar.c gtkplug.c gtkprintcontext.c gtkprintoperation.c \ ++ gtkmenu.c gtkmenubar.c gtkmenuitem.c ubuntumenuproxy.c \ ++ ubuntumenuproxymodule.c gtkmenushell.c gtkmenutoolbutton.c \ ++ gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c \ ++ gtkmountoperation.c gtknotebook.c gtkobject.c \ ++ gtkoffscreenwindow.c gtkorientable.c gtkpagesetup.c gtkpaned.c \ ++ gtkpango.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkprintcontext.c gtkprintoperation.c \ + gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ + gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ + gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ +@@ -726,6 +731,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -966,6 +972,8 @@ + -I$(top_srcdir) -I../gdk \ + -I$(top_srcdir)/gdk \ + -DGDK_DISABLE_DEPRECATED \ ++ -DMAEMO_CHANGES \ ++ -DGTK_FILE_CHOOSER_ENABLE_UNSUPPORTED \ + -DGTK_DISABLE_DEPRECATED \ + -DGTK_FILE_SYSTEM_ENABLE_UNSUPPORTED \ + -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \ +@@ -1033,11 +1041,11 @@ + gtkimmodule.h gtkimmulticontext.h gtkinfobar.h gtkinvisible.h \ + gtkitem.h gtklabel.h gtklayout.h gtklinkbutton.h \ + gtkliststore.h gtkmain.h gtkmenu.h gtkmenubar.h gtkmenuitem.h \ +- gtkmenushell.h gtkmenutoolbutton.h gtkmessagedialog.h \ +- gtkmisc.h gtkmodules.h gtkmountoperation.h gtknotebook.h \ +- gtkobject.h gtkoffscreenwindow.h gtkorientable.h \ +- gtkpagesetup.h gtkpaned.h gtkpapersize.h gtkplug.h \ +- gtkprintcontext.h gtkprintoperation.h \ ++ ubuntumenuproxy.h ubuntumenuproxymodule.h gtkmenushell.h \ ++ gtkmenutoolbutton.h gtkmessagedialog.h gtkmisc.h gtkmodules.h \ ++ gtkmountoperation.h gtknotebook.h gtkobject.h \ ++ gtkoffscreenwindow.h gtkorientable.h gtkpagesetup.h gtkpaned.h \ ++ gtkpapersize.h gtkplug.h gtkprintcontext.h gtkprintoperation.h \ + gtkprintoperationpreview.h gtkprintsettings.h gtkprivate.h \ + gtkprogressbar.h gtkradioaction.h gtkradiobutton.h \ + gtkradiomenuitem.h gtkradiotoolbutton.h gtkrange.h gtkrc.h \ +@@ -1078,17 +1086,21 @@ + # Installed header files without compatibility guarantees + # that are not included in gtk/gtk.h + gtk_semi_private_h_sources = \ +- gtktextlayout.h ++ gtktextlayout.h \ ++ gtkfilesystem.h \ ++ gtkfilesystemmodel.h \ ++ gtkfilechooserprivate.h \ ++ gtkfilechooserutils.h \ ++ gtkquery.h \ ++ gtksearchengine.h + + + # GTK+ header files that don't get installed +-gtk_private_h_sources = gtkquery.h gtksearchengine.h \ +- gtksearchenginesimple.h gtkdndcursors.h gtkentryprivate.h \ +- gtkbuilderprivate.h gtkcustompaperunixdialog.h \ +- gtkfilechooserdefault.h gtkfilechooserembed.h \ +- gtkfilechooserentry.h gtkfilechooserprivate.h \ +- gtkfilechoosersettings.h gtkfilechooserutils.h gtkfilesystem.h \ +- gtkfilesystemmodel.h gtkiconcache.h gtkintl.h gtkkeyhash.h \ ++gtk_private_h_sources = gtksearchenginesimple.h gtkdndcursors.h \ ++ gtkentryprivate.h gtkbuilderprivate.h \ ++ gtkcustompaperunixdialog.h gtkfilechooserdefault.h \ ++ gtkfilechooserembed.h gtkfilechooserentry.h \ ++ gtkfilechoosersettings.h gtkiconcache.h gtkintl.h gtkkeyhash.h \ + gtkmnemonichash.h gtkmountoperationprivate.h gtkpango.h \ + gtkpathbar.h gtkplugprivate.h gtkprintoperation-private.h \ + gtkprintutils.h gtkrbtree.h gtkrecentchooserdefault.h \ +@@ -1134,12 +1146,13 @@ + gtkinfobar.c gtkinputdialog.c gtkinvisible.c gtkitem.c \ + gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c \ + gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c \ +- gtkmenu.c gtkmenubar.c gtkmenuitem.c gtkmenushell.c \ +- gtkmenutoolbutton.c gtkmessagedialog.c gtkmisc.c \ +- gtkmnemonichash.c gtkmodules.c gtkmountoperation.c \ +- gtknotebook.c gtkobject.c gtkoffscreenwindow.c gtkorientable.c \ +- gtkpagesetup.c gtkpaned.c gtkpango.c gtkpapersize.c \ +- gtkpathbar.c gtkplug.c gtkprintcontext.c gtkprintoperation.c \ ++ gtkmenu.c gtkmenubar.c gtkmenuitem.c ubuntumenuproxy.c \ ++ ubuntumenuproxymodule.c gtkmenushell.c gtkmenutoolbutton.c \ ++ gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c \ ++ gtkmountoperation.c gtknotebook.c gtkobject.c \ ++ gtkoffscreenwindow.c gtkorientable.c gtkpagesetup.c gtkpaned.c \ ++ gtkpango.c gtkpapersize.c gtkpathbar.c gtkplug.c \ ++ gtkprintcontext.c gtkprintoperation.c \ + gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c \ + gtkprogressbar.c gtkradioaction.c gtkradiobutton.c \ + gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c \ +@@ -2045,6 +2058,8 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtkwindow.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtkxembed.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/queryimmodules.Po@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ubuntumenuproxy.Plo@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ubuntumenuproxymodule.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/updateiconcache.Po@am__quote@ + + .c.o: +Index: gtk+2.0-2.22.0/gtk/tests/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gtk/tests/Makefile.in 2010-09-23 16:27:23.000000000 +0200 ++++ gtk+2.0-2.22.0/gtk/tests/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -56,9 +56,10 @@ + @OS_UNIX_TRUE@am__EXEEXT_1 = defaultvalue$(EXEEXT) + am__EXEEXT_2 = testing$(EXEEXT) liststore$(EXEEXT) treestore$(EXEEXT) \ + treeview$(EXEEXT) treeview-scrolling$(EXEEXT) \ +- recentmanager$(EXEEXT) floating$(EXEEXT) object$(EXEEXT) \ +- builder$(EXEEXT) $(am__EXEEXT_1) textbuffer$(EXEEXT) \ +- filtermodel$(EXEEXT) expander$(EXEEXT) action$(EXEEXT) ++ recentmanager$(EXEEXT) menuproxy$(EXEEXT) floating$(EXEEXT) \ ++ object$(EXEEXT) builder$(EXEEXT) $(am__EXEEXT_1) \ ++ textbuffer$(EXEEXT) filtermodel$(EXEEXT) expander$(EXEEXT) \ ++ action$(EXEEXT) + PROGRAMS = $(noinst_PROGRAMS) + am_action_OBJECTS = action.$(OBJEXT) + action_OBJECTS = $(am_action_OBJECTS) +@@ -90,6 +91,9 @@ + am_liststore_OBJECTS = liststore.$(OBJEXT) + liststore_OBJECTS = $(am_liststore_OBJECTS) + liststore_DEPENDENCIES = $(am__DEPENDENCIES_2) ++am_menuproxy_OBJECTS = menuproxy.$(OBJEXT) ++menuproxy_OBJECTS = $(am_menuproxy_OBJECTS) ++menuproxy_DEPENDENCIES = $(am__DEPENDENCIES_2) + am_object_OBJECTS = object.$(OBJEXT) pixbuf-init.$(OBJEXT) + object_OBJECTS = $(am_object_OBJECTS) + object_DEPENDENCIES = $(am__DEPENDENCIES_2) +@@ -139,14 +143,14 @@ + am__v_GEN_0 = @echo " GEN " $@; + SOURCES = $(action_SOURCES) $(builder_SOURCES) $(defaultvalue_SOURCES) \ + $(expander_SOURCES) $(filtermodel_SOURCES) $(floating_SOURCES) \ +- $(liststore_SOURCES) $(object_SOURCES) \ ++ $(liststore_SOURCES) $(menuproxy_SOURCES) $(object_SOURCES) \ + $(recentmanager_SOURCES) $(testing_SOURCES) \ + $(textbuffer_SOURCES) $(treestore_SOURCES) $(treeview_SOURCES) \ + $(treeview_scrolling_SOURCES) + DIST_SOURCES = $(action_SOURCES) $(builder_SOURCES) \ + $(defaultvalue_SOURCES) $(expander_SOURCES) \ + $(filtermodel_SOURCES) $(floating_SOURCES) \ +- $(liststore_SOURCES) $(object_SOURCES) \ ++ $(liststore_SOURCES) $(menuproxy_SOURCES) $(object_SOURCES) \ + $(recentmanager_SOURCES) $(testing_SOURCES) \ + $(textbuffer_SOURCES) $(treestore_SOURCES) $(treeview_SOURCES) \ + $(treeview_scrolling_SOURCES) +@@ -214,6 +218,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -386,8 +391,8 @@ + # initialize variables for unconditional += appending + EXTRA_DIST = + TEST_PROGS = testing liststore treestore treeview treeview-scrolling \ +- recentmanager floating object builder $(am__append_1) \ +- textbuffer filtermodel expander action ++ recentmanager menuproxy floating object builder \ ++ $(am__append_1) textbuffer filtermodel expander action + + ### testing rules + +@@ -442,6 +447,8 @@ + treeview_scrolling_LDADD = $(progs_ldadd) + recentmanager_SOURCES = recentmanager.c + recentmanager_LDADD = $(progs_ldadd) ++menuproxy_SOURCES = menuproxy.c ++menuproxy_LDADD = $(progs_ldadd) + floating_SOURCES = floating.c + floating_LDADD = $(progs_ldadd) + object_SOURCES = object.c pixbuf-init.c +@@ -536,6 +543,9 @@ + liststore$(EXEEXT): $(liststore_OBJECTS) $(liststore_DEPENDENCIES) + @rm -f liststore$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(liststore_OBJECTS) $(liststore_LDADD) $(LIBS) ++menuproxy$(EXEEXT): $(menuproxy_OBJECTS) $(menuproxy_DEPENDENCIES) ++ @rm -f menuproxy$(EXEEXT) ++ $(AM_V_CCLD)$(LINK) $(menuproxy_OBJECTS) $(menuproxy_LDADD) $(LIBS) + object$(EXEEXT): $(object_OBJECTS) $(object_DEPENDENCIES) + @rm -f object$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(object_OBJECTS) $(object_LDADD) $(LIBS) +@@ -571,6 +581,7 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filtermodel.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/floating.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liststore.Po@am__quote@ ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/menuproxy.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pixbuf-init.Po@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/recentmanager.Po@am__quote@ +Index: gtk+2.0-2.22.0/gtk/theme-bits/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/gtk/theme-bits/Makefile.in 2010-09-23 16:27:23.000000000 +0200 ++++ gtk+2.0-2.22.0/gtk/theme-bits/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -152,6 +152,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/m4macros/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/m4macros/Makefile.in 2010-09-23 16:27:23.000000000 +0200 ++++ gtk+2.0-2.22.0/m4macros/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -144,6 +144,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/Makefile.in 2010-09-23 16:27:26.000000000 +0200 ++++ gtk+2.0-2.22.0/Makefile.in 2010-09-27 21:47:26.000000000 +0200 +@@ -109,7 +109,8 @@ + distdir dist dist-all distcheck + ETAGS = etags + CTAGS = ctags +-DIST_SUBDIRS = $(SUBDIRS) ++DIST_SUBDIRS = po po-properties gdk gtk modules demos tests perf docs \ ++ m4macros build + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + distdir = $(PACKAGE)-$(VERSION) + top_distdir = $(distdir) +@@ -207,6 +208,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -458,7 +460,10 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +-SRC_SUBDIRS = gdk gtk modules demos tests perf ++ ++# don't build perf measurement tools in static builds ++@ENABLE_STATIC_FALSE@MAYBE_PERF = perf ++SRC_SUBDIRS = gdk gtk modules demos tests $(MAYBE_PERF) + SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build + + # require automake 1.4 +Index: gtk+2.0-2.22.0/modules/engines/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/engines/Makefile.in 2010-09-23 16:27:23.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/engines/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -160,6 +160,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/engines/ms-windows/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/engines/ms-windows/Makefile.in 2010-09-23 16:27:24.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/engines/ms-windows/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -217,6 +217,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in 2010-09-23 16:27:24.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/engines/ms-windows/Theme/gtk-2.0/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -144,6 +144,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/engines/ms-windows/Theme/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/engines/ms-windows/Theme/Makefile.in 2010-09-23 16:27:24.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/engines/ms-windows/Theme/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -160,6 +160,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/engines/pixbuf/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/engines/pixbuf/Makefile.in 2010-09-23 16:27:24.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/engines/pixbuf/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -180,6 +180,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/input/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/input/Makefile.in 2010-09-23 16:27:24.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/input/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -381,6 +381,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +@@ -696,7 +697,8 @@ + @INCLUDE_IM_MULTIPRESS_FALSE@MULTIPRESS_MODULE = im-multipress.la + imconffiledir = $(sysconfdir)/gtk-2.0 + dist_imconffile_DATA = im-multipress.conf +-@CROSS_COMPILING_FALSE@RUN_QUERY_IMMODULES_TEST = test -z "$(DESTDIR)" ++@CROSS_COMPILING_FALSE@@ENABLE_STATIC_FALSE@RUN_QUERY_IMMODULES_TEST = test -z "$(DESTDIR)" ++@CROSS_COMPILING_FALSE@@ENABLE_STATIC_TRUE@RUN_QUERY_IMMODULES_TEST = false + @CROSS_COMPILING_TRUE@RUN_QUERY_IMMODULES_TEST = false + @BUILD_DYNAMIC_MODULES_TRUE@module_LTLIBRARIES = \ + @BUILD_DYNAMIC_MODULES_TRUE@ $(AM_ET_MODULE) \ +@@ -1252,7 +1254,18 @@ + included-modules: $(noinst_LTLIBRARIES) + + gtk.immodules: Makefile.am $(module_LTLIBRARIES) +- $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules ++ @if $(RUN_QUERY_IMMODULES_TEST) ; then \ ++ echo "$(top_builddir)/gtk/gtk-query-immodules-2.0 > gtk.immodules" ; \ ++ $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules; \ ++ else \ ++ echo "***" ; \ ++ echo "*** Warning: gtk.immodules not built" ; \ ++ echo "***" ; \ ++ echo "*** Generate this file manually on host" ; \ ++ echo "*** system using gtk-query-immodules-2.0" ; \ ++ echo "***" ; \ ++ touch gtk.immodules; \ ++ fi + + @CROSS_COMPILING_FALSE@all-local: gtk.immodules + +Index: gtk+2.0-2.22.0/modules/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/Makefile.in 2010-09-23 16:27:23.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -161,6 +161,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/other/gail/libgail-util/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/other/gail/libgail-util/Makefile.in 2010-09-23 16:27:25.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/other/gail/libgail-util/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -185,6 +185,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/other/gail/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/other/gail/Makefile.in 2010-09-23 16:27:24.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/other/gail/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -251,6 +251,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/other/gail/tests/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/other/gail/tests/Makefile.in 2010-09-23 16:27:25.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/other/gail/tests/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -324,6 +324,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/other/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/other/Makefile.in 2010-09-23 16:27:24.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/other/Makefile.in 2010-09-27 21:47:24.000000000 +0200 +@@ -160,6 +160,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/printbackends/cups/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/printbackends/cups/Makefile.in 2010-09-23 16:27:25.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/printbackends/cups/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -184,6 +184,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/printbackends/file/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/printbackends/file/Makefile.in 2010-09-23 16:27:25.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/printbackends/file/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -183,6 +183,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/printbackends/lpr/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/printbackends/lpr/Makefile.in 2010-09-23 16:27:25.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/printbackends/lpr/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -181,6 +181,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/printbackends/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/printbackends/Makefile.in 2010-09-23 16:27:25.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/printbackends/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -162,6 +162,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/printbackends/papi/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/printbackends/papi/Makefile.in 2010-09-23 16:27:25.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/printbackends/papi/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -181,6 +181,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/modules/printbackends/test/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/modules/printbackends/test/Makefile.in 2010-09-23 16:27:25.000000000 +0200 ++++ gtk+2.0-2.22.0/modules/printbackends/test/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -182,6 +182,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/perf/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/perf/Makefile.in 2010-09-23 16:27:25.000000000 +0200 ++++ gtk+2.0-2.22.0/perf/Makefile.in 2010-09-27 21:47:25.000000000 +0200 +@@ -155,6 +155,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ +Index: gtk+2.0-2.22.0/tests/Makefile.in +=================================================================== +--- gtk+2.0-2.22.0.orig/tests/Makefile.in 2010-09-23 16:27:26.000000000 +0200 ++++ gtk+2.0-2.22.0/tests/Makefile.in 2010-09-27 21:47:26.000000000 +0200 +@@ -405,6 +405,7 @@ + GDK_PACKAGES = @GDK_PACKAGES@ + GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ + GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ ++GDK_PRIVATE_PACKAGES = @GDK_PRIVATE_PACKAGES@ + GDK_WLIBS = @GDK_WLIBS@ + GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ + GLIB_CFLAGS = @GLIB_CFLAGS@ --- gtk+2.0-2.22.0.orig/debian/patches/043_ubuntu_menu_proxy.patch +++ gtk+2.0-2.22.0/debian/patches/043_ubuntu_menu_proxy.patch @@ -0,0 +1,1345 @@ +## Description: add some description +## Origin/Author: add some origin or author +## Bug: bug URL +Index: gtk+2.0-2.21.6/gtk/Makefile.am +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/Makefile.am 2010-08-24 17:45:04.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/Makefile.am 2010-08-24 17:45:04.000000000 +0200 +@@ -249,6 +249,8 @@ + gtkmenu.h \ + gtkmenubar.h \ + gtkmenuitem.h \ ++ ubuntumenuproxy.h \ ++ ubuntumenuproxymodule.h \ + gtkmenushell.h \ + gtkmenutoolbutton.h \ + gtkmessagedialog.h \ +@@ -517,6 +519,8 @@ + gtkmenu.c \ + gtkmenubar.c \ + gtkmenuitem.c \ ++ ubuntumenuproxy.c \ ++ ubuntumenuproxymodule.c \ + gtkmenushell.c \ + gtkmenutoolbutton.c \ + gtkmessagedialog.c \ +Index: gtk+2.0-2.21.6/gtk/gtk.h +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtk.h 2010-08-16 22:57:55.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtk.h 2010-08-24 17:45:04.000000000 +0200 +@@ -65,6 +65,8 @@ + #include <gtk/gtkcellview.h> + #include <gtk/gtkcheckbutton.h> + #include <gtk/gtkcheckmenuitem.h> ++#include <gtk/ubuntumenuproxy.h> ++#include <gtk/ubuntumenuproxymodule.h> + #include <gtk/gtkclipboard.h> + #include <gtk/gtkcolorbutton.h> + #include <gtk/gtkcolorsel.h> +Index: gtk+2.0-2.21.6/gtk/gtk.symbols +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtk.symbols 2010-08-24 17:45:04.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtk.symbols 2010-08-24 17:45:04.000000000 +0200 +@@ -2572,6 +2572,21 @@ + #endif + #endif + ++#if IN_HEADER(__UBUNTU_MENU_PROXY_H__) ++#if IN_FILE(__UBUNTU_MENU_PROXY_C__) ++ubuntu_menu_proxy_get_type G_GNUC_CONST ++ubuntu_menu_proxy_get ++ubuntu_menu_proxy_insert ++#endif ++#endif ++ ++#if IN_HEADER(__UBUNTU_MENU_PROXY_MODULE_H__) ++#if IN_FILE(__UBUNTU_MENU_PROXY_MODULE_C__) ++ubuntu_menu_proxy_module_get_type ++ubuntu_menu_proxy_module_get ++#endif ++#endif ++ + #if IN_HEADER(__GTK_MENU_SHELL_H__) + #if IN_FILE(__GTK_MENU_SHELL_C__) + gtk_menu_shell_activate_item +@@ -2586,6 +2601,7 @@ + gtk_menu_shell_select_item + gtk_menu_shell_set_take_focus + gtk_menu_shell_get_take_focus ++ubuntu_gtk_menu_shell_activate_mnemonic + #endif + #endif + +Index: gtk+2.0-2.21.6/gtk/gtkmenubar.c +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtkmenubar.c 2010-08-16 22:57:55.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtkmenubar.c 2010-08-24 17:45:04.000000000 +0200 +@@ -107,7 +107,7 @@ + widget_class->size_allocate = gtk_menu_bar_size_allocate; + widget_class->expose_event = gtk_menu_bar_expose; + widget_class->hierarchy_changed = gtk_menu_bar_hierarchy_changed; +- ++ + menu_shell_class->submenu_placement = GTK_TOP_BOTTOM; + menu_shell_class->get_popup_delay = gtk_menu_bar_get_popup_delay; + menu_shell_class->move_current = gtk_menu_bar_move_current; +@@ -218,8 +218,37 @@ + } + + static void ++local_notify (GtkWidget *widget, ++ GParamSpec *pspec, ++ gpointer user_data) ++{ ++ gboolean local; ++ ++ g_object_get (widget, ++ "ubuntu-local", &local, ++ NULL); ++ ++ gtk_widget_queue_resize (widget); ++ ++ /* ++ if (local) ++ { ++ gtk_widget_show (widget); ++ } ++ else ++ { ++ gtk_widget_hide (widget); ++ } ++ */ ++} ++ ++static void + gtk_menu_bar_init (GtkMenuBar *object) + { ++ g_signal_connect (object, ++ "notify::ubuntu-local", ++ G_CALLBACK (local_notify), ++ NULL); + } + + GtkWidget* +@@ -284,13 +313,27 @@ + gint nchildren; + GtkRequisition child_requisition; + gint ipadding; ++ gboolean local = FALSE; + + g_return_if_fail (GTK_IS_MENU_BAR (widget)); + g_return_if_fail (requisition != NULL); + + requisition->width = 0; + requisition->height = 0; +- ++ ++ g_object_get (widget, ++ "ubuntu-local", ++ &local, ++ NULL); ++ ++ if (!local) ++ { ++ requisition->width = 0; ++ requisition->height = 0; ++ ++ return; ++ } ++ + if (gtk_widget_get_visible (widget)) + { + menu_bar = GTK_MENU_BAR (widget); +Index: gtk+2.0-2.21.6/gtk/gtkmenushell.c +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtkmenushell.c 2010-08-16 22:57:55.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtkmenushell.c 2010-08-24 17:45:11.000000000 +0200 +@@ -37,6 +37,7 @@ + #include "gtkmenubar.h" + #include "gtkmenuitem.h" + #include "gtkmenushell.h" ++#include "ubuntumenuproxy.h" + #include "gtkmnemonichash.h" + #include "gtktearoffmenuitem.h" + #include "gtkwindow.h" +@@ -64,7 +65,8 @@ + + enum { + PROP_0, +- PROP_TAKE_FOCUS ++ PROP_TAKE_FOCUS, ++ PROP_LOCAL + }; + + /* Terminology: +@@ -135,6 +137,9 @@ + GtkMnemonicHash *mnemonic_hash; + GtkKeyHash *key_hash; + ++ UbuntuMenuProxy *proxy; ++ gboolean local; ++ + guint take_focus : 1; + guint activated_submenu : 1; + /* This flag is a crutch to keep mnemonics in the same menu +@@ -381,6 +386,14 @@ + TRUE, + GTK_PARAM_READWRITE)); + ++ g_object_class_install_property (object_class, ++ PROP_LOCAL, ++ g_param_spec_boolean ("ubuntu-local", ++ P_("Local menu"), ++ P_("Determines whether the menu is local"), ++ FALSE, ++ GTK_PARAM_READWRITE)); ++ + g_type_class_add_private (object_class, sizeof (GtkMenuShellPrivate)); + } + +@@ -391,6 +404,22 @@ + } + + static void ++show_local_notify (UbuntuMenuProxy *proxy, ++ GParamSpec *pspec, ++ GtkMenuShell *shell) ++{ ++ gboolean local; ++ ++ g_object_get (proxy, ++ "show-local", &local, ++ NULL); ++ ++ g_object_set (shell, ++ "ubuntu-local", local, ++ NULL); ++} ++ ++static void + gtk_menu_shell_init (GtkMenuShell *menu_shell) + { + GtkMenuShellPrivate *priv = GTK_MENU_SHELL_GET_PRIVATE (menu_shell); +@@ -408,6 +437,13 @@ + priv->key_hash = NULL; + priv->take_focus = TRUE; + priv->activated_submenu = FALSE; ++ priv->proxy = ubuntu_menu_proxy_get (); ++ priv->local = FALSE; ++ ++ if (priv->proxy != NULL) ++ g_signal_connect (priv->proxy, "notify::show-local", ++ G_CALLBACK (show_local_notify), ++ menu_shell); + } + + static void +@@ -417,12 +453,16 @@ + GParamSpec *pspec) + { + GtkMenuShell *menu_shell = GTK_MENU_SHELL (object); ++ GtkMenuShellPrivate *priv = GTK_MENU_SHELL_GET_PRIVATE (object); + + switch (prop_id) + { + case PROP_TAKE_FOCUS: + gtk_menu_shell_set_take_focus (menu_shell, g_value_get_boolean (value)); + break; ++ case PROP_LOCAL: ++ priv->local = g_value_get_boolean (value); ++ break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; +@@ -436,12 +476,23 @@ + GParamSpec *pspec) + { + GtkMenuShell *menu_shell = GTK_MENU_SHELL (object); ++ GtkMenuShellPrivate *priv = GTK_MENU_SHELL_GET_PRIVATE (menu_shell); ++ gboolean local; + + switch (prop_id) + { + case PROP_TAKE_FOCUS: + g_value_set_boolean (value, gtk_menu_shell_get_take_focus (menu_shell)); + break; ++ case PROP_LOCAL: ++ if (priv->proxy == NULL) { ++ local = TRUE; ++ } else { ++ local = priv->local; ++ } ++ ++ g_value_set_boolean (value, local); ++ break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; +@@ -454,6 +505,13 @@ + GtkMenuShell *menu_shell = GTK_MENU_SHELL (object); + GtkMenuShellPrivate *priv = GTK_MENU_SHELL_GET_PRIVATE (menu_shell); + ++ if (priv->proxy != NULL) ++ { ++ g_signal_handlers_disconnect_by_func (priv->proxy, ++ show_local_notify, ++ menu_shell); ++ } ++ + if (priv->mnemonic_hash) + _gtk_mnemonic_hash_free (priv->mnemonic_hash); + if (priv->key_hash) +@@ -483,14 +541,24 @@ + gint position) + { + GtkMenuShellClass *class; ++ GtkMenuShellPrivate *priv; + + g_return_if_fail (GTK_IS_MENU_SHELL (menu_shell)); + g_return_if_fail (GTK_IS_MENU_ITEM (child)); + + class = GTK_MENU_SHELL_GET_CLASS (menu_shell); + ++ priv = GTK_MENU_SHELL_GET_PRIVATE (menu_shell); ++ + if (class->insert) + class->insert (menu_shell, child, position); ++ ++ /* insert to proxy */ ++ if (priv->proxy != NULL) ++ ubuntu_menu_proxy_insert (priv->proxy, ++ GTK_WIDGET (menu_shell), ++ child, ++ position); + } + + static void +@@ -1815,5 +1883,25 @@ + } + } + ++gboolean ++ubuntu_gtk_menu_shell_activate_mnemonic (GtkMenuShell *shell, GtkWidget *item) ++{ ++ GtkMenuShellPrivate *priv; ++ ++ g_return_val_if_fail (GTK_IS_MENU_SHELL (shell), FALSE); ++ ++ priv = GTK_MENU_SHELL_GET_PRIVATE (shell); ++ ++ if (priv->proxy && !ubuntu_menu_proxy_show_local (priv->proxy)) ++ { ++ ubuntu_menu_proxy_activate_menu (priv->proxy, ++ item); ++ ++ return TRUE; ++ } ++ ++ return FALSE; ++} ++ + #define __GTK_MENU_SHELL_C__ + #include "gtkaliasdef.c" +Index: gtk+2.0-2.21.6/gtk/tests/Makefile.am +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/tests/Makefile.am 2010-08-16 22:57:56.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/tests/Makefile.am 2010-08-24 17:45:04.000000000 +0200 +@@ -45,6 +45,10 @@ + recentmanager_SOURCES = recentmanager.c + recentmanager_LDADD = $(progs_ldadd) + ++TEST_PROGS += menuproxy ++menuproxy_SOURCES = menuproxy.c ++menuproxy_LDADD = $(progs_ldadd) ++ + TEST_PROGS += floating + floating_SOURCES = floating.c + floating_LDADD = $(progs_ldadd) +Index: gtk+2.0-2.21.6/gtk/tests/menuproxy.c +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ gtk+2.0-2.21.6/gtk/tests/menuproxy.c 2010-08-24 17:45:04.000000000 +0200 +@@ -0,0 +1,278 @@ ++/* ++ * Copyright (C) 2009 Canonical, Ltd. ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU Lesser General Public ++ * License as published by the Free Software Foundation; either ++ * version 2 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * Lesser General Public License for more details. ++ * ++ * You should have received a copy of the GNU Lesser General Public ++ * License along with this library; if not, write to the ++ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ * Boston, MA 02111-1307, USA. ++ * ++ * Authors: Cody Russell <bratsche@gnome.org> ++ */ ++ ++#undef GTK_DISABLE_DEPRECATED ++#include "../gtk/gtk.h" ++ ++typedef struct _TestProxy TestProxy; ++typedef struct _TestProxyClass TestProxyClass; ++ ++//static GType test_proxy_type_id = 0; ++//static TestProxyClass *test_proxy_parent_class = NULL; ++ ++#define TEST_TYPE_PROXY (test_proxy_type_id) ++#define TEST_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TEST_TYPE_PROXY, TestProxy)) ++#define TEST_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), TEST_TYPE_PROXY, TestProxyClass)) ++#define TEST_IS_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TEST_TYPE_PROXY)) ++ ++struct _TestProxy ++{ ++ UbuntuMenuProxy parent_object; ++}; ++ ++struct _TestProxyClass ++{ ++ UbuntuMenuProxyClass parent_class; ++}; ++ ++static void test_proxy_insert (UbuntuMenuProxy *proxy, ++ GtkWidget *child, ++ guint position); ++ ++G_DEFINE_DYNAMIC_TYPE(TestProxy, test_proxy, UBUNTU_TYPE_MENU_PROXY) ++ ++static void ++test_proxy_init (TestProxy *proxy) ++{ ++} ++ ++static void ++test_proxy_class_init (TestProxyClass *class) ++{ ++ UbuntuMenuProxyClass *proxy_class = UBUNTU_MENU_PROXY_CLASS (class); ++ ++ test_proxy_parent_class = g_type_class_peek_parent (class); ++ ++ proxy_class->insert = test_proxy_insert; ++} ++ ++static void ++test_proxy_class_finalize (TestProxyClass *class) ++{ ++} ++ ++static void ++test_proxy_insert (UbuntuMenuProxy *proxy, ++ GtkWidget *child, ++ guint position) ++{ ++} ++ ++/* ---------------------------------------------------- */ ++ ++#define TEST_TYPE_MODULE (test_module_get_type ()) ++#define TEST_MODULE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TEST_TYPE_MODULE, TestModule)) ++#define TEST_MODULE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), TEST_TYPE_MODULE, TestModuleClass)) ++#define TEST_IS_MODULE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TEST_TYPE_MODULE)) ++#define TEST_IS_MODULE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TEST_TYPE_MODULE)) ++#define TEST_MODULE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TEST_TYPE_MODULE, TestModuleClass)) ++ ++ ++typedef struct _TestModule TestModule; ++typedef struct _TestModuleClass TestModuleClass; ++ ++struct _TestModule ++{ ++ GTypeModule parent_instance; ++}; ++ ++struct _TestModuleClass ++{ ++ GTypeModuleClass parent_class; ++}; ++ ++static gboolean ++test_module_load (GTypeModule *module) ++{ ++ g_print ("registering type...\n"); ++ g_print (" type_id = %d\n", test_proxy_type_id); ++ ++ test_proxy_register_type (G_TYPE_MODULE (module)); ++ ++ //test_proxy_get_type (G_TYPE_MODULE (module)); ++ ++ g_print (" type_id = %d\n", test_proxy_type_id); ++ ++ return TRUE; ++} ++ ++static void ++test_module_unload (GTypeModule *module) ++{ ++} ++ ++static void ++test_module_class_init (TestModuleClass *class) ++{ ++ GTypeModuleClass *type_module_class = G_TYPE_MODULE_CLASS (class); ++ ++ type_module_class->load = test_module_load; ++ type_module_class->unload = test_module_unload; ++} ++ ++static void ++test_module_init (TestModule *module) ++{ ++} ++ ++G_DEFINE_TYPE (TestModule, test_module, G_TYPE_TYPE_MODULE); ++ ++TestModule * ++test_module_new (void) ++{ ++ TestModule *module = g_object_new (TEST_TYPE_MODULE, ++ NULL); ++ ++ g_print ("test_module_new(): %p\n", module); ++ ++ return module; ++} ++ ++ ++/* ---------------------------------------------------- */ ++ ++static void ++non_null_proxy_test (void) ++{ ++ UbuntuMenuProxyModule *module; ++ ++ /* prevent the module loader from finding a proxy module */ ++ g_unsetenv ("UBUNTU_MENUPROXY"); ++ ++ module = ubuntu_menu_proxy_module_get (); ++ test_proxy_register_type (G_TYPE_MODULE (module)); ++ //test_proxy_get_type (G_TYPE_MODULE (module)); ++ ++ GtkWidget *widget = g_object_new (GTK_TYPE_MENU_BAR, NULL); ++ g_object_ref_sink (widget); ++ ++ g_assert (GTK_IS_MENU_BAR (widget)); ++ //g_assert (GTK_MENU_SHELL (widget)->proxy != NULL); ++ ++ g_object_unref (widget); ++} ++ ++static void ++null_proxy_test (void) ++{ ++ GtkWidget *widget = g_object_new (GTK_TYPE_MENU_BAR, NULL); ++ g_object_ref_sink (widget); ++ ++ g_assert (GTK_IS_MENU_BAR (widget)); ++ ++ //g_assert (GTK_MENU_SHELL (widget)->proxy == NULL); ++ ++ g_object_unref (widget); ++} ++ ++static gboolean inserted_called = FALSE; ++ ++static void ++inserted_cb (UbuntuMenuProxy *proxy, ++ GtkWidget *child, ++ guint position, ++ gpointer data) ++{ ++ g_return_if_fail (UBUNTU_IS_MENU_PROXY (proxy)); ++ g_return_if_fail (GTK_IS_WIDGET (child)); ++ inserted_called = TRUE; ++} ++ ++static void ++menubar_signals_proxy_test (void) ++{ ++ GtkWidget *widget = NULL; ++ GtkWidget *menuitem = NULL; ++ UbuntuMenuProxy *proxy; ++ ++ //ubuntu_menu_proxy_register_type (test_proxy_get_type ()); ++ ++ widget = g_object_new (GTK_TYPE_MENU_BAR, NULL); ++ g_object_ref_sink (widget); ++ ++ g_assert (GTK_IS_MENU_BAR (widget)); ++ //g_assert (GTK_MENU_SHELL (widget)->proxy != NULL); ++ ++ /* ++ proxy = GTK_MENU_SHELL (widget)->proxy; ++ ++ g_signal_connect (proxy, ++ "inserted", G_CALLBACK (inserted_cb), ++ NULL); ++ */ ++ ++ // insert menuitem ++ menuitem = gtk_menu_item_new_with_label ("Test Item"); ++ gtk_menu_shell_append (GTK_MENU_SHELL (widget), ++ menuitem); ++ ++ g_assert (inserted_called == TRUE); ++ ++ g_object_unref (widget); ++} ++ ++static void ++proxy_type_exists_test (void) ++{ ++#if 0 ++ UbuntuMenuProxyModule *module; ++ ++ g_unsetenv ("GTK_MENUPROXY"); ++ ++ module = ubuntu_menu_proxy_module_get (); ++ test_proxy_get_type (G_TYPE_MODULE (module)); ++#endif ++ ++ g_assert (ubuntu_menu_proxy_get_type () != 0); ++} ++ ++static void ++can_instantiate_test (void) ++{ ++ TestModule *module = test_module_new (); ++ ++ g_type_module_use (G_TYPE_MODULE (module)); ++ ++ UbuntuMenuProxy *proxy = ubuntu_menu_proxy_get (); ++ ++ g_assert (proxy != NULL); ++ ++ g_object_ref_sink (proxy); ++ ++ g_assert (TEST_IS_PROXY (proxy)); ++ g_assert (UBUNTU_IS_MENU_PROXY (proxy)); ++ ++ g_object_unref (proxy); ++} ++ ++int ++main (int argc, char *argv[]) ++{ ++ gtk_test_init (&argc, &argv); ++ ++ g_test_add_func ("/proxy/null-proxy", null_proxy_test); ++ g_test_add_func ("/proxy/type-exists", proxy_type_exists_test); ++ g_test_add_func ("/proxy/can-instantiate", can_instantiate_test); ++ g_test_add_func ("/proxy/non-null-proxy", non_null_proxy_test); ++ g_test_add_func ("/proxy/menubar-signals-proxy", menubar_signals_proxy_test); ++ ++ return g_test_run(); ++} +Index: gtk+2.0-2.21.6/gtk/ubuntumenuproxy.c +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ gtk+2.0-2.21.6/gtk/ubuntumenuproxy.c 2010-08-24 17:45:04.000000000 +0200 +@@ -0,0 +1,249 @@ ++/* ++ * Copyright (C) 2010 Canonical, Ltd. ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU Lesser General Public ++ * License as published by the Free Software Foundation; either ++ * version 2 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * Lesser General Public License for more details. ++ * ++ * You should have received a copy of the GNU Lesser General Public ++ * License along with this library; if not, write to the ++ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ * Boston, MA 02111-1307, USA. ++ * ++ * Authors: Cody Russell <bratsche@gnome.org> ++ */ ++ ++#include "config.h" ++#include "gtkintl.h" ++#include "gtkmarshalers.h" ++#include "ubuntumenuproxy.h" ++#include "ubuntumenuproxymodule.h" ++#include "gtkmodules.h" ++#include "gtkprivate.h" ++#include "gtkalias.h" ++ ++enum { ++ PROP_0, ++ PROP_SHOW_LOCAL ++}; ++ ++enum { ++ INSERTED, ++ LOCAL_NOTIFY, ++ ACTIVATE_MENU, ++ LAST_SIGNAL ++}; ++ ++#define UBUNTU_MENU_PROXY_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), UBUNTU_TYPE_MENU_PROXY, UbuntuMenuProxyPrivate)) ++ ++typedef struct _UbuntuMenuProxyPrivate UbuntuMenuProxyPrivate; ++ ++struct _UbuntuMenuProxyPrivate ++{ ++ gboolean show_local; ++}; ++ ++static guint menu_proxy_signals[LAST_SIGNAL] = { 0 }; ++static GObjectClass *parent_class = NULL; ++static UbuntuMenuProxy *proxy_singleton = NULL; ++ ++static void ubuntu_menu_proxy_real_insert (UbuntuMenuProxy *proxy, ++ GtkWidget *parent, ++ GtkWidget *child, ++ guint position); ++static gboolean ubuntu_menu_proxy_real_show_local (UbuntuMenuProxy *proxy); ++ ++ ++ ++/* --------------------------------------------------------- */ ++ ++G_DEFINE_TYPE (UbuntuMenuProxy, ubuntu_menu_proxy, G_TYPE_OBJECT) ++ ++static GObject * ++ubuntu_menu_proxy_constructor (GType type, ++ guint n_params, ++ GObjectConstructParam *params) ++{ ++ GObject *object; ++ ++ if (proxy_singleton != NULL) ++ { ++ object = g_object_ref (proxy_singleton); ++ } ++ else ++ { ++ object = G_OBJECT_CLASS (ubuntu_menu_proxy_parent_class)->constructor (type, ++ n_params, ++ params); ++ ++ proxy_singleton = UBUNTU_MENU_PROXY (object); ++ g_object_add_weak_pointer (object, (gpointer) &proxy_singleton); ++ } ++ ++ return object; ++} ++ ++static void ++ubuntu_menu_proxy_init (UbuntuMenuProxy *proxy) ++{ ++} ++ ++static void ++ubuntu_menu_proxy_get_property (GObject *object, ++ guint prop_id, ++ GValue *value, ++ GParamSpec *pspec) ++{ ++ UbuntuMenuProxyPrivate *priv = UBUNTU_MENU_PROXY_GET_PRIVATE (object); ++ ++ switch (prop_id) ++ { ++ case PROP_SHOW_LOCAL: ++ g_value_set_boolean (value, priv->show_local); ++ break; ++ ++ default: ++ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); ++ break; ++ } ++} ++ ++static void ++ubuntu_menu_proxy_set_property (GObject *object, ++ guint prop_id, ++ const GValue *value, ++ GParamSpec *pspec) ++{ ++ UbuntuMenuProxyPrivate *priv = UBUNTU_MENU_PROXY_GET_PRIVATE (object); ++ ++ switch (prop_id) ++ { ++ case PROP_SHOW_LOCAL: ++ priv->show_local = g_value_get_boolean (value); ++ g_signal_emit (object, menu_proxy_signals[LOCAL_NOTIFY], 0, priv->show_local); ++ break; ++ ++ default: ++ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); ++ break; ++ } ++} ++ ++static void ++ubuntu_menu_proxy_class_init (UbuntuMenuProxyClass *class) ++{ ++ GObjectClass *object_class = G_OBJECT_CLASS (class); ++ ++ parent_class = g_type_class_peek_parent (class); ++ ++ object_class->get_property = ubuntu_menu_proxy_get_property; ++ object_class->set_property = ubuntu_menu_proxy_set_property; ++ ++ g_object_class_install_property (object_class, ++ PROP_SHOW_LOCAL, ++ g_param_spec_boolean ("show-local", ++ P_("Show the local menu"), ++ P_("Whether the menu is displayed locally"), ++ FALSE, ++ GTK_PARAM_READWRITE)); ++ ++ menu_proxy_signals[INSERTED] = ++ g_signal_new (I_("inserted"), ++ G_TYPE_FROM_CLASS (class), ++ G_SIGNAL_RUN_LAST, ++ G_STRUCT_OFFSET (UbuntuMenuProxyClass, inserted), ++ NULL, NULL, ++ _gtk_marshal_VOID__OBJECT_UINT, ++ G_TYPE_NONE, 2, ++ GTK_TYPE_WIDGET, G_TYPE_UINT); ++ ++ menu_proxy_signals[LOCAL_NOTIFY] = ++ g_signal_new (I_("local-notify"), ++ G_TYPE_FROM_CLASS (class), ++ G_SIGNAL_RUN_LAST, ++ NULL, ++ NULL, NULL, ++ _gtk_marshal_VOID__BOOLEAN, ++ G_TYPE_NONE, 1, ++ G_TYPE_BOOLEAN); ++ ++ menu_proxy_signals[ACTIVATE_MENU] = ++ g_signal_new (I_("activate-menu"), ++ G_TYPE_FROM_CLASS (class), ++ G_SIGNAL_RUN_LAST, ++ NULL, ++ NULL, NULL, ++ _gtk_marshal_VOID__OBJECT, ++ G_TYPE_NONE, 1, ++ G_TYPE_OBJECT); ++ ++ class->insert = ubuntu_menu_proxy_real_insert; ++ class->show_local = ubuntu_menu_proxy_real_show_local; ++ ++ object_class->constructor = ubuntu_menu_proxy_constructor; ++ ++ g_type_class_add_private (object_class, sizeof (UbuntuMenuProxyPrivate)); ++} ++ ++UbuntuMenuProxy * ++ubuntu_menu_proxy_get (void) ++{ ++ if (!proxy_singleton) ++ { ++ ubuntu_menu_proxy_module_get (); ++ } ++ ++ return proxy_singleton; ++} ++ ++static void ++ubuntu_menu_proxy_real_insert (UbuntuMenuProxy *proxy, ++ GtkWidget *parent, ++ GtkWidget *child, ++ guint position) ++{ ++} ++ ++static gboolean ++ubuntu_menu_proxy_real_show_local (UbuntuMenuProxy *proxy) ++{ ++ return TRUE; ++} ++ ++void ++ubuntu_menu_proxy_insert (UbuntuMenuProxy *proxy, ++ GtkWidget *parent, ++ GtkWidget *child, ++ guint position) ++{ ++ g_return_if_fail (UBUNTU_IS_MENU_PROXY (proxy)); ++ ++ UBUNTU_MENU_PROXY_GET_CLASS (proxy)->insert (proxy, ++ parent, ++ child, ++ position); ++} ++ ++gboolean ++ubuntu_menu_proxy_show_local (UbuntuMenuProxy *proxy) ++{ ++ g_return_val_if_fail (UBUNTU_IS_MENU_PROXY (proxy), TRUE); ++ ++ return UBUNTU_MENU_PROXY_GET_CLASS (proxy)->show_local (proxy); ++} ++ ++void ++ubuntu_menu_proxy_activate_menu (UbuntuMenuProxy *proxy, ++ GtkWidget *widget) ++{ ++ g_signal_emit (proxy, menu_proxy_signals[ACTIVATE_MENU], 0, widget); ++} ++ ++#define __UBUNTU_MENU_PROXY_C__ ++#include "gtkaliasdef.c" +Index: gtk+2.0-2.21.6/gtk/ubuntumenuproxy.h +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ gtk+2.0-2.21.6/gtk/ubuntumenuproxy.h 2010-08-24 17:45:04.000000000 +0200 +@@ -0,0 +1,74 @@ ++/* ++ * Copyright (C) 2010 Canonical, Ltd. ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU Lesser General Public ++ * License as published by the Free Software Foundation; either ++ * version 2 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * Lesser General Public License for more details. ++ * ++ * You should have received a copy of the GNU Lesser General Public ++ * License along with this library; if not, write to the ++ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ * Boston, MA 02111-1307, USA. ++ * ++ * Authors: Cody Russell <bratsche@gnome.org> ++ */ ++ ++#if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) ++#error "Only <gtk/gtk.h> can be included directly." ++#endif ++ ++#ifndef __UBUNTU_MENU_PROXY_H__ ++#define __UBUNTU_MENU_PROXY_H__ ++ ++#include <gtk/gtkwidget.h> ++#include <gtk/gtktypeutils.h> ++ ++G_BEGIN_DECLS ++ ++#define UBUNTU_TYPE_MENU_PROXY (ubuntu_menu_proxy_get_type ()) ++#define UBUNTU_MENU_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), UBUNTU_TYPE_MENU_PROXY, UbuntuMenuProxy)) ++#define UBUNTU_MENU_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), UBUNTU_TYPE_MENU_PROXY, UbuntuMenuProxyClass)) ++#define UBUNTU_IS_MENU_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), UBUNTU_TYPE_MENU_PROXY)) ++#define UBUNTU_IS_MENU_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), UBUNTU_TYPE_MENU_PROXY)) ++#define UBUNTU_MENU_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), UBUNTU_TYPE_MENU_PROXY, UbuntuMenuProxyClass)) ++ ++ ++typedef struct _UbuntuMenuProxy UbuntuMenuProxy; ++typedef struct _UbuntuMenuProxyClass UbuntuMenuProxyClass; ++ ++struct _UbuntuMenuProxy ++{ ++ GObject parent_object; ++}; ++ ++struct _UbuntuMenuProxyClass ++{ ++ GObjectClass parent_class; ++ ++ /* vtable */ ++ void (* insert) (UbuntuMenuProxy *proxy, GtkWidget *parent, GtkWidget *child, guint position); ++ gboolean (* show_local) (UbuntuMenuProxy *proxy); ++ ++ /* signals */ ++ void (* inserted) (UbuntuMenuProxy *proxy, GtkWidget *child); ++}; ++ ++GType ubuntu_menu_proxy_get_type (void) G_GNUC_CONST; ++UbuntuMenuProxy* ubuntu_menu_proxy_get (void); ++void ubuntu_menu_proxy_insert (UbuntuMenuProxy *proxy, ++ GtkWidget *parent, ++ GtkWidget *child, ++ guint position); ++gboolean ubuntu_menu_proxy_show_local (UbuntuMenuProxy *proxy); ++void ubuntu_menu_proxy_activate_menu (UbuntuMenuProxy *proxy, ++ GtkWidget *widget); ++ ++G_END_DECLS ++ ++#endif /* __UBUNTU_MENU_PROXY_H__ */ +Index: gtk+2.0-2.21.6/gtk/ubuntumenuproxymodule.c +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ gtk+2.0-2.21.6/gtk/ubuntumenuproxymodule.c 2010-08-24 17:45:04.000000000 +0200 +@@ -0,0 +1,212 @@ ++/* ++ * Copyright (C) 2010 Canonical, Ltd. ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU Lesser General Public ++ * License as published by the Free Software Foundation; either ++ * version 2 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * Lesser General Public License for more details. ++ * ++ * You should have received a copy of the GNU Lesser General Public ++ * License along with this library; if not, write to the ++ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ * Boston, MA 02111-1307, USA. ++ * ++ * Authors: Cody Russell <bratsche@gnome.org> ++ */ ++ ++#include "config.h" ++#include "gtkintl.h" ++#include "ubuntumenuproxy.h" ++#include "ubuntumenuproxymodule.h" ++#include "gtkmodules.h" ++#include "gtkalias.h" ++ ++enum { ++ PROP_0, ++ PROP_MODULENAME ++}; ++ ++static GObject *ubuntu_menu_proxy_module_constructor (GType type, ++ guint n_params, ++ GObjectConstructParam *params); ++static void ubuntu_menu_proxy_module_finalize (GObject *object); ++static gboolean ubuntu_menu_proxy_module_real_load (GTypeModule *gmodule); ++static void ubuntu_menu_proxy_module_real_unload (GTypeModule *gmodule); ++ ++ ++G_DEFINE_TYPE (UbuntuMenuProxyModule, ubuntu_menu_proxy_module, G_TYPE_TYPE_MODULE); ++ ++static UbuntuMenuProxyModule *proxy_module_singleton = NULL; ++ ++static void ++ubuntu_menu_proxy_module_class_init (UbuntuMenuProxyModuleClass *class) ++{ ++ GObjectClass *object_class = G_OBJECT_CLASS (class); ++ GTypeModuleClass *type_module_class = G_TYPE_MODULE_CLASS (class); ++ ++ object_class->finalize = ubuntu_menu_proxy_module_finalize; ++ ++ type_module_class->load = ubuntu_menu_proxy_module_real_load; ++ type_module_class->unload = ubuntu_menu_proxy_module_real_unload; ++} ++ ++static void ++ubuntu_menu_proxy_module_init (UbuntuMenuProxyModule *module) ++{ ++ module->name = g_strdup (g_getenv ("UBUNTU_MENUPROXY")); ++ module->library = NULL; ++ module->load = NULL; ++ module->unload = NULL; ++} ++ ++static void ++ubuntu_menu_proxy_module_finalize (GObject *object) ++{ ++ UbuntuMenuProxyModule *module = UBUNTU_MENU_PROXY_MODULE (object); ++ ++ if (module->name != NULL) ++ { ++ g_free (module->name); ++ } ++ ++ G_OBJECT_CLASS (ubuntu_menu_proxy_module_parent_class)->finalize (object); ++} ++ ++static gboolean ++ubuntu_menu_proxy_module_real_load (GTypeModule *gmodule) ++{ ++ UbuntuMenuProxyModule *module = UBUNTU_MENU_PROXY_MODULE (gmodule); ++ gchar *path; ++ ++ if (proxy_module_singleton != NULL) ++ return TRUE; ++ ++ if (!module->name) ++ { ++ g_warning ("Module path not set"); ++ return FALSE; ++ } ++ ++ path = _gtk_find_module (module->name, "menuproxies"); ++ ++ module->library = g_module_open (path, 0); ++ ++ if (!module->library) ++ { ++ g_printerr ("%s\n", g_module_error ()); ++ return FALSE; ++ } ++ ++ /* Make sure that the loaded library contains the required methods */ ++ if (!g_module_symbol (module->library, ++ "menu_proxy_module_load", ++ (gpointer *) &module->load) || ++ !g_module_symbol (module->library, ++ "menu_proxy_module_unload", ++ (gpointer *) &module->unload)) ++ { ++ g_printerr ("%s\n", g_module_error ()); ++ g_module_close (module->library); ++ ++ return FALSE; ++ } ++ ++ /* Initialize the loaded module */ ++ module->load (module); ++ ++ return TRUE; ++} ++ ++static void ++ubuntu_menu_proxy_module_real_unload (GTypeModule *gmodule) ++{ ++ UbuntuMenuProxyModule *module = UBUNTU_MENU_PROXY_MODULE (gmodule); ++ ++ module->unload (module); ++ ++ g_module_close (module->library); ++ module->library = NULL; ++ ++ module->load = NULL; ++ module->unload = NULL; ++} ++ ++static gboolean ++is_valid_module_name (const gchar *name) ++{ ++#if !defined(G_OS_WIN32) && !defined(G_WITH_CYGWIN) ++ return g_str_has_prefix (name, "lib") && g_str_has_suffix (name, ".so"); ++#else ++ return g_str_has_suffix (name, ".dll"); ++#endif ++} ++ ++static void ++setup_instance (UbuntuMenuProxyModule *module) ++{ ++ GType *proxy_types; ++ guint n_proxies; ++ ++ proxy_types = g_type_children (UBUNTU_TYPE_MENU_PROXY, ++ &n_proxies); ++ ++ if (n_proxies > 1) ++ { ++ g_warning ("There are %d child types of UbuntuMenuProxy, should be 0 or 1.\n", ++ n_proxies); ++ } ++ else if (n_proxies == 1) ++ { ++ g_object_new (proxy_types[0], NULL); ++ } ++} ++ ++UbuntuMenuProxyModule * ++ubuntu_menu_proxy_module_get (void) ++{ ++ if (!proxy_module_singleton) ++ { ++ UbuntuMenuProxyModule *module = NULL; ++ const gchar *module_name; ++ ++ module_name = g_getenv ("UBUNTU_MENUPROXY"); ++ ++ if (module_name != NULL) ++ { ++ if (is_valid_module_name (module_name)) ++ { ++ gchar *path = _gtk_find_module (module_name, "menuproxies"); ++ ++ module = g_object_new (UBUNTU_TYPE_MENU_PROXY_MODULE, ++ NULL); ++ ++ if (!g_type_module_use (G_TYPE_MODULE (module))) ++ { ++ g_warning ("Failed to load type module: %s\n", path); ++ ++ g_object_unref (module); ++ g_free (path); ++ ++ return NULL; ++ } ++ ++ setup_instance (module); ++ ++ g_free (path); ++ g_type_module_unuse (G_TYPE_MODULE (module)); ++ } ++ ++ proxy_module_singleton = module; ++ } ++ } ++ ++ return proxy_module_singleton; ++} ++ ++#define __UBUNTU_MENU_PROXY_MODULE_C__ ++#include "gtkaliasdef.c" +Index: gtk+2.0-2.21.6/gtk/ubuntumenuproxymodule.h +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ gtk+2.0-2.21.6/gtk/ubuntumenuproxymodule.h 2010-08-24 17:45:04.000000000 +0200 +@@ -0,0 +1,69 @@ ++/* ++ * Copyright (C) 2010 Canonical, Ltd. ++ * ++ * This library is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU Lesser General Public ++ * License as published by the Free Software Foundation; either ++ * version 2 of the License, or (at your option) any later version. ++ * ++ * This library is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ * Lesser General Public License for more details. ++ * ++ * You should have received a copy of the GNU Lesser General Public ++ * License along with this library; if not, write to the ++ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ * Boston, MA 02111-1307, USA. ++ * ++ * Authors: Cody Russell <bratsche@gnome.org> ++ */ ++ ++#if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) ++#error "Only <gtk/gtk.h> can be included directly." ++#endif ++ ++#ifndef __UBUNTU_MENU_PROXY_MODULE_H__ ++#define __UBUNTU_MENU_PROXY_MODULE_H__ ++ ++#include <glib-object.h> ++#include <gmodule.h> ++ ++G_BEGIN_DECLS ++ ++#define UBUNTU_TYPE_MENU_PROXY_MODULE (ubuntu_menu_proxy_module_get_type ()) ++#define UBUNTU_MENU_PROXY_MODULE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), UBUNTU_TYPE_MENU_PROXY_MODULE, UbuntuMenuProxyModule)) ++#define UBUNTU_MENU_PROXY_MODULE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), UBUNTU_TYPE_MENU_PROXY_MODULE, UbuntuMenuProxyModuleClass)) ++#define UBUNTU_IS_MENU_MODULE_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), UBUNTU_TYPE_MENU_PROXY_MODULE)) ++#define UBUNTU_IS_MENU_PROXY_MODULE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), UBUNTU_TYPE_MENU_PROXY_MODULE)) ++#define UBUNTU_MENU_PROXY_MODULE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), UBUNTU_TYPE_MENU_PROXY_MODULE, UbuntuMenuProxyModuleClass)) ++ ++typedef struct _UbuntuMenuProxyModule UbuntuMenuProxyModule; ++typedef struct _UbuntuMenuProxyModuleClass UbuntuMenuProxyModuleClass; ++typedef struct _UbuntuMenuProxyModulePrivate UbuntuMenuProxyModulePrivate; ++ ++struct _UbuntuMenuProxyModule ++{ ++ GTypeModule parent_instance; ++ ++ UbuntuMenuProxyModulePrivate *priv; ++ ++ GModule *library; ++ gchar *name; ++ ++ void (* load) (UbuntuMenuProxyModule *module); ++ void (* unload) (UbuntuMenuProxyModule *module); ++}; ++ ++struct _UbuntuMenuProxyModuleClass ++{ ++ GTypeModuleClass parent_class; ++}; ++ ++GType ubuntu_menu_proxy_module_get_type (void) G_GNUC_CONST; ++ ++UbuntuMenuProxyModule *ubuntu_menu_proxy_module_get (void); ++ ++G_END_DECLS ++ ++#endif /* __UBUNTU_MENU_PROXY_MODULE_H__ */ +Index: gtk+2.0-2.21.6/gtk/gtkwindow.c +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtkwindow.c 2010-08-16 22:57:56.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtkwindow.c 2010-08-24 17:45:04.000000000 +0200 +@@ -94,7 +94,8 @@ + PROP_GRAVITY, + PROP_TRANSIENT_FOR, + PROP_OPACITY, +- ++ PROP_NO_PROXY, ++ + /* Readonly properties */ + PROP_IS_ACTIVE, + PROP_HAS_TOPLEVEL_FOCUS, +@@ -195,6 +196,8 @@ + + gdouble opacity; + ++ gboolean no_proxy; ++ + gchar *startup_id; + }; + +@@ -502,6 +505,14 @@ + NULL, + GTK_PARAM_READWRITE)); + ++ g_object_class_install_property (object_class, ++ PROP_NO_PROXY, ++ g_param_spec_boolean ("ubuntu-no-proxy", ++ P_("Disable menu proxies for this window"), ++ P_("Disable menu proxies for this window"), ++ FALSE, ++ GTK_PARAM_READWRITE)); ++ + /** + * GtkWindow:startup-id: + * +@@ -1084,6 +1095,9 @@ + case PROP_MNEMONICS_VISIBLE: + gtk_window_set_mnemonics_visible (window, g_value_get_boolean (value)); + break; ++ case PROP_NO_PROXY: ++ priv->no_proxy = g_value_get_boolean (value); ++ break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; +@@ -1202,6 +1216,9 @@ + case PROP_MNEMONICS_VISIBLE: + g_value_set_boolean (value, priv->mnemonics_visible); + break; ++ case PROP_NO_PROXY: ++ g_value_set_boolean (value, priv->no_proxy); ++ break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + break; +Index: gtk+2.0-2.21.6/gtk/gtkmenuitem.c +=================================================================== +--- gtk+2.0-2.21.6.orig/gtk/gtkmenuitem.c 2010-08-16 22:57:55.000000000 +0200 ++++ gtk+2.0-2.21.6/gtk/gtkmenuitem.c 2010-08-24 17:45:04.000000000 +0200 +@@ -1395,7 +1395,17 @@ + widget); + } + else +- g_signal_emit (widget, menu_item_signals[ACTIVATE_ITEM], 0); ++ { ++ if (GTK_IS_MENU_BAR (widget->parent) && ++ ubuntu_gtk_menu_shell_activate_mnemonic (GTK_MENU_SHELL (widget->parent), widget)) ++ { ++ //g_print ("send activate to remote!\n"); ++ } ++ else ++ { ++ g_signal_emit (widget, menu_item_signals[ACTIVATE_ITEM], 0); ++ } ++ } + + return TRUE; + } --- gtk+2.0-2.22.0.orig/debian/patches/072_indicator_menu_update.patch +++ gtk+2.0-2.22.0/debian/patches/072_indicator_menu_update.patch @@ -0,0 +1,110 @@ +## Description: Adding two signals that are needed for Application Indicator to +## keep up-to-date with changed GtkMenu(Item)s. +## Origin/Author: Cody Russell <bratsche@gnome.org>, +## Sense Hofstede <sense@ubuntu.com> +## Bug: unknown and https://launchpad.net/bug/608219 +Index: gtk+-2.21.7/gtk/gtkcontainer.c +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtkcontainer.c 2010-08-31 01:09:37.000000000 +1000 ++++ gtk+-2.21.7/gtk/gtkcontainer.c 2010-09-01 12:22:01.612617000 +1000 +@@ -48,6 +48,8 @@ + REMOVE, + CHECK_RESIZE, + SET_FOCUS_CHILD, ++ CHILD_ADDED, ++ CHILD_REMOVED, + LAST_SIGNAL + }; + +@@ -291,6 +293,24 @@ + _gtk_marshal_VOID__OBJECT, + G_TYPE_NONE, 1, + GTK_TYPE_WIDGET); ++ container_signals[CHILD_ADDED] = ++ g_signal_new (I_("child-added"), ++ G_OBJECT_CLASS_TYPE (object_class), ++ G_SIGNAL_RUN_LAST, ++ 0, ++ NULL, NULL, ++ _gtk_marshal_VOID__OBJECT, ++ G_TYPE_NONE, 1, ++ GTK_TYPE_WIDGET); ++ container_signals[CHILD_REMOVED] = ++ g_signal_new (I_("child-removed"), ++ G_OBJECT_CLASS_TYPE (object_class), ++ G_SIGNAL_RUN_LAST, ++ 0, ++ NULL, NULL, ++ _gtk_marshal_VOID__OBJECT, ++ G_TYPE_NONE, 1, ++ GTK_TYPE_WIDGET); + } + + static void +Index: gtk+-2.21.7/gtk/gtkmenushell.c +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtkmenushell.c 2010-09-01 12:21:11.762617001 +1000 ++++ gtk+-2.21.7/gtk/gtkmenushell.c 2010-09-01 12:22:01.612617000 +1000 +@@ -567,6 +567,8 @@ + GTK_WIDGET (menu_shell), + child, + position); ++ ++ g_signal_emit_by_name (menu_shell, "child-added", child); + } + + static void +Index: gtk+-2.21.7/gtk/gtkmenuitem.c +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtkmenuitem.c 2010-09-01 12:21:09.562617001 +1000 ++++ gtk+-2.21.7/gtk/gtkmenuitem.c 2010-09-01 12:22:01.612617000 +1000 +@@ -52,6 +52,8 @@ + ACTIVATE_ITEM, + TOGGLE_SIZE_REQUEST, + TOGGLE_SIZE_ALLOCATE, ++ SUBMENU_ADDED, ++ SUBMENU_REMOVED, + LAST_SIGNAL + }; + +@@ -244,6 +246,25 @@ + G_TYPE_NONE, 1, + G_TYPE_INT); + ++ menu_item_signals[SUBMENU_ADDED] = ++ g_signal_new (I_("submenu-added"), ++ G_OBJECT_CLASS_TYPE (gobject_class), ++ G_SIGNAL_RUN_FIRST, ++ 0, ++ NULL, NULL, ++ _gtk_marshal_VOID__OBJECT, ++ G_TYPE_NONE, 1, ++ GTK_TYPE_WIDGET); ++ ++ menu_item_signals[SUBMENU_REMOVED] = ++ g_signal_new (I_("submenu-removed"), ++ G_OBJECT_CLASS_TYPE (gobject_class), ++ G_SIGNAL_RUN_FIRST, ++ 0, ++ NULL, NULL, ++ _gtk_marshal_VOID__VOID, ++ G_TYPE_NONE, 0); ++ + /** + * GtkMenuItem:right-justified: + * +@@ -791,6 +812,14 @@ + if (GTK_WIDGET (menu_item)->parent) + gtk_widget_queue_resize (GTK_WIDGET (menu_item)); + ++ if(submenu == NULL) ++ { ++ g_signal_emit_by_name (menu_item, "submenu-removed"); ++ } ++ else ++ { ++ g_signal_emit_by_name (menu_item, "submenu-added", GTK_WIDGET(submenu)); ++ } + g_object_notify (G_OBJECT (menu_item), "submenu"); + } + } --- gtk+2.0-2.22.0.orig/debian/patches/091_bugzilla_tooltip_refresh.patch +++ gtk+2.0-2.22.0/debian/patches/091_bugzilla_tooltip_refresh.patch @@ -0,0 +1,344 @@ +# Description: better looking tooltips +# Upstream: https://bugzilla.gnome.org/show_bug.cgi?id=599617 +# Ubuntu: https://launchpad.net/bugs/487208 +Index: gtk+-2.21.7/gtk/gtktooltip.c +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtktooltip.c 2010-09-01 12:22:03.992617001 +1000 ++++ gtk+-2.21.7/gtk/gtktooltip.c 2010-09-01 12:22:11.252617001 +1000 +@@ -33,6 +33,10 @@ + #include "gtkhbox.h" + #include "gtkalignment.h" + ++#ifdef GDK_WINDOWING_X11 ++#include "gdk/x11/gdkx.h" ++#endif ++ + #include "gtkalias.h" + + #undef DEBUG_TOOLTIP +@@ -97,6 +101,7 @@ + GtkTooltip *tooltip); + static void gtk_tooltip_set_last_window (GtkTooltip *tooltip, + GdkWindow *window); ++static void update_shape (GtkTooltip *tooltip); + + + G_DEFINE_TYPE (GtkTooltip, gtk_tooltip, G_TYPE_OBJECT); +@@ -112,8 +117,43 @@ + } + + static void ++on_composited_changed (GtkWidget *window, ++ GtkTooltip *tooltip) ++{ ++ update_shape (tooltip); ++} ++ ++static void ++on_screen_changed (GtkWidget *window, ++ GdkScreen *previous, ++ GtkTooltip *tooltip) ++{ ++ GdkScreen *screen; ++ GdkColormap *cmap; ++ ++ screen = gtk_widget_get_screen (window); ++ ++ cmap = NULL; ++ if (gdk_screen_is_composited (screen)) ++ cmap = gdk_screen_get_rgba_colormap (screen); ++ if (cmap == NULL) ++ cmap = gdk_screen_get_rgb_colormap (screen); ++ ++ gtk_widget_set_colormap (window, cmap); ++} ++ ++static void ++on_realized (GtkWidget *window, ++ GtkTooltip *tooltip) ++{ ++ update_shape (tooltip); ++} ++ ++static void + gtk_tooltip_init (GtkTooltip *tooltip) + { ++ GdkScreen *screen; ++ + tooltip->timeout_id = 0; + tooltip->browse_mode_timeout_id = 0; + +@@ -129,8 +169,12 @@ + tooltip->last_window = NULL; + + tooltip->window = g_object_ref (gtk_window_new (GTK_WINDOW_POPUP)); ++ ++ on_screen_changed (tooltip->window, NULL, tooltip); ++ + gtk_window_set_type_hint (GTK_WINDOW (tooltip->window), + GDK_WINDOW_TYPE_HINT_TOOLTIP); ++ + gtk_widget_set_app_paintable (tooltip->window, TRUE); + gtk_window_set_resizable (GTK_WINDOW (tooltip->window), FALSE); + gtk_widget_set_name (tooltip->window, "gtk-tooltip"); +@@ -147,7 +191,7 @@ + gtk_widget_show (tooltip->alignment); + + g_signal_connect_swapped (tooltip->window, "style-set", +- G_CALLBACK (gtk_tooltip_window_style_set), tooltip); ++ G_CALLBACK (gtk_tooltip_window_style_set), tooltip); + g_signal_connect_swapped (tooltip->window, "expose-event", + G_CALLBACK (gtk_tooltip_paint_window), tooltip); + +@@ -164,6 +208,13 @@ + gtk_box_pack_start (GTK_BOX (tooltip->box), tooltip->label, + FALSE, FALSE, 0); + ++ g_signal_connect (tooltip->window, "composited-changed", ++ G_CALLBACK (on_composited_changed), tooltip); ++ g_signal_connect (tooltip->window, "screen-changed", ++ G_CALLBACK (on_screen_changed), tooltip); ++ g_signal_connect (tooltip->window, "realize", ++ G_CALLBACK (on_realized), tooltip); ++ + tooltip->custom_widget = NULL; + } + +@@ -510,19 +561,208 @@ + gtk_widget_queue_draw (tooltip->window); + } + ++static void ++draw_round_rect (cairo_t *cr, ++ gdouble aspect, ++ gdouble x, ++ gdouble y, ++ gdouble corner_radius, ++ gdouble width, ++ gdouble height) ++{ ++ gdouble radius = corner_radius / aspect; ++ ++ cairo_move_to (cr, x + radius, y); ++ ++ /* top-right, left of the corner */ ++ cairo_line_to (cr, x + width - radius, y); ++ ++ /* top-right, below the corner */ ++ cairo_arc (cr, ++ x + width - radius, y + radius, radius, ++ -90.0f * G_PI / 180.0f, 0.0f * G_PI / 180.0f); ++ ++ /* bottom-right, above the corner */ ++ cairo_line_to (cr, x + width, y + height - radius); ++ ++ /* bottom-right, left of the corner */ ++ cairo_arc (cr, ++ x + width - radius, y + height - radius, radius, ++ 0.0f * G_PI / 180.0f, 90.0f * G_PI / 180.0f); ++ ++ /* bottom-left, right of the corner */ ++ cairo_line_to (cr, x + radius, y + height); ++ ++ /* bottom-left, above the corner */ ++ cairo_arc (cr, ++ x + radius, y + height - radius, radius, ++ 90.0f * G_PI / 180.0f, 180.0f * G_PI / 180.0f); ++ ++ /* top-left, below the corner */ ++ cairo_line_to (cr, x, y + radius); ++ ++ /* top-left, right of the corner */ ++ cairo_arc (cr, ++ x + radius, y + radius, radius, ++ 180.0f * G_PI / 180.0f, 270.0f * G_PI / 180.0f); ++ ++ cairo_close_path (cr); ++} ++ ++static void ++fill_background (GtkWidget *widget, ++ cairo_t *cr) ++{ ++ GdkColor color; ++ gdouble r, g, b; ++ gint radius; ++ gdouble background_alpha; ++ ++ if (gdk_screen_is_composited (gtk_widget_get_screen (widget))) ++ background_alpha = 0.85; ++ else ++ background_alpha = 1.0; ++ ++ radius = MIN (widget->style->xthickness, widget->style->ythickness); ++ radius = MAX (radius, 1); ++ ++ cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR); ++ cairo_paint (cr); ++ cairo_set_operator (cr, CAIRO_OPERATOR_OVER); ++ ++ draw_round_rect (cr, ++ 1.0, 0.5, 0.5, radius, ++ widget->allocation.width - 1, ++ widget->allocation.height - 1); ++ ++ color = widget->style->bg [GTK_STATE_NORMAL]; ++ r = (float)color.red / 65535.0; ++ g = (float)color.green / 65535.0; ++ b = (float)color.blue / 65535.0; ++ cairo_set_source_rgba (cr, r, g, b, background_alpha); ++ cairo_fill_preserve (cr); ++ ++ color = widget->style->bg [GTK_STATE_SELECTED]; ++ r = (float) color.red / 65535.0; ++ g = (float) color.green / 65535.0; ++ b = (float) color.blue / 65535.0; ++ ++ cairo_set_source_rgba (cr, r, g, b, background_alpha); ++ cairo_set_line_width (cr, 1.0); ++ cairo_stroke (cr); ++} ++ ++static void ++update_shape (GtkTooltip *tooltip) ++{ ++ GdkScreen *screen; ++ GdkBitmap *mask; ++ cairo_t *cr; ++ gint width, height; ++ gboolean new_style; ++ gint radius; ++ ++ gtk_widget_style_get (tooltip->window, "new-tooltip-style", &new_style, NULL); ++ ++ if (!new_style) ++ { ++ gtk_widget_shape_combine_mask (tooltip->window, NULL, 0, 0); ++ return; ++ } ++ ++ screen = gtk_widget_get_screen (tooltip->window); ++ ++ gtk_window_get_size (GTK_WINDOW (tooltip->window), &width, &height); ++ ++ if (gdk_screen_is_composited (screen)) ++ { ++ GdkRectangle rect; ++ GdkRegion *region; ++ const char *wm; ++ ++ gtk_widget_shape_combine_mask (tooltip->window, NULL, 0, 0); ++#ifdef GDK_WINDOWING_X11 ++ /* This is a hack to keep the Metacity compositor from slapping a ++ * non-shaped shadow around the shaped tooltip ++ */ ++ if (!gtk_widget_get_mapped (tooltip->window)) ++ { ++ wm = gdk_x11_screen_get_window_manager_name (screen); ++ if (g_strcmp0 (wm, "Metacity") == 0) ++ gtk_window_set_type_hint (GTK_WINDOW (tooltip->window), ++ GDK_WINDOW_TYPE_HINT_DND); ++ } ++#endif ++ return; ++ } ++ ++ radius = MIN (tooltip->window->style->xthickness, ++ tooltip->window->style->ythickness); ++ radius = MAX (radius, 1); ++ mask = (GdkBitmap *) gdk_pixmap_new (NULL, width, height, 1); ++ cr = gdk_cairo_create (mask); ++ if (cairo_status (cr) == CAIRO_STATUS_SUCCESS) ++ { ++ cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR); ++ cairo_paint (cr); ++ ++ cairo_set_operator (cr, CAIRO_OPERATOR_OVER); ++ cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); ++ draw_round_rect (cr, 1.0, 0, 0, radius + 1, width, height); ++ cairo_fill (cr); ++ ++ gtk_widget_shape_combine_mask (tooltip->window, mask, 0, 0); ++ } ++ cairo_destroy (cr); ++ ++ g_object_unref (mask); ++} ++ + static gboolean + gtk_tooltip_paint_window (GtkTooltip *tooltip) + { +- gtk_paint_flat_box (tooltip->window->style, +- tooltip->window->window, +- GTK_STATE_NORMAL, +- GTK_SHADOW_OUT, +- NULL, +- tooltip->window, +- "tooltip", +- 0, 0, +- tooltip->window->allocation.width, +- tooltip->window->allocation.height); ++ gboolean new_style; ++ ++ gtk_widget_style_get (tooltip->window, "new-tooltip-style", &new_style, NULL); ++ ++ if (new_style) ++ { ++ cairo_t *context; ++ cairo_surface_t *surface; ++ cairo_t *cr; ++ ++ context = gdk_cairo_create (tooltip->window->window); ++ ++ cairo_set_operator (context, CAIRO_OPERATOR_SOURCE); ++ surface = cairo_surface_create_similar (cairo_get_target (context), ++ CAIRO_CONTENT_COLOR_ALPHA, ++ tooltip->window->allocation.width, ++ tooltip->window->allocation.height); ++ cr = cairo_create (surface); ++ ++ fill_background (tooltip->window, cr); ++ ++ cairo_destroy (cr); ++ cairo_set_source_surface (context, surface, 0, 0); ++ cairo_paint (context); ++ cairo_surface_destroy (surface); ++ cairo_destroy (context); ++ ++ update_shape (tooltip); ++ } ++ else ++ { ++ gtk_paint_flat_box (tooltip->window->style, ++ tooltip->window->window, ++ GTK_STATE_NORMAL, ++ GTK_SHADOW_OUT, ++ NULL, ++ tooltip->window, ++ "tooltip", ++ 0, 0, ++ tooltip->window->allocation.width, ++ tooltip->window->allocation.height); ++ } + + return FALSE; + } +Index: gtk+-2.21.7/gtk/gtkwidget.c +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtkwidget.c 2010-09-01 12:22:03.982617001 +1000 ++++ gtk+-2.21.7/gtk/gtkwidget.c 2010-09-01 12:22:11.252617001 +1000 +@@ -2582,6 +2582,14 @@ + P_("The length of vertical scroll arrows"), + 1, G_MAXINT, 16, + GTK_PARAM_READABLE)); ++ ++ gtk_widget_class_install_style_property (klass, ++ g_param_spec_boolean ("new-tooltip-style", ++ NULL, ++ NULL, ++ FALSE, ++ GTK_PARAM_READABLE)); ++ + } + + static void --- gtk+2.0-2.22.0.orig/debian/patches/012_ubuntu-set-grab-add.patch +++ gtk+2.0-2.22.0/debian/patches/012_ubuntu-set-grab-add.patch @@ -0,0 +1,47 @@ +=== modified file 'gtk/gtk.symbols' +Index: gtk+-2.21.7/gtk/gtk.symbols +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtk.symbols 2010-09-01 12:21:02.742617000 +1000 ++++ gtk+-2.21.7/gtk/gtk.symbols 2010-09-01 12:21:03.902617000 +1000 +@@ -5281,6 +5281,7 @@ + gtk_widget_get_realized + gtk_widget_set_mapped + gtk_widget_get_mapped ++ubuntu_gtk_widget_set_has_grab + #endif + #endif + +Index: gtk+-2.21.7/gtk/gtkwidget.c +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtkwidget.c 2010-08-31 01:09:37.000000000 +1000 ++++ gtk+-2.21.7/gtk/gtkwidget.c 2010-09-01 12:21:03.912617000 +1000 +@@ -11401,5 +11401,15 @@ + return res; + } + ++void ++ubuntu_gtk_widget_set_has_grab (GtkWidget *widget, ++ gboolean has_grab) ++{ ++ if (has_grab) ++ GTK_OBJECT_FLAGS (widget) |= GTK_HAS_GRAB; ++ else ++ GTK_OBJECT_FLAGS (widget) &= ~(GTK_HAS_GRAB); ++} ++ + #define __GTK_WIDGET_C__ + #include "gtkaliasdef.c" +Index: gtk+-2.21.7/gtk/gtkwidget.h +=================================================================== +--- gtk+-2.21.7.orig/gtk/gtkwidget.h 2010-08-31 01:09:37.000000000 +1000 ++++ gtk+-2.21.7/gtk/gtkwidget.h 2010-09-01 12:21:03.912617000 +1000 +@@ -1342,6 +1342,9 @@ + GtkWidget *toplevel, + gpointer user_data); + ++void ubuntu_gtk_widget_set_has_grab (GtkWidget *widget, ++ gboolean has_grab); ++ + G_END_DECLS + + #endif /* __GTK_WIDGET_H__ */ --- gtk+2.0-2.22.0.orig/debian/patches/004_gtk+-ximian-gtk2-filesel-navbutton-5.patch +++ gtk+2.0-2.22.0/debian/patches/004_gtk+-ximian-gtk2-filesel-navbutton-5.patch @@ -0,0 +1,1220 @@ +Index: gtk+2.0-2.21.5/gtk/gtkfilesel.c +=================================================================== +--- gtk+2.0-2.21.5.orig/gtk/gtkfilesel.c 2010-07-12 18:23:44.000000000 +0200 ++++ gtk+2.0-2.21.5/gtk/gtkfilesel.c 2010-07-22 17:54:34.257053706 +0200 +@@ -80,9 +80,13 @@ + #include "gtkeventbox.h" + #include "gtkoptionmenu.h" + ++#include "gtkimage.h" ++ + #define WANT_HPANED 1 + #include "gtkhpaned.h" + ++#include "stock-icons/ximian-icons.h" ++ + #include "gtkalias.h" + + #ifdef G_OS_WIN32 +@@ -318,6 +322,9 @@ + */ + static gchar* cmpl_completion_fullname (const gchar*, CompletionState* cmpl_state); + ++static void home_clicked (GtkWidget *widget, gpointer data); ++static void desktop_clicked (GtkWidget *widget, gpointer data); ++static void documents_clicked (GtkWidget *widget, gpointer data); + + /* Directory operations. */ + static CompletionDir* open_ref_dir (gchar* text_to_complete, +@@ -627,6 +634,10 @@ + GtkWidget *spacer; + GtkDialog *dialog; + ++ GdkPixbuf *ipixbuf; ++ GtkWidget *bbox, *home_button, *desk_button, *docs_button, *xbox; ++ GtkWidget *lbox; ++ + GtkListStore *model; + GtkTreeViewColumn *column; + +@@ -640,18 +651,9 @@ + filesel->main_vbox = dialog->vbox; + gtk_container_set_border_width (GTK_CONTAINER (filesel), 10); + +- /* The horizontal box containing create, rename etc. buttons */ +- filesel->button_area = gtk_hbutton_box_new (); +- gtk_button_box_set_layout (GTK_BUTTON_BOX (filesel->button_area), GTK_BUTTONBOX_START); +- gtk_box_set_spacing (GTK_BOX (filesel->button_area), 0); +- gtk_box_pack_start (GTK_BOX (filesel->main_vbox), filesel->button_area, +- FALSE, FALSE, 0); +- gtk_widget_show (filesel->button_area); +- +- gtk_file_selection_show_fileop_buttons (filesel); +- + /* hbox for pulldown menu */ + pulldown_hbox = gtk_hbox_new (TRUE, 5); ++ gtk_container_set_border_width (GTK_CONTAINER (pulldown_hbox), 4); + gtk_box_pack_start (GTK_BOX (filesel->main_vbox), pulldown_hbox, FALSE, FALSE, 0); + gtk_widget_show (pulldown_hbox); + +@@ -663,14 +665,27 @@ + + /* The horizontal box containing the directory and file listboxes */ + ++ xbox = gtk_hbox_new (FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (filesel->main_vbox), xbox, TRUE, TRUE, 0); ++ gtk_widget_show (xbox); ++ ++ bbox = gtk_vbox_new (FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (xbox), bbox, FALSE, FALSE, 5); ++ gtk_widget_show (bbox); ++ ++ lbox = gtk_vbox_new (FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (xbox), lbox, TRUE, TRUE, 5); ++ gtk_widget_show (lbox); ++ + spacer = gtk_hbox_new (FALSE, 0); + gtk_widget_set_size_request (spacer, -1, 5); +- gtk_box_pack_start (GTK_BOX (filesel->main_vbox), spacer, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (lbox), spacer, FALSE, FALSE, 0); + gtk_widget_show (spacer); + + list_hbox = gtk_hbox_new (FALSE, 5); +- gtk_box_pack_start (GTK_BOX (filesel->main_vbox), list_hbox, TRUE, TRUE, 0); ++ gtk_box_pack_start (GTK_BOX (lbox), list_hbox, TRUE, TRUE, 0); + gtk_widget_show (list_hbox); ++ + if (WANT_HPANED) + list_container = g_object_new (GTK_TYPE_HPANED, + "visible", TRUE, +@@ -682,9 +697,78 @@ + + spacer = gtk_hbox_new (FALSE, 0); + gtk_widget_set_size_request (spacer, -1, 5); +- gtk_box_pack_start (GTK_BOX (filesel->main_vbox), spacer, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (lbox), spacer, FALSE, FALSE, 0); + gtk_widget_show (spacer); + ++ ++ /* The Pretty Icons */ ++ ++ home_button = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (home_button), 4); ++ gtk_box_pack_start (GTK_BOX (bbox), home_button, FALSE, FALSE, 0); ++ gtk_widget_show (home_button); ++ ++ g_signal_connect (G_OBJECT (home_button), "clicked", ++ G_CALLBACK (home_clicked), filesel); ++ ++ xbox = gtk_vbox_new (FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (home_button), xbox); ++ gtk_widget_show (xbox); ++ ++ ipixbuf = gdk_pixbuf_new_from_inline (-1, stock_home_48, FALSE, NULL); ++ label = gtk_image_new_from_pixbuf (ipixbuf); ++ gtk_box_pack_start (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new_with_mnemonic ("_Home"); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), home_button); ++ gtk_box_pack_end (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ desk_button = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (desk_button), 4); ++ gtk_box_pack_start (GTK_BOX (bbox), desk_button, FALSE, FALSE, 0); ++ gtk_widget_show (desk_button); ++ ++ g_signal_connect (G_OBJECT (desk_button), "clicked", ++ G_CALLBACK (desktop_clicked), filesel); ++ ++ xbox = gtk_vbox_new (FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (desk_button), xbox); ++ gtk_widget_show (xbox); ++ ++ ipixbuf = gdk_pixbuf_new_from_inline (-1, stock_desktop_48, FALSE, NULL); ++ label = gtk_image_new_from_pixbuf (ipixbuf); ++ gtk_box_pack_start (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new_with_mnemonic ("D_esktop"); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), desk_button); ++ gtk_box_pack_end (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ docs_button = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (docs_button), 4); ++ gtk_box_pack_start (GTK_BOX (bbox), docs_button, FALSE, FALSE, 0); ++ gtk_widget_show (docs_button); ++ ++ g_signal_connect (G_OBJECT (docs_button), "clicked", ++ G_CALLBACK (documents_clicked), filesel); ++ ++ xbox = gtk_vbox_new (FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (docs_button), xbox); ++ gtk_widget_show (xbox); ++ ++ ipixbuf = gdk_pixbuf_new_from_inline (-1, stock_documents_48, FALSE, NULL); ++ label = gtk_image_new_from_pixbuf (ipixbuf); ++ gtk_box_pack_start (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new_with_mnemonic ("Docu_ments"); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), docs_button); ++ gtk_box_pack_end (GTK_BOX (xbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ + /* The directories list */ + + model = gtk_list_store_new (1, G_TYPE_STRING); +@@ -757,6 +841,15 @@ + gtk_widget_show (filesel->file_list); + gtk_widget_show (scrolled_win); + ++ /* The horizontal box containing create, rename etc. buttons */ ++ filesel->button_area = gtk_hbox_new (FALSE, 0); ++ gtk_box_set_spacing (GTK_BOX (filesel->button_area), 0); ++ gtk_box_pack_start (GTK_BOX (lbox), filesel->button_area, ++ FALSE, FALSE, 0); ++ gtk_widget_show (filesel->button_area); ++ ++ gtk_file_selection_show_fileop_buttons (filesel); ++ + /* action area for packing buttons into. */ + filesel->action_area = gtk_hbox_new (TRUE, 0); + gtk_box_pack_start (GTK_BOX (filesel->main_vbox), filesel->action_area, +@@ -1012,39 +1105,94 @@ + void + gtk_file_selection_show_fileop_buttons (GtkFileSelection *filesel) + { ++ GtkWidget *label; ++ GtkWidget *bbox; ++ + g_return_if_fail (GTK_IS_FILE_SELECTION (filesel)); + + /* delete, create directory, and rename */ + if (!filesel->fileop_c_dir) + { +- filesel->fileop_c_dir = gtk_button_new_with_mnemonic (_("_New Folder")); ++ filesel->fileop_c_dir = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (filesel->fileop_c_dir), 4); ++ ++ bbox = gtk_hbox_new (FALSE, 2); ++ gtk_container_add (GTK_CONTAINER (filesel->fileop_c_dir), bbox); ++ ++ label = gtk_image_new_from_stock (GTK_STOCK_OPEN, GTK_ICON_SIZE_BUTTON); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new_with_mnemonic (_("_New Folder")); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), filesel->fileop_c_dir); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ gtk_widget_show (bbox); ++ + g_signal_connect (filesel->fileop_c_dir, "clicked", +- G_CALLBACK (gtk_file_selection_create_dir), +- filesel); ++ G_CALLBACK (gtk_file_selection_create_dir), ++ (gpointer) filesel); + gtk_box_pack_start (GTK_BOX (filesel->button_area), +- filesel->fileop_c_dir, TRUE, TRUE, 0); ++ filesel->fileop_c_dir, FALSE, FALSE, 0); + gtk_widget_show (filesel->fileop_c_dir); + } +- ++ + if (!filesel->fileop_del_file) + { +- filesel->fileop_del_file = gtk_button_new_with_mnemonic (_("De_lete File")); ++ filesel->fileop_del_file = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (filesel->fileop_del_file), 4); ++ ++ bbox = gtk_hbox_new (FALSE, 2); ++ gtk_container_add (GTK_CONTAINER (filesel->fileop_del_file), bbox); ++ ++ label = gtk_image_new_from_stock (GTK_STOCK_DELETE, ++ GTK_ICON_SIZE_BUTTON); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new (_("De_lete File")); ++ gtk_label_set_use_underline (GTK_LABEL (label), TRUE); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), filesel->fileop_del_file); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ gtk_widget_show (bbox); ++ + g_signal_connect (filesel->fileop_del_file, "clicked", + G_CALLBACK (gtk_file_selection_delete_file), +- filesel); +- gtk_box_pack_start (GTK_BOX (filesel->button_area), +- filesel->fileop_del_file, TRUE, TRUE, 0); ++ (gpointer) filesel); ++ gtk_box_pack_end (GTK_BOX (filesel->button_area), ++ filesel->fileop_del_file, FALSE, FALSE, 0); + gtk_widget_show (filesel->fileop_del_file); + } +- ++ + if (!filesel->fileop_ren_file) + { +- filesel->fileop_ren_file = gtk_button_new_with_mnemonic (_("_Rename File")); ++ filesel->fileop_ren_file = gtk_button_new (); ++ gtk_container_set_border_width (GTK_CONTAINER (filesel->fileop_ren_file), 4); ++ ++ bbox = gtk_hbox_new (FALSE, 2); ++ gtk_container_add (GTK_CONTAINER (filesel->fileop_ren_file), bbox); ++ ++ label = gtk_image_new_from_stock (GTK_STOCK_SAVE_AS, ++ GTK_ICON_SIZE_BUTTON); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ label = gtk_label_new (_("_Rename File")); ++ gtk_label_set_use_underline (GTK_LABEL (label), TRUE); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), filesel->fileop_ren_file); ++ gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0); ++ gtk_widget_show (label); ++ ++ gtk_widget_show (bbox); ++ + g_signal_connect (filesel->fileop_ren_file, "clicked", + G_CALLBACK (gtk_file_selection_rename_file), +- filesel); +- gtk_box_pack_start (GTK_BOX (filesel->button_area), +- filesel->fileop_ren_file, TRUE, TRUE, 0); ++ (gpointer) filesel); ++ gtk_box_pack_end (GTK_BOX (filesel->button_area), ++ filesel->fileop_ren_file, FALSE, FALSE, 0); + gtk_widget_show (filesel->fileop_ren_file); + } + +@@ -1752,6 +1900,95 @@ + gtk_widget_set_sensitive (fs->fileop_ren_file, sensitive); + } + ++static void ++home_clicked (GtkWidget *widget, gpointer data) ++{ ++ char *dir; ++ ++ dir = g_strdup_printf ("%s/", g_get_home_dir()); ++ ++ gtk_file_selection_populate (GTK_FILE_SELECTION (data), ++ dir, FALSE, FALSE); ++ g_free (dir); ++ ++ gtk_widget_grab_focus (GTK_FILE_SELECTION (data)->selection_entry); ++} ++ ++static char * ++get_desktop_directory (void) ++{ ++ char *filename; ++ struct stat buf; ++ ++ filename = g_build_filename (g_get_home_dir (), "Desktop", NULL); ++ if (lstat (filename, &buf) == 0) ++ { ++ if (S_ISLNK (buf.st_mode)) ++ { ++ char link_target[MAXPATHLEN + 1]; ++ int len; ++ ++ len = readlink (filename, link_target, MAXPATHLEN); ++ if (len > 0) ++ { ++ char *desktop_filename; ++ /* Add a trailing / if there isn't already one */ ++ link_target[len] = '\0'; ++ if (link_target[len - 1] == G_DIR_SEPARATOR) ++ { ++ link_target[len - 1] = '\0'; ++ } ++ ++ if (!strcmp (link_target, "Desktop")) ++ { ++ g_free (filename); ++ return g_build_filename (g_get_home_dir (), "Desktop", G_DIR_SEPARATOR_S, NULL); ++ } ++ ++ desktop_filename = g_build_filename (g_get_home_dir (), "Desktop", NULL); ++ if (!strcmp (link_target, desktop_filename)) ++ { ++ g_free (desktop_filename); ++ g_free (filename); ++ return g_build_filename (g_get_home_dir (), "Desktop", G_DIR_SEPARATOR_S, NULL); ++ } ++ g_free (desktop_filename); ++ } ++ } ++ } ++ g_free (filename); ++ ++ return g_build_filename (g_get_home_dir (), "Desktop", G_DIR_SEPARATOR_S, NULL); ++} ++ ++ ++static void ++desktop_clicked (GtkWidget *widget, gpointer data) ++{ ++ char *dir; ++ ++ dir = get_desktop_directory (); ++ gtk_file_selection_populate (GTK_FILE_SELECTION (data), ++ dir, FALSE, FALSE); ++ g_free (dir); ++ ++ gtk_widget_grab_focus (GTK_FILE_SELECTION (data)->selection_entry); ++} ++ ++static void ++documents_clicked (GtkWidget *widget, gpointer data) ++{ ++ char *dir; ++ dir = g_strdup_printf ("%s/Documents/", g_get_home_dir ()); ++ ++ gtk_file_selection_populate (GTK_FILE_SELECTION (data), ++ dir, FALSE, FALSE); ++ ++ g_free (dir); ++ ++ gtk_widget_grab_focus (GTK_FILE_SELECTION (data)->selection_entry); ++} ++ + static gint + gtk_file_selection_key_press (GtkWidget *widget, + GdkEventKey *event, +Index: gtk+2.0-2.21.5/gtk/stock-icons/ximian-icons.h +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ gtk+2.0-2.21.5/gtk/stock-icons/ximian-icons.h 2010-07-22 17:54:34.261053795 +0200 +@@ -0,0 +1,825 @@ ++/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ ++ ++static const guint8 stock_desktop_48[] = ++{ "" ++ /* Pixbuf magic (0x47646b50) */ ++ "GdkP" ++ /* length: header (24) + pixel_data (6692) */ ++ "\0\0\32<" ++ /* pixdata_type (0x2010002) */ ++ "\2\1\0\2" ++ /* rowstride (276) */ ++ "\0\0\1\24" ++ /* width (69) */ ++ "\0\0\0E" ++ /* height (45) */ ++ "\0\0\0-" ++ /* pixel_data: */ ++ "\377\0\0\0\0\332\0\0\0\0\204\0\0\0\1\252\0\0\0\0\204\0\0\0\1\221\0\0" ++ "\0\0\3\0\0\0\2\0\0\0\5\0\0\0\10\202\0\0\0\11\3\0\0\0\10\0\0\0\5\0\0\0" ++ "\3\245\0\0\0\1\4\0\0\0\2\0\0\0\3\0\0\0\6\0\0\0\10\202\0\0\0\11\3\0\0" ++ "\0\10\0\0\0\5\0\0\0\2\216\0\0\0\0\2\0\0\0\2\0\0\0_\204\0\0\0\377\4\0" ++ "\0\0m\0\0\0\26\0\0\0\17\0\0\0\13\244\0\0\0\12\2\0\0\0\14\0\0\0\202\204" ++ "\0\0\0\377\4\0\0\0l\0\0\0\23\0\0\0\10\0\0\0\2\215\0\0\0\0\3\0\0\0\5\0" ++ "\0\0\377\266\276\312\377\202\245\257\276\377\1s}\214\377\252\0\0\0\377" ++ "\1\266\276\312\377\202\220\234\257\377\5s}\214\377\0\0\0\377\0\0\0)\0" ++ "\0\0\23\0\0\0\5\214\0\0\0\0\11\0\0\0\1\0\0\0\10\0\0\0\377\220\234\257" ++ "\377Ug\204\377DRj\377MNA\377\310\311\274\377\333\334\314\377\231\323" ++ "\324\300\377\4\322\323\300\377\321\323\277\377\321\323\276\377\321\322" ++ "\276\377\203\320\321\275\377\4\317\320\274\377\316\320\274\377\315\320" ++ "\273\377\315\317\272\377\202\315\316\271\377\13\315\315\271\377\314\315" ++ "\271\377qr^\377\245\257\276\377Ug\204\377DRj\377\0\0\0\377\0\0\0<\0\0" ++ "\0\35\0\0\0\10\0\0\0\1\213\0\0\0\0\7\0\0\0\1\0\0\0\11\0\0\0\377\220\234" ++ "\257\377DRj\377abR\377\227\230\177\377\231\274\276\237\377\32\273\275" ++ "\236\377\273\275\235\377\272\274\235\377\271\273\234\377\270\273\233" ++ "\377\270\272\232\377\267\271\231\377\266\270\231\377\265\270\230\377" ++ "\265\267\227\377\264\266\226\377\263\266\225\377\263\265\225\377\262" ++ "\264\224\377\261\264\223\377\260\263\222\377\260\262\221\377\257\262" ++ "\221\377or\\\377\220\234\257\377DRj\377\0\0\0\377\0\0\0E\0\0\0\"\0\0" ++ "\0\12\0\0\0\1\213\0\0\0\0\6\0\0\0\1\0\0\0\12\0\0\0\377s}\214\377abR\377" ++ "\227\230\177\377\231\274\276\237\377\33\273\275\236\377\272\274\235\377" ++ "\271\274\234\377\271\273\233\377\270\272\233\377\267\271\232\377\267" ++ "\271\231\377\266\270\230\377\265\267\227\377\264\267\227\377\264\266" ++ "\226\377\263\265\225\377\262\265\224\377\261\264\223\377\261\263\223" ++ "\377\260\263\222\377\257\262\221\377\257\261\220\377\256\260\217\377" ++ "\255\260\217\377np[\377\220\234\257\377\0\0\0\377\0\0\0F\0\0\0#\0\0\0" ++ "\12\0\0\0\1\213\0\0\0\0\5\0\0\0\1\0\0\0\10\0\0\0m\0\0\0\377\273\274\254" ++ "\377\230\274\276\237\377\35\273\275\236\377\272\275\235\377\272\274\235" ++ "\377\271\273\234\377\270\272\233\377\270\272\232\377\267\271\231\377" ++ "\266\270\231\377\265\270\230\377\265\267\227\377\264\266\226\377\263" ++ "\266\225\377\262\265\225\377\262\264\224\377\261\264\223\377\260\263" ++ "\222\377\260\262\221\377\257\261\221\377\256\261\220\377\255\260\217" ++ "\377\255\257\216\377\254\257\215\377\226\231|\377\0\0\0\377\0\0\0\253" ++ "\0\0\0A\0\0\0\37\0\0\0\11\0\0\0\1\214\0\0\0\0\4\0\0\0\6\0\0\0\26\0\0" ++ "\0\377\323\324\300\377\227\274\276\237\377\36\273\275\236\377\272\274" ++ "\235\377\271\273\234\377\271\273\233\377\270\272\233\377\267\271\232" ++ "\377\266\271\231\377\266\270\230\377\265\267\227\377\264\267\227\377" ++ "\264\266\226\377\263\265\225\377\262\265\224\377\261\264\223\377\261" ++ "\263\223\377\260\262\222\377\257\262\221\377\256\261\220\377\256\260" ++ "\217\377\255\260\217\377\254\257\216\377\254\256\215\377\253\256\214" ++ "\377\226\230z\377\0\0\0\377\0\0\0V\0\0\0""6\0\0\0\27\0\0\0\6\0\0\0\1" ++ "\214\0\0\0\0\4\0\0\0\3\0\0\0\17\0\0\0\377\323\324\300\377\211\274\276" ++ "\237\377\1z{g\377\214\0\0\0\377\36[\\L\377\267\271\232\377\271\273\234" ++ "\377\270\272\233\377\267\272\232\377\267\271\231\377\266\270\230\377" ++ "\265\270\230\377\265\267\227\377\264\266\226\377\263\266\225\377\262" ++ "\265\224\377\262\264\224\377\261\263\223\377\260\263\222\377\257\262" ++ "\221\377\257\261\220\377\256\261\220\377\255\260\217\377\255\257\216" ++ "\377\254\257\215\377\253\256\214\377\252\255\214\377\252\255\213\377" ++ "\225\227y\377\0\0\0\377\0\0\0O\0\0\0,\0\0\0\20\0\0\0\3\215\0\0\0\0\4" ++ "\0\0\0\2\0\0\0\14\0\0\0\377\323\324\300\377\211\274\276\237\377\3\0\0" ++ "\0\377\323\323\323\377\366\366\366\377\210\377\377\377\377\40\371\371" ++ "\371\377\332\332\332\377XXX\377,-%\377\263\265\226\377\266\270\231\377" ++ "\266\271\231\377\266\270\230\377\265\267\227\377\264\267\226\377\263" ++ "\266\226\377\263\265\225\377\262\264\224\377\261\264\223\377\261\263" ++ "\222\377\260\262\222\377\257\262\221\377\256\261\220\377\256\260\217" ++ "\377\255\260\216\377\254\257\216\377\253\256\215\377\253\256\214\377" ++ "\252\255\213\377\251\254\212\377\251\253\212\377\224\226x\377\0\0\0\377" ++ "\0\0\0K\0\0\0&\0\0\0\14\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0" ++ "\377\323\324\300\377\211\274\276\237\377\2\0\0\0\377\366\366\366\377" ++ "\212\377\377\377\377\5\307\307\307\377\321\321\321\377\326\326\326\377" ++ "\0\0\0\377\260\262\223\377\202\264\267\227\377\30\264\266\226\377\263" ++ "\265\225\377\262\265\224\377\262\264\224\377\261\263\223\377\260\263" ++ "\222\377\257\262\221\377\257\261\220\377\256\261\220\377\255\260\217" ++ "\377\254\257\216\377\254\257\215\377\253\256\214\377\252\255\214\377" ++ "\252\254\213\377\251\254\212\377\250\253\211\377\247\252\210\377\223" ++ "\226x\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0" ++ "\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274\276\237\377\1\0\0\0\377" ++ "\207\377\377\377\377#\376\376\376\377\377\377\377\377\376\376\376\377" ++ "\375\375\375\377\300\300\300\377\341\341\341\377\360\360\360\377\233" ++ "\233\233\377\0\0\0\377\255\257\220\377\262\265\225\377\263\265\225\377" ++ "\262\264\224\377\261\264\223\377\260\263\222\377\260\262\222\377\257" ++ "\262\221\377\256\261\220\377\256\260\217\377\255\260\216\377\254\257" ++ "\216\377\253\256\215\377\253\255\214\377\252\255\213\377\251\254\212" ++ "\377\250\253\212\377\250\253\211\377\247\252\210\377\246\251\207\377" ++ "\222\225v\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4" ++ "\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274\276\237\377\1\0\0" ++ "\0\377\205\377\377\377\377%\376\376\376\377\375\375\375\377\374\374\373" ++ "\377\375\375\375\377\374\374\373\377\373\373\373\377\257\257\256\377" ++ "\351\351\351\377\377\377\377\377\337\337\337\377\217\217\217\377\0\0" ++ "\0\377\253\256\216\377\260\263\222\377\261\263\223\377\260\263\222\377" ++ "\257\262\221\377\257\261\220\377\256\261\217\377\255\260\217\377\254" ++ "\257\216\377\254\256\215\377\253\256\214\377\252\255\213\377\251\254" ++ "\213\377\251\254\212\377\250\253\211\377\247\252\210\377\247\252\207" ++ "\377\246\251\207\377\245\250\206\377\220\224u\377\0\0\0\377\0\0\0I\0" ++ "\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324" ++ "\300\377\211\274\276\237\377\1\0\0\0\377\203\377\377\377\377\32\376\376" ++ "\376\377\375\375\375\377\374\374\373\377\373\373\373\377\372\372\371" ++ "\377\373\373\373\377\372\372\371\377\371\371\370\377\244\244\243\377" ++ "\360\360\360\377\377\377\377\377\364\364\364\377\317\317\317\377\242" ++ "\242\242\37744+\377\252\255\215\377\257\261\220\377\257\262\221\377\256" ++ "\261\220\377\255\260\217\377\255\257\216\377\254\257\215\377\253\256" ++ "\215\377\253\255\214\377\252\255\213\377\251\254\212\377\202\250\253" ++ "\211\377\13\247\252\210\377\246\251\207\377\245\251\206\377\245\250\205" ++ "\377\244\247\205\377\220\222t\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0" ++ "\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274" ++ "\276\237\377\15\0\0\0\377\377\377\377\377\376\376\376\377\375\375\375" ++ "\377\374\374\373\377\373\373\373\377\372\372\371\377\371\371\370\377" ++ "\370\370\367\377\371\371\370\377\370\370\367\377\370\367\366\377\236" ++ "\236\236\377\206\0\0\0\377\30VWG\377\252\255\215\377\256\260\217\377" ++ "\255\260\217\377oq\\\377\15\15\13\3779.'\377\214\214p\377\245\247\207" ++ "\377\251\254\212\377\250\253\211\377\247\252\210\377\246\252\207\377" ++ "\246\251\207\377\245\250\206\377\244\247\205\377\244\247\204\377\243" ++ "\246\203\377\217\221s\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215" ++ "\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274\276\237" ++ "\377+\0\0\0\377\377\377\377\377\374\374\373\377\373\373\373\377\372\372" ++ "\371\377\371\371\370\377\370\370\367\377\370\367\366\377\367\366\365" ++ "\377\370\367\366\377\367\366\365\377\366\366\364\377\364\363\362\377" ++ "\336\335\334\377\323\322\320\377\267\267\265\377\237\236\235\377poo\377" ++ "ebZ\377\0\0\0\377\242\244\206\377op[\377\24\24\21\377E\77\77\377\347" ++ "\254\243\377\302[K\377,\30\23\377\201\204i\377\250\253\211\377\247\252" ++ "\210\377\246\251\207\377\245\250\206\377\245\250\205\377\244\247\205" ++ "\377\243\246\204\377\242\246\203\377\242\245\202\377\216\220q\377\0\0" ++ "\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12" ++ "\0\0\0\377\323\324\300\377\210\274\276\237\377,\273\275\236\377\0\0\0" ++ "\377\377\377\377\377\372\372\371\377\371\371\370\377\370\370\367\377" ++ "\370\367\366\377\367\366\365\377\366\366\364\377\365\364\363\377\366" ++ "\366\364\377\365\364\363\377\364\363\362\377\362\362\360\377\344\344" ++ "\342\377\332\331\327\377\330\330\326\377\315\314\312\377\257\256\254" ++ "\377\210\204{\377\0\0\0\377\21\21\14\377D@5\377\350\332\260\377\240\231" ++ "\223\377\235NB\377n#\26\377\40\17\12\377or[\377\246\251\207\377\246\251" ++ "\206\377\245\250\206\377\244\247\205\377\243\247\204\377\243\246\203" ++ "\377\242\245\202\377\241\245\202\377\241\244\201\377\215\220p\377\0\0" ++ "\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12" ++ "\0\0\0\377\323\324\300\377\207\274\276\237\377-\273\275\236\377\272\274" ++ "\235\377\0\0\0\377\377\377\377\377\370\370\367\377\370\367\366\377\367" ++ "\366\365\377\366\366\364\377\365\364\363\377\364\363\362\377\363\363" ++ "\361\377\364\363\362\377\363\363\361\377\362\362\360\377\357\357\355" ++ "\377\356\355\353\377\355\354\352\377\351\350\346\377\325\324\323\377" ++ "\275\274\273\377\21\17\15\377,*#\377\360\337\253\377\320\264f\377\272" ++ "\214,\377x_2\3774\30\23\377\31\26\22\377\202\205j\377\242\245\203\377" ++ "\245\250\206\377\245\250\205\377\244\247\204\377\243\246\204\377\242" ++ "\246\203\377\242\245\202\377\241\244\201\377\240\244\200\377\237\243" ++ "\200\377\214\217p\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0" ++ "\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\205\274\276\237\377" ++ "\202\273\275\236\377\6\272\274\235\377\271\273\234\377\0\0\0\377\377" ++ "\377\377\377\366\365\364\377\365\365\363\377\202\364\363\362\377%\363" ++ "\363\361\377\362\362\360\377\361\361\357\377\362\362\360\377\361\361" ++ "\357\377\361\360\356\377\356\355\353\377\354\353\351\377\352\351\347" ++ "\377\332\326\315\377\26\25\21\377-,&\377\362\342\262\377\320\264e\377" ++ "\270\211+\377\244q\24\377O4\6\377\33\27\15\377su]\377\234\237\177\377" ++ "\244\247\204\377\243\246\204\377\244\247\205\377\243\247\204\377\243" ++ "\246\203\377\242\245\202\377\241\245\202\377\240\244\201\377\240\243" ++ "\200\377\237\242\177\377\236\242~\377\213\216o\377\0\0\0\377\0\0\0I\0" ++ "\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324" ++ "\300\377\204\274\276\237\3770\273\275\236\377\272\274\235\377\272\274" ++ "\234\377\271\273\234\377\270\272\233\377\0\0\0\377\377\377\377\377\364" ++ "\363\362\377\363\362\361\377\362\362\360\377\360\360\356\377\357\357" ++ "\355\377\361\360\356\377\360\357\355\377\361\360\356\377\360\357\355" ++ "\377\357\356\354\377\354\353\351\377\305\303\274\377\25\24\16\377-,&" ++ "\377\362\343\263\377\320\265g\377\271\215/\377\247r\26\377Z=\11\377\33" ++ "\25\7\377[]J\377\233\236~\377\242\245\203\377\243\246\204\377\242\246" ++ "\203\377\244\247\204\377\243\246\204\377\242\246\203\377\242\245\202" ++ "\377\241\244\201\377\240\243\200\377\237\243\200\377\237\242\177\377" ++ "\236\241~\377\235\241}\377\211\215m\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0" ++ "\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377" ++ "\202\274\276\237\3772\273\275\236\377\273\275\235\377\272\274\235\377" ++ "\271\273\234\377\270\273\233\377\270\272\232\377\267\271\231\377\0\0" ++ "\0\377\377\377\377\377\364\363\362\377\363\362\361\377\362\362\360\377" ++ "\360\360\356\377\357\357\355\377\361\360\356\377\360\357\355\377\361" ++ "\360\356\377\360\357\355\377\351\350\346\377<8/\377+(\36\377\360\337" ++ "\247\377\320\264h\377\276\2202\377\260|\33\377`A\13\377\30\20\1\377=" ++ ">1\377\225\230z\377\242\245\203\377\243\247\204\377\243\246\203\377\244" ++ "\247\205\377\243\247\204\377\243\246\203\377\242\245\202\377\241\244" ++ "\201\377\240\244\201\377\240\243\200\377\237\242\177\377\236\242~\377" ++ "\235\241}\377\235\240}\377\234\240|\377\210\214l\377\0\0\0\377\0\0\0" ++ "I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\20\0\0\0\1\0\0\0\12\0\0\0\377\323" ++ "\324\300\377\274\276\237\377\273\275\236\377\272\274\235\377\271\274" ++ "\234\377\271\273\233\377\270\272\233\377\267\271\232\377\267\271\231" ++ "\377\266\270\230\377\0\0\0\377\377\377\377\377\360\360\356\377\202\357" ++ "\357\355\377\2\357\356\354\377\356\355\353\377\203\355\354\352\377!\347" ++ "\346\344\377NJB\377\256\247\240\377\315\265\221\377\305\236@\377\267" ++ "\202\36\377bD\16\377\36\27\7\377:84\377\0\0\0\377\214\216q\377\244\247" ++ "\205\377\243\246\204\377\242\246\203\377\244\247\204\377\243\246\203" ++ "\377\242\245\203\377\241\245\202\377\241\244\201\377\240\243\200\377" ++ "\237\243\177\377\237\242\177\377\236\241~\377\235\241}\377\234\240|\377" ++ "\234\237{\377\233\237{\377\207\213k\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0" ++ "\13\0\0\0\2\215\0\0\0\0\21\0\0\0\1\0\0\0\12\0\0\0\377\322\323\300\377" ++ "\272\275\235\377\272\274\235\377\271\273\234\377\270\272\233\377\270" ++ "\272\232\377\267\271\231\377\266\270\231\377\265\270\230\377\265\267" ++ "\227\377\0\0\0\377\377\377\377\377\355\355\353\377\355\354\352\377\203" ++ "\354\353\351\377$\353\352\350\377\351\350\345\377\353\352\350\377\37" ++ "\37\37\377&$\40\377\220~i\377\232zU\377{`3\377\26\20\7\377DDC\377\270" ++ "\267\264\377\233\225\212\377\0\0\0\377\216\220s\377\243\246\203\377\244" ++ "\247\205\377\243\246\204\377\242\246\203\377\242\245\202\377\241\244" ++ "\201\377\240\244\201\377\240\243\200\377\237\242\177\377\236\242~\377" ++ "\235\241}\377\235\240}\377\234\240|\377\233\237{\377\232\236z\377\232" ++ "\235y\377\207\212j\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0" ++ "\0\0\0\20\0\0\0\1\0\0\0\12\0\0\0\377\321\323\277\377\271\273\234\377" ++ "\271\273\233\377\270\272\233\377\267\271\232\377\266\271\231\377\266" ++ "\270\230\377\265\267\227\377\264\267\227\377\264\266\226\377\0\0\0\377" ++ "\377\377\377\377\353\352\350\377\202\351\350\346\377\1\350\347\345\377" ++ "\202\350\347\344\377\2\347\346\343\377\36\35\35\377\202\24\24\24\377" ++ "\37\26\26\23\377\"!\37\377LLJ\377\261\260\255\377\322\321\315\377\331" ++ "\330\324\377\237\231\216\377\0\0\0\377\217\222t\377\244\247\204\377\243" ++ "\246\203\377\242\245\203\377\241\245\202\377\241\244\201\377\240\243" ++ "\200\377\237\243\177\377\236\242\177\377\236\241~\377\235\241}\377\234" ++ "\240|\377\234\237{\377\233\236{\377\232\236z\377\231\235y\377\231\234" ++ "x\377\206\211i\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0" ++ "\0\20\0\0\0\1\0\0\0\12\0\0\0\377\321\322\276\377\270\272\233\377\267" ++ "\272\232\377\267\271\231\377\266\270\230\377\265\270\230\377\265\267" ++ "\227\377\264\266\226\377\263\266\225\377\262\265\224\377\0\0\0\377\377" ++ "\377\377\377\347\346\343\377\203\346\345\342\377%\345\344\341\377\346" ++ "\344\341\377\345\344\340\377\340\336\333\377\320\317\313\377\302\302" ++ "\276\377\303\303\277\377\320\317\313\377\330\327\323\377\331\330\324" ++ "\377\330\326\322\377\331\327\323\377\237\231\215\377\0\0\0\377\216\221" ++ "s\377\242\246\203\377\242\245\202\377\241\244\201\377\240\244\200\377" ++ "\237\243\200\377\237\242\177\377\236\242~\377\235\241}\377\235\240|\377" ++ "\234\237|\377\233\237{\377\232\236z\377\232\235y\377\231\235x\377\230" ++ "\234x\377\227\233w\377\205\210h\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13" ++ "\0\0\0\2\215\0\0\0\0\30\0\0\0\1\0\0\0\12\0\0\0\377\320\321\275\377\267" ++ "\271\232\377\266\271\231\377\266\270\230\377\265\267\227\377\264\267" ++ "\226\377\263\266\226\377\263\265\225\377\262\264\224\377\261\264\223" ++ "\377\0\0\0\377\371\371\371\377\344\343\340\377\343\342\337\377\343\342" ++ "\336\377\344\342\337\377\344\343\337\377\342\341\335\377\343\342\336" ++ "\377\342\341\335\377\340\337\333\377\203\333\332\326\377\35\332\330\324" ++ "\377\334\332\326\377\331\327\323\377\330\326\322\377\236\230\215\377" ++ "\0\0\0\377\215\220q\377\241\245\202\377\241\244\201\377\240\243\200\377" ++ "\237\242\177\377\236\242~\377\236\241~\377\235\240}\377\234\240|\377" ++ "\233\237{\377\233\236z\377\232\236z\377\231\235y\377\231\234x\377\230" ++ "\234w\377\227\233v\377\226\232v\377\204\207g\377\0\0\0\377\0\0\0I\0\0" ++ "\0%\0\0\0\13\0\0\0\2\215\0\0\0\0""8\0\0\0\1\0\0\0\12\0\0\0\377\320\321" ++ "\275\377\266\270\230\377\265\270\230\377\264\267\227\377\264\266\226" ++ "\377\263\265\225\377\262\265\224\377\262\264\224\377\261\263\223\377" ++ "\260\263\222\377\0\0\0\377\355\355\355\377\341\340\335\377\341\337\334" ++ "\377\341\340\334\377\340\337\333\377\342\341\335\377\340\337\333\377" ++ "\341\340\334\377\340\337\333\377\341\340\334\377\337\336\332\377\340" ++ "\336\332\377\335\333\327\377\334\332\326\377\331\327\323\377\330\326" ++ "\321\377\327\325\321\377\235\227\213\377\0\0\0\377\214\217p\377\240\243" ++ "\200\377\237\243\200\377\237\242\177\377\236\241~\377\235\241}\377\234" ++ "\240|\377\234\237|\377\233\237{\377\232\236z\377\232\235y\377\231\235" ++ "x\377\230\234x\377\227\233w\377\227\233v\377\226\232u\377\225\231t\377" ++ "\202\206f\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\30" ++ "\0\0\0\1\0\0\0\12\0\0\0\377\317\320\274\377\265\267\227\377\264\266\226" ++ "\377\263\266\226\377\263\265\225\377\262\264\224\377\261\264\223\377" ++ "\260\263\222\377\260\262\222\377\257\262\221\377\0\0\0\377\321\321\321" ++ "\377\341\337\333\377\340\336\332\377\337\336\332\377\336\335\331\377" ++ "\340\337\333\377\336\335\331\377\340\336\332\377\336\335\331\377\340" ++ "\336\332\377\202\336\334\330\377\202\334\332\326\377\34\330\326\322\377" ++ "\327\326\321\377\325\323\316\377\233\225\212\377\0\0\0\377\213\216o\377" ++ "\237\242\177\377\236\242~\377\236\241~\377\235\240}\377\234\240|\377" ++ "\233\237{\377\233\236z\377\232\236z\377\231\235y\377\230\234x\377\230" ++ "\234w\377\227\233v\377\226\232v\377\226\231u\377\225\231t\377\224\230" ++ "s\377\202\205e\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0" ++ "\0\32\0\0\0\1\0\0\0\12\0\0\0\377\315\320\273\377\264\266\226\377\263" ++ "\265\225\377\262\265\224\377\261\264\223\377\261\263\223\377\260\263" ++ "\222\377\257\262\221\377\257\261\220\377\256\261\217\377\0\0\0\377\231" ++ "\230\221\377\243\236\222\377\244\236\223\377\243\235\222\377\243\235" ++ "\221\377\243\235\222\377\241\234\220\377\242\234\220\377\241\234\220" ++ "\377\242\234\220\377\241\233\217\377\241\233\220\377\202\237\231\215" ++ "\377\202\235\227\214\377\21\233\226\212\377gcY\377\0\0\0\377\213\215" ++ "o\377\236\241~\377\235\241}\377\234\240|\377\234\237{\377\233\237{\377" ++ "\232\236z\377\231\235y\377\231\235x\377\230\234w\377\227\233w\377\227" ++ "\232v\377\226\232u\377\225\231t\377\202\224\230s\377\7\224\227s\377\202" ++ "\205e\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\16\0\0" ++ "\0\2\0\0\0\14\0\0\0\377\315\317\271\377\263\265\225\377\262\264\224\377" ++ "\261\264\223\377\260\263\222\377\260\262\221\377\257\262\221\377\256" ++ "\261\220\377\255\260\217\377\255\257\216\377moY\377\222\0\0\0\377\17" ++ "WZF\377\216\221q\377\235\240}\377\234\240|\377\233\237{\377\233\236z" ++ "\377\232\235y\377\231\235y\377\230\234x\377\230\233w\377\227\233v\377" ++ "\226\232u\377\225\231u\377\225\231t\377\224\230s\377\203\224\227s\377" ++ "\6\202\205e\377\0\0\0\377\0\0\0K\0\0\0&\0\0\0\14\0\0\0\2\215\0\0\0\0" ++ "\34\0\0\0\3\0\0\0\202\0\0\0\377\326\327\306\377\261\264\223\377\261\263" ++ "\223\377\260\263\222\377\257\262\221\377\256\261\220\377\256\260\217" ++ "\377\255\260\217\377\254\257\216\377\254\256\215\377\251\254\212\377" ++ "\240\242\202\377\225\230{\377\224\227y\377\222\225w\377\222\224v\377" ++ "\221\224v\377\221\223v\377\220\222u\377\217\222t\377\217\222s\377\216" ++ "\221r\377\215\220r\377\214\220q\377\214\217p\377\202\213\216o\377\16" ++ "\212\215o\377\212\214n\377\216\221q\377\227\232x\377\234\237{\377\233" ++ "\236{\377\232\236z\377\231\235y\377\231\234x\377\230\234w\377\227\233" ++ "w\377\226\232v\377\226\232u\377\225\231t\377\202\224\230s\377\204\224" ++ "\227s\377\6\202\205e\377\0\0\0\377\0\0\0\243\0\0\0,\0\0\0\20\0\0\0\3" ++ "\215\0\0\0\0\17\0\0\0\6\0\0\0\377v\204\234\377rr^\377\260\263\222\377" ++ "\260\262\221\377\257\261\221\377\256\261\220\377\255\260\217\377\255" ++ "\257\216\377\254\257\215\377\253\256\215\377\252\255\214\377\252\255" ++ "\213\377\251\254\212\377\202\250\253\211\377\33\247\252\210\377\246\251" ++ "\207\377\245\250\206\377\245\250\205\377\244\247\205\377\243\246\204" ++ "\377\242\246\203\377\242\245\202\377\241\244\201\377\240\244\201\377" ++ "\240\243\200\377\237\242\177\377\236\242~\377\235\241}\377\235\240}\377" ++ "\234\237|\377\233\237{\377\232\236z\377\232\235y\377\231\235y\377\230" ++ "\234x\377\230\233w\377\227\233v\377\226\232u\377\225\231u\377\225\231" ++ "t\377\224\230s\377\206\224\227s\377\7z}_\377\222\230\242\377\0\0\0\377" ++ "\0\0\0""6\0\0\0\27\0\0\0\6\0\0\0\1\213\0\0\0\0\15\0\0\0\1\0\0\0\10\0" ++ "\0\0\377Ug\204\377v\204\234\377pr]\377\256\261\220\377\256\260\217\377" ++ "\255\260\216\377\254\257\216\377\253\256\215\377\253\256\214\377\252" ++ "\255\213\377\202\251\254\212\377\34\250\253\211\377\247\252\210\377\246" ++ "\251\207\377\246\251\206\377\245\250\206\377\244\247\205\377\243\247" ++ "\204\377\243\246\203\377\242\245\202\377\241\245\202\377\241\244\201" ++ "\377\240\243\200\377\237\243\177\377\236\242~\377\236\241~\377\235\240" ++ "}\377\234\240|\377\233\237{\377\233\236z\377\232\236z\377\231\235y\377" ++ "\231\234x\377\230\234w\377\227\233v\377\226\232v\377\226\232u\377\225" ++ "\231t\377\224\230s\377\210\224\227s\377\7\266\276\312\377DRj\377\0\0" ++ "\0\377\0\0\0A\0\0\0\37\0\0\0\11\0\0\0\1\213\0\0\0\0\3\0\0\0\1\0\0\0\12" ++ "\0\0\0\377\202Ug\204\377\11v\204\234\377\213\215r\377\217\220u\377\227" ++ "\232|\377\226\231{\377\226\230{\377\226\230z\377\225\227y\377\224\226" ++ "x\377\202\223\226x\377\32\222\225w\377\221\224v\377\221\224u\377\220" ++ "\223t\377\220\222t\377\217\222s\377\217\221r\377\216\220q\377\215\220" ++ "p\377\214\220p\377\214\217p\377\213\216o\377\212\216n\377\212\215m\377" ++ "\211\214m\377\210\214l\377\207\213k\377\207\212j\377\207\212i\377\206" ++ "\211i\377\205\210i\377\205\210h\377\204\207g\377\203\207f\377\203\206" ++ "f\377\202\206e\377\210\202\205e\377\10\245\257\276\377Ug\204\377DRj\377" ++ "\0\0\0\377\0\0\0G\0\0\0#\0\0\0\12\0\0\0\1\213\0\0\0\0\3\0\0\0\1\0\0\0" ++ "\12\0\0\0\377\2036AU\377\1KUd\377\252\0\0\0\377\1\204\214\230\377\202" ++ "6AU\377\6+4D\377\0\0\0\377\0\0\0F\0\0\0#\0\0\0\12\0\0\0\1\213\0\0\0\0" ++ "\3\0\0\0\1\0\0\0\10\0\0\0\211\204\0\0\0\377\4\0\0\0\253\0\0\0V\0\0\0" ++ "O\0\0\0K\244\0\0\0I\2\0\0\0K\0\0\0\243\204\0\0\0\377\5\0\0\0\247\0\0" ++ "\0=\0\0\0\36\0\0\0\10\0\0\0\1\214\0\0\0\0\12\0\0\0\5\0\0\0\23\0\0\0*" ++ "\0\0\0=\0\0\0F\0\0\0G\0\0\0A\0\0\0""6\0\0\0,\0\0\0&\244\0\0\0%\13\0\0" ++ "\0&\0\0\0,\0\0\0""6\0\0\0A\0\0\0G\0\0\0F\0\0\0=\0\0\0*\0\0\0\24\0\0\0" ++ "\5\0\0\0\1\214\0\0\0\0\4\0\0\0\2\0\0\0\11\0\0\0\23\0\0\0\36\202\0\0\0" ++ "#\4\0\0\0\37\0\0\0\27\0\0\0\20\0\0\0\14\244\0\0\0\13\4\0\0\0\14\0\0\0" ++ "\20\0\0\0\27\0\0\0\37\202\0\0\0#\4\0\0\0\36\0\0\0\24\0\0\0\11\0\0\0\2" ++ "\216\0\0\0\0\3\0\0\0\2\0\0\0\5\0\0\0\10\202\0\0\0\12\3\0\0\0\11\0\0\0" ++ "\6\0\0\0\3\246\0\0\0\2\3\0\0\0\3\0\0\0\6\0\0\0\11\202\0\0\0\12\3\0\0" ++ "\0\10\0\0\0\6\0\0\0\2\221\0\0\0\0\205\0\0\0\1\251\0\0\0\0\205\0\0\0\1" ++ "\315\0\0\0\0"}; ++ ++ ++/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ ++ ++static const guint8 stock_home_48[] = ++{ "" ++ /* Pixbuf magic (0x47646b50) */ ++ "GdkP" ++ /* length: header (24) + pixel_data (6699) */ ++ "\0\0\32C" ++ /* pixdata_type (0x2010002) */ ++ "\2\1\0\2" ++ /* rowstride (280) */ ++ "\0\0\1\30" ++ /* width (70) */ ++ "\0\0\0F" ++ /* height (45) */ ++ "\0\0\0-" ++ /* pixel_data: */ ++ "\217\0\0\0\0\17\27\30\24A\40!\35|&&#\377$%!\377\"#\37\377!\"\36\377\37" ++ "\40\34\377\35\36\32\377\34\35\32\377\33\34\30\377\31\32\26\377\30\31" ++ "\25\377\27\30\24\374\27\30\24\255\27\30\24$\267\0\0\0\0\2\27\30\24\341" ++ "\330\331\323\377\212\365\365\360\377\3\361\362\354\377{|u\377\27\30\24" ++ "\227\267\0\0\0\0\3\27\30\24\345\353\353\345\377\361\362\353\377\211\345" ++ "\346\330\377\4\356\357\346\377\347\347\341\377\32\33\27\352\27\30\24" ++ "\4\266\0\0\0\0\3\27\30\24\345\353\353\345\377\354\354\342\377\212\336" ++ "\337\316\377\3\354\355\343\377qql\377\27\30\24N\266\0\0\0\0\3\27\30\24" ++ "\345\353\353\345\377\354\354\342\377\212\336\337\316\377\3\340\341\321" ++ "\377\324\325\317\377/0+\377\230\27\30\24\377\2\27\30\24\376\27\30\24" ++ "k\234\0\0\0\0\3\27\30\24\345\353\353\345\377\354\354\342\377\213\336" ++ "\337\316\377\2\346\347\332\377\364\364\357\377\227\365\365\360\377\4" ++ "\364\364\357\377\325\326\310\377\40!\34\377\27\30\24\25\233\0\0\0\0\3" ++ "\27\30\24\345\353\353\345\377\354\354\342\377\214\336\337\316\377\1\343" ++ "\344\325\377\227\347\350\333\377\4\343\344\325\377\336\337\316\377+," ++ "'\377\27\30\24\32\233\0\0\0\0\3\27\30\24\345\353\353\345\377\354\354" ++ "\342\377\246\336\337\316\377\2+,'\377\27\30\24\32\233\0\0\0\0\6\27\30" ++ "\24\345\353\353\345\377\354\354\342\377\335\336\315\377\331\332\312\377" ++ "\324\325\305\377\212\323\324\305\377\212\323\324\304\377\1\322\323\303" ++ "\377\212\321\322\302\377\2\322\323\303\377\331\332\312\377\202\336\337" ++ "\316\377\2+,'\377\27\30\24\32\233\0\0\0\0\13\27\30\24\345\353\353\345" ++ "\377\354\354\342\377\333\334\313\377\310\311\272\377\233\234\220\377" ++ "\213\214\206\377\214\214\210\377\215\215\210\377\215\216\210\377\216" ++ "\216\211\377\202\216\216\212\377\11\216\216\213\377\216\217\213\377\217" ++ "\220\213\377\220\220\214\377\220\221\214\377\221\221\214\377\221\221" ++ "\215\377\221\222\216\377\222\222\216\377\202\223\223\217\377\202\224" ++ "\224\220\377\2\224\224\221\377\224\225\221\377\202\224\224\221\377\1" ++ "\224\224\220\377\202\223\224\220\377\202\223\223\220\377\10\222\222\217" ++ "\377\221\221\216\377\202\202z\377\303\304\265\377\335\336\315\377\336" ++ "\337\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353\345" ++ "\377\354\354\342\377\332\333\312\377\266\267\251\377\234\234\231\377" ++ "\225\377\377\377\377\20\375\375\375\377\373\373\373\377\371\371\371\377" ++ "\367\367\367\377\366\366\366\377\364\364\364\377\362\362\362\377\360" ++ "\360\360\377\356\356\356\377\354\354\354\377\307\307\307\377\233\234" ++ "\221\377\333\334\313\377\336\337\316\377+,'\377\27\30\24\32\233\0\0\0" ++ "\0\6\27\30\24\345\353\353\345\377\354\354\342\377\332\333\312\377\260" ++ "\261\244\377\273\273\272\377\224\377\377\377\377\21\376\376\376\377\374" ++ "\374\374\377\372\372\372\377\370\370\370\377\366\366\366\377\364\364" ++ "\364\377\363\363\363\377\361\361\361\377\357\357\357\377\355\355\355" ++ "\377\353\353\353\377\343\343\343\377\210\210\177\377\333\334\313\377" ++ "\336\337\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353" ++ "\345\377\354\354\342\377\332\333\312\377\260\261\244\377\273\273\272" ++ "\377\223\377\377\377\377\22\376\376\376\377\374\374\374\377\372\372\372" ++ "\377\370\370\370\377\366\366\366\377\364\364\364\377\363\363\363\377" ++ "\361\361\361\377\357\357\357\377\355\355\355\377\353\353\353\377\351" ++ "\351\351\377\341\341\341\377\210\210\177\377\333\334\313\377\336\337" ++ "\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353\345\377" ++ "\354\354\342\377\332\333\312\377\260\261\244\377\273\273\272\377\222" ++ "\377\377\377\377\23\376\376\376\377\374\374\374\377\372\372\372\377\370" ++ "\370\370\377\367\367\367\377\365\365\365\377\363\363\363\377\361\361" ++ "\361\377\357\357\357\377\355\355\355\377\353\353\353\377\351\351\351" ++ "\377\350\350\350\377\340\340\340\377\210\210\177\377\333\334\313\377" ++ "\336\337\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353" ++ "\345\377\354\354\342\377\332\333\312\377\260\261\244\377\273\273\272" ++ "\377\221\377\377\377\377\24\376\376\376\377\374\374\374\377\372\372\372" ++ "\377\370\370\370\377\367\367\367\377\365\365\365\377\363\363\363\377" ++ "\361\361\361\377\357\357\357\377\355\355\355\377\353\353\353\377\351" ++ "\351\351\377\350\350\350\377\346\346\346\377\336\336\336\377\210\210" ++ "\177\377\333\334\313\377\336\337\316\377+,'\377\27\30\24\32\233\0\0\0" ++ "\0\6\27\30\24\345\353\353\345\377\354\354\342\377\332\333\312\377\260" ++ "\261\244\377\273\273\272\377\221\377\377\377\377\24\375\375\375\377\373" ++ "\373\373\377\371\371\371\377\367\367\367\377\365\365\365\377\363\363" ++ "\363\377\362\362\362\377\360\360\360\377\356\356\356\377\354\354\354" ++ "\377\352\352\352\377\350\350\350\377\346\346\346\377\344\344\344\377" ++ "\334\334\334\377\207\207~\377\332\333\312\377\334\335\314\377+,&\377" ++ "\27\30\24\32\226\0\0\0\0\205\0\0\0\1\6\27\30\24\346\353\353\345\377\354" ++ "\354\342\377\332\333\312\377\260\261\244\377\273\273\272\377\220\377" ++ "\377\377\377\26\375\375\375\377\373\373\373\377\371\371\371\377\367\367" ++ "\367\377\365\365\365\377\363\363\363\377\362\362\362\377\360\360\360" ++ "\377\356\356\356\377\354\354\354\377\352\352\352\377\350\350\350\377" ++ "\346\346\346\377\344\344\344\377\342\342\342\377\332\332\332\377\205" ++ "\206~\377\330\331\311\377\333\334\313\377+,&\377\26\27\23\32\0\0\0\1" ++ "\223\0\0\0\0\202\0\0\0\1\2\25\26\22\12\26\27\23\32\203\25\26\23\33\6" ++ "\27\30\24\351\326\326\320\377\327\327\315\377\306\307\270\377\241\242" ++ "\226\377\253\253\251\377\217\350\350\347\377\26\346\346\346\377\344\344" ++ "\344\377\342\342\342\377\341\341\340\377\340\340\337\377\336\336\336" ++ "\377\334\334\334\377\332\332\332\377\330\331\330\377\327\327\326\377" ++ "\325\325\325\377\323\323\323\377\322\322\322\377\320\320\320\377\317" ++ "\317\316\377\315\315\314\377\306\306\305\377zzs\377\304\305\266\377\306" ++ "\307\270\377()$\377\26\27\23""2\203\26\27\23\32\1\0\0\0\1\217\0\0\0\0" ++ "\202\0\0\0\1\2\25\26\22\30\27\30\24\324\227-.(\377\203-.'\377\204,.'" ++ "\377\210,-'\377\204+-&\377\207+,&\377\3$&\40\377\27\30\24\371\26\27\23" ++ "#\215\0\0\0\0\202\0\0\0\1\3\0\0\0\3\26\27\24h]_R\377\221\305\307\264" ++ "\377\10\304\307\264\377\304\306\264\377\303\305\263\377\303\305\262\377" ++ "\302\305\262\377\302\304\262\377\301\304\261\377\300\303\260\377\202" ++ "\300\302\260\377\12\277\302\257\377\276\301\257\377\276\300\256\377\275" ++ "\300\256\377\275\277\256\377\275\277\255\377\274\276\255\377\273\276" ++ "\254\377\273\275\254\377\272\275\253\377\202\271\274\253\377\16\271\273" ++ "\252\377\270\273\251\377\267\272\251\377\267\271\251\377\266\271\250" ++ "\377\266\271\247\377\265\270\247\377\265\267\247\377\264\267\246\377" ++ "\263\266\246\377\217\223|\377()\"\377\27\27\24F\0\0\0\1\213\0\0\0\0\202" ++ "\0\0\0\1\4\0\0\0\3\0\0\0\4\25\26\22""4DF;\377\217\305\307\264\377\10" ++ "\304\307\264\377\304\306\264\377\303\305\263\377\303\305\262\377\302" ++ "\305\262\377\302\304\262\377\301\304\261\377\300\303\260\377\202\300" ++ "\302\260\377\5\277\302\257\377\276\301\257\377\276\300\256\377\275\300" ++ "\256\377\275\277\256\377\202\274\276\255\377\12\273\276\255\377\272\275" ++ "\253\377\272\274\253\377\270\273\252\377\267\272\251\377\267\272\250" ++ "\377\266\271\247\377\266\270\247\377\264\267\246\377\263\266\245\377" ++ "\202\262\265\244\377\12\261\264\242\377\260\263\242\377\257\262\241\377" ++ "\255\260\236\377\223\227\201\377\201\205n\376\31\33\27\377\24\25\22\35" ++ "\0\0\0\2\0\0\0\1\212\0\0\0\0\12\0\0\0\1\0\0\0\3\0\0\0\4\0\0\0\7\7\7\6" ++ "\15\37!\33\366\301\303\257\377\305\307\264\377\304\307\263\377\255\260" ++ "\225\377\202\252\256\222\377\202\252\255\221\377\1\251\255\221\377\202" ++ "\251\255\220\377\202\251\254\220\377*\247\253\217\377\246\252\216\377" ++ "\245\251\215\377\245\251\214\377\244\250\213\377\242\246\212\377\241" ++ "\245\211\377\240\244\207\377\237\243\207\377\235\241\206\377\235\241" ++ "\204\377\234\240\204\377\233\237\203\377\232\236\202\377\230\234\201" ++ "\377\227\233\200\377\227\233\177\377\225\231~\377\224\230~\377\223\227" ++ "|\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217\223x\377" ++ "\216\222x\377\215\221w\377\214\220v\377\213\217v\377\212\216u\377\212" ++ "\216t\377\211\215t\377\210\214s\377\207\213r\377\206\212q\377\205\211" ++ "q\377ejY\377\27\30\24\346\0\0\0\6\0\0\0\4\0\0\0\2\0\0\0\1\210\0\0\0\0" ++ "\12\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\7\0\0\0\11\0\0\0\14\27\27\24\306\251" ++ "\253\230\377\305\307\264\377\303\305\261\377\207\244\250\212\377,\243" ++ "\247\211\377\242\246\210\377\241\245\210\377\241\245\207\377\240\244" ++ "\206\377\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204" ++ "\377\234\240\203\377\233\237\202\377\232\236\202\377\231\235\201\377" ++ "\230\234\200\377\227\233\200\377\227\233\177\377\226\232~\377\225\231" ++ "~\377\224\230}\377\223\227|\377\222\226|\377\222\226{\377\221\225z\377" ++ "\220\224z\377\217\223y\377\216\222x\377\216\222w\377\215\221w\377\214" ++ "\220v\377\213\217u\377\212\216u\377\211\215t\377\211\215s\377\210\214" ++ "s\377\207\213r\377\206\212q\377\205\211q\377\204\210p\377\204\210o\377" ++ "MSH\377\27\30\24\266\0\0\0\11\0\0\0\6\0\0\0\4\202\0\0\0\1\206\0\0\0\0" ++ "\202\0\0\0\1\11\0\0\0\4\0\0\0\6\0\0\0\11\0\0\0\15\0\0\0\21\26\27\23\223" ++ "\207\211x\377\305\307\264\377\304\307\264\377\205\244\250\212\377\10" ++ "\243\247\211\377\242\246\210\377\241\245\210\377\241\245\207\377\240" ++ "\244\206\377\237\243\206\377\236\242\205\377\235\241\204\377\202\234" ++ "\240\203\377\4\233\237\202\377\232\236\201\377\231\235\201\377\230\234" ++ "\200\377\202\227\233\177\377\17\226\232~\377\225\231}\377\224\230|\377" ++ "\223\227|\377\222\226{\377\222\226z\377\221\225z\377\220\224y\377\217" ++ "\223x\377\216\222x\377\216\222w\377\215\221v\377\214\220v\377\213\217" ++ "u\377\212\216t\377\202\211\215s\377\4\210\214r\377\207\213q\377\206\212" ++ "q\377\205\211p\377\202\204\210o\377\11\203\207n\377\200\205l\3778\77" ++ "7\377\26\26\23\210\0\0\0\16\0\0\0\11\0\0\0\5\0\0\0\3\0\0\0\1\206\0\0" ++ "\0\0\11\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\11\0\0\0\14\0\0\0\21\0\0\0\25\23" ++ "\24\20f`cU\377\202\305\307\264\377\1\246\252\215\377\202\244\250\212" ++ "\3773\243\247\211\377\242\246\211\377\241\245\210\377\241\245\207\377" ++ "\240\244\206\377\237\243\206\377\236\242\205\377\235\241\204\377\234" ++ "\240\204\377\233\237\203\377\233\237\202\377\232\236\202\377\231\235" ++ "\201\377\232\236\202\377\234\240\205\377\232\236\204\377\226\232~\377" ++ "\225\231}\377\224\230}\377\223\227|\377\222\226{\377\221\225{\377\220" ++ "\224z\377\220\224y\377\217\223x\377\216\222x\377\215\221w\377\214\220" ++ "v\377\213\217v\377\212\216u\377\212\216t\377\211\215t\377\210\214s\377" ++ "\207\213r\377\206\212q\377\205\211q\377\205\211p\377\204\210o\377\203" ++ "\207o\377\202\206n\377\201\205m\377\200\204m\377ryf\377(,(\377\23\24" ++ "\20]\0\0\0\22\0\0\0\15\0\0\0\11\0\0\0\4\0\0\0\2\0\0\0\1\205\0\0\0\0A" ++ "\0\0\0\1\0\0\0\4\0\0\0\6\0\0\0\12\0\0\0\21\0\0\0\25\0\0\0\33\14\15\13" ++ "868/\377\304\307\264\377\305\307\264\377\251\254\220\377\243\247\211" ++ "\377\242\246\211\377\241\245\210\377\241\245\207\377\240\244\206\377" ++ "\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204\377\233" ++ "\237\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230\234" ++ "\200\377\227\233\177\377\247\253\224\377\311\313\275\377\301\303\263" ++ "\377\224\230}\377\223\227|\377\222\226|\377\244\247\222\377\223\227}" ++ "\377\220\224y\377\217\223x\377\216\222x\377\215\221w\377\214\220v\377" ++ "\213\217v\377\212\216u\377\212\216t\377\211\215t\377\210\214s\377\207" ++ "\213r\377\206\212q\377\205\211q\377\205\211p\377\204\210o\377\203\207" ++ "o\377\202\206n\377\201\205m\377\200\204m\377\177\203l\377\177\203k\377" ++ "aj]\376\31\33\27\377\14\14\12""3\0\0\0\32\0\0\0\22\0\0\0\13\0\0\0\7\0" ++ "\0\0\4\0\0\0\1\204\0\0\0\0\202\0\0\0\1A\0\0\0\4\0\0\0\10\0\0\0\15\0\0" ++ "\0\22\0\0\0\33\0\0\0\40\0\0\0(\32\32\26\352\274\276\251\377\304\307\264" ++ "\377\251\255\222\377\241\245\210\377\241\245\207\377\240\244\206\377" ++ "\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204\377\233" ++ "\237\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230\234" ++ "\200\377\227\233\177\377\226\232\177\377\226\232~\377\241\245\214\377" ++ "\310\312\274\377\305\307\270\377\230\234\202\377\254\257\234\377\300" ++ "\303\264\377\306\310\272\377\305\307\271\377\262\265\243\377\232\235" ++ "\206\377\214\220v\377\213\217v\377\212\216u\377\212\216t\377\211\215" ++ "t\377\210\214s\377\207\213r\377\206\212q\377\205\211q\377\205\211p\377" ++ "\204\210o\377\203\207o\377\202\206n\377\201\205m\377\200\204m\377\177" ++ "\203l\377\177\203k\377~\202j\377{\200i\377LWO\377\27\30\24\352\0\0\0" ++ "(\0\0\0\37\0\0\0\31\0\0\0\17\0\0\0\11\0\0\0\4\0\0\0\2\0\0\0\1\203\0\0" ++ "\0\0\37\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\11\0\0\0\17\0\0\0\25\0\0\0\34\0" ++ "\0\0(\0\0\0/\25\26\22\301\234\237\215\377\303\305\262\377\251\255\222" ++ "\377\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204\377" ++ "\234\240\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230" ++ "\234\200\377\227\233\200\377\227\233\177\377\226\232~\377\225\231~\377" ++ "\224\230}\377\223\227|\377\232\236\206\377\307\311\273\377\306\311\273" ++ "\377\202\305\310\272\377\2\305\307\272\377\305\307\271\377\202\304\306" ++ "\271\377\21\303\305\270\377\267\271\252\377\235\241\214\377\212\216u" ++ "\377\210\214s\377\207\213r\377\206\212q\377\205\211q\377\204\210p\377" ++ "\204\210o\377\203\207o\377\202\206n\377\201\205m\377\200\204m\377\177" ++ "\203l\377\177\203k\377~\202k\377\202|\200i\377\13ovd\377BKD\377\25\26" ++ "\22\304\0\0\0""1\0\0\0(\0\0\0\34\0\0\0\24\0\0\0\12\0\0\0\6\0\0\0\3\0" ++ "\0\0\1\203\0\0\0\0\16\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\11\0\0\0\21\0\0\0" ++ "\30\0\0\0\37\0\0\0,\0\0\0:\22\23\20\232y{l\377\302\304\262\377\252\255" ++ "\224\377\235\241\204\377\202\234\240\203\377\4\233\237\202\377\232\236" ++ "\201\377\231\235\201\377\230\234\200\377\202\227\233\177\377\13\226\232" ++ "~\377\225\231}\377\224\230|\377\223\227|\377\225\231\177\377\253\256" ++ "\231\377\301\303\264\377\306\310\272\377\305\310\272\377\305\307\272" ++ "\377\305\307\271\377\202\304\306\271\377\202\303\305\270\377\203\302" ++ "\304\267\377\3\274\276\257\377\243\246\223\377\212\216v\377\202\204\210" ++ "o\377\7\203\207n\377\202\206m\377\201\205l\377\200\204l\377\177\203k" ++ "\377\177\203j\377~\202j\377\204|\200i\377\13bl^\3776>7\377\22\23\20\242" ++ "\0\0\0;\0\0\0""0\0\0\0\40\0\0\0\30\0\0\0\14\0\0\0\7\0\0\0\3\0\0\0\1\203" ++ "\0\0\0\0\36\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\12\0\0\0\21\0\0\0\30\0\0\0" ++ "!\0\0\0""1\0\0\0\77\14\15\13{PRG\377\300\303\260\377\252\256\226\377" ++ "\233\237\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230" ++ "\234\200\377\227\233\177\377\226\232\177\377\226\232~\377\225\231}\377" ++ "\224\230}\377\223\227|\377\231\235\204\377\260\263\240\377\304\306\270" ++ "\377\306\310\272\377\305\310\272\377\305\307\272\377\202\304\306\271" ++ "\377\1\303\305\271\377\202\303\305\270\377\4\302\304\270\377\302\304" ++ "\267\377\301\303\267\377\301\303\266\377\202\300\302\266\377\11\276\300" ++ "\263\377\270\272\254\377\241\244\222\377\207\213t\377\200\204m\377\177" ++ "\203l\377\177\203k\377~\202j\377}\201j\377\205|\200i\377\14z\177h\377" ++ "WcZ\377','\377\15\16\14\204\0\0\0K\0\0\0""6\0\0\0#\0\0\0\31\0\0\0\16" ++ "\0\0\0\10\0\0\0\3\0\0\0\1\204\0\0\0\0\33\0\0\0\2\0\0\0\5\0\0\0\12\0\0" ++ "\0\21\0\0\0\31\0\0\0$\0\0\0""1\0\0\0F\3\3\3^()#\376\276\300\256\377\254" ++ "\257\227\377\232\236\202\377\231\235\201\377\230\234\200\377\227\233" ++ "\177\377\226\232\177\377\226\232~\377\225\231}\377\224\230}\377\223\227" ++ "|\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217\223x\377" ++ "\274\276\257\377\202\304\306\271\377\1\303\305\271\377\202\303\305\270" ++ "\377\4\302\304\270\377\302\304\267\377\301\303\267\377\301\303\266\377" ++ "\202\300\302\266\377\11\300\302\265\377\277\301\265\377\256\261\241\377" ++ "\201\205m\377\200\204m\377\177\203l\377\177\203k\377~\202j\377}\201j" ++ "\377\207|\200i\377\14ovd\377S`X\377\31\33\27\377\5\5\4s\0\0\0R\0\0\0" ++ ">\0\0\0'\0\0\0\33\0\0\0\17\0\0\0\10\0\0\0\3\0\0\0\1\204\0\0\0\0\34\0" ++ "\0\0\1\0\0\0\4\0\0\0\11\0\0\0\21\0\0\0\30\0\0\0$\0\0\0""3\0\0\0E\0\0" ++ "\0_\25\26\22\345\255\257\235\377\255\260\232\377\230\234\200\377\227" ++ "\233\177\377\226\232\177\377\226\232~\377\225\231}\377\224\230}\377\223" ++ "\227|\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217\223" ++ "x\377\216\222x\377\215\221w\377\263\265\244\377\303\305\271\377\202\303" ++ "\305\270\377\4\302\304\270\377\302\304\267\377\301\303\267\377\301\303" ++ "\266\377\202\300\302\266\377\1\300\302\265\377\202\277\301\265\377\6" ++ "\276\300\264\377\245\250\230\377\177\203l\377\177\203k\377~\202j\377" ++ "}\201j\377\211|\200i\377\13bl^\377JVO\377\26\27\23\360\0\0\0d\0\0\0\\" ++ "\0\0\0A\0\0\0)\0\0\0\33\0\0\0\17\0\0\0\10\0\0\0\3\205\0\0\0\0!\0\0\0" ++ "\1\0\0\0\3\0\0\0\10\0\0\0\20\0\0\0\27\0\0\0\"\0\0\0""2\0\0\0D\0\0\0\\" ++ "\22\23\20\304\214\216~\377\256\261\233\377\226\232\177\377\225\231~\377" ++ "\225\231}\377\224\230}\377\223\227|\377\222\226{\377\221\225{\377\220" ++ "\224z\377\220\224y\377\217\223x\377\216\222x\377\215\221w\377\214\220" ++ "v\377\213\217v\377\252\255\232\377\303\305\270\377\302\304\270\377\220" ++ "\224|\377\207\213r\377\206\212r\377\220\224~\377\202\300\302\266\377" ++ "\202\277\301\265\377\202\276\300\264\377\3\276\300\263\377\235\240\216" ++ "\377~\202k\377\213|\200i\377\14z\177h\377WcZ\377BKD\377\23\24\21\327" ++ "\0\0\0i\0\0\0Z\0\0\0A\0\0\0*\0\0\0\33\0\0\0\16\0\0\0\7\0\0\0\2\206\0" ++ "\0\0\0\21\0\0\0\2\0\0\0\6\0\0\0\16\0\0\0\25\0\0\0\37\0\0\0/\0\0\0A\0" ++ "\0\0Z\16\17\14\246ik]\377\257\262\235\377\224\230}\377\224\230|\377\223" ++ "\227{\377\222\226z\377\221\225z\377\220\224y\377\202\217\223x\377\17" ++ "\216\222w\377\215\221v\377\214\220v\377\213\217u\377\212\216t\377\212" ++ "\216s\377\241\244\220\377\302\304\267\377\301\303\266\377\224\227\201" ++ "\377\205\211p\377\205\211o\377\216\221z\377\277\301\265\377\277\301\264" ++ "\377\203\276\300\263\377\202\275\277\262\377\1\223\226\203\377\214|\200" ++ "i\377\14nuc\377VbY\3776>7\377\20\20\15\275\0\0\0r\0\0\0V\0\0\0\77\0\0" ++ "\0&\0\0\0\32\0\0\0\15\0\0\0\6\0\0\0\1\206\0\0\0\0\32\0\0\0\1\0\0\0\5" ++ "\0\0\0\13\0\0\0\23\0\0\0\36\0\0\0,\0\0\0=\0\0\0U\10\10\7\207AB9\377\260" ++ "\263\237\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217" ++ "\223y\377\216\222x\377\215\221w\377\214\220v\377\213\217v\377\213\217" ++ "u\377\212\216t\377\211\215t\377\210\214s\377\207\213r\377\227\233\205" ++ "\377\202\300\302\266\377\5\227\232\205\377\203\207o\377\202\206n\377" ++ "\211\215w\377\276\300\264\377\202\275\277\263\377\1\275\277\262\377\203" ++ "\274\276\262\377\1\213\217{\377\214|\200i\377\14bk^\377VbY\377','\377" ++ "\13\13\11\243\0\0\0s\0\0\0S\0\0\0:\0\0\0$\0\0\0\30\0\0\0\13\0\0\0\3\0" ++ "\0\0\1\206\0\0\0\0\"\0\0\0\1\0\0\0\3\0\0\0\10\0\0\0\20\0\0\0\32\0\0\0" ++ "(\0\0\0""9\0\0\0N\1\1\1j\35\36\32\371\255\260\234\377\220\224z\377\217" ++ "\223y\377\217\223x\377\216\222x\377\215\221w\377\214\220v\377\213\217" ++ "u\377\212\216u\377\212\216t\377\211\215s\377\210\214s\377\207\213r\377" ++ "\206\212q\377\205\211q\377\215\220z\377\300\302\265\377\277\301\265\377" ++ "\233\236\212\377\201\205m\377\200\204l\377\207\212u\377\275\277\263\377" ++ "\275\277\262\377\205\274\276\262\377\1\204\207r\377\213|\200i\377\14" ++ "z~h\377WcZ\377S`X\377\31\34\30\377\4\4\4\210\0\0\0p\0\0\0O\0\0\0""5\0" ++ "\0\0\"\0\0\0\25\0\0\0\10\0\0\0\2\210\0\0\0\0\12\0\0\0\2\0\0\0\6\0\0\0" ++ "\16\0\0\0\27\0\0\0#\0\0\0""5\0\0\0H\0\0\0`\24\25\21\335\226\232\207\377" ++ "\202\216\222x\377\4\215\221w\377\214\220v\377\213\217v\377\212\216u\377" ++ "\202\211\215t\377\16\210\214s\377\207\213r\377\206\212q\377\205\211q" ++ "\377\204\210p\377\204\210o\377\203\207p\377\246\251\230\377\246\250\227" ++ "\377\221\225\201\377\177\203l\377\177\203k\377\201\205n\377\235\240\216" ++ "\377\206\234\237\215\377\1}\200j\377\213|\200i\377\14nuc\377VbY\377J" ++ "UN\377\26\27\23\362\0\0\0{\0\0\0e\0\0\0J\0\0\0""1\0\0\0\37\0\0\0\17\0" ++ "\0\0\7\0\0\0\2\210\0\0\0\0\35\0\0\0\1\0\0\0\4\0\0\0\13\0\0\0\22\0\0\0" ++ "\36\0\0\0-\0\0\0\77\0\0\0U\21\22\17\272y{m\377\215\221w\377\214\220v" ++ "\377\213\217v\377\212\216u\377\211\215t\377\211\215s\377\210\214s\377" ++ "\207\213r\377\206\212q\377\205\211q\377\204\210p\377\204\210o\377\203" ++ "\207o\377\202\206n\377\201\205m\377\200\204m\377\177\203l\377\177\203" ++ "k\377~\202k\377\225|\200i\377\14ak^\377VbY\377BKD\377\23\24\21\327\0" ++ "\0\0m\0\0\0Y\0\0\0B\0\0\0*\0\0\0\32\0\0\0\14\0\0\0\5\0\0\0\1\210\0\0" ++ "\0\0\22\0\0\0\1\0\0\0\3\0\0\0\7\0\0\0\20\0\0\0\30\0\0\0%\0\0\0""5\0\0" ++ "\0E\15\16\14\220Y[N\377\213\217v\377\212\216t\377\211\215s\377\210\214" ++ "s\377\210\214r\377\207\213q\377\206\212q\377\205\211p\377\202\204\210" ++ "o\377\7\203\207n\377\202\206m\377\201\205l\377\200\204l\377\177\203k" ++ "\377\177\203j\377~\202j\377\223|\200i\377\17z\177h\377x}g\377v{g\377" ++ "pvd\377VcZ\377VbY\3776>7\377\20\21\16\266\0\0\0]\0\0\0J\0\0\0""2\0\0" ++ "\0!\0\0\0\26\0\0\0\12\0\0\0\3\212\0\0\0\0\30\0\0\0\2\0\0\0\5\0\0\0\14" ++ "\0\0\0\22\0\0\0\35\0\0\0)\0\0\0""6\10\10\7Z13+\377\214\220x\377\210\214" ++ "s\377\207\213r\377\206\212q\377\205\211q\377\204\210p\377\204\210o\377" ++ "\203\207o\377\202\206n\377\201\205m\377\200\204m\377\177\203l\377\177" ++ "\203k\377~\202j\377}\201j\377\204|\200i\377\21z\177h\377x}g\377v{g\377" ++ "sye\377qxe\377ovd\377mtc\377krb\377hqa\377fo`\377dm_\377bk^\377_j]\377" ++ "]h\\\377[f\\\377Yd[\377VcZ\377\206VbY\377\11','\377\15\16\13\207\0\0" ++ "\0F\0\0\0""4\0\0\0%\0\0\0\32\0\0\0\16\0\0\0\7\0\0\0\2\212\0\0\0\0\34" ++ "\0\0\0\1\0\0\0\3\0\0\0\10\0\0\0\17\0\0\0\24\0\0\0\34\0\0\0&\0\0\0""1" ++ "\30\31\25\354hkX\377{\177h\377x|f\377uze\377rwc\377pvb\377lsa\377jq_" ++ "\377gn^\377el]\377bi[\377`hZ\377]eY\377ZdX\377XbW\377VaV\377T`V\377R" ++ "^U\377P]T\377\226P\\T\377\12MXQ\377\30\32\26\377\10\10\7M\0\0\0-\0\0" ++ "\0\"\0\0\0\32\0\0\0\21\0\0\0\12\0\0\0\3\0\0\0\1\213\0\0\0\0\11\0\0\0" ++ "\1\0\0\0\4\0\0\0\10\0\0\0\16\0\0\0\23\0\0\0\30\0\0\0\40\17\17\15N\26" ++ "\27\23\332\240\27\30\24\352\210\27\30\24\351\11\26\27\24\344\21\22\17" ++ "h\0\0\0!\0\0\0\36\0\0\0\30\0\0\0\20\0\0\0\11\0\0\0\5\0\0\0\1\215\0\0" ++ "\0\0\7\0\0\0\1\0\0\0\3\0\0\0\7\0\0\0\12\0\0\0\16\0\0\0\21\0\0\0\24\211" ++ "\0\0\0\25\234\0\0\0\24\202\0\0\0\23\205\0\0\0\22\5\0\0\0\16\0\0\0\14" ++ "\0\0\0\7\0\0\0\5\0\0\0\2\217\0\0\0\0\4\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0" ++ "\5\203\0\0\0\6\252\0\0\0\5\202\0\0\0\4\202\0\0\0\2\1\0\0\0\1\223\0\0" ++ "\0\0\216\0\0\0\1\254\0\0\0\0"}; ++ ++ ++/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ ++ ++static const guint8 stock_documents_48[] = ++{ "" ++ /* Pixbuf magic (0x47646b50) */ ++ "GdkP" ++ /* length: header (24) + pixel_data (3237) */ ++ "\0\0\14\275" ++ /* pixdata_type (0x2010002) */ ++ "\2\1\0\2" ++ /* rowstride (192) */ ++ "\0\0\0\300" ++ /* width (48) */ ++ "\0\0\0""0" ++ /* height (48) */ ++ "\0\0\0""0" ++ /* pixel_data: */ ++ "\377\0\0\0\0\377\0\0\0\0\363\0\0\0\0\1XXX\2\240\0\0\0\0\1\0\0\0Y\213" ++ "\0\0\0\377\7\0\0\0\366\0\0\0\362\16\16\16\377(((\377aaa\333\0\0\0\10" ++ "\0\0\0\1\235\0\0\0\0\3\0\0\0\377\323\323\323\377\366\366\366\377\210" ++ "\377\377\377\377\1\371\371\371\377\202\371\371\370\377\6\347\347\347" ++ "\377\344\344\344\377\315\315\315\377\37\37\37\344\0\0\0\24\0\0\0\2\234" ++ "\0\0\0\0\2\0\0\0\377\366\366\366\377\212\377\377\377\377\11\371\371\370" ++ "\377\357\357\356\377\257\257\256\377\351\351\351\377\377\377\377\377" ++ "\263\263\263\377888\375\0\0\0\16\0\0\0\2\233\0\0\0\0\1\0\0\0\377\202" ++ "\377\377\377\377\205yyy\377\2xxx\377yyy\377\202xxx\377\12\371\371\370" ++ "\377\356\356\356\377\244\244\243\377\360\360\360\377\377\377\377\377" ++ "\364\364\364\377\253\253\253\377\5\5\5\231\0\0\0\13\0\0\0\1\232\0\0\0" ++ "\0\1\0\0\0\377\205\377\377\377\377\11\376\376\376\377\375\375\375\377" ++ "\374\374\373\377\375\375\375\377\374\374\373\377\373\373\373\377\371" ++ "\371\370\377\362\362\362\377\236\236\236\377\204\0\0\0\377\3\0\0\0\330" ++ "\0\0\0\33\0\0\0\5\225\0\0\0\0\1\0\0\0Y\205\0\0\0\377\202\377\377\377" ++ "\377\1yyy\377\202xxx\377\202www\377\16vvv\377www\377vvv\377vvu\377\371" ++ "\371\370\377\364\364\364\377\324\324\323\377\271\267\266\377\203\203" ++ "\201\377\204\203\201\377jgc\377\0\0\0\343\0\0\0&\0\0\0\7\225\0\0\0\0" ++ "\3\0\0\0\377\323\323\323\377\366\366\366\377\202\377\377\377\377\26\0" ++ "\0\0\377\377\377\377\377\376\376\376\377\375\375\375\377\374\374\373" ++ "\377\373\373\373\377\372\372\371\377\371\371\370\377\370\370\367\377" ++ "\371\371\370\377\370\370\367\377\370\367\366\377\371\371\370\377\363" ++ "\362\361\377\340\340\337\377\334\332\330\377\312\312\310\377\266\266" ++ "\264\377rpl\377\0\0\0\356\0\0\0)\0\0\0\10\225\0\0\0\0\2\0\0\0\377\366" ++ "\366\366\377\203\377\377\377\377\16\0\0\0\377\377\377\377\377\374\374" ++ "\373\377www\377vvv\377vvu\377uuu\377uut\377utt\377uut\377utt\377tts\377" ++ "\364\363\362\377\361\360\357\377\202\360\357\355\377\6\345\344\342\377" ++ "\304\303\300\377\201}t\377\0\0\0\377\0\0\0,\0\0\0\11\225\0\0\0\0\1\0" ++ "\0\0\377\202\377\377\377\377\202yyy\377\13\0\0\0\377\377\377\377\377" ++ "\372\372\371\377\371\371\370\377\370\370\367\377\370\367\366\377\367" ++ "\366\365\377\366\366\364\377\365\364\363\377\366\366\364\377\365\364" ++ "\363\377\204\364\363\362\377\1\353\352\350\377\202\341\337\334\377\4" ++ "\213\206}\377\0\0\0\377\0\0\0.\0\0\0\11\220\0\0\0\0\1\0\0\0Y\205\0\0" ++ "\0\377\204\377\377\377\377\7\0\0\0\377\377\377\377\377\370\370\367\377" ++ "uut\377utt\377tts\377tss\377\204ssr\377\2rrq\377qqp\377\202ppo\377\7" ++ "llk\377jih\377\341\337\334\377\244\236\223\377\0\0\0\377\0\0\0/\0\0\0" ++ "\11\220\0\0\0\0\3\0\0\0\377\323\323\323\377\366\366\366\377\202\377\377" ++ "\377\377\1\0\0\0\377\202\377\377\377\377\6yyy\377xxx\377\0\0\0\377\377" ++ "\377\377\377\366\365\364\377\365\365\363\377\202\364\363\362\377\20\363" ++ "\363\361\377\362\362\360\377\361\361\357\377\362\362\360\377\361\361" ++ "\357\377\361\360\356\377\356\355\353\377\354\353\351\377\347\346\343" ++ "\377\342\341\337\377\344\343\340\377\341\337\334\377\244\236\223\377" ++ "\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\2\0\0\0\377\366\366\366\377\203" ++ "\377\377\377\377\12\0\0\0\377\377\377\377\377\376\376\376\377\375\375" ++ "\375\377\374\374\373\377\0\0\0\377\377\377\377\377\364\363\362\377sr" ++ "r\377rrq\377\202qqp\377\17rqp\377qqp\377rqp\377qqp\377qpo\377oon\377" ++ "nml\377llj\377lkj\377kji\377\341\337\334\377\244\236\223\377\0\0\0\377" ++ "\0\0\0/\0\0\0\11\220\0\0\0\0\1\0\0\0\377\202\377\377\377\377\202yyy\377" ++ "\33\0\0\0\377\377\377\377\377\374\374\373\377www\377vvv\377\0\0\0\377" ++ "\377\377\377\377\364\363\362\377\363\362\361\377\362\362\360\377\360" ++ "\360\356\377\357\357\355\377\361\360\356\377\360\357\355\377\361\360" ++ "\356\377\360\357\355\377\357\356\354\377\354\353\351\377\350\347\345" ++ "\377\345\344\341\377\344\343\340\377\342\341\336\377\341\337\334\377" ++ "\244\236\223\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\1\0\0\0\377\204" ++ "\377\377\377\377\10\0\0\0\377\377\377\377\377\372\372\371\377\371\371" ++ "\370\377\370\370\367\377\0\0\0\377\377\377\377\377\360\360\356\377\202" ++ "\230\250\265\377\4\230\250\264\377\230\247\264\377\227\247\263\377\355" ++ "\354\352\377\202poo\377\13oon\377nml\377mmk\377kki\377kjh\377jjh\377" ++ "\340\337\333\377\241\234\220\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0" ++ "\0\1\0\0\0\377\202\377\377\377\377\21yyy\377xxx\377\0\0\0\377\377\377" ++ "\377\377\370\370\367\377uut\377utt\377\0\0\0\377\377\377\377\377\355" ++ "\355\353\377\227\247\263\377\276\274\307\377\355\337\261\377\227\246" ++ "\263\377\226\246\262\377\351\350\345\377\353\352\350\377\202\351\350" ++ "\345\377\12\345\344\341\377\346\344\341\377\343\342\336\377\337\336\332" ++ "\377\336\335\331\377\335\334\330\377\241\233\220\377\0\0\0\377\0\0\0" ++ "/\0\0\0\11\220\0\0\0\0\17\0\0\0\377\377\377\377\377\376\376\376\377\375" ++ "\375\375\377\374\374\373\377\0\0\0\377\377\377\377\377\366\365\364\377" ++ "\365\365\363\377\364\363\362\377\0\0\0\377\377\377\377\377\353\352\350" ++ "\377\225\245\261\377\274\272\305\377\202\353\336\257\377\17\225\244\261" ++ "\377\347\346\343\377nml\377mmk\377mlk\377lki\377kki\377jig\377ihf\377" ++ "hhf\377\334\333\327\377\241\233\220\377\0\0\0\377\0\0\0/\0\0\0\11\220" ++ "\0\0\0\0\40\0\0\0\377\377\377\377\377\374\374\373\377www\377vvv\377\0" ++ "\0\0\377\377\377\377\377\364\363\362\377srr\377rrq\377\0\0\0\377\377" ++ "\377\377\377\347\346\343\377\224\243\260\377\273\271\304\377\352\335" ++ "\256\377\351\334\256\377\224\243\257\377\345\344\340\377\346\344\341" ++ "\377\345\344\340\377\344\343\337\377\342\341\335\377\340\337\333\377" ++ "\336\335\331\377\334\333\327\377\333\331\325\377\331\327\323\377\237" ++ "\231\215\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\16\0\0\0\377\377\377" ++ "\377\377\372\372\371\377\371\371\370\377\370\370\367\377\0\0\0\377\377" ++ "\377\377\377\364\363\362\377\363\362\361\377\362\362\360\377\0\0\0\377" ++ "\371\371\371\377\344\343\340\377\223\242\256\377\202\272\267\302\377" ++ "\5\272\270\302\377\222\241\255\377\343\342\336\377kjh\377kki\377\202" ++ "jjh\377\11ihf\377hgf\377hge\377ffd\377\330\326\322\377\236\230\215\377" ++ "\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\10\0\0\0\377\377\377\377\377\370" ++ "\370\367\377uut\377utt\377\0\0\0\377\377\377\377\377\360\360\356\377" ++ "\202qqp\377\26\0\0\0\377\355\355\355\377\341\340\335\377\341\337\334" ++ "\377\341\340\334\377\340\337\333\377\342\341\335\377\340\337\333\377" ++ "\341\340\334\377\340\337\333\377\341\340\334\377\337\336\332\377\340" ++ "\336\332\377\335\333\327\377\334\332\326\377\331\327\323\377\330\326" ++ "\321\377\327\325\321\377\235\227\213\377\0\0\0\377\0\0\0/\0\0\0\11\220" ++ "\0\0\0\0\25\0\0\0\377\377\377\377\377\366\365\364\377\365\365\363\377" ++ "\364\363\362\377\0\0\0\377\377\377\377\377\355\355\353\377\355\354\352" ++ "\377\354\353\351\377\0\0\0\377\321\321\321\377\341\337\333\377\340\336" ++ "\332\377\337\336\332\377\336\335\331\377\340\337\333\377\336\335\331" ++ "\377\340\336\332\377\336\335\331\377\340\336\332\377\202\336\334\330" ++ "\377\202\334\332\326\377\7\330\326\322\377\327\326\321\377\325\323\316" ++ "\377\233\225\212\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\10\0\0\0\377" ++ "\377\377\377\377\364\363\362\377srr\377rrq\377\0\0\0\377\377\377\377" ++ "\377\353\352\350\377\202nnm\377\15\0\0\0\377\231\230\221\377\243\236" ++ "\222\377\244\236\223\377\243\235\222\377\243\235\221\377\243\235\222" ++ "\377\241\234\220\377\242\234\220\377\241\234\220\377\242\234\220\377" ++ "\241\233\217\377\241\233\220\377\202\237\231\215\377\202\235\227\214" ++ "\377\5\233\226\212\377gcY\377\0\0\0\377\0\0\0.\0\0\0\11\220\0\0\0\0\10" ++ "\0\0\0\377\377\377\377\377\364\363\362\377\363\362\361\377\362\362\360" ++ "\377\0\0\0\377\377\377\377\377\347\346\343\377\202\346\345\342\377\1" ++ "\221\220\216\377\222\0\0\0\377\3\0\0\0}\0\0\0*\0\0\0\10\220\0\0\0\0\3" ++ "\0\0\0\377\377\377\377\377\360\360\356\377\202\357\357\355\377\3\0\0" ++ "\0\377\371\371\371\377\344\343\340\377\202kki\377\6jig\377ba_\377YXV" ++ "\377WWU\377WVT\377WWU\377\202VVT\377\11\265\264\261\377\264\262\257\377" ++ "\263\261\256\377\261\257\254\377\260\256\253\377\200{s\377\0\0\0\377" ++ "\0\0\0U\0\0\0""6\202\0\0\0/\3\0\0\0*\0\0\0\27\0\0\0\4\220\0\0\0\0\33" ++ "\0\0\0\377\377\377\377\377\355\355\353\377poo\377oon\377\0\0\0\377\355" ++ "\355\355\377\341\340\335\377\341\337\334\377\341\340\334\377\340\337" ++ "\333\377\336\335\331\377\330\330\324\377\331\330\324\377\330\327\323" ++ "\377\331\330\324\377\327\326\322\377\330\326\322\377\325\323\317\377" ++ "\324\322\316\377\321\317\313\377\320\316\311\377\317\315\311\377\227" ++ "\221\206\377\0\0\0\377\0\0\0""6\0\0\0\22\202\0\0\0\11\2\0\0\0\10\0\0" ++ "\0\4\221\0\0\0\0\3\0\0\0\377\377\377\377\377\353\352\350\377\202\351" ++ "\350\346\377\13\0\0\0\377\321\321\321\377\341\337\333\377\340\336\332" ++ "\377\337\336\332\377\336\335\331\377\340\337\333\377\336\335\331\377" ++ "\340\336\332\377\336\335\331\377\340\336\332\377\202\336\334\330\377" ++ "\202\334\332\326\377\7\330\326\322\377\327\326\321\377\325\323\316\377" ++ "\233\225\212\377\0\0\0\377\0\0\0/\0\0\0\11\225\0\0\0\0\3\0\0\0\377\377" ++ "\377\377\377\347\346\343\377\202mlk\377\15\0\0\0\377\231\230\221\377" ++ "\243\236\222\377\244\236\223\377\243\235\222\377\243\235\221\377\243" ++ "\235\222\377\241\234\220\377\242\234\220\377\241\234\220\377\242\234" ++ "\220\377\241\233\217\377\241\233\220\377\202\237\231\215\377\202\235" ++ "\227\214\377\5\233\226\212\377gcY\377\0\0\0\377\0\0\0.\0\0\0\11\225\0" ++ "\0\0\0\6\0\0\0\377\371\371\371\377\344\343\340\377\343\342\337\377\343" ++ "\342\336\377\217\216\214\377\222\0\0\0\377\3\0\0\0}\0\0\0*\0\0\0\10\225" ++ "\0\0\0\0\26\0\0\0\377\355\355\355\377\341\340\335\377\341\337\334\377" ++ "\341\340\334\377\334\333\327\377\315\314\311\377\273\272\266\377\267" ++ "\266\263\377\266\265\262\377\267\266\263\377\265\265\261\377\266\265" ++ "\261\377\264\262\257\377\263\261\256\377\261\257\254\377\260\256\252" ++ "\377\257\255\252\377\200{q\377\0\0\0\377\0\0\0U\0\0\0""6\202\0\0\0/\3" ++ "\0\0\0*\0\0\0\27\0\0\0\4\225\0\0\0\0\13\0\0\0\377\321\321\321\377\341" ++ "\337\333\377\340\336\332\377\337\336\332\377\336\335\331\377\334\333" ++ "\327\377\327\326\322\377\330\326\322\377\326\325\321\377\330\326\322" ++ "\377\202\326\324\320\377\202\324\322\316\377\7\320\316\312\377\317\316" ++ "\311\377\315\313\306\377\225\217\205\377\0\0\0\377\0\0\0""6\0\0\0\22" ++ "\202\0\0\0\11\2\0\0\0\10\0\0\0\4\226\0\0\0\0\15\0\0\0\377\231\230\221" ++ "\377\243\236\222\377\244\236\223\377\243\235\222\377\243\235\221\377" ++ "\243\235\222\377\241\234\220\377\242\234\220\377\241\234\220\377\242" ++ "\234\220\377\241\233\217\377\241\233\220\377\202\237\231\215\377\202" ++ "\235\227\214\377\5\233\226\212\377gcY\377\0\0\0\377\0\0\0.\0\0\0\11\232" ++ "\0\0\0\0\1\0\0\0^\222\0\0\0\377\3\0\0\0}\0\0\0*\0\0\0\10\232\0\0\0\0" ++ "\3\0\0\0\4\0\0\0\27\0\0\0*\220\0\0\0/\3\0\0\0*\0\0\0\27\0\0\0\4\233\0" ++ "\0\0\0\2\0\0\0\4\0\0\0\10\220\0\0\0\11\2\0\0\0\10\0\0\0\4\377\0\0\0\0" ++ "\377\0\0\0\0\345\0\0\0\0"}; ++ ++ --- gtk+2.0-2.22.0.orig/debian/patches/001_static-linking-dont-query-immodules.patch +++ gtk+2.0-2.22.0/debian/patches/001_static-linking-dont-query-immodules.patch @@ -0,0 +1,53 @@ +Description: Don't query immodules for the local tree when cross-compiling or + when --disable-shared was given +Bug: http://bugzilla.gnome.org/show_bug.cgi?id=346531 + +Index: gtk+2.0-2.21.5/configure.in +=================================================================== +--- gtk+2.0-2.21.5.orig/configure.in 2010-07-12 18:23:54.000000000 +0200 ++++ gtk+2.0-2.21.5/configure.in 2010-07-22 17:53:08.402066616 +0200 +@@ -150,6 +150,7 @@ + dnl Initialize libtool + AC_PROG_CC + AM_DISABLE_STATIC ++AM_CONDITIONAL([ENABLE_STATIC], [test "$enable_static" = yes]) + + dnl + dnl Check for a working C++ compiler, but do not bail out, if none is found. +Index: gtk+2.0-2.21.5/modules/input/Makefile.am +=================================================================== +--- gtk+2.0-2.21.5.orig/modules/input/Makefile.am 2010-07-12 18:23:45.000000000 +0200 ++++ gtk+2.0-2.21.5/modules/input/Makefile.am 2010-07-22 17:53:08.406083537 +0200 +@@ -176,8 +176,12 @@ + if CROSS_COMPILING + RUN_QUERY_IMMODULES_TEST=false + else ++if ENABLE_STATIC ++RUN_QUERY_IMMODULES_TEST=false ++else + RUN_QUERY_IMMODULES_TEST=test -z "$(DESTDIR)" + endif ++endif + + # Running this if cross compiling or if DESTDIR is set is going to + # not work at all, so skip it. +@@ -238,7 +242,18 @@ + included-modules: $(noinst_LTLIBRARIES) + + gtk.immodules: Makefile.am $(module_LTLIBRARIES) +- $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules ++ @if $(RUN_QUERY_IMMODULES_TEST) ; then \ ++ echo "$(top_builddir)/gtk/gtk-query-immodules-2.0 > gtk.immodules" ; \ ++ $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > gtk.immodules; \ ++ else \ ++ echo "***" ; \ ++ echo "*** Warning: gtk.immodules not built" ; \ ++ echo "***" ; \ ++ echo "*** Generate this file manually on host" ; \ ++ echo "*** system using gtk-query-immodules-2.0" ; \ ++ echo "***" ; \ ++ touch gtk.immodules; \ ++ fi + + CLEANFILES = gtk.immodules + --- gtk+2.0-2.22.0.orig/debian/patches/060_ignore-random-icons.patch +++ gtk+2.0-2.22.0/debian/patches/060_ignore-random-icons.patch @@ -0,0 +1,13 @@ +Index: gtk+2.0-2.21.5/gtk/updateiconcache.c +=================================================================== +--- gtk+2.0-2.21.5.orig/gtk/updateiconcache.c 2010-05-08 06:39:07.000000000 +0200 ++++ gtk+2.0-2.21.5/gtk/updateiconcache.c 2010-07-22 17:57:21.973055310 +0200 +@@ -660,7 +660,7 @@ + directories = g_list_append (directories, g_strdup (subdir)); + } + else +- dir_index = 0xffff; ++ continue; + } + + image = g_new0 (Image, 1); --- gtk+2.0-2.22.0.orig/debian/patches/071_no_offscreen_widgets_grabbing.patch +++ gtk+2.0-2.22.0/debian/patches/071_no_offscreen_widgets_grabbing.patch @@ -0,0 +1,24 @@ +# Description: don't let offscreen widget do grabbing +# Upstream: https://bugzilla.gnome.org/show_bug.cgi?id=607668 +# Ubuntu: https://bugs.launchpad.net/bugs/512427 +Index: gtk+-2.21.3/gtk/gtkmain.c +=================================================================== +--- gtk+-2.21.3.orig/gtk/gtkmain.c 2010-06-27 14:33:46.000000000 +1000 ++++ gtk+-2.21.3/gtk/gtkmain.c 2010-06-29 12:43:04.255943000 +1000 +@@ -1842,9 +1842,14 @@ + { + GtkWindowGroup *group; + GtkWidget *old_grab_widget; +- ++ GtkWidget *toplevel; ++ + g_return_if_fail (widget != NULL); +- ++ ++ toplevel = gtk_widget_get_toplevel (widget); ++ if (toplevel && gdk_window_get_window_type (toplevel->window) == GDK_WINDOW_OFFSCREEN) ++ return; ++ + if (!gtk_widget_has_grab (widget) && gtk_widget_is_sensitive (widget)) + { + _gtk_widget_set_has_grab (widget, TRUE);