debian/0000775000000000000000000000000012312607376007177 5ustar debian/libgtk2.0-0.preinst0000664000000000000000000000044712312607374012441 0ustar #!/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# debian/gtk2.0-examples.install.in0000664000000000000000000000022112312607374014006 0ustar # 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@ debian/libgail-common.install.in0000664000000000000000000000012712312607374014063 0ustar debian/install/shared/@LIBDIR@/gtk-@APIVER@/modules/*.so @LIBDIR@/gtk-@APIVER@/modules debian/libgail-doc.doc-base.gail-reference0000664000000000000000000000047112312607374015613 0ustar 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 debian/gtk2.0-examples.examples0000664000000000000000000000003512312607374013554 0ustar # from the source examples/* debian/README.Debian0000664000000000000000000000374312312607374011245 0ustar 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 . debian/libgail-dev.install.in0000664000000000000000000000034112312607374013347 0ustar debian/install/shared/usr/include/gail* /usr/include debian/install/shared/@LIBDIR@/libgail*.so @LIBDIR@ debian/install/static/@LIBDIR@/libgail*.a @LIBDIR@ debian/install/shared/@LIBDIR@/pkgconfig/gail*.pc @LIBDIR@/pkgconfig debian/gtk2-engines-pixbuf.install.in0000664000000000000000000000015412312607374014762 0ustar # from the shared flavor debian/install/shared/@MODULES_BASE_PATH@/engines/*.so @MODULES_BASE_PATH@/engines debian/libgtk2.0-common.preinst.in0000664000000000000000000000016512312607374014174 0ustar #!/bin/sh set -e if [ -L /usr/share/doc/@COMMON_PKG@ ]; then rm -f /usr/share/doc/@COMMON_PKG@ fi #DEBHELPER# debian/libgtk2.0-0.triggers.in0000664000000000000000000000014412312607374013202 0ustar interest-noawait /@MODULES_BASE_PATH@/immodules interest-noawait /@OLD_MODULES_BASE_PATH@/immodules debian/libgtk2.0-0.links.in0000664000000000000000000000044612312607374012501 0ustar usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@SHARED_PKG@/changelog.gz 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 usr/share/doc/@COMMON_PKG@/AUTHORS usr/share/doc/@SHARED_PKG@/AUTHORS debian/gruik2devhelp.awk0000664000000000000000000000222512312607374012455 0ustar #! /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>" } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-0.install.in�����������������������������������������������������������������������0000664�0000000�0000000�00000000717�12312607374�013030� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# from the shared flavor 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@ �������������������������������������������������debian/libgtk2.0-dev.preinst������������������������������������������������������������������������0000664�0000000�0000000�00000000444�12312607374�013055� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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# ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/copyright������������������������������������������������������������������������������������0000664�0000000�0000000�00000030026�12312607374�011131� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������This package was debianized by Akira TAGOH <tagoh@debian.org> on Wed, 13 Mar 2002 00:07:25 +0900. It was downloaded from <http://ftp.gnome.org/pub/gnome/sources/gtk+/>. Copyright Holders: Please do not mail any of the authors listed here asking questions about this version of GTK+. Copyright: Copyright: 1985, 1986, 1987, 1988, 1998 The Open Group Copyright: 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts Copyright: 1987 by Digital Equipment Corporation, Maynard, Massachusetts Copyright: 1991-1999 Free Software Foundation, Inc Copyright: 1991-1998 by LCS/Telegraphics Copyright: 1992-1994 The Regents of the University of California Copyright: 1993, Robert Nation Copyright: 1994-2007 Sun Microsystems, Inc Copyright: 1995, 1996, 1997, 1998 by Steffen Beyer Copyright: 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald Copyright: 1995-2007 Peter Mattis, Spencer Kimball Copyright: 1997-1998 Jay Painter Copyright: 1997-2009 The GTK+ Team Copyright: 1997 David Mosberger Copyright: 1997-1998 Owen Taylor Copyright: 1997 Paolo Molaro Copyright: 1997-2010 Red Hat, Inc Copyright: 1998-2002 James Henstridge Copyright: 1998-2006 Tim Janik Copyright: 1998-2007 Tor Lillqvist Copyright: 1998 Cesar Miquel, Shawn T. Amundson and Mattias Groenlund Copyright: 1998 David Abilleira Freijeiro Copyright: 1998 Elliot Lee Copyright: 1998 Lars Hamann and Stefan Jeske Copyright: 1998 Shawn T. Amundson Copyright: 1999 Mark Crichton, Larry Ewing Copyright: 1999 Michael Zucchi Copyright: 2000,2001 Jonathan Blandford Copyright: 2000-2004 Hans Breuer Copyright: 2000 Keith Packard Copyright: 2000 Jonathan Blandford Copyright: 2000 SuSE Linux Ltd Copyright: 2000 Tony Gale Copyright: 2001, 2002 Anders Carlsson Copyright: 2001-2002 convergence integrated media GmbH Copyright: 2001-2009 Kristian Rietveld Copyright: 2001-2009 Hans Breuer Copyright: 2001 Anders Carlsson Copyright: 2001 Archaeopteryx Software Inc Copyright: 2001 CodeFactory AB Copyright: 2001 Havoc Pennington Copyright: 2001 Stefan Ondrejicka Copyright: 2002, 2004 Anders Carlsson Copyright: 2002-2004 convergence GmbH Copyright: 2002 Anders Carlsson Copyright: 2002 convergence GmbH Copyright: 2002 James Henstridge Copyright: 2002 Naba Kumar Copyright: 2003, 2004 Dom Lachowicz Copyright: 2003-2004 Kazuki IWAMOTO Copyright: 2003-2009 Matthias Clasen Copyright: 2003, 2004 Raymond Penners Copyright: 2003, 2004 Soeren Sandmann Copyright: 2003 Alex Graveley Copyright: 2003 Apple Computer, Inc. All rights reserved Copyright: 2003 James Henstridge Copyright: 2003 Kazuki IWAMOTO Copyright: 2003 Ricardo Fernandez Pascual Copyright: 2003 Soeren Sandmann Copyright: 2003 Takuro Ashie Copyright: 2004-2006 Christian Hammond Copyright: 2004 Anders Carlsson Copyright: 2004 James M. Cape Copyright: 2004 Lorenzo Gil Sanchez Copyright: 2004 Morten Welinder Copyright: 2004 Paolo Borelli Copyright: 2005, 2006, 2007, 2008, 2009 GNOME Foundation Copyright: 2005-2007, Emmanuele Bassi Copyright: 2005-2007 Vincent Untz Copyright: 2005-2008 Imendio AB Copyright: 2005 Jamie McCracken Copyright: 2005 Mr Jamie McCracken Copyright: 2005-2008 Novell, Inc Copyright: 2005 - Paolo Maggi Copyright: 2005 Ronald S. Bultje Copyright: 2006, 2007, 2008 Christian Persch Copyright: 2006-2007 Async Open Source Copyright: 2006-2009 Openismus GmbH Copyright: 2006 Alexander Larsson Copyright: 2006 Hong Jen Yee (PCMan) Copyright: 2006-2008 Jan Arne Petersen Copyright: 2006 John (J5) Palmieri Copyright: 2004-2010 Nokia Corporation Copyright: 2005-2008 Carlos Garnacho Copyright: 2007-2009 Cody Russell Copyright: 2007 John Stowers, Neil Jagdish Patel Copyright: 2007 Xan López Copyright: 2008 Christian Kellner Copyright: 2008 Cody Russell Copyright: 2008 Jaap Haitsma Copyright: 2008 Richard Hughes Copyright: 2008 Tristan Van Berkom Copyright: 2009 Bastien Nocera Copyright: 2009 David Zeuthen Copyright: 2009 Ghee Teo Copyright: 2009 Stefan Walter Copyright: 2010 Christian Dywan Copyright: Christian Kellner Copyright: Federico Mena Original Authors ---------------- Peter Mattis <petm@xcf.berkeley.edu> Spencer Kimball <spencer@xcf.berkeley.edu> Josh MacDonald <jmacd@xcf.berkeley.edu> The GTK+ Team (in alphabetical order) ------------------------------------- Shawn T. Amundson <amundson@gtk.org> Jerome Bolliet <bolliet@gtk.org> Damon Chaplin <damon@gtk.org> Tony Gale <gale@gtk.org> Jeff Garzik <jgarzik@gtk.org> Lars Hamann <lars@gtk.org> Raja R Harinath <harinath@gtk.org> Carsten Haitzler <raster@gtk.org> Tim Janik <timj@gtk.org> Stefan Jeske <stefan@gtk.org> Elliot Lee <sopwith@gtk.org> Raph Levien <raph@gtk.org> Ian Main <imain@gtk.org> Federico Mena <quartic@gtk.org> Paolo Molaro <lupus@gtk.org> Jay Painter <jpaint@gtk.org> Manish Singh <manish@gtk.org> Owen Taylor <otaylor@gtk.org> 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: tests/testnouiprint.c tests/testcalendar.c examples/calendar/calendar.c This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA gtk/gtktoolitemgroup.h gtk/gtktoolitemgroup.c gtk/gtktoolpaletteprivate.h gtk/gtktoolpalette.h gtk/gtkcomboboxtext.h gtk/gtktoolpalette.c 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.1 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 tests/testbbox.c This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation. 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 Files: gtk/gtktexttag.*, gtk/gtktextsegment.c, gtk/gtktextchild.c, gtk/gtktextchildprivate.h, gtk/gtktextbtree.c This software is copyrighted by the Regents of the University of California, Sun Microsystems, Inc., and other parties. The following terms apply to all files associated with the software unless explicitly disclaimed in individual files. . The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and that this notice is included verbatim in any distributions. No written agreement, license, or royalty fee is required for any of the authorized uses. Modifications to this software may be copyrighted by their authors and need not follow the licensing terms described here, provided that the new terms are clearly indicated on the first page of each file where they apply. . IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. . THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. . GOVERNMENT USE: If you are acquiring this software on behalf of the U.S. government, the Government shall have only "Restricted Rights" in the software and related documentation as defined in the Federal Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are acquiring the software on behalf of the Department of Defense, the software shall be classified as "Commercial Computer Software" and the Government shall have only "Restricted Rights" as defined in Clause 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the authors grant the U.S. Government and others acting in its behalf permission to use and distribute the software in accordance with the terms specified in this license. . or . 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. gdk/win32/wintab.h gdk/win32/pktdef.h The text and information contained in this file may be freely used, copied, or distributed without compensation or licensing restrictions. Files: m4/introspection.m4 License: other This file is free software; the author(s) gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. Everything else: 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. ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-doc.doc-base.gtk-faq���������������������������������������������������������������0000664�0000000�0000000�00000000736�12312607374�014372� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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/index.html Files: /usr/share/doc/libgtk2.0-doc/faq/*.html ����������������������������������debian/libgtk2.0-doc.install.in���������������������������������������������������������������������0000664�0000000�0000000�00000000603�12312607374�013430� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# from Debian debian/gtk-faq.devhelp usr/share/doc/@DOC_PKG@/faq debian/gtk-tutorial.devhelp usr/share/doc/@DOC_PKG@/tutorial # from the source docs/reference/gtk/html/* usr/share/doc/@DOC_PKG@/gtk2 docs/reference/gdk/html/* usr/share/doc/@DOC_PKG@/gdk2 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@ �����������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-bin.manpages�����������������������������������������������������������������������0000664�0000000�0000000�00000000061�12312607374�013151� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/gtk-options.7 debian/update-icon-caches.8 �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/changelog������������������������������������������������������������������������������������0000664�0000000�0000000�00000445557�12312607374�011073� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������gtk+2.0 (2.24.23-0ubuntu1) trusty; urgency=medium * New upstream version * debian/patches/git_print_default_location.patch: - Print to a file in the current directory by default -- Sebastien Bacher <seb128@ubuntu.com> Thu, 20 Mar 2014 16:53:00 +0100 gtk+2.0 (2.24.22-1ubuntu2) trusty; urgency=medium * debian/patches/backport_search_printer_location.patch - The list of printers should be searchable/sortable (lp: #1188571) -- Ritesh Khadgaray <ritesh@canonical.com> Thu, 06 Feb 2014 11:39:01 +0000 gtk+2.0 (2.24.22-1ubuntu1) trusty; urgency=low * Merge with Debian, remaining changes: + debian/libgtk2.0-0.symbols: - Add Ubuntu specific symbols + 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/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/090_logging_file_saves.patch: - improve the logging of saved files + 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. + debian/patches/093_gtk3_gtkimage_fallbacks_use.patch: - Backported gtk3 patch to add a "use-fallback" property to GtkImage, using it "icon-name and GIcon type of GtkImages can use automatic fallback names.", it will be useful for the indicator stack + debian/patches/095_git_menus_scrolling.patch: - backported gtk3 commit to fix menu scrolling issues + debian/patches/096_git_gtkprintsettings.patch: - upstream git commit backported from the gtk3 serie, don't ignore the gtkprintsettings resolution settings + debian/patches/097_statusicon_image_fallback.patch: Make GtkStatusIcon images use fallbacks by default if the property is available. + debian/patches/098_multiarch_module_path.patch: - Fallback to the pre-multiarch directory for compatibility + debian/patches/099_printer_filename_fix.patch - Fix to the print dialog for print to file, make sure a non-hidden filename is the default (LP: #488857) + debian/patches/100_overlay_scrollbar_loading.patch - support for dynamically loading overlay scrollbars + debian/patches/gtk-shell-shows-menubar.patch: - list gtk-shell-shows-menubar setting, that's required to have the local menubars hidding under unity in favor of the unity ones, -- Iain Lane <iain.lane@canonical.com> Fri, 22 Nov 2013 14:19:02 +0000 gtk+2.0 (2.24.22-1) unstable; urgency=low * New upstream release. -- Michael Biebl <biebl@debian.org> Tue, 22 Oct 2013 23:33:46 +0200 gtk+2.0 (2.24.21-1ubuntu1) trusty; urgency=low * Merge with Debian, remaining changes: + debian/libgtk2.0-0.symbols: - Add Ubuntu specific symbols + 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/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/090_logging_file_saves.patch: - improve the logging of saved files + 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. + debian/patches/093_gtk3_gtkimage_fallbacks_use.patch: - Backported gtk3 patch to add a "use-fallback" property to GtkImage, using it "icon-name and GIcon type of GtkImages can use automatic fallback names.", it will be useful for the indicator stack + debian/patches/095_git_menus_scrolling.patch: - backported gtk3 commit to fix menu scrolling issues + debian/patches/096_git_gtkprintsettings.patch: - upstream git commit backported from the gtk3 serie, don't ignore the gtkprintsettings resolution settings + debian/patches/097_statusicon_image_fallback.patch: Make GtkStatusIcon images use fallbacks by default if the property is available. + debian/patches/098_multiarch_module_path.patch: - Fallback to the pre-multiarch directory for compatibility + debian/patches/099_printer_filename_fix.patch - Fix to the print dialog for print to file, make sure a non-hidden filename is the default (LP: #488857) + debian/patches/100_overlay_scrollbar_loading.patch - support for dynamically loading overlay scrollbars * debian/patches/0001-Actually-look-in-usr-share-gtk-2.0-for-default-rc-fi.patch: Check in the right directory for rc files. -- Iain Lane <iain.lane@canonical.com> Mon, 21 Oct 2013 17:08:29 +0100 gtk+2.0 (2.24.21-1) unstable; urgency=low * New upstream release. * Use the official field for udebs: Package-Type. * Update 001_static-linking-dont-query-immodules.patch, follow upstream and use immodules.cache instead of gtk.immodules. * Install gtk-doc API documentation for gtk and gdk to the correct location so it can be found by devhelp. Closes: #718360 -- Michael Biebl <biebl@debian.org> Sat, 21 Sep 2013 23:37:03 +0200 gtk+2.0 (2.24.20-1ubuntu1) saucy; urgency=low * Merge with Debian (LP: #1198841), remaining changes: + debian/libgtk2.0-0.symbols: - Add Ubuntu specific symbols + 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/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/090_logging_file_saves.patch: - improve the logging of saved files + 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. + debian/patches/093_gtk3_gtkimage_fallbacks_use.patch: - Backported gtk3 patch to add a "use-fallback" property to GtkImage, using it "icon-name and GIcon type of GtkImages can use automatic fallback names.", it will be useful for the indicator stack + debian/patches/095_git_menus_scrolling.patch: - backported gtk3 commit to fix menu scrolling issues + debian/patches/096_git_gtkprintsettings.patch: - upstream git commit backported from the gtk3 serie, don't ignore the gtkprintsettings resolution settings + debian/patches/097_statusicon_image_fallback.patch: Make GtkStatusIcon images use fallbacks by default if the property is available. + debian/patches/098_multiarch_module_path.patch: - Fallback to the pre-multiarch directory for compatibility + debian/patches/099_printer_filename_fix.patch - Fix to the print dialog for print to file, make sure a non-hidden filename is the default (LP: #488857) + debian/patches/100_overlay_scrollbar_loading.patch - support for dynamically loading overlay scrollbars * Drop the unused support for an 'opt' flavour which was a delta over Debian as they removed it some time ago, and was commented out anyway. -- Iain Lane <iain.lane@canonical.com> Mon, 08 Jul 2013 11:42:51 +0100 gtk+2.0 (2.24.20-1) unstable; urgency=low * New upstream release. * Remove debian/patches/011_immodule-cache-dir.patch, upstream changed the location and name of the cache file to be consistent what's used in gtk+3.0. It's now in $libdir/gtk-2.0/2.10.0/immodules.cache. * Update and simplify our trigger for gtk-query-immodules-2.0, use the new --update-cache option instead of redirecting stdout. * Update postrm to clean up the renamed immodules.cache file. -- Michael Biebl <biebl@debian.org> Sat, 06 Jul 2013 00:10:40 +0200 gtk+2.0 (2.24.19-1) unstable; urgency=low * New upstream release. * Refresh patches. * Update Vcs-* URLs. * Bump Standards-Version to 3.9.4. No further changes. -- Michael Biebl <biebl@debian.org> Fri, 28 Jun 2013 23:43:02 +0200 gtk+2.0 (2.24.19-0ubuntu1) saucy; urgency=low * New upstream version -- Sebastien Bacher <seb128@ubuntu.com> Wed, 19 Jun 2013 19:46:25 +0200 gtk+2.0 (2.24.18-1) unstable; urgency=low [ Josselin Mouette ] * Switch to interest-noawait for triggers. They only affect IM modules, so this is not likely to cause upgrade problems. [ Michael Biebl ] * New upstream release. - Fixes incorrect selection in file chooser button. Closes: #708618 * Drop debian/patches/041_ia32-libs.patch since we properly support multiarch now and no longer need the biarch hack. -- Michael Biebl <biebl@debian.org> Fri, 17 May 2013 14:15:18 +0200 gtk+2.0 (2.24.18-0ubuntu2) saucy; urgency=low * debian/patches/043_ubuntu_menu_proxy.patch, debian/patches/072_indicator_menu_update.patch, debian/libgtk2.0-0.symbols: - drop old menu patches, we deprecate appmenu-gtk in favor of the new unity-gtk-module code * debian/patches/gtk-shell-shows-menubar.patch: -list gtk-shell-shows-menubar setting, that's required to have the local menubars hidding under unity in favor of the unity ones, thanks William Hua for the work on those changes -- Sebastien Bacher <seb128@ubuntu.com> Fri, 07 Jun 2013 17:15:49 +0200 gtk+2.0 (2.24.18-0ubuntu1) saucy; urgency=low * New upstream version -- Sebastien Bacher <seb128@ubuntu.com> Mon, 13 May 2013 20:44:00 +0200 gtk+2.0 (2.24.17-2) unstable; urgency=low * Upload to unstable. * Drop the unused opt flavor. * Don't install the doc-base.in file for libgtk2.0-doc. -- Michael Biebl <biebl@debian.org> Tue, 07 May 2013 18:43:19 +0200 gtk+2.0 (2.24.17-1) experimental; urgency=low [ Iain Lane ] * Remove dh_installdoc calls which install files that are supposed to be symlinked to the -common package. These symlinks get overwritten later on (by dh_compress), turning back into real files and breaking multiarch coinstallability (LP: #1132881) * Symlink AUTHORS files to -common too [ Emilio Pozuelo Monfort ] * New upstream release. -- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 04 Mar 2013 23:18:24 +0100 gtk+2.0 (2.24.17-0ubuntu2) raring; urgency=low * restore 2.24.16-1ubuntu2 dropped by error (not commited to the vcs), should fix multiarch issues (lp: #1160024) -- Sebastien Bacher <seb128@ubuntu.com> Mon, 25 Mar 2013 23:41:01 +0100 gtk+2.0 (2.24.17-0ubuntu1) raring; urgency=low * New upstream version -- Sebastien Bacher <seb128@ubuntu.com> Mon, 25 Mar 2013 19:44:15 +0100 gtk+2.0 (2.24.16-1ubuntu2) raring; urgency=low * Remove dh_installdoc calls which install files that are supposed to be symlinked to the -common package. These symlinks get overwritten later on (by dh_compress), turning back into real files and breaking multiarch coinstallability (LP: #1132881) * Symlink AUTHORS files to -common too -- Iain Lane <iain.lane@canonical.com> Mon, 25 Feb 2013 17:46:26 +0000 gtk+2.0 (2.24.16-1ubuntu1) raring; urgency=low [ Jeremy Bicha ] * Sync with Debian. Remaining changes: * debian/libgtk2.0-0.symbols: - Add Ubuntu specific symbols * 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/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/090_logging_file_saves.patch: - improve the logging of saved files * 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. * debian/patches/093_gtk3_gtkimage_fallbacks_use.patch: - Backported gtk3 patch to add a "use-fallback" property to GtkImage, using it "icon-name and GIcon type of GtkImages can use automatic fallback names.", it will be useful for the indicator stack * debian/patches/095_git_menus_scrolling.patch: - backported gtk3 commit to fix menu scrolling issues * debian/patches/096_git_gtkprintsettings.patch: - upstream git commit backported from the gtk3 serie, don't ignore the gtkprintsettings resolution settings * debian/patches/097_statusicon_image_fallback.patch: Make GtkStatusIcon images use fallbacks by default if the property is available. * debian/patches/098_multiarch_module_path.patch: - Fallback to the pre-multiarch directory for compatibility * debian/patches/099_printer_filename_fix.patch - Fix to the print dialog for print to file, make sure a non-hidden filename is the default (LP: #488857) * debian/patches/100_overlay_scrollbar_loading.patch - support for dynamically loading overlay scrollbars * debian/patches/print-dialog-show-options-of-remote-dnssd-printers.patch: Make printing on remote DNS-SD/Bonjour-shared printers work * Dropped changes: - Extra breaks/replaces not needed after Precise [ Rico Tzschichholz ] * 043_ubuntu_menu_proxy.patch: Refreshed -- Rico Tzschichholz <ricotz@ubuntu.com> Mon, 25 Feb 2013 04:48:13 +0100 gtk+2.0 (2.24.16-1) experimental; urgency=low * New upstream release. + debian/patches: - Refreshed. -- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 24 Feb 2013 13:00:16 +0100 gtk+2.0 (2.24.14-1) experimental; urgency=low * New upstream release. * Refresh patches. * Remove a few no longer needed Replaces. * Remove explicit Build-Depends on gir packages. * Make libgtk2.0-dev depend on gir1.2-gtk-2.0. -- Michael Biebl <biebl@debian.org> Sat, 05 Jan 2013 07:32:25 +0100 gtk+2.0 (2.24.13-1) experimental; urgency=low * New upstream release -- Sjoerd Simons <sjoerd@debian.org> Wed, 03 Oct 2012 20:32:26 +0200 gtk+2.0 (2.24.10-2) unstable; urgency=low [ Josselin Mouette ] * Update epoch on libxrandr dependencies. [ Ansgar Burchardt ] * debian/rules: Use xz compression for binary packages. Closes: #683912 [ Michael Biebl ] * debian/libgtk2.0-0.postrm.in: Drop "rm -rf /etc/gtk-2.0" on purge since this removes files owned by libgtk2.0-common. The generated cache files for gdk pixbuf loaders and gtk input method modules have been moved out of /etc a long time ago. Closes: #681962 -- Michael Biebl <biebl@debian.org> Mon, 06 Aug 2012 17:55:03 +0200 gtk+2.0 (2.24.10-1) unstable; urgency=low * New upstream release. * Remove debian/patches/070-dont-crash-when-printing.patch, merged upstream. -- Michael Biebl <biebl@debian.org> Wed, 22 Feb 2012 16:37:06 +0100 gtk+2.0 (2.24.9-2) unstable; urgency=low * debian/patches/070-dont-crash-when-printing.patch: - Fix crash due to incorrect handling of custom CUPS options. Patch cherry-picked from upstream Git. Closes: #658710 -- Michael Biebl <biebl@debian.org> Mon, 06 Feb 2012 13:24:19 +0100 gtk+2.0 (2.24.9-1) unstable; urgency=low * New upstream release. * Remove debian/patches/070_revert_gtk_iconview_layout.patch, merged upstream. * Update debian/patches/065_gir_set_packages.patch. * Don't install a duplicate of the ChangeLog file as ChangeLog.gz. It's already installed as changelog.gz via dh_installchangelogs. * Install AUTHORS file. -- Michael Biebl <biebl@debian.org> Fri, 03 Feb 2012 23:10:17 +0100 gtk+2.0 (2.24.8-3) unstable; urgency=low * Change section of gir1.2-gtk-2.0 to introspection. * debian/patches/044_tracker_fts.patch: - Enable tracker fulltext search. * debian/patches/070_revert_gtk_iconview_layout.patch: - Revert "iconview: layout items immediately when setting a GtkTreeModel" as this could lead to a crash in GtkIconView. Closes: #650609 -- Michael Biebl <biebl@debian.org> Wed, 18 Jan 2012 13:12:35 +0100 gtk+2.0 (2.24.8-2) unstable; urgency=low * Move /etc/gtk-2.0 to libgtk2.0-common. * Add appropriate Breaks/Replaces to handle it. * Remove gtk-query-immodules-2.0 from libgtk2.0-bin since it is clearly not Multi-Arch compatible. It should not be needed anyway, everything is handled by triggers from the private directory. * Remove incorrect M-A: same statement for the debug package. * gtk2-engines-pixbuf is M-A: same. * libgail-common is M-A: same and not foreign. -- Josselin Mouette <joss@debian.org> Sun, 13 Nov 2011 18:16:43 +0100 gtk+2.0 (2.24.8-1) unstable; urgency=low * New upstream release. * Remove debian/patches/070_tracker.patch, fixed upstream by using the Tracker D-Bus interface. * Refresh debian/patches/015_default-fallback-icon-theme.patch. -- Michael Biebl <biebl@debian.org> Sat, 12 Nov 2011 01:58:12 +0100 gtk+2.0 (2.24.7-1) unstable; urgency=low [ Laurent Bigonville ] * libgtk2.0-0.postrm.in: fix broken check again. (Closes: #639574) [ Michael Biebl ] * New upstream release. - Fixes crash in gtk_entry_completion_default_completion_func () for non UTF-8 strings. Closes: #616150 * debian/watch: - Track .xz tarballs. * debian/patches/066_filechooser-recent-folders.patch - Removed, merged upstream. * debian/patches/009_gtk-export-filechooser.patch - Removed, with maemo being dead upstream and no package using the private filechooser API, this patch has become obsolete. Drop hildon_gtk_file_chooser_install_properties from the symbols file accordingly. * debian/patches/064_gir_build_workaround.patch - Removed, this workaround is no longer required with newer gir versions. * debian/patches/065_gir_set_packages.patch - Specify packages when generating GIR. Closes: #622759 -- Michael Biebl <biebl@debian.org> Tue, 18 Oct 2011 18:00:14 +0200 gtk+2.0 (2.24.6-2) unstable; urgency=low * debian/control.in - Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer. - Suggest devhelp instead of depending on lynx | www-browser. - Add Breaks: libgnome2-0 (<< 2.32.1-2) to libgail-common to ensure we have a recent enough version of libgnome2-0 which can read the accessibility module from the new multiarch location. Closes: #636536 * Refresh patches. * Add support for tracker 0.12 and prefer it over 0.10. Closes: #643943 * debian/patches/066_filechooser-recent-folders.patch - Cherry-pick fixes from the upstream filechooser-recent-folder-2-24 branch. Closes: #640544, #640466, #644222 * debian/libgail-doc.install, debian/libgtk2.0-doc.install.in: Install documentation from the source tree, as it's not being installed any more. -- Michael Biebl <biebl@debian.org> Wed, 05 Oct 2011 21:29:48 +0200 gtk+2.0 (2.24.6-1) unstable; urgency=low * New upstream release. + Contains patch from Michal Suchanek to allow entering non-local URIs in the file chooser. Closes: #629423. * 003_gdk.pc_privates.patch: updated for the new version. * 009_gtk-export-filechooser.patch: refreshed. * 066_Revert-gdk-Make-background-changes-queue-a-repaint.patch: dropped, merged upstream. * rules: force update of gtk-doc.make. -- Josselin Mouette <joss@debian.org> Fri, 02 Sep 2011 17:17:47 +0200 gtk+2.0 (2.24.5-4) unstable; urgency=low [ Steve Langasek ] * Build for multiarch. Closes: #634118 * Bump gobject-introspection build-dependency for multiarch tuple support. * debian/patches/098_multiarch_module_path.patch: Fall back to the hard-coded pre-multiarch module directory. * Build-depend on debhelper 8.1.3 and add Pre-Depends: ${misc:Pre-Depends} for multiarch-support. * Make the -dev packages depend on a multiarch-capable version of pkg-config. [ Martin Pitt ] * debian/control.in: Make libgtk2.0-bin Architecture: any, as the symlinks now point to multiarch directories, and the /i386-* links are broken on other architectures. [ Mathieu Trudel-Lapierre ] * debian/rules: ensure libgtk2.0-bin is also taken into account as an arch:any package now. (LP: #810747) [ Michael Biebl ] * debian/libgtk2.0-dev.install.in: Stop installing libtool .la files. * debian/rules: Stop cleaning the dependency_libs in the .la files. * debian/libgtk2.0-0.postinst.in: If the non-multiarch immodules directory does not exist or is empty handle this case more gracefully and don't print an error message. -- Michael Biebl <biebl@debian.org> Thu, 28 Jul 2011 16:24:33 +0200 gtk+2.0 (2.24.5-3) unstable; urgency=low * Revert "gdk: Make background changes queue a repaint" which causes excessive CPU usage in gnome-panel. Closes: #633864 -- Michael Biebl <biebl@debian.org> Tue, 19 Jul 2011 19:42:18 +0200 gtk+2.0 (2.24.5-2) unstable; urgency=low * debian/control.in: - Move gtk-doc-tools from Build-Depends-Indep to Build-Depends. The upstream tarball is missing the m4 macro directory and gtk-doc.m4 is needed for autoreconf. Closes: #633013 -- Michael Biebl <biebl@debian.org> Thu, 14 Jul 2011 13:22:26 +0200 gtk+2.0 (2.24.5-1) unstable; urgency=low * New upstream release. * Refresh patches. * debian/control: - Update package descriptions, remove unnecessary articles. - Bump Standards-Version to 3.9.2. No further changes. * debian/patches/065_tracker-0-10.patch - Use libtracker-sparql to add support for Tracker 0.10. Code has been taken from the gtk-3-0 branch with FTS enabled. Closes: #629427 * debian/watch: - Switch to .bz2 tarballs. - Don't track 3.0 pre-releases. * Use dh-autoreconf to update the build system: - Drop debian/patches/070_mandatory-relibtoolize.patch. - Add Build-Depends on dh-autoreconf. - Call dh_autoreconf in patch-stamp and dh_autoreconf_clean in clean. -- Michael Biebl <biebl@debian.org> Wed, 06 Jul 2011 00:43:06 +0200 gtk+2.0 (2.24.4-3) unstable; urgency=low * Re-enable shared-mime-info as build-dependency, since it is also used in the tests. * libgtk2.0-0.postrm.in: fix broken check. Closes: #621060. * watch: only monitor 2.x versions. -- Josselin Mouette <joss@debian.org> Sun, 10 Apr 2011 22:12:30 +0200 gtk+2.0 (2.24.4-2) unstable; urgency=low * Drop the mimeinfo.cache from the udeb, it’s been moved to gdk-pixbuf. * Drop shared-mime-info and xsltproc build-deps accordingly. -- Josselin Mouette <joss@debian.org> Sun, 10 Apr 2011 18:21:55 +0200 gtk+2.0 (2.24.4-1) unstable; urgency=low [ Laurent Bigonville ] * debian/copyright: Update FSF address to fix old-fsf-address-in-copyright-file lintian warning [ Josselin Mouette ] * Re-enable introspection support. * New upstream release. * 070_mandatory-relibtoolize.patch: regenerated for the new version. * Drop manual quilt patching; the 3.0 format does it for us. -- Josselin Mouette <joss@debian.org> Sun, 10 Apr 2011 16:00:37 +0200 gtk+2.0 (2.24.3-1~sid1) unstable; urgency=low * Temporarily disable the gir package build. * Upload to unstable. -- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 20 Mar 2011 18:33:28 +0000 gtk+2.0 (2.24.3-1) experimental; urgency=low * New upstream release. + debian/control.in: - Bump the libpango1.0-dev build dependency to make sure we get a version from experimental. + debian/patches/070_mandatory-relibtoolize.patch: - Regenerated. -- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 15 Mar 2011 20:55:21 +0000 gtk+2.0 (2.24.1-1) experimental; urgency=low * New upstream release. + debian/patches/070_mandatory-relibtoolize.patch: - Regenerated. -- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 22 Feb 2011 20:38:44 +0000 gtk+2.0 (2.24.0-1) experimental; urgency=low * New upstream stable release. + debian/libgtk2.0-0.symbols: - Updated. + debian/patches/070_mandatory-relibtoolize.patch: - Regenerated. -- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 01 Feb 2011 17:59:15 +0000 gtk+2.0 (2.23.90-1) experimental; urgency=low * New upstream release. + 006-Reinstate-the-implementation-of-gdk_window_foreign_n.patch, 007-Revert-some-over-eager-deprecation-removal.patch, 008-Don-t-use-deprecated-API.patch: - Removed, included upstream. + debian/patches/*: - Refreshed. + debian/libgtk2.0-0.symbols: - Updated. + debian/rules: - Bumped the shver. -- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 07 Jan 2011 02:09:44 +0000 gtk+2.0 (2.23.3-3) experimental; urgency=low * debian/patches/007-Revert-some-over-eager-deprecation-removal.patch, debian/patches/008-Don-t-use-deprecated-API.patch: + Two more patches from upstream git, fix more regressions in 2.23.3. Closes: #608028, 608009. -- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 28 Dec 2010 14:30:44 +0000 gtk+2.0 (2.23.3-2) experimental; urgency=low * 006-Reinstate-the-implementation-of-gdk_window_foreign_n.patch: + Patch from upstream git, make gdk_window_foreign_new_for_display not a nop. -- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 23 Dec 2010 18:35:43 +0000 gtk+2.0 (2.23.3-1) experimental; urgency=low * New upstream release. + debian/control.in: - Bump the libglib2.0-dev build requirement. + debian/patches/070_mandatory-relibtoolize.patch: - Refreshed. + debian/libgtk2.0-0.symbols: - Updated for the new symbols. + debian/rules: - Bump the shver. -- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 23 Dec 2010 03:09:40 +0000 gtk+2.0 (2.23.2-1) experimental; urgency=low [ Laurent Bigonville ] * New upstream version - Refresh debian/patches/009_gtk-export-filechooser.patch and debian/patches/070_mandatory-relibtoolize.patch - Add new symbols to debian/libgtk2.0-0.symbols * Enable GObject introspection support, thanks to Didier Roche and Sebastien Bacher (Closes: #584235) - debian/rules: - toogle configure option - add new package to BINARY_ARCH_PKGS - add dh_girepository call - debian/control.in: - add gobject-introspection, libgirepository1.0-dev, gir1.2-atk-1.0, gir1.2-pango-1.0, gir1.2-glib-2.0 and gir1.2-freedesktop build-dep - Bump libpango1.0-dev, libgdk-pixbuf2.0-dev and libatk1.0-dev build-dependencies to be sure we have .gir files - add gir package (gir1.2-gtk-2.0) - debian/libgtk2.0-dev.install.in: add gir files - add debian/gir1.2-gtk-2.0.install * Add debian/patches/064_gir_build_workaround.patch: Fix build with introspection enabled * debian/patches/070_mandatory-relibtoolize.patch: Refresh * Switch to dpkg-source 3.0 (quilt) format * debian/watch: Bump version to 3 [ Emilio Pozuelo Monfort ] * debian/control.in, debian/rules: + Remove the chrpath hack, it's been fixed in libtool. * debian/control.in: + Bump gobject-introspection build dependency. * debian/copyright: + Updated. -- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 12 Dec 2010 22:01:17 +0100 gtk+2.0 (2.22.0-1) experimental; urgency=low [ Sebastian Dröge ] * New upstream stable release: + debian/rules, debian/libgtk2.0-0.symbols: - Update for new API symbols. + debian/patches/070_mandatory-relibtoolize.patch: - Refreshed. + debian/patches/062_udeb-no-composite.patch: - Dropped, merged upstream. [ Sjoerd Simons ] * Update the faq/tutorial index files names * debian/control.in: + Add dependency on docbook-utils for db2html to generate the documentation html during build -- Sjoerd Simons <sjoerd@debian.org> Sat, 02 Oct 2010 15:52:39 +0100 gtk+2.0 (2.21.8-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. * debian/patches/062_udeb-no-composite.patch: + Fix build of the udeb variant without XComposite. -- Sebastian Dröge <slomo@debian.org> Wed, 15 Sep 2010 11:32:17 +0200 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 <slomo@debian.org> Mon, 30 Aug 2010 21:45:01 +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 <slomo@debian.org> Tue, 17 Aug 2010 11:44:53 +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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <biebl@debian.org> Wed, 14 Apr 2010 20:39:28 +0200 gtk+2.0 (2.20.0-2) unstable; urgency=low * Upload to unstable. -- Sebastian Dröge <slomo@debian.org> 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 <slomo@debian.org> 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 <pochu@debian.org> 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 <pochu@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <joss@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <joss@debian.org> 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 <slomo@debian.org> 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 <pochu@ubuntu.com> 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 <kov@debian.org> 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 <kov@debian.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <joss@debian.org> 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 <kov@debian.org> 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 <kov@debian.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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/<gtk-binary-version>/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 <lool@dooz.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <slomo@debian.org> 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 <slomo@debian.org> 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 <lool@dooz.org> 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 <slomo@debian.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <joss@debian.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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/<BINARY_VERSION>/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/<BINARY_VERSION>/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/<BINARY_VERSION>/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/<BINARY_VERSION>/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/<BINARY_VERSION>/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/<BINARY_VERSION>/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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <lool@dooz.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <joss@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> Sun, 9 Apr 2006 21:54:11 +0200 gtk+2.0 (2.8.16-1) unstable; urgency=low * New upstream version -- Sebastien Bacher <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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) <jdassen@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> Thu, 12 Jan 2006 13:34:37 +0100 gtk+2.0 (2.8.9-2) unstable; urgency=low * Upload to unstable -- Sebastien Bacher <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <jordi@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <joss@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <joss@debian.org> Wed, 2 Mar 2005 22:28:38 +0100 gtk+2.0 (2.6.2-3) unstable; urgency=low * Patch from Steve Langasek <vorlon@debian.org>: 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> Wed, 2 Feb 2005 18:28:09 +0100 gtk+2.0 (2.6.1-1) experimental; urgency=low * New upstream release. -- Sebastien Bacher <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> Wed, 13 Oct 2004 16:48:13 +0200 gtk+2.0 (2.4.11-1) unstable; urgency=low * New upstream release. -- Sebastien Bacher <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <jordi@debian.org> 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 <jordi@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <richard@daijobu.co.uk> for the faq and the tutorial (Closes: #256844). -- Sebastien Bacher <seb128@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <joss@debian.org> 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 <he@debian.org> + debian/rules: Really, *really* surpress warnings when removing directories (using >/dev/null 2>&1 instead of 2>&1 >/dev/null) -- Sebastien Bacher <seb128@debian.org> 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 <seb128@debian.org> Sat, 15 May 2004 23:24:07 +0200 gtk+2.0 (2.4.1-1) experimental; urgency=low * New upstream release. * Akira TAGOH <tagoh@debian.org> + 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 <seb128@debian.org> + debian/rules: - updated shlib to 2.4.1. -- Sebastien Bacher <seb128@debian.org> Wed, 5 May 2004 23:32:54 +0200 gtk+2.0 (2.4.0-4) experimental; urgency=low * Akira TAGOH <tagoh@debian.org> + debian/control: - moved arch-independent files to libgtk2.0-common again. - separated arch-dependent files to libgtk2.0-bin. -- Akira TAGOH <tagoh@debian.org> Sat, 24 Apr 2004 02:11:52 +0900 gtk+2.0 (2.4.0-3) experimental; urgency=low * Akira TAGOH <tagoh@debian.org> + 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 <tagoh@debian.org> 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 <seb128@debian.org>: * debian/rules: + Updated shver. * debian/control.in: + Added again Build-Depends removed in 2.4.0-1. -- J.H.M. Dassen (Ray) <jdassen@debian.org> 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 <seb128@debian.org>: * 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 <robtaylor@fastmail.fm>: * 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 <seb128@debian.org> Mon, 22 Mar 2004 22:00:09 +0100 gtk+2.0 (2.2.4-6) unstable; urgency=low * Akira TAGOH <tagoh@debian.org> + debian/control: - added libxt-dev to fix FTBFS. (closes: Bug#246450) - added libgtk2.0-0 to Depends for libgtk2.0-common. -- Akira TAGOH <tagoh@debian.org> Tue, 4 May 2004 11:30:56 +0900 gtk+2.0 (2.2.4-5) unstable; urgency=low * Akira TAGOH <tagoh@debian.org> + debian/control: - moved arch-independent files to libgtk2.0-common again. - separated arch-dependent files to libgtk2.0-bin. -- Akira TAGOH <tagoh@debian.org> Sat, 24 Apr 2004 01:12:08 +0900 gtk+2.0 (2.2.4-4) unstable; urgency=low * Akira TAGOH <tagoh@debian.org> + 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 <tagoh@debian.org> 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 <seb128@debian.org> 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 <seb128@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <mmagallo@debian.org> - mention gtk-key-theme-name and gnome-settings-daemon. * debian/rules: - create the symlinks in /usr/share/gtk-doc -- Akira TAGOH <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> 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 <tagoh@debian.org> Sat, 16 Mar 2002 04:34:39 +0900 gtk+2.0 (2.0.0-1) unstable; urgency=low * Initial Release. -- Akira TAGOH <tagoh@debian.org> Wed, 13 Mar 2002 00:07:25 +0900 �������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-bin.preinst������������������������������������������������������������������������0000664�0000000�0000000�00000000444�12312607374�013047� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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# ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/rules����������������������������������������������������������������������������������������0000775�0000000�0000000�00000025353�12312607374�010265� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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/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) DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) DEB_BUILD_OPTIONS += multiarch # relative libdir ifneq (,$(findstring multiarch,$(DEB_BUILD_OPTIONS))) LIBDIR := usr/lib/$(DEB_HOST_MULTIARCH) 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.24.0 # 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) OLD_MODULES_BASE_PATH := usr/lib/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) $(DOC_PKG) libgail-doc BINARY_ARCH_PKGS := $(SHARED_PKG) $(BIN_PKG) $(UDEB_PKG) $(DEV_PKG) $(DEBUG_PKG) $(EXAMPLES_PKG) $(PIXBUF_PKG) gir1.2-gtk-2.0 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 # 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 # list of flavors to run the test suite on CHECK_FLAVORS := $(filter shared static, $(FLAVORS)) DH_INSTALLDOCS_FILES := NEWS README AUTHORS # macro computing the list of 'debian/<pkg>.*" 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/index.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) mkdir -p m4 cp /usr/share/gtk-doc/data/gtk-doc.make . dh_autoreconf 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#@MODULES_BASE_PATH@#$(MODULES_BASE_PATH)#g" \ -e "s#@OLD_MODULES_BASE_PATH@#$(OLD_MODULES_BASE_PATH)#g" \ $@.in \ > $@ clean:: debian/control dh_testdir dh_testroot # remove install and build dirs rm -rf $(installbasedir) rm -rf $(buildbasedir) dh_autoreconf_clean rm -f gtk-doc.make 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) binary-indep: build $(maybe_check) install $(call dh_subst_files,$(BINARY_INDEP_PKGS)) devhelpfiles dh_testdir dh_testroot dh_install -i # changelog.gz symlinks will be overwritten by dh_link dh_installchangelogs -i ChangeLog # 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) -X.in $(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) -X.in -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 -- -Zxz 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 # changelog.gz symlinks will be overwritten by dh_link dh_installchangelogs -s ChangeLog # 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 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.2-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 -- -Zxz 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 �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-doc.links.in�����������������������������������������������������������������������0000664�0000000�0000000�00000000764�12312607374�013112� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������usr/share/doc/@DOC_PKG@/gdk2 usr/share/gtk-doc/html/gdk2 usr/share/doc/@DOC_PKG@/gtk2 usr/share/gtk-doc/html/gtk2 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 ������������debian/libgail-doc.install��������������������������������������������������������������������������0000664�0000000�0000000�00000000114�12312607374�012727� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������docs/reference/libgail-util/html/* usr/share/gtk-doc/html/gail-libgail-util ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-dev.manpages�����������������������������������������������������������������������0000664�0000000�0000000�00000000100�12312607374�013151� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/dh_gtkmodules.1 docs/reference/gtk/gtk-builder-convert.1 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-0.postinst.in����������������������������������������������������������������������0000664�0000000�0000000�00000001002�12312607374�013231� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/bin/sh set -e IMMODULES_DIR=/@MODULES_BASE_PATH@/immodules IMMODULES_DIR_OLD=/@OLD_MODULES_BASE_PATH@/immodules if [ "$1" = triggered ]; then # This is triggered everytime an application installs a # GTK immodule loader /@LIBDIR@/@SHARED_PKG@/gtk-query-immodules-2.0 --update-cache || true exit 0 fi #DEBHELPER# # Also handle the initial installation if [ -d $IMMODULES_DIR ] || [ -d $IMMODULES_DIR_OLD ]; then /@LIBDIR@/@SHARED_PKG@/gtk-query-immodules-2.0 --update-cache || true fi ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/dh_gtkmodules.in�����������������������������������������������������������������������������0000664�0000000�0000000�00000016102�12312607374�012356� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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<dh_gtkmodules> [S<I<debhelper options>>] =head1 DESCRIPTION B<dh_gtkmodules> 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 "<package>.loaders" file to the current package with the package name or "<package>.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; # 'abs_path' from Cwd resolves symlinks, and we don't want that to happen # (otherwise it's harder to remove the prefix of the generated output) sub make_absolute_path { my $path = shift; if ($path =~ m#^/#) { return $path; } my $cwd = getcwd; return "$cwd/$path"; } # gdk-pixbuf-query-loaders helper (generates a GdkPixbuf loaders module # file on its stdout with *.so passed on its command-line) my $queryloaders; if ($ENV{GTK_QUERYLOADERS}) { $queryloaders = $ENV{GTK_QUERYLOADERS}; } else { $queryloaders = '/@LIBDIR@/libgtk2.0-0/gdk-pixbuf-query-loaders'; } # gtk-query-immodules-2.0 helper (generates an IM module file on its # stdout with *.so passed on its command-line) my $queryimmodules; if ($ENV{GTK_QUERYIMMODULES}) { $queryimmodules = $ENV{GTK_QUERYIMMODULES}; } else { $queryimmodules = '/@LIBDIR@/libgtk2.0-0/gtk-query-immodules-2.0'; } # relative Gtk base module path my $modules_base_path = '@MODULES_BASE_PATH@'; # relative path to GdkPixbuf loaders modules (separated by ":") my $loaders_modules_path = "$modules_base_path/loaders"; # relative directory to store the generated loader module file my $loader_module_files_d = "$modules_base_path/loader-files.d"; # relative path to IM modules (separated by ":") my $im_modules_path = "$modules_base_path/immodules"; # relative directory to store the generated IM module file my $im_module_files_d = "$modules_base_path/immodule-files.d"; # Gtk binary version virtual Provide my $gtk_binver_dep = '@GTK_BINVER_DEP@'; sub find_modules { # where to store the modules we find my $modules_ref = shift; # base directory to prepend to the list of locations my $basedir = shift; # list of locations to search relative to $basedir separated with ":" my $path = shift; foreach (map("$basedir/$_", split(/:/, $path))) { # it's necessary to make the path absolute to strip the build-time # prefix later on my $path = make_absolute_path($_); if (! -e $path) { verbose_print("skipping $path."); next; } if (-d $path) { # if path is a directory (or symlink to a directory), search for # *.so files or symlinks open(FIND, "find '$path' -name '*.so' \\( -type f -or -type l \\) |") or die "Can't run find: $!"; while (<FIND>) { chomp; push @$modules_ref, $_; } close FIND or die "Error while running find: $!"; } elsif (-f $path or -l $path) { # if path is a file or symlink, simply add it to the list push @$modules_ref, $path; } else { error("$path has unknown file type."); } } } sub query_modules { # absolute pathname to query helper my $querymodules = shift; # base directory to prepend to the output module file and to strip # of the output my $basedir = shift; # relative directory where to write the module file my $module_files_d = shift; # relative path of the module file my $module_file = shift; # modules to query my @modules = @_; my $do_query = join ' ', $querymodules, @modules; open(QUERY, "$do_query 2>&1 |") or die "Can't query modules with $querymodules: $!"; doit("rm", "-f", "$module_file"); if (! -d "$basedir/$module_files_d") { doit("install", "-d", "$basedir/$module_files_d"); } complex_doit("printf '%s\\n' '# automatically generated by dh_gtkmodules, do not edit' >>$module_file"); my $absolute_basedir = make_absolute_path($basedir); my $n_lines = 0; while (<QUERY>) { next if m/^#/; chomp; # if some module couldn't be loaded by the query helper, bail out if (m#^g_module_open\(\) failed for #) { error("$querymodules could not load a module:\n$_\nYou should probably make the libraries built by your package available via LD_LIBRARY_PATH."); } # strip build-time prefix from output if (m#^\Q"$absolute_basedir/\E#) { s#^\Q"$absolute_basedir/\E#"/#; } complex_doit("printf '%s\\n' '$_' >>$module_file"); $n_lines++; } # nothing written to the module file, fail miserably if (0 == $n_lines) { doit("rm", "-f", "$module_file"); error("Internal error: could not find any module in the output of $querymodules."); } doit("chmod", 644, "$module_file"); doit("chown", "0:0", "$module_file"); close QUERY or die "Error while querying modules with $querymodules: $!"; } foreach my $package (@{$dh{DOPACKAGES}}) { my $tmp = tmpdir($package); my @loaders_modules = (); my @im_modules = (); # if the versionned directory isn't present, give up on package if (! -d "$tmp/$modules_base_path") { next; } # since the versionned module directory exists, generate a dependency # on the Gtk binary version if (! $dh{K_FLAG}) { addsubstvar($package, "misc:Depends", $gtk_binver_dep); } # search for specific module types find_modules(\@loaders_modules, $tmp, $loaders_modules_path); find_modules(\@im_modules, $tmp, $im_modules_path); warning("Package $package has " . @loaders_modules . " GdkPixbuf loaders and " . @im_modules . " Gtk IM modules."); # if no modules of these types were found, we're done if (0 == @loaders_modules + @im_modules) { next; } if (@loaders_modules) { query_modules($queryloaders, $tmp, $loader_module_files_d, "$tmp/$loader_module_files_d/$package.loaders", @loaders_modules); } if (@im_modules) { query_modules($queryimmodules, $tmp, $im_module_files_d, "$tmp/$im_module_files_d/$package.immodules", @im_modules); } } =back =head1 SEE ALSO L<debhelper> This program relies on Debhelper, but is shipped with the Gtk development files. =head1 AUTHOR Loic Minier <lool@dooz.org> =cut ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgail18.symbols����������������������������������������������������������������������������0000664�0000000�0000000�00000001231�12312607374�012360� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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 �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/source/��������������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�12312607374�010475� 5����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/source/format��������������������������������������������������������������������������������0000664�0000000�0000000�00000000014�12312607374�011703� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������3.0 (quilt) ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-0-dbg.prerm������������������������������������������������������������������������0000664�0000000�0000000�00000000371�12312607374�012630� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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# �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-dev.install.in���������������������������������������������������������������������0000664�0000000�0000000�00000001036�12312607374�013442� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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*.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@ ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-dev.links.in�����������������������������������������������������������������������0000664�0000000�0000000�00000000432�12312607374�013113� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@DEV_PKG@/changelog.gz 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 usr/share/doc/@COMMON_PKG@/AUTHORS usr/share/doc/@DEV_PKG@/AUTHORS ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-doc.doc-base.gtk2-tutorial���������������������������������������������������������0000664�0000000�0000000�00000001453�12312607374�015545� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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/index.html Files: /usr/share/doc/libgtk2.0-doc/tutorial/*.html ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-0.symbols��������������������������������������������������������������������������0000664�0000000�0000000�00000560756�12312607374�012463� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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_cairo_set_source_window@Base 2.24.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.22.0 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.22.0 gdk_device_get_core_pointer@Base 2.8.0 gdk_device_get_has_cursor@Base 2.22.0 gdk_device_get_history@Base 2.8.0 gdk_device_get_key@Base 2.22.0 gdk_device_get_mode@Base 2.22.0 gdk_device_get_n_axes@Base 2.22.0 gdk_device_get_n_keys@Base 2.24.0 gdk_device_get_name@Base 2.22.0 gdk_device_get_source@Base 2.22.0 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.22.0 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.22.0 gdk_drag_context_get_dest_window@Base 2.24.0 gdk_drag_context_get_protocol@Base 2.24.0 gdk_drag_context_get_selected_action@Base 2.22.0 gdk_drag_context_get_source_window@Base 2.22.0 gdk_drag_context_get_suggested_action@Base 2.22.0 gdk_drag_context_get_type@Base 2.8.0 gdk_drag_context_list_targets@Base 2.22.0 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.22.0 gdk_image_get_byte_order@Base 2.22.0 gdk_image_get_bytes_per_line@Base 2.22.0 gdk_image_get_bytes_per_pixel@Base 2.22.0 gdk_image_get_colormap@Base 2.8.0 gdk_image_get_depth@Base 2.22.0 gdk_image_get_height@Base 2.22.0 gdk_image_get_image_type@Base 2.22.0 gdk_image_get_pixel@Base 2.8.0 gdk_image_get_pixels@Base 2.22.0 gdk_image_get_type@Base 2.8.0 gdk_image_get_visual@Base 2.22.0 gdk_image_get_width@Base 2.22.0 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_size@Base 2.24.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.22.0 gdk_visual_get_blue_pixel_details@Base 2.22.0 gdk_visual_get_byte_order@Base 2.22.0 gdk_visual_get_colormap_size@Base 2.22.0 gdk_visual_get_depth@Base 2.22.0 gdk_visual_get_green_pixel_details@Base 2.22.0 gdk_visual_get_red_pixel_details@Base 2.22.0 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.22.0 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.22.0 gdk_window_coords_to_parent@Base 2.22.0 gdk_window_create_similar_surface@Base 2.22.0 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.22.0 gdk_window_get_background_pattern@Base 2.22.0 gdk_window_get_children@Base 2.8.0 gdk_window_get_composited@Base 2.22.0 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_display@Base 2.24.0 gdk_window_get_effective_parent@Base 2.22.0 gdk_window_get_effective_toplevel@Base 2.22.0 gdk_window_get_events@Base 2.8.0 gdk_window_get_focus_on_map@Base 2.22.0 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_height@Base 2.24.0 gdk_window_get_internal_paint_info@Base 2.8.0 gdk_window_get_modal_hint@Base 2.22.0 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_screen@Base 2.24.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_visual@Base 2.24.0 gdk_window_get_width@Base 2.24.0 gdk_window_get_window_type@Base 2.8.0 gdk_window_has_native@Base 2.22.0 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.22.0 gdk_window_is_shaped@Base 2.22.0 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_string_to_compound_text@Base 2.24.0 gdk_x11_display_text_property_to_text_list@Base 2.24.0 gdk_x11_display_ungrab@Base 2.24.0 gdk_x11_display_utf8_to_compound_text@Base 2.24.0 gdk_x11_drawable_get_xdisplay@Base 2.24.0 gdk_x11_drawable_get_xid@Base 2.24.0 gdk_x11_font_get_name@Base 2.24.0 gdk_x11_font_get_xdisplay@Base 2.24.0 gdk_x11_font_get_xfont@Base 2.8.0 gdk_x11_free_compound_text@Base 2.24.0 gdk_x11_free_text_list@Base 2.24.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_set_sm_client_id@Base 2.24.0 gdk_x11_ungrab_server@Base 2.8.0 gdk_x11_visual_get_xvisual@Base 2.8.0 gdk_x11_window_foreign_new_for_display@Base 2.24.0 gdk_x11_window_get_drawable_impl@Base 2.18.0 gdk_x11_window_lookup_for_display@Base 2.24.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.22.0 gtk_accessible_set_widget@Base 2.22.0 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.22.0 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.22.0 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_entry_text_column@Base 2.24.0 gtk_combo_box_get_focus_on_click@Base 2.8.0 gtk_combo_box_get_has_entry@Base 2.24.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_entry@Base 2.24.0 gtk_combo_box_new_with_model@Base 2.8.0 gtk_combo_box_new_with_model_and_entry@Base 2.24.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_entry_text_column@Base 2.24.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_box_text_append_text@Base 2.24.0 gtk_combo_box_text_get_active_text@Base 2.24.0 gtk_combo_box_text_get_type@Base 2.24.0 gtk_combo_box_text_insert_text@Base 2.24.0 gtk_combo_box_text_new@Base 2.24.0 gtk_combo_box_text_new_with_entry@Base 2.24.0 gtk_combo_box_text_prepend_text@Base 2.24.0 gtk_combo_box_text_remove@Base 2.24.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.22.0 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.22.0 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.22.0 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.22.0 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.22.0 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.22.0 gtk_icon_view_get_item_orientation@Base 2.22.0 gtk_icon_view_get_item_padding@Base 2.18.0 gtk_icon_view_get_item_row@Base 2.22.0 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.22.0 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.22.0 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_group_name@Base 2.24.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.22.0 gtk_notebook_get_tab_vborder@Base 2.22.0 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_group_name@Base 2.24.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_accepts_pdf@Base 2.24.0 gtk_printer_set_accepts_ps@Base 2.24.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_round_digits@Base 2.24.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_round_digits@Base 2.24.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.22.0 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.22.0 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.22.0 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.22.0 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.22.0 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.22.0 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.22.0 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.22.0 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.22.0 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.22.0 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.22.0 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 ubuntu_gtk_get_use_overlay_scrollbar@Base 2.24.6-0ubuntu4 ubuntu_gtk_set_use_overlay_scrollbar@Base 2.24.6-0ubuntu4 ubuntu_gtk_widget_set_has_grab@Base 2.21.6-1ubuntu3 ������������������debian/libgtk2.0-dev.prerm��������������������������������������������������������������������������0000664�0000000�0000000�00000000367�12312607374�012522� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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# �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/update-icon-caches���������������������������������������������������������������������������0000664�0000000�0000000�00000001124�12312607374�012552� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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 ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/control.in�����������������������������������������������������������������������������������0000664�0000000�0000000�00000025373�12312607376�011221� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Source: gtk+@APIVER@ Section: libs Priority: optional Maintainer: Ubuntu Desktop Team <ubuntu-desktop@lists.ubuntu.com> XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> Uploaders: @GNOME_TEAM@ Build-Depends: debhelper (>= 8.1.3), gettext, gtk-doc-tools (>= 1.11), pkg-config, autotools-dev, dh-autoreconf, libglib2.0-dev (>= 2.27.3), libgdk-pixbuf2.0-dev (>= 2.22.1), libpango1.0-dev (>= 1.28.3), libatk1.0-dev (>= 1.32.0), libx11-dev (>= 2:1.3.3-2), libxext-dev (>= 2:1.1.1-3), libxi-dev (>= 2:1.3-4), libxrandr-dev (>= 2: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), dpkg-dev (>= 1.16.0), x11proto-xext-dev, libcups2-dev (>= 1.2), gobject-introspection (>= 0.10.8-2), libgirepository1.0-dev (>= 0.9.3), quilt, gawk, shared-mime-info Build-Depends-Indep: docbook-xml, docbook-utils, libglib2.0-doc, libatk1.0-doc, libpango1.0-doc, libcairo2-doc Standards-Version: 3.9.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@ Suggests: librsvg2-common, gvfs Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Description: GTK+ graphical user interface library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off tools to complete application suites. . This package contains the shared libraries. Package: @UDEB_PKG@ Package-Type: udeb Section: debian-installer Priority: extra Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Provides: @GTK_BINVER_DEP@ Description: GTK+ graphical user interface library - minimal runtime This is a udeb, or a microdeb, for the debian-installer. . GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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@ Replaces: @SHARED_PKG@ (<< 2.24.8-2) Breaks: @SHARED_PKG@ (<< 2.24.8-2) Multi-Arch: foreign Description: common files for the GTK+ graphical user interface library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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: any Depends: ${misc:Depends}, @SHARED_PKG@ (= ${binary:Version}), @COMMON_PKG@ Multi-Arch: foreign Description: programs for the GTK+ graphical user interface library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off tools to complete application suites. . This package contains the utilities which are used by the libraries and other packages. Package: @DEV_PKG@ Section: libdevel Architecture: any Depends: @SHARED_PKG@ (= ${binary:Version}), gir1.2-gtk-2.0 (= ${binary:Version}), @COMMON_PKG@, ${misc:Depends}, ${shlibs:Depends}, libglib2.0-dev (>= 2.27.3), 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 (>= 2: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 (>= 0.26-1), libxml2-utils Recommends: python (>= 2.4), debhelper Suggests: @DOC_PKG@ Replaces: gir-repository-dev Description: development files for the GTK+ library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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 are needed for developing GTK+ applications. Package: @DEBUG_PKG@ Section: debug Priority: extra Architecture: any Depends: @SHARED_PKG@ (= ${binary:Version}), @COMMON_PKG@, ${misc:Depends} Description: GTK+ libraries and debugging symbols GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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: ${misc:Depends} Recommends: libglib2.0-doc, libatk1.0-doc, libpango1.0-doc Suggests: devhelp Multi-Arch: foreign Description: documentation for the GTK+ graphical user interface library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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: example files for GTK+ 2.0 GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off tools to complete application suites. . This package contains the example files and a demonstration program for GTK+-2.0. Package: @PIXBUF_PKG@ Section: graphics Architecture: any Multi-Arch: same Depends: ${misc:Depends}, ${shlibs:Depends}, @SHARED_PKG@ (= ${binary:Version}), @COMMON_PKG@ Description: pixbuf-based theme for GTK+ 2.x GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off tools to complete application suites. . This package contains the pixbuf theme engine. Package: gir1.2-gtk-2.0 Section: introspection Architecture: any Depends: @COMMON_PKG@, ${misc:Depends}, ${shlibs:Depends}, ${gir:Depends} Conflicts: gobject-introspection-repository, gir1.0-gtk-2.0 Replaces: gir1.0-gtk-2.0 Description: GTK+ graphical user interface library -- gir bindings GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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}) Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} 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}) Breaks: libgnome2-0 (<< 2.32.1-2) Multi-Arch: same 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 (>= 0.26-1), libatk1.0-dev (>= 1.13.0) Suggests: libgail-doc 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@ Multi-Arch: same 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} Suggests: devhelp Multi-Arch: foreign 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. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/gtk2-engines-pixbuf.links.in�����������������������������������������������������������������0000664�0000000�0000000�00000000446�12312607374�014440� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@PIXBUF_PKG@/changelog.gz 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 usr/share/doc/@COMMON_PKG@/AUTHORS usr/share/doc/@PIXBUF_PKG@/AUTHORS ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/control��������������������������������������������������������������������������������������0000664�0000000�0000000�00000025640�12312607376�010611� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Source: gtk+2.0 Section: libs Priority: optional Maintainer: Ubuntu Desktop Team <ubuntu-desktop@lists.ubuntu.com> XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org> Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>, Michael Biebl <biebl@debian.org> Build-Depends: debhelper (>= 8.1.3), gettext, gtk-doc-tools (>= 1.11), pkg-config, autotools-dev, dh-autoreconf, libglib2.0-dev (>= 2.27.3), libgdk-pixbuf2.0-dev (>= 2.22.1), libpango1.0-dev (>= 1.28.3), libatk1.0-dev (>= 1.32.0), libx11-dev (>= 2:1.3.3-2), libxext-dev (>= 2:1.1.1-3), libxi-dev (>= 2:1.3-4), libxrandr-dev (>= 2: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), dpkg-dev (>= 1.16.0), x11proto-xext-dev, libcups2-dev (>= 1.2), gobject-introspection (>= 0.10.8-2), libgirepository1.0-dev (>= 0.9.3), quilt, gawk, shared-mime-info Build-Depends-Indep: docbook-xml, docbook-utils, libglib2.0-doc, libatk1.0-doc, libpango1.0-doc, libcairo2-doc Standards-Version: 3.9.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 Suggests: librsvg2-common, gvfs Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Description: GTK+ graphical user interface library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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 Package-Type: udeb Section: debian-installer Priority: extra Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Provides: gtk2.0-binver-2.10.0 Description: GTK+ graphical user interface library - minimal runtime This is a udeb, or a microdeb, for the debian-installer. . GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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 Replaces: libgtk2.0-0 (<< 2.24.8-2) Breaks: libgtk2.0-0 (<< 2.24.8-2) Multi-Arch: foreign Description: common files for the GTK+ graphical user interface library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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: any Depends: ${misc:Depends}, libgtk2.0-0 (= ${binary:Version}), libgtk2.0-common Multi-Arch: foreign Description: programs for the GTK+ graphical user interface library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off tools to complete application suites. . This package contains the utilities which are used by the libraries and other packages. Package: libgtk2.0-dev Section: libdevel Architecture: any Depends: libgtk2.0-0 (= ${binary:Version}), gir1.2-gtk-2.0 (= ${binary:Version}), libgtk2.0-common, ${misc:Depends}, ${shlibs:Depends}, libglib2.0-dev (>= 2.27.3), 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 (>= 2: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 (>= 0.26-1), libxml2-utils Recommends: python (>= 2.4), debhelper Suggests: libgtk2.0-doc Replaces: gir-repository-dev Description: development files for the GTK+ library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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 are needed for developing 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: GTK+ libraries and debugging symbols GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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: ${misc:Depends} Recommends: libglib2.0-doc, libatk1.0-doc, libpango1.0-doc Suggests: devhelp Multi-Arch: foreign Description: documentation for the GTK+ graphical user interface library GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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: example files for GTK+ 2.0 GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off tools to complete application suites. . This package contains the example files and a demonstration program for GTK+-2.0. Package: gtk2-engines-pixbuf Section: graphics Architecture: any Multi-Arch: same Depends: ${misc:Depends}, ${shlibs:Depends}, libgtk2.0-0 (= ${binary:Version}), libgtk2.0-common Description: pixbuf-based theme for GTK+ 2.x GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off tools to complete application suites. . This package contains the pixbuf theme engine. Package: gir1.2-gtk-2.0 Section: introspection Architecture: any Depends: libgtk2.0-common, ${misc:Depends}, ${shlibs:Depends}, ${gir:Depends} Conflicts: gobject-introspection-repository, gir1.0-gtk-2.0 Replaces: gir1.0-gtk-2.0 Description: GTK+ graphical user interface library -- gir bindings GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, 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}) Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} 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}) Breaks: libgnome2-0 (<< 2.32.1-2) Multi-Arch: same 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 (>= 0.26-1), libatk1.0-dev (>= 1.13.0) Suggests: libgail-doc 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 Multi-Arch: same 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} Suggests: devhelp Multi-Arch: foreign 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. ������������������������������������������������������������������������������������������������debian/libgtk2.0-bin.links.in�����������������������������������������������������������������������0000664�0000000�0000000�00000000544�12312607374�013111� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@LIBDIR@/@SHARED_PKG@/gtk-update-icon-cache usr/bin/gtk-update-icon-cache usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@BIN_PKG@/changelog.gz 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 usr/share/doc/@COMMON_PKG@/AUTHORS usr/share/doc/@BIN_PKG@/AUTHORS ������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-doc.doc-base.gtk.in����������������������������������������������������������������0000664�0000000�0000000�00000000615�12312607374�014226� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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@/gtk2/index.html Files: /usr/share/doc/@DOC_PKG@/gtk2/*.html �������������������������������������������������������������������������������������������������������������������debian/libgail-doc.links����������������������������������������������������������������������������0000664�0000000�0000000�00000000112�12312607374�012377� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/usr/share/gtk-doc/html/gail-libgail-util /usr/share/doc/libgail-doc/html ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-0.postrm.in������������������������������������������������������������������������0000664�0000000�0000000�00000000312�12312607374�012675� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/bin/sh set -e #DEBHELPER# if [ -d /@MODULES_BASE_PATH@ ]; then # Purge the cache rm -f /@MODULES_BASE_PATH@/immodules.cache rmdir -p --ignore-fail-on-non-empty /@MODULES_BASE_PATH@ fi ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/gir1.2-gtk-2.0.install.in��������������������������������������������������������������������0000664�0000000�0000000�00000000072�12312607374�013253� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/install/shared/@LIBDIR@/girepository-1.0/ usr/lib/ ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/update-icon-caches.8�������������������������������������������������������������������������0000664�0000000�0000000�00000001241�12312607374�012720� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.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 <joss@debian.org>, for the Debian GNU/Linux system. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/compat���������������������������������������������������������������������������������������0000664�0000000�0000000�00000000002�12312607374�010373� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������5 ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-0-dbg.links.in���������������������������������������������������������������������0000664�0000000�0000000�00000000442�12312607374�013227� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������usr/share/doc/@COMMON_PKG@/changelog.gz usr/share/doc/@DEBUG_PKG@/changelog.gz 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 usr/share/doc/@COMMON_PKG@/AUTHORS usr/share/doc/@DEBUG_PKG@/AUTHORS ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-0-dbg.preinst����������������������������������������������������������������������0000664�0000000�0000000�00000000446�12312607374�013172� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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# ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/watch����������������������������������������������������������������������������������������0000664�0000000�0000000�00000000127�12312607374�010226� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������version=3 http://download.gnome.org/sources/gtk+/(2\.2[02468])/ \ gtk\+-(.*)\.tar\.xz �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgail-dbg.dirs�����������������������������������������������������������������������������0000664�0000000�0000000�00000000017�12312607374�012213� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������usr/lib/debug/ �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-0.prerm����������������������������������������������������������������������������0000664�0000000�0000000�00000000365�12312607374�012101� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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# ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/dh_listmissing.pl����������������������������������������������������������������������������0000664�0000000�0000000�00000003640�12312607374�012555� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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"); } } ������������������������������������������������������������������������������������������������debian/libgtk2.0-0-udeb.install.in������������������������������������������������������������������0000664�0000000�0000000�00000000123�12312607374�013734� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# from the shared flavor debian/install/shared_udeb/@LIBDIR@/libg?k*.so.* @LIBDIR@ ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgail18.install.in�������������������������������������������������������������������������0000664�0000000�0000000�00000000066�12312607374�012750� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/install/shared/@LIBDIR@/libgail*.so.* @LIBDIR@ ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/�������������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�12312607374�010624� 5����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/004_gtk+-ximian-gtk2-filesel-navbutton-5.patch���������������������������������������0000664�0000000�0000000�00000215127�12312607374�021031� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Index: gtk+2.0-2.22.0/gtk/gtkfilesel.c =================================================================== --- gtk+2.0-2.22.0.orig/gtk/gtkfilesel.c 2010-09-23 05:00:36.000000000 +0200 +++ gtk+2.0-2.22.0/gtk/gtkfilesel.c 2010-09-23 20:29:26.590578775 +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.22.0/gtk/stock-icons/ximian-icons.h =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ gtk+2.0-2.22.0/gtk/stock-icons/ximian-icons.h 2010-09-23 20:29:26.817579822 +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"}; + + �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/100_overlay_scrollbar_loading.patch��������������������������������������������������0000664�0000000�0000000�00000001172�12312607374�017447� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������## Description: enable overlay scrollbars ## Origin/Author: Andrea Cimitan <andrea.cimitan@canonical.com> === modified file 'gtk/gtkmain.c' Index: b/gtk/gtkmain.c =================================================================== --- a/gtk/gtkmain.c +++ b/gtk/gtkmain.c @@ -710,6 +710,20 @@ #endif } +static gboolean use_overlay_scrollbar = FALSE; + +gboolean +ubuntu_gtk_get_use_overlay_scrollbar (void) +{ + return use_overlay_scrollbar; +} + +void +ubuntu_gtk_set_use_overlay_scrollbar (gboolean use) +{ + use_overlay_scrollbar = use; +} + static void do_post_parse_initialization (int *argc, char ***argv) ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/060_ignore-random-icons.patch��������������������������������������������������������0000664�0000000�0000000�00000000717�12312607374�016111� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Index: gtk+-2.24.18/gtk/updateiconcache.c =================================================================== --- gtk+-2.24.18.orig/gtk/updateiconcache.c 2013-05-17 11:56:55.032595934 +0200 +++ gtk+-2.24.18/gtk/updateiconcache.c 2013-05-17 11:56:55.032595934 +0200 @@ -678,7 +678,7 @@ directories = g_list_append (directories, g_strdup (subdir)); } else - dir_index = 0xffff; + continue; } image = g_new0 (Image, 1); �������������������������������������������������debian/patches/098_multiarch_module_path.patch������������������������������������������������������0000664�0000000�0000000�00000003215�12312607374�016617� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Description: Fall back to the hard-coded pre-multiarch module directory Include /usr/lib/gtk-2.0 in the path as a fallback when building for multiarch, to maintain compatibility with packages installing modules to the old directories. Author: Steve Langasek <steve.langasek@linaro.org> Forwarded: not-needed Index: b/gtk/gtkmodules.c =================================================================== --- a/gtk/gtkmodules.c +++ b/gtk/gtkmodules.c @@ -60,6 +60,7 @@ gchar *home_gtk_dir = NULL; gchar *module_path; gchar *default_dir; + gchar *pre_multiarch_dir = NULL; static gchar **result = NULL; if (result) @@ -74,21 +75,23 @@ if (exe_prefix) default_dir = g_build_filename (exe_prefix, "lib", "gtk-2.0", NULL); - else + else { default_dir = g_build_filename (GTK_LIBDIR, "gtk-2.0", NULL); + pre_multiarch_dir = "/usr/lib/gtk-2.0"; + } if (module_path_env && home_gtk_dir) module_path = g_build_path (G_SEARCHPATH_SEPARATOR_S, - module_path_env, home_gtk_dir, default_dir, NULL); + module_path_env, home_gtk_dir, default_dir, pre_multiarch_dir, NULL); else if (module_path_env) module_path = g_build_path (G_SEARCHPATH_SEPARATOR_S, - module_path_env, default_dir, NULL); + module_path_env, default_dir, pre_multiarch_dir, NULL); else if (home_gtk_dir) module_path = g_build_path (G_SEARCHPATH_SEPARATOR_S, - home_gtk_dir, default_dir, NULL); + home_gtk_dir, default_dir, pre_multiarch_dir, NULL); else module_path = g_build_path (G_SEARCHPATH_SEPARATOR_S, - default_dir, NULL); + default_dir, pre_multiarch_dir, NULL); g_free (home_gtk_dir); g_free (default_dir); �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/044_tracker_fts.patch����������������������������������������������������������������0000664�0000000�0000000�00000001123�12312607374�014540� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Description: Enable tracker full text search Tracker in Debian is compiled with FTS support, so we make use of that in GTK3's file selector dialog. This way files can be found by their content and not only their file name. diff --git a/gtk/gtksearchenginetracker.c b/gtk/gtksearchenginetracker.c index a2b4b93..ad878f6 100644 --- a/gtk/gtksearchenginetracker.c +++ b/gtk/gtksearchenginetracker.c @@ -51,7 +51,7 @@ * use filename matching instead. This doesn't use the content of the * file however. */ -#undef FTS_MATCHING +#define FTS_MATCHING /* * GtkSearchEngineTracker object ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/backport_search_printer_location.patch�����������������������������������������������0000664�0000000�0000000�00000010114�12312607374�020427� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������diff -Naurp gtk+3.0-3.4.2/gtk/gtkprintunixdialog.c gtk+3.0-3.4.2.orig/gtk/gtkprintunixdialog.c --- gtk+3.0-3.4.2/gtk/gtkprintunixdialog.c 2012-03-19 02:14:22.000000000 +0530 +++ gtk+3.0-3.4.2.orig/gtk/gtkprintunixdialog.c 2014-02-04 11:30:37.677795000 +0530 @@ -172,7 +172,13 @@ static void set_cell_sensitivity_fun gpointer data); static gboolean set_active_printer (GtkPrintUnixDialog *dialog, const gchar *printer_name); + static void redraw_page_layout_preview (GtkPrintUnixDialog *dialog); +static gboolean printer_compare (GtkTreeModel *model, + gint column, + const gchar *key, + GtkTreeIter *iter, + gpointer search_data); /* GtkBuildable */ static void gtk_print_unix_dialog_buildable_init (GtkBuildableIface *iface); @@ -2027,6 +2033,85 @@ selected_printer_changed (GtkTreeSelecti g_object_notify ( G_OBJECT(dialog), "selected-printer"); } +static gboolean +printer_compare (GtkTreeModel *model, + gint column, + const gchar *key, + GtkTreeIter *iter, + gpointer search_data) +{ + gboolean matches = FALSE; + + if (key != NULL) + { + gchar *name = NULL; + gchar *location = NULL; + gchar *casefold_key = NULL; + gchar *casefold_name = NULL; + gchar *casefold_location = NULL; + gchar **keys; + gchar *tmp1, *tmp2; + gint i; + + gtk_tree_model_get (model, iter, + PRINTER_LIST_COL_NAME, &name, + PRINTER_LIST_COL_LOCATION, &location, + -1); + + casefold_key = g_utf8_casefold (key, -1); + + if (name != NULL) + { + casefold_name = g_utf8_casefold (name, -1); + g_free (name); + } + + if (location != NULL) + { + casefold_location = g_utf8_casefold (location, -1); + g_free (location); + } + + if (casefold_name != NULL || + casefold_location != NULL) + { + keys = g_strsplit_set (casefold_key, " \t", 0); + if (keys != NULL) + { + matches = TRUE; + + for (i = 0; keys[i] != NULL; i++) + { + if (keys[i][0] != '\0') + { + tmp1 = tmp2 = NULL; + + if (casefold_name != NULL) + tmp1 = g_strstr_len (casefold_name, -1, keys[i]); + + if (casefold_location != NULL) + tmp2 = g_strstr_len (casefold_location, -1, keys[i]); + + if (tmp1 == NULL && tmp2 == NULL) + { + matches = FALSE; + break; + } + } + } + + g_strfreev (keys); + } + } + + g_free (casefold_location); + g_free (casefold_name); + g_free (casefold_key); + } + + return !matches; +} + static void update_collate_icon (GtkToggleButton *toggle_button, GtkPrintUnixDialog *dialog) @@ -2216,6 +2301,7 @@ create_main_page (GtkPrintUnixDialog *di gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (treeview), TRUE); gtk_tree_view_set_search_column (GTK_TREE_VIEW (treeview), PRINTER_LIST_COL_NAME); gtk_tree_view_set_enable_search (GTK_TREE_VIEW (treeview), TRUE); + gtk_tree_view_set_search_equal_func (GTK_TREE_VIEW (treeview), printer_compare, treeview, NULL); selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (treeview)); gtk_tree_selection_set_mode (selection, GTK_SELECTION_BROWSE); g_signal_connect (selection, "changed", G_CALLBACK (selected_printer_changed), dialog); ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/001_static-linking-dont-query-immodules.patch����������������������������������������0000664�0000000�0000000�00000003617�12312607374�021255� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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.24.19/configure.ac =================================================================== --- gtk+-2.24.19.orig/configure.ac 2013-06-28 23:39:49.071200389 +0200 +++ gtk+-2.24.19/configure.ac 2013-06-28 23:39:49.063200297 +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.24.19/modules/input/Makefile.am =================================================================== --- gtk+-2.24.19.orig/modules/input/Makefile.am 2013-06-28 23:39:49.071200389 +0200 +++ gtk+-2.24.19/modules/input/Makefile.am 2013-06-28 23:39:49.063200297 +0200 @@ -189,8 +189,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. @@ -253,7 +257,18 @@ included-modules: $(noinst_LTLIBRARIES) immodules.cache: Makefile.am $(module_LTLIBRARIES) - $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > immodules.cache + @if $(RUN_QUERY_IMMODULES_TEST) ; then \ + echo "$(top_builddir)/gtk/gtk-query-immodules-2.0 > immodules.cache" ; \ + $(top_builddir)/gtk/gtk-query-immodules-2.0 $(module_LTLIBRARIES) > immodules.cache; \ + else \ + echo "***" ; \ + echo "*** Warning: immodules.cache not built" ; \ + echo "***" ; \ + echo "*** Generate this file manually on host" ; \ + echo "*** system using gtk-query-immodules-2.0" ; \ + echo "***" ; \ + touch immodules.cache; \ + fi CLEANFILES = immodules.cache �����������������������������������������������������������������������������������������������������������������debian/patches/022_disable-viqr-im-for-vi-locale.patch����������������������������������������������0000664�0000000�0000000�00000001230�12312607374�017646� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Index: gtk+2.0-2.22.0/modules/input/imviqr.c =================================================================== --- gtk+2.0-2.22.0.orig/modules/input/imviqr.c 2010-09-23 05:00:38.000000000 +0200 +++ gtk+2.0-2.22.0/modules/input/imviqr.c 2010-09-23 20:29:37.333633329 +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[] = { ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/042_treeview_single-focus.patch������������������������������������������������������0000664�0000000�0000000�00000001235�12312607374�016543� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Index: gtk+-2.24.19/gtk/gtktreeview.c =================================================================== --- gtk+-2.24.19.orig/gtk/gtktreeview.c 2013-06-28 23:40:08.435421781 +0200 +++ gtk+-2.24.19/gtk/gtktreeview.c 2013-06-28 23:40:08.427421690 +0200 @@ -9628,7 +9628,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); �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/095_git_menus_scrolling.patch��������������������������������������������������������0000664�0000000�0000000�00000004575�12312607374�016323� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������From 71d6a289fc17ca55cbe1bcd071611919550ff24c Mon Sep 17 00:00:00 2001 From: Matthias Clasen <mclasen@redhat.com> Date: Sun, 31 Oct 2010 19:52:32 +0000 Subject: Fix interaction between scrolling menus and automatic mnemonics https://bugzilla.gnome.org/show_bug.cgi?id=612611 --- Index: b/gtk/gtkmenu.c =================================================================== --- a/gtk/gtkmenu.c +++ b/gtk/gtkmenu.c @@ -233,7 +233,8 @@ static void gtk_menu_deactivate (GtkMenuShell *menu_shell); static void gtk_menu_show_all (GtkWidget *widget); static void gtk_menu_hide_all (GtkWidget *widget); -static void gtk_menu_position (GtkMenu *menu); +static void gtk_menu_position (GtkMenu *menu, + gboolean set_scroll_offset); static void gtk_menu_reparent (GtkMenu *menu, GtkWidget *new_parent, gboolean unrealize); @@ -1131,7 +1132,7 @@ if (menu->torn_off) { gtk_window_set_screen (GTK_WINDOW (menu->tearoff_window), new_screen); - gtk_menu_position (menu); + gtk_menu_position (menu, TRUE); } gtk_window_set_screen (GTK_WINDOW (menu->toplevel), new_screen); @@ -1564,7 +1565,7 @@ /* Position the menu, possibly changing the size request */ - gtk_menu_position (menu); + gtk_menu_position (menu, TRUE); /* Compute the size of the toplevel and realize it so we * can scroll correctly. @@ -1916,7 +1917,7 @@ g_return_if_fail (GTK_IS_MENU (menu)); if (!menu->torn_off && gtk_widget_is_drawable (GTK_WIDGET (menu))) - gtk_menu_position (menu); + gtk_menu_position (menu, FALSE); } static void @@ -2094,7 +2095,7 @@ gtk_menu_set_tearoff_hints (menu, width); gtk_widget_realize (menu->tearoff_window); - gtk_menu_position (menu); + gtk_menu_position (menu, TRUE); gtk_widget_show (GTK_WIDGET (menu)); gtk_widget_show (menu->tearoff_window); @@ -4176,7 +4177,8 @@ } static void -gtk_menu_position (GtkMenu *menu) +gtk_menu_position (GtkMenu *menu, + gboolean set_scroll_offset) { GtkWidget *widget; GtkRequisition requisition; @@ -4407,7 +4409,8 @@ requisition.width, requisition.height); } - menu->scroll_offset = scroll_offset; + if (set_scroll_offset) + menu->scroll_offset = scroll_offset; } static void �����������������������������������������������������������������������������������������������������������������������������������debian/patches/063_treeview_almost_fixed.patch������������������������������������������������������0000664�0000000�0000000�00000006667�12312607374�016644� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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.24.12/gtk/gtktreeprivate.h =================================================================== --- gtk+-2.24.12.orig/gtk/gtktreeprivate.h 2011-09-18 09:59:38.000000000 +1200 +++ gtk+-2.24.12/gtk/gtktreeprivate.h 2012-09-04 16:42:48.718564047 +1200 @@ -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.24.12/gtk/gtktreeview.c =================================================================== --- gtk+-2.24.12.orig/gtk/gtktreeview.c 2012-09-04 16:42:43.974564211 +1200 +++ gtk+-2.24.12/gtk/gtktreeview.c 2012-09-04 16:42:48.718564047 +1200 @@ -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: @@ -1354,6 +1364,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; @@ -1436,6 +1447,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; @@ -8352,7 +8366,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); �������������������������������������������������������������������������debian/patches/012_ubuntu-set-grab-add.patch��������������������������������������������������������0000664�0000000�0000000�00000002770�12312607374�016007� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������=== modified file 'gtk/gtk.symbols' Index: gtk+-2.24.12/gtk/gtk.symbols =================================================================== --- gtk+-2.24.12.orig/gtk/gtk.symbols 2011-10-18 11:35:29.000000000 +1300 +++ gtk+-2.24.12/gtk/gtk.symbols 2012-09-04 16:42:40.382564335 +1200 @@ -5323,6 +5323,7 @@ gtk_widget_get_realized gtk_widget_set_mapped gtk_widget_get_mapped +ubuntu_gtk_widget_set_has_grab #endif #endif Index: gtk+-2.24.12/gtk/gtkwidget.c =================================================================== --- gtk+-2.24.12.orig/gtk/gtkwidget.c 2012-09-04 06:28:02.000000000 +1200 +++ gtk+-2.24.12/gtk/gtkwidget.c 2012-09-04 16:42:40.382564335 +1200 @@ -11449,5 +11449,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.24.12/gtk/gtkwidget.h =================================================================== --- gtk+-2.24.12.orig/gtk/gtkwidget.h 2011-08-16 14:30:52.000000000 +1200 +++ gtk+-2.24.12/gtk/gtkwidget.h 2012-09-04 16:42:40.382564335 +1200 @@ -1346,6 +1346,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__ */ ��������debian/patches/series�������������������������������������������������������������������������������0000664�0000000�0000000�00000001777�12312607374�012055� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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 012_ubuntu-set-grab-add.patch 015_default-fallback-icon-theme.patch 022_disable-viqr-im-for-vi-locale.patch 042_treeview_single-focus.patch 044_tracker_fts.patch 060_ignore-random-icons.patch 061_use_pdf_as_default_printing_standard.patch 062_dnd_menubar.patch 063_treeview_almost_fixed.patch 065_gir_set_packages.patch 071_no_offscreen_widgets_grabbing.patch 090_logging_file_saves.patch 092_default_to_xdg_document_dir.patch 093_gtk3_gtkimage_fallbacks_use.patch 095_git_menus_scrolling.patch 096_git_gtkprintsettings.patch 097_statusicon_image_fallback.patch 098_multiarch_module_path.patch 099_printer_filename_fix.patch 100_overlay_scrollbar_loading.patch print-dialog-show-options-of-remote-dnssd-printers.patch gtk-shell-shows-menubar.patch backport_search_printer_location.patch git_print_default_location.patch �debian/patches/097_statusicon_image_fallback.patch��������������������������������������������������0000664�0000000�0000000�00000001453�12312607374�017424� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������## Description: Makes images in GtkStatusIcon use fallbacks by default if the property is available ## Origin/Author: Ted Gould <ted@canonical.com> ## Bug: http://launchpad.net/bugs/729150 Index: b/gtk/gtkstatusicon.c =================================================================== --- a/gtk/gtkstatusicon.c +++ b/gtk/gtkstatusicon.c @@ -870,6 +870,11 @@ G_CALLBACK (gtk_status_icon_screen_changed), status_icon); priv->image = gtk_image_new (); gtk_widget_set_can_focus (priv->image, TRUE); + + if (g_object_class_find_property(G_OBJECT_CLASS(GTK_IMAGE_GET_CLASS(priv->image)), "use-fallback") != NULL) { + g_object_set(G_OBJECT(priv->image), "use-fallback", TRUE, NULL); + } + gtk_container_add (GTK_CONTAINER (priv->tray_icon), priv->image); gtk_widget_show (priv->image); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/003_gdk.pc_privates.patch������������������������������������������������������������0000664�0000000�0000000�00000004147�12312607374�015320� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Index: gtk+-2.24.19/configure.ac =================================================================== --- gtk+-2.24.19.orig/configure.ac 2013-06-28 23:39:54.495262402 +0200 +++ gtk+-2.24.19/configure.ac 2013-06-28 23:39:54.487262310 +0200 @@ -1324,23 +1324,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` $MATH_LIB" -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` $MATH_LIB" +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.24.19/gdk-2.0.pc.in =================================================================== --- gtk+-2.24.19.orig/gdk-2.0.pc.in 2013-06-28 23:39:54.495262402 +0200 +++ gtk+-2.24.19/gdk-2.0.pc.in 2013-06-28 23:39:54.487262310 +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@ �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/print-dialog-show-options-of-remote-dnssd-printers.patch�����������������������������0000664�0000000�0000000�00000001413�12312607374�023554� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Index: b/modules/printbackends/cups/gtkprintbackendcups.c =================================================================== --- a/modules/printbackends/cups/gtkprintbackendcups.c +++ b/modules/printbackends/cups/gtkprintbackendcups.c @@ -2240,6 +2240,19 @@ resource); #endif + if (strncmp (method, "dnssd", 5) == 0) + { + _httpResolveURI(cups_printer->printer_uri, + uri, sizeof(uri), 0, NULL, NULL); + httpSeparateURI (HTTP_URI_CODING_ALL, + uri, + method, sizeof (method), + username, sizeof (username), + hostname, sizeof (hostname), + &port, + resource, sizeof (resource)); + } + if (strncmp (resource, "/printers/", 10) == 0) { cups_printer->ppd_name = g_strdup (resource + 10); �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/065_gir_set_packages.patch�����������������������������������������������������������0000664�0000000�0000000�00000004541�12312607374�015535� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������=== modified file 'gdk/Makefile.am' --- a/gdk/Makefile.am +++ b/gdk/Makefile.am @@ -3,6 +3,7 @@ -include $(INTROSPECTION_MAKEFILE) INTROSPECTION_GIRS = INTROSPECTION_SCANNER_ARGS = \ + --warn-all \ --add-include-path=../gdk INTROSPECTION_COMPILER_ARGS = \ --includedir=$(srcdir) \ @@ -199,10 +200,11 @@ gdkenumtypes.h Gdk-2.0.gir: $(gdktargetlib) Makefile -Gdk_2_0_gir_SCANNERFLAGS = --warn-all +Gdk_2_0_gir_SCANNERFLAGS = --c-include="gdk/gdk.h" 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) +Gdk_2_0_gir_EXPORT_PACKAGES = gdk-2.0 Gdk_2_0_gir_CFLAGS = $(INCLUDES) INTROSPECTION_GIRS += Gdk-2.0.gir @@ -240,10 +242,12 @@ x11/gdkx.h GdkX11-2.0.gir: $(gdktargetlib) Gdk-2.0.gir Makefile -GdkX11_2_0_gir_SCANNERFLAGS = --warn-all --strip-prefix=Gdk -GdkX11_2_0_gir_INCLUDES = Gio-2.0 Gdk-2.0 GdkPixbuf-2.0 Pango-1.0 xlib-2.0 +GdkX11_2_0_gir_SCANNERFLAGS = --identifier-prefix=Gdk --include-uninstalled=Gdk-2.0.gir +GdkX11_2_0_gir_INCLUDES = Gio-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_EXPORT_PACKAGES = gdk-x11-2.0 GdkX11_2_0_gir_CFLAGS = $(INCLUDES) -L$(top_builddir)/gdk INTROSPECTION_GIRS += GdkX11-2.0.gir --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -3,6 +3,7 @@ -include $(INTROSPECTION_MAKEFILE) INTROSPECTION_GIRS = INTROSPECTION_SCANNER_ARGS = \ + --warn-all \ --add-include-path=../gdk INTROSPECTION_COMPILER_ARGS = \ --includedir=$(srcdir) \ @@ -1012,11 +1013,11 @@ gtktypebuiltins.c Gtk-2.0.gir: $(INTROSPECTION_SCANNER) $(gtktargetlib) $(top_builddir)/gdk/Gdk-2.0.gir Makefile -Gtk_2_0_gir_SCANNERFLAGS = --warn-all --add-include-path=$(top_builddir)/gdk +Gtk_2_0_gir_SCANNERFLAGS = --include-uninstalled=$(top_builddir)/gdk/Gdk-2.0.gir if USE_X11 Gtk_2_0_gir_SCANNERFLAGS += --add-include-path=$(top_builddir)/gdk/x11 endif -Gtk_2_0_gir_INCLUDES = Atk-1.0 Gdk-2.0 +Gtk_2_0_gir_INCLUDES = Atk-1.0 Gtk_2_0_gir_CFLAGS = \ $(INCLUDES) \ -UGDK_DISABLE_DEPRECATED \ @@ -1024,6 +1025,7 @@ -DGTK_TEXT_USE_INTERNAL_UNSUPPORTED_API Gtk_2_0_gir_LIBS = $(gtktargetlib) Gtk_2_0_gir_FILES = $(introspection_files) +Gtk_2_0_gir_EXPORT_PACKAGES = gtk+-2.0 INTROSPECTION_GIRS += Gtk-2.0.gir girdir = $(datadir)/gir-1.0 ���������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/002_static-linking-dont-build-perf.patch���������������������������������������������0000664�0000000�0000000�00000001342�12312607374�020137� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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.22.0/Makefile.am =================================================================== --- gtk+2.0-2.22.0.orig/Makefile.am 2010-09-23 05:00:34.000000000 +0200 +++ gtk+2.0-2.22.0/Makefile.am 2010-09-23 20:29:24.497578749 +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 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/096_git_gtkprintsettings.patch�������������������������������������������������������0000664�0000000�0000000�00000004612�12312607374�016534� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������From 3dde093b71b47e2512d74d6573af4c2eea54043e Mon Sep 17 00:00:00 2001 From: Marek Kasik <mkasik@redhat.com> Date: Fri, 19 Nov 2010 09:55:25 +0000 Subject: Check whether a resolution has been set in GtkPrintSettings If resolution has not been set then use default resolution from ppd. https://bugzilla.gnome.org/show_bug.cgi?id=635254 --- Index: b/modules/printbackends/cups/gtkprintbackendcups.c =================================================================== --- a/modules/printbackends/cups/gtkprintbackendcups.c +++ b/modules/printbackends/cups/gtkprintbackendcups.c @@ -5211,23 +5211,29 @@ gtk_printer_option_set (option, cups_value); else { - int res = gtk_print_settings_get_resolution (settings); - int res_x = gtk_print_settings_get_resolution_x (settings); - int res_y = gtk_print_settings_get_resolution_y (settings); + if (gtk_print_settings_get_int_with_default (settings, GTK_PRINT_SETTINGS_RESOLUTION, -1) != -1 || + gtk_print_settings_get_int_with_default (settings, GTK_PRINT_SETTINGS_RESOLUTION_X, -1) != -1 || + gtk_print_settings_get_int_with_default (settings, GTK_PRINT_SETTINGS_RESOLUTION_Y, -1) != -1 || + option->value == NULL || option->value[0] == '\0') + { + int res = gtk_print_settings_get_resolution (settings); + int res_x = gtk_print_settings_get_resolution_x (settings); + int res_y = gtk_print_settings_get_resolution_y (settings); - if (res_x != res_y) - { - value = g_strdup_printf ("%dx%ddpi", res_x, res_y); - gtk_printer_option_set (option, value); - g_free (value); + if (res_x != res_y) + { + value = g_strdup_printf ("%dx%ddpi", res_x, res_y); + gtk_printer_option_set (option, value); + g_free (value); + } + else if (res != 0) + { + value = g_strdup_printf ("%ddpi", res); + gtk_printer_option_set (option, value); + g_free (value); + } } - else if (res != 0) - { - value = g_strdup_printf ("%ddpi", res); - gtk_printer_option_set (option, value); - g_free (value); - } - } + } } else if (strcmp (option->name, "gtk-paper-type") == 0) map_settings_to_option (option, media_type_map, G_N_ELEMENTS (media_type_map), ����������������������������������������������������������������������������������������������������������������������debian/patches/099_printer_filename_fix.patch�������������������������������������������������������0000664�0000000�0000000�00000002621�12312607374�016440� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������=== modified file 'gtk/gtkprinteroptionwidget.c' Index: b/gtk/gtkprinteroptionwidget.c =================================================================== --- a/gtk/gtkprinteroptionwidget.c +++ b/gtk/gtkprinteroptionwidget.c @@ -929,11 +929,19 @@ dirname = g_path_get_dirname (filename); text = g_filename_to_utf8 (basename, -1, NULL, NULL, NULL); + /* need to update dirname and basename without triggering function to avoid loosing names */ + g_signal_handlers_block_by_func (priv->entry, G_CALLBACK (filesave_changed_cb), widget); + g_signal_handlers_block_by_func (priv->combo, G_CALLBACK (filesave_changed_cb), widget); + if (text != NULL) gtk_entry_set_text (GTK_ENTRY (priv->entry), text); if (g_path_is_absolute (dirname)) - gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (priv->combo), - dirname); + gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (priv->combo), + dirname); + + g_signal_handlers_unblock_by_func (priv->entry, G_CALLBACK (filesave_changed_cb), widget); + g_signal_handlers_unblock_by_func (priv->combo, G_CALLBACK (filesave_changed_cb), widget); + g_free (text); g_free (basename); g_free (dirname); ���������������������������������������������������������������������������������������������������������������debian/patches/090_logging_file_saves.patch���������������������������������������������������������0000664�0000000�0000000�00000001727�12312607374�016072� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Index: gtk+-2.24.12/gtk/gtkrecentmanager.c =================================================================== --- gtk+-2.24.12.orig/gtk/gtkrecentmanager.c 2012-09-04 06:28:02.000000000 +1200 +++ gtk+-2.24.12/gtk/gtkrecentmanager.c 2012-09-04 16:42:53.590563878 +1200 @@ -907,7 +907,7 @@ GtkRecentManager *manager = user_data; GtkRecentData recent_data; GFileInfo *file_info; - gchar *uri; + gchar *uri, *basename; uri = g_file_get_uri (file); @@ -931,7 +931,11 @@ g_object_unref (file_info); } else - recent_data.mime_type = g_strdup (GTK_RECENT_DEFAULT_MIME); /* FIXME: maybe we should make up the MIME type from the filename's extension */ + { + basename = g_file_get_basename (file); + recent_data.mime_type = g_content_type_guess (basename, NULL, 0, NULL); + g_free (basename); + } recent_data.app_name = g_strdup (g_get_application_name ()); recent_data.app_exec = g_strjoin (" ", g_get_prgname (), "%u", NULL); �����������������������������������������debian/patches/071_no_offscreen_widgets_grabbing.patch����������������������������������������������0000664�0000000�0000000�00000001515�12312607374�020265� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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.24.12/gtk/gtkmain.c =================================================================== --- gtk+-2.24.12.orig/gtk/gtkmain.c 2012-08-25 11:38:09.000000000 +1200 +++ gtk+-2.24.12/gtk/gtkmain.c 2012-09-04 16:42:50.466563986 +1200 @@ -1862,9 +1862,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); �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/061_use_pdf_as_default_printing_standard.patch���������������������������������������0000664�0000000�0000000�00000001167�12312607374�021646� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������--- a/modules/printbackends/lpr/gtkprintbackendlpr.c +++ b/modules/printbackends/lpr/gtkprintbackendlpr.c @@ -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), ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/git_print_default_location.patch�����������������������������������������������������0000664�0000000�0000000�00000002242�12312607374�017240� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������From 60189143a4097c615f9cda0dbec2cd48b4eca77d Mon Sep 17 00:00:00 2001 From: Mike Gorse <mgorse@suse.com> Date: Wed, 30 Oct 2013 20:42:09 +0000 Subject: Print to a file in the current directory by default When printing to a file, the filename was not being propagated if a directory was not specified. https://bugzilla.gnome.org/show_bug.cgi?id=711177 --- diff --git a/gtk/gtkprinteroptionwidget.c b/gtk/gtkprinteroptionwidget.c index 2f43edf..08c2aff 100644 --- a/gtk/gtkprinteroptionwidget.c +++ b/gtk/gtkprinteroptionwidget.c @@ -521,7 +521,16 @@ filesave_changed_cb (GtkWidget *button, if (g_uri_parse_scheme (file) != NULL) uri = g_strdup (file); else - uri = g_build_path ("/", gtk_file_chooser_get_uri (GTK_FILE_CHOOSER (priv->combo)), file, NULL); + { + gchar *chooser_uri = gtk_file_chooser_get_uri (GTK_FILE_CHOOSER (priv->combo)); + if (chooser_uri) + { + uri = g_build_path ("/", chooser_uri, file, NULL); + g_free (chooser_uri); + } + else + uri = g_filename_to_uri (file, NULL, NULL); + } } if (uri) -- cgit v0.9.2 ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/gtk-shell-shows-menubar.patch��������������������������������������������������������0000664�0000000�0000000�00000004046�12312607374�016333� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Index: b/gdk/x11/gdksettings.c =================================================================== --- a/gdk/x11/gdksettings.c +++ b/gdk/x11/gdksettings.c @@ -80,7 +80,8 @@ "Net/EnableInputFeedbackSounds\0" "gtk-enable-input-feedback-sounds\0" "Net/EnableEventSounds\0" "gtk-enable-event-sounds\0" "Gtk/CursorBlinkTimeout\0" "gtk-cursor-blink-timeout\0" - "Gtk/AutoMnemonics\0" "gtk-auto-mnemonics\0"; + "Gtk/AutoMnemonics\0" "gtk-auto-mnemonics\0" + "Gtk/ShellShowsMenubar\0" "gtk-shell-shows-menubar\0"; static const struct @@ -133,5 +134,6 @@ { 1573, 1603 }, { 1636, 1658 }, { 1682, 1705 }, - { 1730, 1748 } + { 1730, 1748 }, + { 1767, 1789 } }; Index: b/gtk/gtksettings.c =================================================================== --- a/gtk/gtksettings.c +++ b/gtk/gtksettings.c @@ -139,7 +139,8 @@ PROP_LABEL_SELECT_ON_FOCUS, PROP_COLOR_PALETTE, PROP_IM_PREEDIT_STYLE, - PROP_IM_STATUS_STYLE + PROP_IM_STATUS_STYLE, + PROP_SHELL_SHOWS_MENUBAR }; /* --- prototypes --- */ @@ -1205,6 +1206,16 @@ GTK_PARAM_READWRITE), gtk_rc_property_parse_enum); g_assert (result == PROP_IM_STATUS_STYLE); + + result = settings_install_property_parser (class, + g_param_spec_boolean ("gtk-shell-shows-menubar", + P_("Desktop shell shows the menubar"), + P_("Set to TRUE if the desktop environment " + "is displaying the menubar, FALSE if " + "the app should display it itself."), + FALSE, GTK_PARAM_READWRITE), + NULL); + g_assert (result == PROP_SHELL_SHOWS_MENUBAR); } static void ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/005_support_disabling_x11_extensions.patch�������������������������������������������0000664�0000000�0000000�00000004775�12312607374�020746� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Bug: https://bugzilla.gnome.org/show_bug.cgi?id=612918 Author: Cyril Brulebois <kibi@debian.org> Support disabling X11 extensions Index: gtk+-2.24.19/configure.ac =================================================================== --- gtk+-2.24.19.orig/configure.ac 2013-06-28 23:39:59.259316868 +0200 +++ gtk+-2.24.19/configure.ac 2013-06-28 23:39:59.255316823 +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])],, @@ -1192,7 +1204,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" @@ -1208,7 +1221,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" @@ -1217,7 +1231,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" @@ -1226,7 +1241,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" ���debian/patches/093_gtk3_gtkimage_fallbacks_use.patch������������������������������������������������0000664�0000000�0000000�00000007320�12312607374�017640� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������From 714d9bc4078898bfb9513e5e17c2bb3c935eef5f Mon Sep 17 00:00:00 2001 From: Bastien Nocera <hadess@hadess.net> Date: Tue, 18 Jan 2011 16:13:00 +0000 Subject: GtkImage: Add "use-fallback" property So that icon-name and GIcon type of GtkImages can use automatic fallback names. --- Index: gtk+2.0-2.24.4/gtk/gtkimage.c =================================================================== --- gtk+2.0-2.24.4.orig/gtk/gtkimage.c 2011-04-13 12:26:48.104712854 -0500 +++ gtk+2.0-2.24.4/gtk/gtkimage.c 2011-04-13 12:28:19.576702233 -0500 @@ -138,6 +138,7 @@ gint pixel_size; guint need_calc_size : 1; + guint use_fallback : 1; }; #define GTK_IMAGE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_IMAGE, GtkImagePrivate)) @@ -188,7 +189,8 @@ PROP_PIXBUF_ANIMATION, PROP_ICON_NAME, PROP_STORAGE_TYPE, - PROP_GICON + PROP_GICON, + PROP_USE_FALLBACK }; G_DEFINE_TYPE (GtkImage, gtk_image, GTK_TYPE_MISC) @@ -351,6 +353,24 @@ GTK_IMAGE_EMPTY, GTK_PARAM_READABLE)); + /** + * GtkImage:use-fallback: + * + * Whether the icon displayed in the GtkImage will use + * standard icon names fallback. The value of this property + * is only relevant for images of type %GTK_IMAGE_ICON_NAME + * and %GTK_IMAGE_GICON. + * + * Since: 3.0 + */ + g_object_class_install_property (gobject_class, + PROP_USE_FALLBACK, + g_param_spec_boolean ("use-fallback", + P_("Use Fallback"), + P_("Whether to use icon names fallback"), + FALSE, + GTK_PARAM_READWRITE)); + g_type_class_add_private (object_class, sizeof (GtkImagePrivate)); } @@ -387,8 +407,10 @@ GParamSpec *pspec) { GtkImage *image; + GtkImagePrivate *priv; image = GTK_IMAGE (object); + priv = GTK_IMAGE_GET_PRIVATE (image); switch (prop_id) { @@ -477,6 +499,18 @@ image->icon_size); break; + case PROP_USE_FALLBACK: + priv->use_fallback = g_value_get_boolean(value); + if (image->storage_type == GTK_IMAGE_ICON_NAME) + gtk_image_set_from_icon_name (image, + image->data.name.icon_name, + image->icon_size); + else if (image->storage_type == GTK_IMAGE_GICON) + gtk_image_set_from_gicon (image, + image->data.gicon.icon, + image->icon_size); + break; + default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; @@ -574,6 +608,10 @@ case PROP_STORAGE_TYPE: g_value_set_enum (value, image->storage_type); break; + + case PROP_USE_FALLBACK: + g_value_set_boolean (value, priv->use_fallback); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); @@ -1667,6 +1705,8 @@ icon_theme = gtk_icon_theme_get_for_screen (screen); settings = gtk_settings_get_for_screen (screen); flags = GTK_ICON_LOOKUP_USE_BUILTIN; + if (priv->use_fallback) + flags |= GTK_ICON_LOOKUP_GENERIC_FALLBACK; if (image->data.name.pixbuf == NULL) { if (priv->pixel_size != -1) @@ -1750,6 +1790,8 @@ icon_theme = gtk_icon_theme_get_for_screen (screen); settings = gtk_settings_get_for_screen (screen); flags = GTK_ICON_LOOKUP_USE_BUILTIN; + if (priv->use_fallback) + flags |= GTK_ICON_LOOKUP_GENERIC_FALLBACK; if (image->data.gicon.pixbuf == NULL) { if (priv->pixel_size != -1) ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/092_default_to_xdg_document_dir.patch������������������������������������������������0000664�0000000�0000000�00000002175�12312607374�017770� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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 Index: gtk+-2.24.12/gtk/gtkprinteroptionwidget.c =================================================================== --- gtk+-2.24.12.orig/gtk/gtkprinteroptionwidget.c 2012-01-11 13:06:05.000000000 +1300 +++ gtk+-2.24.12/gtk/gtkprinteroptionwidget.c 2012-09-04 16:45:23.506558688 +1200 @@ -824,6 +824,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), ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/patches/062_dnd_menubar.patch����������������������������������������������������������������0000664�0000000�0000000�00000005667�12312607374�014530� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Comment: let click on menubar to do dnd # Upstream: https://bugzilla.gnome.org/show_bug.cgi?id=611313 # Index: gtk+2.0-2.24.18/gtk/gtkmenushell.c =================================================================== --- gtk+2.0-2.24.18.orig/gtk/gtkmenushell.c 2013-06-05 19:21:26.045252150 +0200 +++ gtk+2.0-2.24.18/gtk/gtkmenushell.c 2013-06-05 19:21:26.041252150 +0200 @@ -406,6 +406,14 @@ TRUE, 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)); } @@ -609,18 +617,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); + } } } } �������������������������������������������������������������������������debian/patches/015_default-fallback-icon-theme.patch������������������������������������������������0000664�0000000�0000000�00000001176�12312607374�017446� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Index: gtk+-2.24.19/gtk/gtksettings.c =================================================================== --- gtk+-2.24.19.orig/gtk/gtksettings.c 2013-06-28 23:40:03.703367678 +0200 +++ gtk+-2.24.19/gtk/gtksettings.c 2013-06-28 23:40:03.695367587 +0200 @@ -331,7 +331,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); ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-bin.install.in���������������������������������������������������������������������0000664�0000000�0000000�00000000277�12312607374�013442� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# 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 ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-bin.prerm��������������������������������������������������������������������������0000664�0000000�0000000�00000000367�12312607374�012514� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������#!/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# �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-common.install.in������������������������������������������������������������������0000664�0000000�0000000�00000000306�12312607374�014153� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# from the shared flavor debian/install/shared/etc/gtk-@APIVER@/im-multipress.conf etc/gtk-@APIVER@ debian/install/shared/usr/share/locale usr/share debian/install/shared/usr/share/themes usr/share ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/gtk-options.7��������������������������������������������������������������������������������0000664�0000000�0000000�00000005275�12312607374�011554� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.\" gtk-options.7 - Standard Command Line Options for Gnome Programs .\" Copyright 2003 Jochen Voss <voss@debian.org> .\" 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 <voss@debian.org>. �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������debian/libgtk2.0-doc.doc-base.gdk�������������������������������������������������������������������0000664�0000000�0000000�00000000717�12312607374�013604� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������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/gdk2/index.html Files: /usr/share/doc/libgtk2.0-doc/gdk2/*.html �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������