diff -Nru gtk+2.0-2.24.19/ChangeLog gtk+2.0-2.24.20/ChangeLog --- gtk+2.0-2.24.19/ChangeLog 2013-06-16 17:02:09.000000000 +0000 +++ gtk+2.0-2.24.20/ChangeLog 2013-07-04 17:14:54.000000000 +0000 @@ -1,3 +1,159 @@ +commit 158fc5d9e0f541420708a22ce0b120f25df996dc +Author: Matthias Clasen +Date: Thu Jul 4 09:51:49 2013 -0400 + + 2.24.20 + + NEWS | 21 +++++++++++++++++++++ + configure.ac | 4 ++-- + 2 files changed, 23 insertions(+), 2 deletions(-) + +commit 54c020204fba25aae4fdfed78af3f553125bf82e +Author: Matthias Clasen +Date: Mon May 17 22:58:25 2010 -0400 + + Let query utilities update the cache file directly + + This is much more convenient for packagers than having to + redirect the output into the cache file, and much less error-prone. + + docs/reference/gtk/gtk-query-immodules-2.0.xml | 16 ++++- + gtk/queryimmodules.c | 97 + ++++++++++++++++---------- + 2 files changed, 75 insertions(+), 38 deletions(-) + +commit c8849046860a9b17fa943247d85ddadb29262b48 +Author: Matthias Clasen +Date: Thu Jul 4 09:27:17 2013 -0400 + + Move the module cache files below libdir + + These files contain architecture-dependent paths, and thus placing + them into sysconfdir causes unnecessary hassle. Now the immodule cache + file is looked for in libdir/gtk-2.0/2.10.0/immodules.cache. + + Belated backport of a change that was done in the run-up to 3.0. + + docs/reference/gtk/gtk-query-immodules-2.0.xml | 6 ++ + docs/reference/gtk/running.sgml | 9 +- + gtk/gtkrc.c | 2 +- + gtk/queryimmodules.c | 118 + ++++++++++++------------- + 4 files changed, 70 insertions(+), 65 deletions(-) + +commit 602b44020adbae882b5d7df378081969cf639692 +Author: Matthias Clasen +Date: Thu Jul 4 09:05:07 2013 -0400 + + Look for rc files in system config dirs as well + + This will allow us to ship package defaults in /usr instead + of /etc. + + gtk/gtkrc.c | 12 +++++++++++- + 1 file changed, 11 insertions(+), 1 deletion(-) + +commit 4c6cd0fa12dde050ee13597d34c0b05e04cb388e +Author: Piotr DrÄ…g +Date: Wed Jun 26 16:38:58 2013 +0200 + + Updated Polish translation + + po/pl.po | 443 + ++++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 224 insertions(+), 219 deletions(-) + +commit a057ed26dc623dff0fc0c62ef287f6583b2710d0 +Author: Marek Kasik +Date: Tue Jun 25 14:34:15 2013 +0200 + + printing: List Avahi printers + + Show printers advertised by avahi on local network. CUPS + backend now looks for _ipps._tcp and _ipp._tcp services + offered by avahi. If it finds such a service (printer) + it requests its attributes through IPP_GET_PRINTER_ATTRIBUTES + ipp request and adds it to the list of printers. Such printer + behaves like a remote printer then. + If an avahi printer is a default printer then it is considered + default by the backend only if there is no local or remote + default printer. + This functionality is enabled when building Gtk+ with CUPS 1.6 + or later because it replaces browsing protocol removed in CUPS 1.6. + + https://bugzilla.gnome.org/show_bug.cgi?id=702455 + + configure.ac | 2 +- + modules/printbackends/cups/gtkcupsutils.c | 22 + + modules/printbackends/cups/gtkcupsutils.h | 3 + + modules/printbackends/cups/gtkprintbackendcups.c | 1290 + +++++++++++++++++++--- + modules/printbackends/cups/gtkprintercups.c | 29 +- + modules/printbackends/cups/gtkprintercups.h | 11 + + 6 files changed, 1205 insertions(+), 152 deletions(-) + +commit 4292fb433ce331c57bcf997dfcfd0f9be06c44be +Author: Valerio Messina +Date: Fri Jun 14 21:50:35 2013 +0200 + + GtkFileChooser: Missing hour on today's files for it&hu locales + on Win32 + + The file chooser does not show the hours for files modified today + when using it & hu locales on Win32. This is due to the %k format + conversion + for strftime() that is in Olson's Timezone Package, which msvcrt.dll + doesn't have. + Cygwin has it, though. + + So for now, we just use a %H format. While %k would render + six-in-the-morning as " 6" (6 preceded by a space), %H will render it + as "06". + + https://bugzilla.gnome.org/show_bug.cgi?id=560337 + + po/hu.po | 4 ++-- + po/it.po | 4 ++-- + 2 files changed, 4 insertions(+), 4 deletions(-) + +commit e62709da2ee6619f26c8446b545418e5f1b9e151 +Author: Michael Natterer +Date: Thu Jun 20 17:21:25 2013 +0200 + + quartz: remove check for keymap changes from update_keymap() + + The function is now only called when the keymap has actually + changed. bug #698183. + + gdk/quartz/gdkkeys-quartz.c | 424 + +++++++++++++++++++++----------------------- + 1 file changed, 206 insertions(+), 218 deletions(-) + +commit c2919a6e9144cb0e916af61a21e11de6ca13c6fe +Author: Michael Natterer +Date: Thu Jun 20 16:55:49 2013 +0200 + + quartz: update the keymap only if the input method changed + + and not on each keystroke, which for some IMs apparently caused a full + update on each keystroke, not just a check for changes. Patch from + Takuro Ashie, bug #698183. + + gdk/quartz/gdkkeys-quartz.c | 29 +++++++++++++++++++++-------- + 1 file changed, 21 insertions(+), 8 deletions(-) + +commit 99e3d072d6676d7a219594f05e0409b9eadd5a52 +Author: Aleksander Morgado +Date: Wed Feb 27 09:22:27 2013 +0100 + + win32: don't convert '\n' to '\r\n' when copying if it already is + '\r\n' + + https://bugzilla.gnome.org/show_bug.cgi?id=649390 + + gdk/win32/gdkproperty-win32.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + commit 0828a34333e6a4af6a21436e408ec57ce620d170 Author: Matthias Clasen Date: Sun Jun 16 11:04:03 2013 -0400 diff -Nru gtk+2.0-2.24.19/INSTALL gtk+2.0-2.24.20/INSTALL --- gtk+2.0-2.24.19/INSTALL 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/INSTALL 2013-07-04 17:15:09.000000000 +0000 @@ -4,7 +4,7 @@ GTK+ requires the following packages: - The GLib, Pango, GdkPixbuf, ATK and cairo libraries, available at the same - location as GTK+. GTK+ 2.24.19 requires at least GLib 2.28.0, + location as GTK+. GTK+ 2.24.20 requires at least GLib 2.28.0, Pango 1.20, GdkPixbuf 2.21.0, ATK 1.29.2 and cairo 1.6.0. - gobject-introspection 0.9.3 or newer. @@ -12,8 +12,8 @@ Simple install procedure ======================== - % gzip -cd gtk+-2.24.19.tar.gz | tar xvf - # unpack the sources - % cd gtk+-2.24.19 # change to the toplevel directory + % gzip -cd gtk+-2.24.20.tar.gz | tar xvf - # unpack the sources + % cd gtk+-2.24.20 # change to the toplevel directory % ./configure # run the `configure' script % make # build GTK+ [ Become root if necessary ] diff -Nru gtk+2.0-2.24.19/Makefile.in gtk+2.0-2.24.20/Makefile.in --- gtk+2.0-2.24.19/Makefile.in 2013-06-16 15:04:41.000000000 +0000 +++ gtk+2.0-2.24.20/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/NEWS gtk+2.0-2.24.20/NEWS --- gtk+2.0-2.24.19/NEWS 2013-06-16 14:46:50.000000000 +0000 +++ gtk+2.0-2.24.20/NEWS 2013-07-04 14:02:22.000000000 +0000 @@ -1,3 +1,24 @@ +Overview of Changes from GTK+ 2.24.19 to 2.24.20 +================================================ + +* Backport changes from GTK+ 3 to look for rc files in system + config dirs in addition to /etc/gtk-2.0 and ~/.gtkrc. + +* Backport changes from GTK+ 3 to look for the immodules cache + file in libdir. gtk-query-immodules-2.0 gained an --update-cache + option to write the output to the correct location. Note that + this may require slight adjustment of distro packaging. + +* Bug fixes: + 560337 GtkFileChooser hour time missing for current date files + 649390 CRLF text is copied to clipboard as CRCRLF on Windows + 698183 quartz: Text input is too slow and some keys are broken... + 702455 Add support for Avahi printers to gtk 2.24.x + +* Translation updates: + Polish + + Overview of Changes from GTK+ 2.24.18 to 2.24.19 ================================================ diff -Nru gtk+2.0-2.24.19/README gtk+2.0-2.24.20/README --- gtk+2.0-2.24.19/README 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/README 2013-07-04 17:15:09.000000000 +0000 @@ -1,7 +1,7 @@ General Information =================== -This is GTK+ version 2.24.19. GTK+ is a multi-platform toolkit for +This is GTK+ version 2.24.20. 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 projects to complete application suites. diff -Nru gtk+2.0-2.24.19/aclocal.m4 gtk+2.0-2.24.20/aclocal.m4 --- gtk+2.0-2.24.19/aclocal.m4 2013-06-16 15:04:40.000000000 +0000 +++ gtk+2.0-2.24.20/aclocal.m4 2013-07-04 13:52:19.000000000 +0000 @@ -1,4 +1,4 @@ -# generated automatically by aclocal 1.13.2 -*- Autoconf -*- +# generated automatically by aclocal 1.13.4 -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. @@ -35,7 +35,7 @@ [am__api_version='1.13' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.13.2], [], +m4_if([$1], [1.13.4], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -51,7 +51,7 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.13.2])dnl +[AM_AUTOMAKE_VERSION([1.13.4])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) diff -Nru gtk+2.0-2.24.19/build/Makefile.in gtk+2.0-2.24.20/build/Makefile.in --- gtk+2.0-2.24.19/build/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/build/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/build/win32/Makefile.in gtk+2.0-2.24.20/build/win32/Makefile.in --- gtk+2.0-2.24.19/build/win32/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/build/win32/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/build/win32/vs10/Makefile.in gtk+2.0-2.24.20/build/win32/vs10/Makefile.in --- gtk+2.0-2.24.19/build/win32/vs10/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/build/win32/vs10/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/build/win32/vs9/Makefile.in gtk+2.0-2.24.20/build/win32/vs9/Makefile.in --- gtk+2.0-2.24.19/build/win32/vs9/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/build/win32/vs9/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/config.guess gtk+2.0-2.24.20/config.guess --- gtk+2.0-2.24.19/config.guess 2013-05-29 15:03:37.000000000 +0000 +++ gtk+2.0-2.24.20/config.guess 2013-06-17 09:16:35.000000000 +0000 @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2013 Free Software Foundation, Inc. -timestamp='2013-04-24' +timestamp='2013-06-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -132,6 +132,27 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown +case "${UNAME_SYSTEM}" in +Linux|GNU|GNU/*) + # If the system lacks a compiler, then just pick glibc. + # We could probably try harder. + LIBC=gnu + + eval $set_cc_for_build + cat <<-EOF > $dummy.c + #include + #if defined(__UCLIBC__) + LIBC=uclibc + #elif defined(__dietlibc__) + LIBC=dietlibc + #else + LIBC=gnu + #endif + EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + ;; +esac + # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in @@ -853,21 +874,21 @@ exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -880,67 +901,54 @@ EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + if test "$?" = 0 ; then LIBC="gnulibc1" ; fi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-gnueabi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else - echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-gnu + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-gnu + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) - LIBC=gnu - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #ifdef __dietlibc__ - LIBC=dietlibc - #endif - #else - #include - #ifdef __UCLIBC__ - LIBC=uclibc - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build @@ -959,59 +967,63 @@ #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; or1k:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; or32:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-gnu + echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu + echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-gnu ;; - PA8*) echo hppa2.0-unknown-linux-gnu ;; - *) echo hppa-unknown-linux-gnu ;; + PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; + PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; + *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu + echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu + echo powerpc-unknown-linux-${LIBC} + exit ;; + ppc64le:Linux:*:*) + echo powerpc64le-unknown-linux-${LIBC} + exit ;; + ppcle:Linux:*:*) + echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux + echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-gnu + echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) - LIBC=gnu - test -r /lib/libc.so && od -An -S13 /lib/libc.so | grep -q __uClibc_main && LIBC=uclibc echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. @@ -1244,19 +1256,21 @@ exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - case $UNAME_PROCESSOR in - i386) - eval $set_cc_for_build - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ - grep IS_64BIT_ARCH >/dev/null - then - UNAME_PROCESSOR="x86_64" - fi - fi ;; - unknown) UNAME_PROCESSOR=powerpc ;; - esac + eval $set_cc_for_build + if test "$UNAME_PROCESSOR" = unknown ; then + UNAME_PROCESSOR=powerpc + fi + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi + fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) diff -Nru gtk+2.0-2.24.19/config.h.win32 gtk+2.0-2.24.20/config.h.win32 --- gtk+2.0-2.24.19/config.h.win32 2013-06-16 15:04:52.000000000 +0000 +++ gtk+2.0-2.24.20/config.h.win32 2013-07-04 13:52:32.000000000 +0000 @@ -260,13 +260,13 @@ #define PACKAGE_NAME "gtk+" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "gtk+ 2.24.19" +#define PACKAGE_STRING "gtk+ 2.24.20" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gtk+" /* Define to the version of this package. */ -#define PACKAGE_VERSION "2.24.19" +#define PACKAGE_VERSION "2.24.20" /* Define as the return type of signal handlers (`int' or `void'). */ #define RETSIGTYPE void diff -Nru gtk+2.0-2.24.19/configure gtk+2.0-2.24.20/configure --- gtk+2.0-2.24.19/configure 2013-06-16 15:04:46.000000000 +0000 +++ gtk+2.0-2.24.20/configure 2013-07-04 13:52:26.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for gtk+ 2.24.19. +# Generated by GNU Autoconf 2.69 for gtk+ 2.24.20. # # Report bugs to . # @@ -591,8 +591,8 @@ # Identity of this package. PACKAGE_NAME='gtk+' PACKAGE_TARNAME='gtk+' -PACKAGE_VERSION='2.24.19' -PACKAGE_STRING='gtk+ 2.24.19' +PACKAGE_VERSION='2.24.20' +PACKAGE_STRING='gtk+ 2.24.20' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B' PACKAGE_URL='' @@ -1572,7 +1572,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures gtk+ 2.24.19 to adapt to many kinds of systems. +\`configure' configures gtk+ 2.24.20 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1646,7 +1646,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gtk+ 2.24.19:";; + short | recursive ) echo "Configuration of gtk+ 2.24.20:";; esac cat <<\_ACEOF @@ -1823,7 +1823,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gtk+ configure 2.24.19 +gtk+ configure 2.24.20 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2424,7 +2424,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gtk+ $as_me 2.24.19, which was +It was created by gtk+ $as_me 2.24.20, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3299,7 +3299,7 @@ # Define the identity of the package. PACKAGE='gtk+' - VERSION='2.24.19' + VERSION='2.24.20' # Some tools Automake needs. @@ -3399,10 +3399,10 @@ GTK_MAJOR_VERSION=2 GTK_MINOR_VERSION=24 -GTK_MICRO_VERSION=19 -GTK_INTERFACE_AGE=19 -GTK_BINARY_AGE=2419 -GTK_VERSION=2.24.19 +GTK_MICRO_VERSION=20 +GTK_INTERFACE_AGE=20 +GTK_BINARY_AGE=2420 +GTK_VERSION=2.24.20 GTK_API_VERSION=2.0 GTK_BINARY_VERSION=2.10.0 @@ -3424,7 +3424,7 @@ -LT_VERSION_INFO="2400:19:2400" +LT_VERSION_INFO="2400:20:2400" LT_CURRENT_MINUS_AGE=0 @@ -16516,7 +16516,7 @@ Report bugs to ." lt_cl_version="\ -gtk+ config.lt 2.24.19 +gtk+ config.lt 2.24.20 configured by $0, generated by GNU Autoconf 2.69. Copyright (C) 2011 Free Software Foundation, Inc. @@ -24104,7 +24104,7 @@ $as_echo "#define HAVE_CUPS_API_1_6 1" >>confdefs.h - + have_cups_api_1_6=yes fi @@ -25757,7 +25757,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gtk+ $as_me 2.24.19, which was +This file was extended by gtk+ $as_me 2.24.20, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -25823,7 +25823,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gtk+ config.status 2.24.19 +gtk+ config.status 2.24.20 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru gtk+2.0-2.24.19/configure.ac gtk+2.0-2.24.20/configure.ac --- gtk+2.0-2.24.19/configure.ac 2013-06-16 14:10:04.000000000 +0000 +++ gtk+2.0-2.24.20/configure.ac 2013-07-04 13:51:43.000000000 +0000 @@ -13,8 +13,8 @@ m4_define([gtk_major_version], [2]) m4_define([gtk_minor_version], [24]) -m4_define([gtk_micro_version], [19]) -m4_define([gtk_interface_age], [19]) +m4_define([gtk_micro_version], [20]) +m4_define([gtk_interface_age], [20]) m4_define([gtk_binary_age], [m4_eval(100 * gtk_minor_version + gtk_micro_version)]) m4_define([gtk_version], @@ -1479,7 +1479,7 @@ $CUPS_API_MAJOR -eq 1 -a $CUPS_API_MINOR -ge 6; then AC_DEFINE(HAVE_CUPS_API_1_6, 1, [Define to 1 if CUPS 1.6 API is available]) - + have_cups_api_1_6=yes fi AC_SUBST(CUPS_API_MAJOR) diff -Nru gtk+2.0-2.24.19/debian/changelog gtk+2.0-2.24.20/debian/changelog --- gtk+2.0-2.24.19/debian/changelog 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/changelog 2013-07-08 10:43:14.000000000 +0000 @@ -1,9 +1,87 @@ +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 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 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 Fri, 28 Jun 2013 23:43:02 +0200 + gtk+2.0 (2.24.19-0ubuntu1) saucy; urgency=low * New upstream version -- Sebastien Bacher 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 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, @@ -24,6 +102,28 @@ -- Sebastien Bacher 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 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 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), @@ -3527,4 +3627,3 @@ * Initial Release. -- Akira TAGOH Wed, 13 Mar 2002 00:07:25 +0900 - diff -Nru gtk+2.0-2.24.19/debian/control gtk+2.0-2.24.20/debian/control --- gtk+2.0-2.24.19/debian/control 2013-06-19 17:46:58.000000000 +0000 +++ gtk+2.0-2.24.20/debian/control 2013-07-08 10:43:15.000000000 +0000 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Ubuntu Desktop Team XSBC-Original-Maintainer: Debian GNOME Maintainers -Uploaders: Debian GNOME Maintainers , Emilio Pozuelo Monfort , Michael Biebl , Sjoerd Simons +Uploaders: Debian GNOME Maintainers , Emilio Pozuelo Monfort , Michael Biebl Build-Depends: debhelper (>= 8.1.3), gettext, gtk-doc-tools (>= 1.11), @@ -43,7 +43,7 @@ libatk1.0-doc, libpango1.0-doc, libcairo2-doc -Standards-Version: 3.9.2 +Standards-Version: 3.9.4 Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gtk/ubuntu Homepage: http://www.gtk.org/ diff -Nru gtk+2.0-2.24.19/debian/control.in gtk+2.0-2.24.20/debian/control.in --- gtk+2.0-2.24.19/debian/control.in 2013-06-19 17:46:58.000000000 +0000 +++ gtk+2.0-2.24.20/debian/control.in 2013-07-08 10:43:15.000000000 +0000 @@ -43,7 +43,7 @@ libatk1.0-doc, libpango1.0-doc, libcairo2-doc -Standards-Version: 3.9.2 +Standards-Version: 3.9.4 Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/gtk/ubuntu Homepage: http://www.gtk.org/ diff -Nru gtk+2.0-2.24.19/debian/keep-png-only.xsl gtk+2.0-2.24.20/debian/keep-png-only.xsl --- gtk+2.0-2.24.19/debian/keep-png-only.xsl 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/keep-png-only.xsl 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff -Nru gtk+2.0-2.24.19/debian/libgail18.opt gtk+2.0-2.24.20/debian/libgail18.opt --- gtk+2.0-2.24.19/debian/libgail18.opt 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/libgail18.opt 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -# from the optimised flavor -debian/install/opt/@LIBDIR@/libgail*.so.* @OPTLIBDIR@ diff -Nru gtk+2.0-2.24.19/debian/libgtk2.0-0.install.opt gtk+2.0-2.24.20/debian/libgtk2.0-0.install.opt --- gtk+2.0-2.24.19/debian/libgtk2.0-0.install.opt 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/libgtk2.0-0.install.opt 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -# from the optimised flavor -debian/install/opt/@LIBDIR@/libgtk*.so.* @OPTLIBDIR@ -debian/install/opt/@LIBDIR@/libgdk*.so.* @OPTLIBDIR@ diff -Nru gtk+2.0-2.24.19/debian/libgtk2.0-0.postinst.in gtk+2.0-2.24.20/debian/libgtk2.0-0.postinst.in --- gtk+2.0-2.24.19/debian/libgtk2.0-0.postinst.in 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/libgtk2.0-0.postinst.in 2013-07-08 10:43:14.000000000 +0000 @@ -1,24 +1,14 @@ #!/bin/sh + set -e IMMODULES_DIR=/@MODULES_BASE_PATH@/immodules IMMODULES_DIR_OLD=/@OLD_MODULES_BASE_PATH@/immodules if [ "$1" = triggered ]; then - for trigger in $2; do - if ! [ -d $trigger ]; then - continue - fi - case $trigger in - $IMMODULES_DIR|$IMMODULES_DIR_OLD) - # This is triggered everytime an application installs a - # GTK immodule loader - /@LIBDIR@/@SHARED_PKG@/gtk-query-immodules-2.0 \ - $(find $IMMODULES_DIR $IMMODULES_DIR_OLD -name *.so 2> /dev/null) \ - > /@MODULES_BASE_PATH@/gtk.immodules || true - ;; - esac - done + # 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 @@ -26,8 +16,6 @@ # Also handle the initial installation if [ -d $IMMODULES_DIR ] || [ -d $IMMODULES_DIR_OLD ]; then - /@LIBDIR@/@SHARED_PKG@/gtk-query-immodules-2.0 \ - $(find $IMMODULES_DIR $IMMODULES_DIR_OLD -name *.so 2> /dev/null) \ - > /@MODULES_BASE_PATH@/gtk.immodules || true + /@LIBDIR@/@SHARED_PKG@/gtk-query-immodules-2.0 --update-cache || true fi diff -Nru gtk+2.0-2.24.19/debian/libgtk2.0-0.postrm.in gtk+2.0-2.24.20/debian/libgtk2.0-0.postrm.in --- gtk+2.0-2.24.19/debian/libgtk2.0-0.postrm.in 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/libgtk2.0-0.postrm.in 2013-07-08 10:43:14.000000000 +0000 @@ -6,6 +6,6 @@ if [ -d /@MODULES_BASE_PATH@ ]; then # Purge the cache - rm -f /@MODULES_BASE_PATH@/gtk.immodules + rm -f /@MODULES_BASE_PATH@/immodules.cache rmdir -p --ignore-fail-on-non-empty /@MODULES_BASE_PATH@ fi diff -Nru gtk+2.0-2.24.19/debian/libgtk2.0-0.symbols gtk+2.0-2.24.20/debian/libgtk2.0-0.symbols --- gtk+2.0-2.24.19/debian/libgtk2.0-0.symbols 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/libgtk2.0-0.symbols 2013-07-08 10:43:14.000000000 +0000 @@ -2521,11 +2521,11 @@ 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_tab_vborder@Base 2.22.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 @@ -3828,8 +3828,8 @@ 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_place_cursor_onscreen@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 @@ -4473,8 +4473,8 @@ 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_mapped@Base 2.20.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 diff -Nru gtk+2.0-2.24.19/debian/libgtk2.0-0.triggers.in gtk+2.0-2.24.20/debian/libgtk2.0-0.triggers.in --- gtk+2.0-2.24.19/debian/libgtk2.0-0.triggers.in 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/libgtk2.0-0.triggers.in 2013-07-08 10:43:14.000000000 +0000 @@ -1,2 +1,2 @@ -interest /@MODULES_BASE_PATH@/immodules -interest /@OLD_MODULES_BASE_PATH@/immodules +interest-noawait /@MODULES_BASE_PATH@/immodules +interest-noawait /@OLD_MODULES_BASE_PATH@/immodules diff -Nru gtk+2.0-2.24.19/debian/patches/001_static-linking-dont-query-immodules.patch gtk+2.0-2.24.20/debian/patches/001_static-linking-dont-query-immodules.patch --- gtk+2.0-2.24.19/debian/patches/001_static-linking-dont-query-immodules.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/001_static-linking-dont-query-immodules.patch 2013-07-08 10:43:14.000000000 +0000 @@ -2,8 +2,10 @@ when --disable-shared was given Bug: http://bugzilla.gnome.org/show_bug.cgi?id=346531 ---- a/configure.ac -+++ b/configure.ac +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 @@ -12,9 +14,11 @@ dnl dnl Check for a working C++ compiler, but do not bail out, if none is found. ---- a/modules/input/Makefile.am -+++ b/modules/input/Makefile.am -@@ -176,8 +176,12 @@ +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 @@ -27,7 +31,7 @@ # Running this if cross compiling or if DESTDIR is set is going to # not work at all, so skip it. -@@ -238,7 +242,18 @@ +@@ -253,7 +257,18 @@ included-modules: $(noinst_LTLIBRARIES) gtk.immodules: Makefile.am $(module_LTLIBRARIES) diff -Nru gtk+2.0-2.24.19/debian/patches/003_gdk.pc_privates.patch gtk+2.0-2.24.20/debian/patches/003_gdk.pc_privates.patch --- gtk+2.0-2.24.19/debian/patches/003_gdk.pc_privates.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/003_gdk.pc_privates.patch 2013-07-08 10:43:14.000000000 +0000 @@ -1,6 +1,8 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -1320,23 +1320,27 @@ +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 @@ -33,8 +35,10 @@ AC_SUBST(GDK_EXTRA_LIBS) AC_SUBST(GDK_EXTRA_CFLAGS) AC_SUBST(GDK_DEP_LIBS) ---- a/gdk-2.0.pc.in -+++ b/gdk-2.0.pc.in +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@ diff -Nru gtk+2.0-2.24.19/debian/patches/005_support_disabling_x11_extensions.patch gtk+2.0-2.24.20/debian/patches/005_support_disabling_x11_extensions.patch --- gtk+2.0-2.24.19/debian/patches/005_support_disabling_x11_extensions.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/005_support_disabling_x11_extensions.patch 2013-07-08 10:43:14.000000000 +0000 @@ -3,8 +3,10 @@ Support disabling X11 extensions ---- a/configure.ac -+++ b/configure.ac +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]])],, @@ -24,7 +26,7 @@ AC_ARG_ENABLE(rebuilds, [AC_HELP_STRING([--disable-rebuilds], [disable all source autogeneration rules])],, -@@ -1188,7 +1200,8 @@ +@@ -1192,7 +1204,8 @@ AM_CONDITIONAL(XINPUT_XFREE, test x$with_xinput = xxfree || test x$with_xinput = xyes) # Check for the RANDR extension @@ -34,7 +36,7 @@ AC_DEFINE(HAVE_RANDR, 1, [Have the Xrandr extension library]) X_PACKAGES="$X_PACKAGES xrandr" -@@ -1204,7 +1217,8 @@ +@@ -1208,7 +1221,8 @@ # Checks for XFixes extension @@ -44,7 +46,7 @@ AC_DEFINE(HAVE_XFIXES, 1, [Have the XFIXES X extension]) X_PACKAGES="$X_PACKAGES xfixes" -@@ -1213,7 +1227,8 @@ +@@ -1217,7 +1231,8 @@ # Checks for Xcomposite extension @@ -54,7 +56,7 @@ AC_DEFINE(HAVE_XCOMPOSITE, 1, [Have the XCOMPOSITE X extension]) X_PACKAGES="$X_PACKAGES xcomposite" -@@ -1222,7 +1237,7 @@ +@@ -1226,7 +1241,7 @@ # Checks for Xdamage extension diff -Nru gtk+2.0-2.24.19/debian/patches/011_immodule-cache-dir.patch gtk+2.0-2.24.20/debian/patches/011_immodule-cache-dir.patch --- gtk+2.0-2.24.19/debian/patches/011_immodule-cache-dir.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/011_immodule-cache-dir.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,13 +0,0 @@ -Index: gtk+2.0-2.22.0/gtk/gtkrc.c -=================================================================== ---- gtk+2.0-2.22.0.orig/gtk/gtkrc.c 2010-09-23 05:00:37.000000000 +0200 -+++ gtk+2.0-2.22.0/gtk/gtkrc.c 2010-09-23 20:29:35.145600147 +0200 -@@ -450,7 +450,7 @@ - if (im_module_file) - result = g_strdup (im_module_file); - else -- result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtk.immodules", NULL); -+ result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules", NULL); - } - - return result; diff -Nru gtk+2.0-2.24.19/debian/patches/015_default-fallback-icon-theme.patch gtk+2.0-2.24.20/debian/patches/015_default-fallback-icon-theme.patch --- gtk+2.0-2.24.19/debian/patches/015_default-fallback-icon-theme.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/015_default-fallback-icon-theme.patch 2013-07-08 10:43:14.000000000 +0000 @@ -1,8 +1,8 @@ -Index: gtk+-2.24.14/gtk/gtksettings.c +Index: gtk+-2.24.19/gtk/gtksettings.c =================================================================== ---- gtk+-2.24.14.orig/gtk/gtksettings.c 2013-01-05 02:33:44.407158516 +0100 -+++ gtk+-2.24.14/gtk/gtksettings.c 2013-01-05 02:33:44.407158516 +0100 -@@ -315,7 +315,7 @@ +--- 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"), diff -Nru gtk+2.0-2.24.19/debian/patches/041_ia32-libs.patch gtk+2.0-2.24.20/debian/patches/041_ia32-libs.patch --- gtk+2.0-2.24.19/debian/patches/041_ia32-libs.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/041_ia32-libs.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,72 +0,0 @@ -Index: gtk+2.0-2.22.0/gtk/gtkrc.c -=================================================================== ---- gtk+2.0-2.22.0.orig/gtk/gtkrc.c 2010-09-23 20:29:35.145600147 +0200 -+++ gtk+2.0-2.22.0/gtk/gtkrc.c 2010-09-23 20:29:38.037580272 +0200 -@@ -450,7 +450,20 @@ - if (im_module_file) - result = g_strdup (im_module_file); - else -- result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules", NULL); -+ { -+#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) -+# if defined (__i386__) -+ result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules.32", NULL); -+# else -+ result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules.64", NULL); -+# endif -+ /* Prefer compat gtk.immodules file if it's usable. */ -+ if (g_file_test(result, G_FILE_TEST_EXISTS)) -+ return result; -+ g_free (result); -+#endif -+ result = g_build_filename (GTK_LIBDIR, "gtk-2.0", GTK_BINARY_VERSION, "gtk.immodules", NULL); -+ } - } - - return result; -@@ -522,7 +535,21 @@ - else - { - const gchar *home; -- str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc", NULL); -+#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) -+# if defined (__i386__) -+ str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc.32", NULL); -+# else -+ str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc.64", NULL); -+# endif -+ /* Prefer compat gtkrc if it's usable. */ -+ if (!g_file_test(str, G_FILE_TEST_EXISTS)) -+ { -+ g_free (str), /* continue in next line */ -+#endif -+ str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc", NULL); -+#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) -+ } -+#endif - - gtk_rc_add_default_file (str); - g_free (str); -@@ -530,7 +557,21 @@ - home = g_get_home_dir (); - if (home) - { -- str = g_build_filename (home, ".gtkrc-2.0", NULL); -+#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) -+# if defined (__i386__) -+ str = g_build_filename (home, ".gtkrc-2.0.32", NULL); -+# else -+ str = g_build_filename (home, ".gtkrc-2.0.64", NULL); -+# endif -+ /* Prefer compat .gtkrc-2.0 if it's usable. */ -+ if (!g_file_test(str, G_FILE_TEST_EXISTS)) -+ { -+ g_free (str), /* continue in next line */ -+#endif -+ str = g_build_filename (home, ".gtkrc-2.0", NULL); -+#if defined(__linux__) && ( defined(__i386__) || defined (__x86_64__) || defined(__ia64__) ) -+ } -+#endif - gtk_rc_add_default_file (str); - g_free (str); - } diff -Nru gtk+2.0-2.24.19/debian/patches/042_treeview_single-focus.patch gtk+2.0-2.24.20/debian/patches/042_treeview_single-focus.patch --- gtk+2.0-2.24.19/debian/patches/042_treeview_single-focus.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/042_treeview_single-focus.patch 2013-07-08 10:43:14.000000000 +0000 @@ -1,8 +1,8 @@ -Index: gtk+-2.24.14/gtk/gtktreeview.c +Index: gtk+-2.24.19/gtk/gtktreeview.c =================================================================== ---- gtk+-2.24.14.orig/gtk/gtktreeview.c 2013-01-05 02:33:51.899246761 +0100 -+++ gtk+-2.24.14/gtk/gtktreeview.c 2013-01-05 02:33:51.899246761 +0100 -@@ -9626,7 +9626,8 @@ +--- 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) { diff -Nru gtk+2.0-2.24.19/debian/patches/060_ignore-random-icons.patch gtk+2.0-2.24.20/debian/patches/060_ignore-random-icons.patch --- gtk+2.0-2.24.19/debian/patches/060_ignore-random-icons.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/060_ignore-random-icons.patch 2013-07-08 10:43:14.000000000 +0000 @@ -1,8 +1,8 @@ -Index: gtk+2.0-2.22.0/gtk/updateiconcache.c +Index: gtk+-2.24.18/gtk/updateiconcache.c =================================================================== ---- gtk+2.0-2.22.0.orig/gtk/updateiconcache.c 2010-05-08 06:39:07.000000000 +0200 -+++ gtk+2.0-2.22.0/gtk/updateiconcache.c 2010-09-23 20:29:39.562578706 +0200 -@@ -660,7 +660,7 @@ +--- 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 diff -Nru gtk+2.0-2.24.19/debian/patches/095_git_menus_scrolling.patch gtk+2.0-2.24.20/debian/patches/095_git_menus_scrolling.patch --- gtk+2.0-2.24.19/debian/patches/095_git_menus_scrolling.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/095_git_menus_scrolling.patch 2013-07-08 10:43:14.000000000 +0000 @@ -5,11 +5,11 @@ https://bugzilla.gnome.org/show_bug.cgi?id=612611 --- -Index: gtk+-2.24.12/gtk/gtkmenu.c +Index: b/gtk/gtkmenu.c =================================================================== ---- gtk+-2.24.12.orig/gtk/gtkmenu.c 2011-11-23 01:36:41.000000000 +1300 -+++ gtk+-2.24.12/gtk/gtkmenu.c 2012-09-04 16:45:35.922558258 +1200 -@@ -236,7 +236,8 @@ +--- 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); @@ -19,7 +19,7 @@ static void gtk_menu_reparent (GtkMenu *menu, GtkWidget *new_parent, gboolean unrealize); -@@ -1156,7 +1157,7 @@ +@@ -1131,7 +1132,7 @@ if (menu->torn_off) { gtk_window_set_screen (GTK_WINDOW (menu->tearoff_window), new_screen); @@ -28,7 +28,7 @@ } gtk_window_set_screen (GTK_WINDOW (menu->toplevel), new_screen); -@@ -1589,7 +1590,7 @@ +@@ -1564,7 +1565,7 @@ /* Position the menu, possibly changing the size request */ @@ -37,7 +37,7 @@ /* Compute the size of the toplevel and realize it so we * can scroll correctly. -@@ -1941,7 +1942,7 @@ +@@ -1916,7 +1917,7 @@ g_return_if_fail (GTK_IS_MENU (menu)); if (!menu->torn_off && gtk_widget_is_drawable (GTK_WIDGET (menu))) @@ -46,7 +46,7 @@ } static void -@@ -2119,7 +2120,7 @@ +@@ -2094,7 +2095,7 @@ gtk_menu_set_tearoff_hints (menu, width); gtk_widget_realize (menu->tearoff_window); @@ -55,7 +55,7 @@ gtk_widget_show (GTK_WIDGET (menu)); gtk_widget_show (menu->tearoff_window); -@@ -4201,7 +4202,8 @@ +@@ -4176,7 +4177,8 @@ } static void @@ -65,7 +65,7 @@ { GtkWidget *widget; GtkRequisition requisition; -@@ -4432,7 +4434,8 @@ +@@ -4407,7 +4409,8 @@ requisition.width, requisition.height); } diff -Nru gtk+2.0-2.24.19/debian/patches/096_git_gtkprintsettings.patch gtk+2.0-2.24.20/debian/patches/096_git_gtkprintsettings.patch --- gtk+2.0-2.24.19/debian/patches/096_git_gtkprintsettings.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/096_git_gtkprintsettings.patch 2013-07-08 10:43:14.000000000 +0000 @@ -8,11 +8,11 @@ https://bugzilla.gnome.org/show_bug.cgi?id=635254 --- -Index: gtk+-2.24.12/modules/printbackends/cups/gtkprintbackendcups.c +Index: b/modules/printbackends/cups/gtkprintbackendcups.c =================================================================== ---- gtk+-2.24.12.orig/modules/printbackends/cups/gtkprintbackendcups.c 2012-08-25 12:26:10.000000000 +1200 -+++ gtk+-2.24.12/modules/printbackends/cups/gtkprintbackendcups.c 2012-09-04 16:45:38.198558179 +1200 -@@ -4263,23 +4263,29 @@ +--- a/modules/printbackends/cups/gtkprintbackendcups.c ++++ b/modules/printbackends/cups/gtkprintbackendcups.c +@@ -5211,23 +5211,29 @@ gtk_printer_option_set (option, cups_value); else { diff -Nru gtk+2.0-2.24.19/debian/patches/097_statusicon_image_fallback.patch gtk+2.0-2.24.20/debian/patches/097_statusicon_image_fallback.patch --- gtk+2.0-2.24.19/debian/patches/097_statusicon_image_fallback.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/097_statusicon_image_fallback.patch 2013-07-08 10:43:14.000000000 +0000 @@ -1,10 +1,10 @@ ## Description: Makes images in GtkStatusIcon use fallbacks by default if the property is available ## Origin/Author: Ted Gould ## Bug: http://launchpad.net/bugs/729150 -Index: gtk+-2.24.12/gtk/gtkstatusicon.c +Index: b/gtk/gtkstatusicon.c =================================================================== ---- gtk+-2.24.12.orig/gtk/gtkstatusicon.c 2011-11-09 06:20:20.000000000 +1300 -+++ gtk+-2.24.12/gtk/gtkstatusicon.c 2012-09-04 16:45:39.742558125 +1200 +--- 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 (); diff -Nru gtk+2.0-2.24.19/debian/patches/098_multiarch_module_path.patch gtk+2.0-2.24.20/debian/patches/098_multiarch_module_path.patch --- gtk+2.0-2.24.19/debian/patches/098_multiarch_module_path.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/098_multiarch_module_path.patch 2013-07-08 10:43:14.000000000 +0000 @@ -5,10 +5,10 @@ Author: Steve Langasek Forwarded: not-needed -Index: gtk+2.0-2.24.3/gtk/gtkmodules.c +Index: b/gtk/gtkmodules.c =================================================================== ---- gtk+2.0-2.24.3.orig/gtk/gtkmodules.c -+++ gtk+2.0-2.24.3/gtk/gtkmodules.c +--- a/gtk/gtkmodules.c ++++ b/gtk/gtkmodules.c @@ -60,6 +60,7 @@ gchar *home_gtk_dir = NULL; gchar *module_path; diff -Nru gtk+2.0-2.24.19/debian/patches/099_printer_filename_fix.patch gtk+2.0-2.24.20/debian/patches/099_printer_filename_fix.patch --- gtk+2.0-2.24.19/debian/patches/099_printer_filename_fix.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/099_printer_filename_fix.patch 2013-07-08 10:43:14.000000000 +0000 @@ -1,8 +1,8 @@ === modified file 'gtk/gtkprinteroptionwidget.c' -Index: gtk+-2.24.12/gtk/gtkprinteroptionwidget.c +Index: b/gtk/gtkprinteroptionwidget.c =================================================================== ---- gtk+-2.24.12.orig/gtk/gtkprinteroptionwidget.c 2012-09-04 16:45:23.506558688 +1200 -+++ gtk+-2.24.12/gtk/gtkprinteroptionwidget.c 2012-09-04 16:45:41.914558050 +1200 +--- 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); diff -Nru gtk+2.0-2.24.19/debian/patches/100_overlay_scrollbar_loading.patch gtk+2.0-2.24.20/debian/patches/100_overlay_scrollbar_loading.patch --- gtk+2.0-2.24.19/debian/patches/100_overlay_scrollbar_loading.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/100_overlay_scrollbar_loading.patch 2013-07-08 10:43:14.000000000 +0000 @@ -1,10 +1,10 @@ ## Description: enable overlay scrollbars ## Origin/Author: Andrea Cimitan === modified file 'gtk/gtkmain.c' -Index: gtk+2.0-2.24.12/gtk/gtkmain.c +Index: b/gtk/gtkmain.c =================================================================== ---- gtk+2.0-2.24.12.orig/gtk/gtkmain.c 2012-09-25 10:04:37.643629040 +0100 -+++ gtk+2.0-2.24.12/gtk/gtkmain.c 2012-09-25 10:12:18.439632956 +0100 +--- a/gtk/gtkmain.c ++++ b/gtk/gtkmain.c @@ -710,6 +710,20 @@ #endif } diff -Nru gtk+2.0-2.24.19/debian/patches/gtk-shell-shows-menubar.patch gtk+2.0-2.24.20/debian/patches/gtk-shell-shows-menubar.patch --- gtk+2.0-2.24.19/debian/patches/gtk-shell-shows-menubar.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/gtk-shell-shows-menubar.patch 2013-07-08 10:43:14.000000000 +0000 @@ -1,3 +1,5 @@ +Index: b/gdk/x11/gdksettings.c +=================================================================== --- a/gdk/x11/gdksettings.c +++ b/gdk/x11/gdksettings.c @@ -80,7 +80,8 @@ @@ -18,6 +20,8 @@ + { 1730, 1748 }, + { 1767, 1789 } }; +Index: b/gtk/gtksettings.c +=================================================================== --- a/gtk/gtksettings.c +++ b/gtk/gtksettings.c @@ -139,7 +139,8 @@ diff -Nru gtk+2.0-2.24.19/debian/patches/print-dialog-show-options-of-remote-dnssd-printers.patch gtk+2.0-2.24.20/debian/patches/print-dialog-show-options-of-remote-dnssd-printers.patch --- gtk+2.0-2.24.19/debian/patches/print-dialog-show-options-of-remote-dnssd-printers.patch 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/print-dialog-show-options-of-remote-dnssd-printers.patch 2013-07-08 10:43:14.000000000 +0000 @@ -1,6 +1,8 @@ +Index: b/modules/printbackends/cups/gtkprintbackendcups.c +=================================================================== --- a/modules/printbackends/cups/gtkprintbackendcups.c +++ b/modules/printbackends/cups/gtkprintbackendcups.c -@@ -1928,6 +1928,19 @@ +@@ -2240,6 +2240,19 @@ resource); #endif diff -Nru gtk+2.0-2.24.19/debian/patches/series gtk+2.0-2.24.20/debian/patches/series --- gtk+2.0-2.24.19/debian/patches/series 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/patches/series 2013-07-08 10:43:14.000000000 +0000 @@ -3,11 +3,9 @@ 003_gdk.pc_privates.patch 004_gtk+-ximian-gtk2-filesel-navbutton-5.patch 005_support_disabling_x11_extensions.patch -011_immodule-cache-dir.patch 012_ubuntu-set-grab-add.patch 015_default-fallback-icon-theme.patch 022_disable-viqr-im-for-vi-locale.patch -041_ia32-libs.patch 042_treeview_single-focus.patch 044_tracker_fts.patch 060_ignore-random-icons.patch diff -Nru gtk+2.0-2.24.19/debian/rules gtk+2.0-2.24.20/debian/rules --- gtk+2.0-2.24.19/debian/rules 2013-06-19 17:46:55.000000000 +0000 +++ gtk+2.0-2.24.20/debian/rules 2013-07-08 10:43:14.000000000 +0000 @@ -137,18 +137,8 @@ --disable-shared \ --enable-static -# optional optimized flavor for some arches -OPTLIBDIR := -# sample code -#ifneq ($(filter $(DEB_HOST_ARCH), armel),) -#FLAVORS += opt -#OPTLIBDIR := $(LIBDIR)/vfp -#opt_CFLAGS += $(CFLAGS) -mfpu=vfp -mfloat-abi=softfp -#opt_configure_flags := $(or $(shared_configure_flags),$(configure_flags)) -#endif - # list of flavors to run the test suite on -CHECK_FLAVORS := $(filter opt shared static, $(FLAVORS)) +CHECK_FLAVORS := $(filter shared static, $(FLAVORS)) DH_INSTALLDOCS_FILES := NEWS README AUTHORS @@ -235,11 +225,9 @@ -e "s#@GNOME_TEAM@#$(UPLOADERS)#g" \ -e "s#@GTK_BINARY_VERSION@#$(GTK_BINARY_VERSION)#g" \ -e "s#@LIBDIR@#$(LIBDIR)#g" \ - -e 's#@OPTLIBDIR@#$(OPTLIBDIR)#g' \ -e "s#@MODULES_BASE_PATH@#$(MODULES_BASE_PATH)#g" \ -e "s#@OLD_MODULES_BASE_PATH@#$(OLD_MODULES_BASE_PATH)#g" \ $@.in \ - $(wildcard $(if $(filter opt,$(FLAVORS)),$@.opt)) \ > $@ clean:: debian/control @@ -267,10 +255,10 @@ # do not merge the calls: dh_installdocs will only install some files # in the first package dh_installdocs -p$(COMMON_PKG) $(DH_INSTALLDOCS_FILES) - dh_installdocs -p$(DOC_PKG) $(DH_INSTALLDOCS_FILES) + 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) -i + dh_installdocs -p$(COMMON_PKG) -X.in -i dh_installman -i dh_link -i dh_compress -i -X.sgml -X.devhelp diff -Nru gtk+2.0-2.24.19/demos/Makefile.in gtk+2.0-2.24.20/demos/Makefile.in --- gtk+2.0-2.24.19/demos/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/demos/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/demos/gtk-demo/Makefile.in gtk+2.0-2.24.20/demos/gtk-demo/Makefile.in --- gtk+2.0-2.24.19/demos/gtk-demo/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/demos/gtk-demo/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/depcomp gtk+2.0-2.24.20/depcomp --- gtk+2.0-2.24.19/depcomp 2013-05-29 15:03:37.000000000 +0000 +++ gtk+2.0-2.24.20/depcomp 2013-06-17 09:16:35.000000000 +0000 @@ -1,7 +1,7 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2012-10-18.11; # UTC +scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2013 Free Software Foundation, Inc. @@ -552,6 +552,7 @@ G p }' >> "$depfile" + echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; diff -Nru gtk+2.0-2.24.19/docs/Makefile.in gtk+2.0-2.24.20/docs/Makefile.in --- gtk+2.0-2.24.19/docs/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/docs/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/docs/faq/Makefile.in gtk+2.0-2.24.20/docs/faq/Makefile.in --- gtk+2.0-2.24.19/docs/faq/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/docs/faq/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/docs/reference/Makefile.in gtk+2.0-2.24.20/docs/reference/Makefile.in --- gtk+2.0-2.24.19/docs/reference/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/Makefile.in gtk+2.0-2.24.20/docs/reference/gdk/Makefile.in --- gtk+2.0-2.24.19/docs/reference/gdk/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/Makefile.in 2013-07-04 13:52:21.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/GdkDisplay.html gtk+2.0-2.24.20/docs/reference/gdk/html/GdkDisplay.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/GdkDisplay.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/GdkDisplay.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1395,6 +1395,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/GdkDisplayManager.html gtk+2.0-2.24.20/docs/reference/gdk/html/GdkDisplayManager.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/GdkDisplayManager.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/GdkDisplayManager.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -275,6 +275,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/GdkScreen.html gtk+2.0-2.24.20/docs/reference/gdk/html/GdkScreen.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/GdkScreen.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/GdkScreen.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1649,6 +1649,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/annotation-glossary.html gtk+2.0-2.24.20/docs/reference/gdk/html/annotation-glossary.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/annotation-glossary.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/annotation-glossary.html 2013-07-04 17:15:06.000000000 +0000 @@ -7,7 +7,7 @@ - + @@ -68,6 +68,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-10.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-10.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-10.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-10.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -118,6 +118,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-12.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-12.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-12.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-12.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -119,6 +119,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-14.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-14.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-14.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-14.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -119,6 +119,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-16.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-16.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-16.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-16.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -37,6 +37,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-18.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-18.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-18.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-18.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -104,6 +104,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-2.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-2.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-2.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-2.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -510,6 +510,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-20.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-20.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-20.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-20.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -46,6 +46,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-22.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-22.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-22.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-22.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -219,6 +219,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-4.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-4.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-4.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-4.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -118,6 +118,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-6.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-6.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-6.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-6.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -123,6 +123,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-8.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-8.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-2-8.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-2-8.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -110,6 +110,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-deprecated.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-deprecated.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-deprecated.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-deprecated.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1007,6 +1007,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-full.html gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-full.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/api-index-full.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/api-index-full.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -3665,6 +3665,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Application-launching.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Application-launching.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Application-launching.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Application-launching.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -335,6 +335,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Bitmaps-and-Pixmaps.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Bitmaps-and-Pixmaps.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Bitmaps-and-Pixmaps.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Bitmaps-and-Pixmaps.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -637,6 +637,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Cairo-Interaction.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Cairo-Interaction.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Cairo-Interaction.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Cairo-Interaction.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -437,6 +437,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Colormaps-and-Colors.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Colormaps-and-Colors.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Colormaps-and-Colors.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Colormaps-and-Colors.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1023,6 +1023,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Cursors.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Cursors.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Cursors.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Cursors.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1165,6 +1165,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Drag-and-Drop.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Drag-and-Drop.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Drag-and-Drop.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Drag-and-Drop.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -978,6 +978,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Drawing-Primitives.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Drawing-Primitives.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Drawing-Primitives.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Drawing-Primitives.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -2197,6 +2197,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Event-Structures.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Event-Structures.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Event-Structures.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Event-Structures.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1769,6 +1769,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Events.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Events.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Events.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Events.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -644,7 +644,7 @@

Waits for a GraphicsExpose or NoExpose event from the X server. -This is used in the GtkText and GtkCList widgets in GTK+ to make sure any +This is used in the GtkText and GtkCList widgets in GTK+ to make sure any GraphicsExpose events are handled before the widget is scrolled.

@@ -1342,6 +1342,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Fonts.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Fonts.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Fonts.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Fonts.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1537,6 +1537,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-GdkRGB.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-GdkRGB.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-GdkRGB.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-GdkRGB.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -229,8 +229,8 @@ darea = gtk_drawing_area_new (); gtk_widget_set_size_request (darea, IMAGE_WIDTH, IMAGE_HEIGHT); gtk_container_add (GTK_CONTAINER (window), darea); - gtk_signal_connect (GTK_OBJECT (darea), "expose-event", - GTK_SIGNAL_FUNC (on_darea_expose), NULL); + gtk_signal_connect (GTK_OBJECT (darea), "expose-event", + GTK_SIGNAL_FUNC (on_darea_expose), NULL); gtk_widget_show_all (window); /* Set up the RGB buffer. */ pos = rgbbuf; @@ -968,7 +968,7 @@

colormap should be the colormap for the graphics context and drawable you're using to draw. If you're drawing to a GtkWidget, -call gtk_widget_get_colormap(). +call gtk_widget_get_colormap().

color should have its red, green, and blue fields initialized; @@ -1246,6 +1246,6 @@

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-General.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-General.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-General.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-General.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -267,7 +267,7 @@

Initializes the support for internationalization by calling the setlocale() -system call. This function is called by gtk_set_locale() and so GTK+ +system call. This function is called by gtk_set_locale() and so GTK+ applications should use that instead.

@@ -572,7 +572,7 @@ Pointer grabs are used for operations which need complete control over mouse events, even if the mouse leaves the application. For example in GTK+ it is used for Drag and Drop, for dragging the handle in -the GtkHPaned and GtkVPaned widgets, and for resizing columns in GtkCList +the GtkHPaned and GtkVPaned widgets, and for resizing columns in GtkCList widgets.

@@ -962,6 +962,6 @@

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Graphics-Contexts.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Graphics-Contexts.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Graphics-Contexts.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Graphics-Contexts.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1759,6 +1759,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Images.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Images.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Images.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Images.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -885,6 +885,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Input-Devices.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Input-Devices.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Input-Devices.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Input-Devices.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -109,7 +109,7 @@ Because handling extended input devices may involve considerable overhead, they need to be turned on for each GdkWindow individually using gdk_input_set_extension_events(). -(Or, more typically, for GtkWidgets, using gtk_widget_set_extension_events()). +(Or, more typically, for GtkWidgets, using gtk_widget_set_extension_events()). As an additional complication, depending on the support from the windowing system, its possible that a normal mouse cursor will not be displayed for a particular extension @@ -1030,6 +1030,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Input.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Input.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Input.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Input.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -313,6 +313,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Keyboard-Handling.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Keyboard-Handling.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Keyboard-Handling.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Keyboard-Handling.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1083,6 +1083,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Pango-Interaction.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Pango-Interaction.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Pango-Interaction.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Pango-Interaction.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -907,6 +907,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Pixbufs.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Pixbufs.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Pixbufs.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Pixbufs.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -664,6 +664,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Points-Rectangles-and-Regions.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Points-Rectangles-and-Regions.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Points-Rectangles-and-Regions.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Points-Rectangles-and-Regions.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1047,6 +1047,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Properties-and-Atoms.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Properties-and-Atoms.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Properties-and-Atoms.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Properties-and-Atoms.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1061,6 +1061,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Selections.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Selections.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Selections.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Selections.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -676,6 +676,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Testing.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Testing.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Testing.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Testing.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -214,6 +214,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Threads.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Threads.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Threads.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Threads.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -949,6 +949,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Visuals.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Visuals.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Visuals.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Visuals.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -894,6 +894,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Windows.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Windows.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-Windows.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-Windows.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -626,7 +626,7 @@ */ screen = gtk_widget_get_screen (event); rgba = gdk_screen_get_rgba_colormap (screen); - gtk_widget_set_colormap (event, rgba); + gtk_widget_set_colormap (event, rgba); /* Set our event box to have a fully-transparent background * drawn on it. Currently there is no way to simply tell GTK+ * that "transparency" is the background colour for a widget. @@ -7058,6 +7058,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-X-Window-System-Interaction.html gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-X-Window-System-Interaction.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/gdk2-X-Window-System-Interaction.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/gdk2-X-Window-System-Interaction.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -2739,6 +2739,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/index.html gtk+2.0-2.24.20/docs/reference/gdk/html/index.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/index.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/index.html 2013-07-04 17:15:06.000000000 +0000 @@ -6,7 +6,7 @@ - + @@ -138,6 +138,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/multihead.html gtk+2.0-2.24.20/docs/reference/gdk/html/multihead.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/multihead.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/multihead.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -199,6 +199,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/html/reference.html gtk+2.0-2.24.20/docs/reference/gdk/html/reference.html --- gtk+2.0-2.24.19/docs/reference/gdk/html/reference.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/html/reference.html 2013-07-04 17:15:06.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -126,6 +126,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gdk/version.xml gtk+2.0-2.24.20/docs/reference/gdk/version.xml --- gtk+2.0-2.24.19/docs/reference/gdk/version.xml 2013-06-16 15:04:52.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gdk/version.xml 2013-07-04 13:52:32.000000000 +0000 @@ -1 +1 @@ -2.24.19 +2.24.20 diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/Makefile.in gtk+2.0-2.24.20/docs/reference/gtk/Makefile.in --- gtk+2.0-2.24.19/docs/reference/gtk/Makefile.in 2013-06-16 15:04:42.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/Makefile.in 2013-07-04 13:52:22.000000000 +0000 @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.13.2 from Makefile.am. +# Makefile.in generated by automake 1.13.4 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/gtk-builder-convert.1 gtk+2.0-2.24.20/docs/reference/gtk/gtk-builder-convert.1 --- gtk+2.0-2.24.19/docs/reference/gtk/gtk-builder-convert.1 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/gtk-builder-convert.1 2013-07-04 17:15:06.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: gtk-builder-convert .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 06/16/2013 +.\" Date: 07/04/2013 .\" Manual: [FIXME: manual] .\" Source: [FIXME: source] .\" Language: English .\" -.TH "GTK\-BUILDER\-CONVER" "1" "06/16/2013" "[FIXME: source]" "[FIXME: manual]" +.TH "GTK\-BUILDER\-CONVER" "1" "07/04/2013" "[FIXME: source]" "[FIXME: manual]" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/gtk-query-immodules-2.0.1 gtk+2.0-2.24.20/docs/reference/gtk/gtk-query-immodules-2.0.1 --- gtk+2.0-2.24.19/docs/reference/gtk/gtk-query-immodules-2.0.1 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/gtk-query-immodules-2.0.1 2013-07-04 17:15:06.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: gtk-query-immodules-2.0 .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 06/16/2013 +.\" Date: 07/04/2013 .\" Manual: [FIXME: manual] .\" Source: [FIXME: source] .\" Language: English .\" -.TH "GTK\-QUERY\-IMMODULE" "1" "06/16/2013" "[FIXME: source]" "[FIXME: manual]" +.TH "GTK\-QUERY\-IMMODULE" "1" "07/04/2013" "[FIXME: source]" "[FIXME: manual]" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -31,16 +31,30 @@ gtk-query-immodules-2.0 \- Input method module registration utility .SH "SYNOPSIS" .HP \w'\fBgtk\-query\-immodules\-2\&.0\fR\ 'u -\fBgtk\-query\-immodules\-2\&.0\fR [module...] +\fBgtk\-query\-immodules\-2\&.0\fR [\-\-update\-cache] [module...] .SH "DESCRIPTION" .PP \fBgtk\-query\-immodules\-2\&.0\fR -collects information about loadable input method modules for GTK+ and writes it to +collects information about loadable input method modules for GTK+ and writes it to the default cache file location, or to stdout\&. .PP If called without arguments, it looks for modules in the GTK+ input method module path\&. .PP If called with arguments, it looks for the specified modules\&. The arguments may be absolute or relative paths\&. +.PP +Normally, the output of +\fBgtk\-query\-immodules\-2\&.0\fR +is written to +\fIlibdir\fR/gtk\-2\&.0/2\&.10\&.0/immodules\&.cache, where GTK+ looks for it by default\&. If it is written to some other location, the environment variable +\fBGTK_IM_MODULE_FILE\fR +can be set to point GTK+ at the file\&. +.SH "OPTIONS" +.PP +\-\-update\-cache +.RS 4 +Write the output to the default cache location instead of +stdout +.RE .SH "ENVIRONMENT" .PP The environment variable diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/gtk-query-immodules-2.0.xml gtk+2.0-2.24.20/docs/reference/gtk/gtk-query-immodules-2.0.xml --- gtk+2.0-2.24.19/docs/reference/gtk/gtk-query-immodules-2.0.xml 2011-08-16 02:30:51.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/gtk-query-immodules-2.0.xml 2013-07-04 13:34:25.000000000 +0000 @@ -17,14 +17,16 @@ gtk-query-immodules-2.0 +--update-cache module Description -gtk-query-immodules-2.0 collects information about loadable -input method modules for GTK+ and writes it to stdout. +gtk-query-immodules-2.0 collects information about loadable +input method modules for GTK+ and writes it to the default cache file +location, or to stdout. If called without arguments, it looks for modules in the GTK+ input method @@ -34,6 +36,22 @@ If called with arguments, it looks for the specified modules. The arguments may be absolute or relative paths. + +Normally, the output of gtk-query-immodules-2.0 is written +to libdir/gtk-2.0/2.10.0/immodules.cache, where GTK+ looks for it by default. If it is written to some other +location, the environment variable GTK_IM_MODULE_FILE +can be set to point GTK+ at the file. + + + +Options + + + --update-cache + Write the output to the default cache location instead of + stdout + + Environment diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/gtk-update-icon-cache.1 gtk+2.0-2.24.20/docs/reference/gtk/gtk-update-icon-cache.1 --- gtk+2.0-2.24.19/docs/reference/gtk/gtk-update-icon-cache.1 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/gtk-update-icon-cache.1 2013-07-04 17:15:06.000000000 +0000 @@ -2,12 +2,12 @@ .\" Title: gtk-update-icon-cache .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 06/16/2013 +.\" Date: 07/04/2013 .\" Manual: [FIXME: manual] .\" Source: [FIXME: source] .\" Language: English .\" -.TH "GTK\-UPDATE\-ICON\-C" "1" "06/16/2013" "[FIXME: source]" "[FIXME: manual]" +.TH "GTK\-UPDATE\-ICON\-C" "1" "07/04/2013" "[FIXME: source]" "[FIXME: manual]" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/AbstractObjects.html gtk+2.0-2.24.20/docs/reference/gtk/html/AbstractObjects.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/AbstractObjects.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/AbstractObjects.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -72,6 +72,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/Actions.html gtk+2.0-2.24.20/docs/reference/gtk/html/Actions.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/Actions.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/Actions.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -48,6 +48,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/Builder.html gtk+2.0-2.24.20/docs/reference/gtk/html/Builder.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/Builder.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/Builder.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -33,6 +33,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/ButtonWidgets.html gtk+2.0-2.24.20/docs/reference/gtk/html/ButtonWidgets.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/ButtonWidgets.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/ButtonWidgets.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -48,6 +48,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/DeprecatedObjects.html gtk+2.0-2.24.20/docs/reference/gtk/html/DeprecatedObjects.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/DeprecatedObjects.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/DeprecatedObjects.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -78,6 +78,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/DisplayWidgets.html gtk+2.0-2.24.20/docs/reference/gtk/html/DisplayWidgets.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/DisplayWidgets.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/DisplayWidgets.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -51,6 +51,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAboutDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAboutDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAboutDialog.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAboutDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1526,6 +1526,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAccelLabel.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAccelLabel.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAccelLabel.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAccelLabel.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -155,7 +155,7 @@ GtkAccelLabel is automatically set up to display the GtkMenuItem accelerators. We just need to make sure we use GTK_ACCEL_VISIBLE here. */ gtk_widget_add_accelerator (save_item, "activate", accel_group, - GDK_s, GDK_CONTROL_MASK, GTK_ACCEL_VISIBLE); + GDK_s, GDK_CONTROL_MASK, GTK_ACCEL_VISIBLE);
@@ -353,6 +353,6 @@
+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAccessible.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAccessible.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAccessible.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAccessible.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -151,6 +151,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAction.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAction.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAction.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAction.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1730,6 +1730,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkActionGroup.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkActionGroup.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkActionGroup.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkActionGroup.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1304,6 +1304,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkActivatable.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkActivatable.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkActivatable.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkActivatable.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -873,6 +873,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAdjustment.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAdjustment.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAdjustment.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAdjustment.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -864,6 +864,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAlignment.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAlignment.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAlignment.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAlignment.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -397,6 +397,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkArrow.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkArrow.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkArrow.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkArrow.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -206,6 +206,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAspectFrame.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAspectFrame.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAspectFrame.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAspectFrame.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -239,6 +239,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAssistant.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAssistant.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkAssistant.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkAssistant.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1216,6 +1216,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkBin.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkBin.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkBin.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkBin.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -129,6 +129,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkBox.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -763,7 +763,7 @@

The "position" child property

  "position"                 gint                  : Read / Write

The index of the child in the parent.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: 0

@@ -807,6 +807,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkBuildable.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkBuildable.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkBuildable.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkBuildable.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -666,6 +666,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkBuilder.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkBuilder.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkBuilder.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkBuilder.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -256,7 +256,7 @@ name, nick or integer value), flags (can be specified by their name, nick, integer value, optionally combined with "|", e.g. "GTK_VISIBLE|GTK_REALIZED") and colors (in a format understood by -gdk_color_parse()). Objects can be referred to by their name. +gdk_color_parse()). Objects can be referred to by their name. Pixbufs can be specified as a filename of an image file to load. In general, GtkBuilder allows forward references to objects — an object doesn't have to constructed before it can be referred to. @@ -1012,7 +1012,7 @@

This function can handle char, uchar, boolean, int, uint, long, -ulong, enum, flags, float, double, string, GdkColor and +ulong, enum, flags, float, double, string, GdkColor and GtkAdjustment type values. Support for GtkWidget type values is still to come.

@@ -1167,6 +1167,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkButton.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -87,7 +87,7 @@ void gtk_button_set_image_position (GtkButton *button, GtkPositionType position); GtkPositionType gtk_button_get_image_position (GtkButton *button); -GdkWindow * gtk_button_get_event_window (GtkButton *button); +GdkWindow * gtk_button_get_event_window (GtkButton *button);
@@ -856,7 +856,7 @@

gtk_button_get_event_window ()

-
GdkWindow *         gtk_button_get_event_window         (GtkButton *button);
+
GdkWindow *         gtk_button_get_event_window         (GtkButton *button);

Returns the button's event window if it is realized, NULL otherwise. This function should be rarely needed. @@ -1207,6 +1207,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkButtonBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkButtonBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkButtonBox.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkButtonBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -583,6 +583,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCList.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCList.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCList.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCList.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -153,33 +153,33 @@ void gtk_clist_set_pixmap (GtkCList *clist, gint row, gint column, - GdkPixmap *pixmap, - GdkBitmap *mask); + GdkPixmap *pixmap, + GdkBitmap *mask); gint gtk_clist_get_pixmap (GtkCList *clist, gint row, gint column, - GdkPixmap **pixmap, - GdkBitmap **mask); + GdkPixmap **pixmap, + GdkBitmap **mask); void gtk_clist_set_pixtext (GtkCList *clist, gint row, gint column, const gchar *text, guint8 spacing, - GdkPixmap *pixmap, - GdkBitmap *mask); + GdkPixmap *pixmap, + GdkBitmap *mask); gint gtk_clist_get_pixtext (GtkCList *clist, gint row, gint column, gchar **text, guint8 *spacing, - GdkPixmap **pixmap, - GdkBitmap **mask); + GdkPixmap **pixmap, + GdkBitmap **mask); void gtk_clist_set_foreground (GtkCList *clist, gint row, - const GdkColor *color); + const GdkColor *color); void gtk_clist_set_background (GtkCList *clist, gint row, - const GdkColor *color); + const GdkColor *color); void gtk_clist_set_cell_style (GtkCList *clist, gint row, gint column, @@ -2115,8 +2115,8 @@
void                gtk_clist_set_pixmap                (GtkCList *clist,
                                                          gint row,
                                                          gint column,
-                                                         GdkPixmap *pixmap,
-                                                         GdkBitmap *mask);
+ GdkPixmap *pixmap, + GdkBitmap *mask);

Warning

gtk_clist_set_pixmap is deprecated and should not be used in newly-written code.

@@ -2144,7 +2144,7 @@

pixmap :

-A pointer to a GdkPixmap to place in the cell. +A pointer to a GdkPixmap to place in the cell.

mask :

@@ -2160,8 +2160,8 @@
gint                gtk_clist_get_pixmap                (GtkCList *clist,
                                                          gint row,
                                                          gint column,
-                                                         GdkPixmap **pixmap,
-                                                         GdkBitmap **mask);
+ GdkPixmap **pixmap, + GdkBitmap **mask);

Warning

gtk_clist_get_pixmap is deprecated and should not be used in newly-written code.

@@ -2189,11 +2189,11 @@

pixmap :

-A pointer to a pointer to store the cell's GdkPixmap. +A pointer to a pointer to store the cell's GdkPixmap.

mask :

-A pointer to a pointer to store the cell's GdkBitmap mask. +A pointer to a pointer to store the cell's GdkBitmap mask.

Returns :

@@ -2210,8 +2210,8 @@ gint column, const gchar *text, guint8 spacing, - GdkPixmap *pixmap, - GdkBitmap *mask); + GdkPixmap *pixmap, + GdkBitmap *mask);

Warning

gtk_clist_set_pixtext is deprecated and should not be used in newly-written code.

@@ -2247,11 +2247,11 @@

pixmap :

-A pointer to a GdkPixmap for the cell. +A pointer to a GdkPixmap for the cell.

mask :

-A pointer to a GdkBitmap mask for the cell. +A pointer to a GdkBitmap mask for the cell.
@@ -2264,8 +2264,8 @@ gint column, gchar **text, guint8 *spacing, - GdkPixmap **pixmap, - GdkBitmap **mask); + GdkPixmap **pixmap, + GdkBitmap **mask);

Warning

gtk_clist_get_pixtext is deprecated and should not be used in newly-written code.

@@ -2301,11 +2301,11 @@

pixmap :

-A pointer to a GdkPixmap pointer to store the cell's pixmap. +A pointer to a GdkPixmap pointer to store the cell's pixmap.

mask :

-A pointer to a GdkBitmap pointer to store the cell's bitmap mask. +A pointer to a GdkBitmap pointer to store the cell's bitmap mask.

Returns :

@@ -2319,7 +2319,7 @@

gtk_clist_set_foreground ()

void                gtk_clist_set_foreground            (GtkCList *clist,
                                                          gint row,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Warning

gtk_clist_set_foreground is deprecated and should not be used in newly-written code.

@@ -2343,7 +2343,7 @@

color :

-A pointer to a GdkColor structure. +A pointer to a GdkColor structure.
@@ -2353,7 +2353,7 @@

gtk_clist_set_background ()

void                gtk_clist_set_background            (GtkCList *clist,
                                                          gint row,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Warning

gtk_clist_set_background is deprecated and should not be used in newly-written code.

@@ -2377,7 +2377,7 @@

color :

-A pointer to a GdkColor structure. +A pointer to a GdkColor structure.
@@ -4012,7 +4012,7 @@
void                user_function                      (GtkCList *clist,
                                                         gint      arg1,
                                                         gint      arg2,
-                                                        GdkEvent *arg3,
+                                                        GdkEvent *arg3,
                                                         gpointer  user_data)      : Run First

This signal is emitted when the user selects a row in the list. @@ -4039,7 +4039,7 @@

event :

-A GdkEvent structure for the selection. +A GdkEvent structure for the selection.

user_data :

@@ -4206,7 +4206,7 @@
void                user_function                      (GtkCList *clist,
                                                         gint      arg1,
                                                         gint      arg2,
-                                                        GdkEvent *arg3,
+                                                        GdkEvent *arg3,
                                                         gpointer  user_data)      : Run First

This signal is emitted when the user unselects a row in the list. @@ -4243,6 +4243,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCTree.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCTree.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCTree.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCTree.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -83,10 +83,10 @@ GtkCTreeNode *sibling, gchar *text[], guint8 spacing, - GdkPixmap *pixmap_closed, - GdkBitmap *mask_closed, - GdkPixmap *pixmap_opened, - GdkBitmap *mask_opened, + GdkPixmap *pixmap_closed, + GdkBitmap *mask_closed, + GdkPixmap *pixmap_opened, + GdkBitmap *mask_opened, gboolean is_leaf, gboolean expanded); void gtk_ctree_remove_node (GtkCTree *ctree, @@ -192,23 +192,23 @@ void gtk_ctree_node_set_pixmap (GtkCTree *ctree, GtkCTreeNode *node, gint column, - GdkPixmap *pixmap, - GdkBitmap *mask); + GdkPixmap *pixmap, + GdkBitmap *mask); void gtk_ctree_node_set_pixtext (GtkCTree *ctree, GtkCTreeNode *node, gint column, const gchar *text, guint8 spacing, - GdkPixmap *pixmap, - GdkBitmap *mask); + GdkPixmap *pixmap, + GdkBitmap *mask); void gtk_ctree_set_node_info (GtkCTree *ctree, GtkCTreeNode *node, const gchar *text, guint8 spacing, - GdkPixmap *pixmap_closed, - GdkBitmap *mask_closed, - GdkPixmap *pixmap_opened, - GdkBitmap *mask_opened, + GdkPixmap *pixmap_closed, + GdkBitmap *mask_closed, + GdkPixmap *pixmap_opened, + GdkBitmap *mask_opened, gboolean is_leaf, gboolean expanded); void gtk_ctree_node_set_shift (GtkCTree *ctree, @@ -231,23 +231,23 @@ gboolean gtk_ctree_node_get_pixmap (GtkCTree *ctree, GtkCTreeNode *node, gint column, - GdkPixmap **pixmap, - GdkBitmap **mask); + GdkPixmap **pixmap, + GdkBitmap **mask); gboolean gtk_ctree_node_get_pixtext (GtkCTree *ctree, GtkCTreeNode *node, gint column, gchar **text, guint8 *spacing, - GdkPixmap **pixmap, - GdkBitmap **mask); + GdkPixmap **pixmap, + GdkBitmap **mask); gboolean gtk_ctree_get_node_info (GtkCTree *ctree, GtkCTreeNode *node, gchar **text, guint8 *spacing, - GdkPixmap **pixmap_closed, - GdkBitmap **mask_closed, - GdkPixmap **pixmap_opened, - GdkBitmap **mask_opened, + GdkPixmap **pixmap_closed, + GdkBitmap **mask_closed, + GdkPixmap **pixmap_opened, + GdkBitmap **mask_opened, gboolean *is_leaf, gboolean *expanded); void gtk_ctree_node_set_row_style (GtkCTree *ctree, @@ -264,10 +264,10 @@ gint column); void gtk_ctree_node_set_foreground (GtkCTree *ctree, GtkCTreeNode *node, - const GdkColor *color); + const GdkColor *color); void gtk_ctree_node_set_background (GtkCTree *ctree, GtkCTreeNode *node, - const GdkColor *color); + const GdkColor *color); void gtk_ctree_node_set_row_data (GtkCTree *ctree, GtkCTreeNode *node, gpointer data); @@ -913,25 +913,25 @@ -GdkPixmap *pixmap_closed; +GdkPixmap *pixmap_closed; The pixmap to be shown when the node is collapsed. -GdkBitmap *mask_closed; +GdkBitmap *mask_closed; The mask for the above pixmap. -GdkPixmap *pixmap_opened; +GdkPixmap *pixmap_opened; The pixmap to be shown when the node is expanded. -GdkBitmap *mask_opened; +GdkBitmap *mask_opened; The mask for the above pixmap. @@ -1066,10 +1066,10 @@ GtkCTreeNode *sibling, gchar *text[], guint8 spacing, - GdkPixmap *pixmap_closed, - GdkBitmap *mask_closed, - GdkPixmap *pixmap_opened, - GdkBitmap *mask_opened, + GdkPixmap *pixmap_closed, + GdkBitmap *mask_closed, + GdkPixmap *pixmap_opened, + GdkBitmap *mask_opened, gboolean is_leaf, gboolean expanded);
@@ -1905,8 +1905,8 @@
void                gtk_ctree_node_set_pixmap           (GtkCTree *ctree,
                                                          GtkCTreeNode *node,
                                                          gint column,
-                                                         GdkPixmap *pixmap,
-                                                         GdkBitmap *mask);
+ GdkPixmap *pixmap, + GdkBitmap *mask);

Warning

gtk_ctree_node_set_pixmap is deprecated and should not be used in newly-written code.

@@ -1934,8 +1934,8 @@ gint column, const gchar *text, guint8 spacing, - GdkPixmap *pixmap, - GdkBitmap *mask); + GdkPixmap *pixmap, + GdkBitmap *mask);

Warning

gtk_ctree_node_set_pixtext is deprecated and should not be used in newly-written code.

@@ -1962,10 +1962,10 @@ GtkCTreeNode *node, const gchar *text, guint8 spacing, - GdkPixmap *pixmap_closed, - GdkBitmap *mask_closed, - GdkPixmap *pixmap_opened, - GdkBitmap *mask_opened, + GdkPixmap *pixmap_closed, + GdkBitmap *mask_closed, + GdkPixmap *pixmap_opened, + GdkBitmap *mask_opened, gboolean is_leaf, gboolean expanded);
@@ -2129,8 +2129,8 @@
gboolean            gtk_ctree_node_get_pixmap           (GtkCTree *ctree,
                                                          GtkCTreeNode *node,
                                                          gint column,
-                                                         GdkPixmap **pixmap,
-                                                         GdkBitmap **mask);
+ GdkPixmap **pixmap, + GdkBitmap **mask);

Warning

gtk_ctree_node_get_pixmap is deprecated and should not be used in newly-written code.

@@ -2166,8 +2166,8 @@ gint column, gchar **text, guint8 *spacing, - GdkPixmap **pixmap, - GdkBitmap **mask); + GdkPixmap **pixmap, + GdkBitmap **mask);

Warning

gtk_ctree_node_get_pixtext is deprecated and should not be used in newly-written code.

@@ -2183,10 +2183,10 @@ GtkCTreeNode *node, gchar **text, guint8 *spacing, - GdkPixmap **pixmap_closed, - GdkBitmap **mask_closed, - GdkPixmap **pixmap_opened, - GdkBitmap **mask_opened, + GdkPixmap **pixmap_closed, + GdkBitmap **mask_closed, + GdkPixmap **pixmap_opened, + GdkBitmap **mask_opened, gboolean *is_leaf, gboolean *expanded);
@@ -2259,7 +2259,7 @@

gtk_ctree_node_set_foreground ()

void                gtk_ctree_node_set_foreground       (GtkCTree *ctree,
                                                          GtkCTreeNode *node,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Warning

gtk_ctree_node_set_foreground is deprecated and should not be used in newly-written code.

@@ -2272,7 +2272,7 @@

gtk_ctree_node_set_background ()

void                gtk_ctree_node_set_background       (GtkCTree *ctree,
                                                          GtkCTreeNode *node,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Warning

gtk_ctree_node_set_background is deprecated and should not be used in newly-written code.

@@ -2801,6 +2801,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCalendar.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCalendar.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCalendar.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCalendar.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1135,6 +1135,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellEditable.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellEditable.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellEditable.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellEditable.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -53,7 +53,7 @@ GtkCellEditable; struct GtkCellEditableIface; void gtk_cell_editable_start_editing (GtkCellEditable *cell_editable, - GdkEvent *event); + GdkEvent *event); void gtk_cell_editable_editing_done (GtkCellEditable *cell_editable); void gtk_cell_editable_remove_widget (GtkCellEditable *cell_editable); @@ -127,9 +127,9 @@

gtk_cell_editable_start_editing ()

void                gtk_cell_editable_start_editing     (GtkCellEditable *cell_editable,
-                                                         GdkEvent *event);
+ GdkEvent *event);

-Begins editing on a cell_editable. event is the GdkEvent that began +Begins editing on a cell_editable. event is the GdkEvent that began the editing process. It may be NULL, in the instance that editing was initiated through programatic means.

@@ -146,7 +146,7 @@

event :

-A GdkEvent, or NULL. [allow-none] +A GdkEvent, or NULL. [allow-none] @@ -280,6 +280,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellLayout.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellLayout.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellLayout.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellLayout.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -545,6 +545,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRenderer.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRenderer.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRenderer.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRenderer.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -52,31 +52,31 @@ struct GtkCellRendererClass; void gtk_cell_renderer_get_size (GtkCellRenderer *cell, GtkWidget *widget, - const GdkRectangle *cell_area, + const GdkRectangle *cell_area, gint *x_offset, gint *y_offset, gint *width, gint *height); void gtk_cell_renderer_render (GtkCellRenderer *cell, - GdkWindow *window, + GdkWindow *window, GtkWidget *widget, - const GdkRectangle *background_area, - const GdkRectangle *cell_area, - const GdkRectangle *expose_area, + const GdkRectangle *background_area, + const GdkRectangle *cell_area, + const GdkRectangle *expose_area, GtkCellRendererState flags); gboolean gtk_cell_renderer_activate (GtkCellRenderer *cell, - GdkEvent *event, + GdkEvent *event, GtkWidget *widget, const gchar *path, - const GdkRectangle *background_area, - const GdkRectangle *cell_area, + const GdkRectangle *background_area, + const GdkRectangle *cell_area, GtkCellRendererState flags); GtkCellEditable * gtk_cell_renderer_start_editing (GtkCellRenderer *cell, - GdkEvent *event, + GdkEvent *event, GtkWidget *widget, const gchar *path, - const GdkRectangle *background_area, - const GdkRectangle *cell_area, + const GdkRectangle *background_area, + const GdkRectangle *cell_area, GtkCellRendererState flags); void gtk_cell_renderer_editing_canceled (GtkCellRenderer *cell); void gtk_cell_renderer_stop_editing (GtkCellRenderer *cell, @@ -125,7 +125,7 @@

Properties

   "cell-background"          gchar*                : Write
-  "cell-background-gdk"      GdkColor*             : Read / Write
+  "cell-background-gdk"      GdkColor*             : Read / Write
   "cell-background-set"      gboolean              : Read / Write
   "editing"                  gboolean              : Read
   "height"                   gint                  : Read / Write
@@ -152,14 +152,14 @@
 

Description

The GtkCellRenderer is a base class of a set of objects used for -rendering a cell to a GdkDrawable. These objects are used primarily by +rendering a cell to a GdkDrawable. These objects are used primarily by the GtkTreeView widget, though they aren't tied to them in any specific way. It is worth noting that GtkCellRenderer is not a GtkWidget and cannot be treated as such.

The primary use of a GtkCellRenderer is for drawing a certain graphical -elements on a GdkDrawable. Typically, one cell renderer is used to +elements on a GdkDrawable. Typically, one cell renderer is used to draw many cells on the screen. To this extent, it isn't expected that a CellRenderer keep any permanent state around. Instead, any state is set just prior to use using GObjects property system. Then, the @@ -337,7 +337,7 @@

gtk_cell_renderer_get_size ()

void                gtk_cell_renderer_get_size          (GtkCellRenderer *cell,
                                                          GtkWidget *widget,
-                                                         const GdkRectangle *cell_area,
+                                                         const GdkRectangle *cell_area,
                                                          gint *x_offset,
                                                          gint *y_offset,
                                                          gint *width,
@@ -399,11 +399,11 @@
 

gtk_cell_renderer_render ()

void                gtk_cell_renderer_render            (GtkCellRenderer *cell,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkWidget *widget,
-                                                         const GdkRectangle *background_area,
-                                                         const GdkRectangle *cell_area,
-                                                         const GdkRectangle *expose_area,
+                                                         const GdkRectangle *background_area,
+                                                         const GdkRectangle *cell_area,
+                                                         const GdkRectangle *expose_area,
                                                          GtkCellRendererState flags);

Invokes the virtual render function of the GtkCellRenderer. The three @@ -427,7 +427,7 @@

window :

-a GdkDrawable to draw to +a GdkDrawable to draw to

widget :

@@ -458,11 +458,11 @@

gtk_cell_renderer_activate ()

gboolean            gtk_cell_renderer_activate          (GtkCellRenderer *cell,
-                                                         GdkEvent *event,
+                                                         GdkEvent *event,
                                                          GtkWidget *widget,
                                                          const gchar *path,
-                                                         const GdkRectangle *background_area,
-                                                         const GdkRectangle *cell_area,
+                                                         const GdkRectangle *background_area,
+                                                         const GdkRectangle *cell_area,
                                                          GtkCellRendererState flags);

Passes an activate event to the cell renderer for possible processing. @@ -482,7 +482,7 @@

event :

-a GdkEvent +a GdkEvent @@ -521,11 +521,11 @@

gtk_cell_renderer_start_editing ()

GtkCellEditable *   gtk_cell_renderer_start_editing     (GtkCellRenderer *cell,
-                                                         GdkEvent *event,
+                                                         GdkEvent *event,
                                                          GtkWidget *widget,
                                                          const gchar *path,
-                                                         const GdkRectangle *background_area,
-                                                         const GdkRectangle *cell_area,
+                                                         const GdkRectangle *background_area,
+                                                         const GdkRectangle *cell_area,
                                                          GtkCellRendererState flags);

Passes an activate event to the cell renderer for possible processing. @@ -543,7 +543,7 @@

event :

-a GdkEvent +a GdkEvent @@ -959,7 +959,7 @@

The "cell-background-gdk" property

-
  "cell-background-gdk"      GdkColor*             : Read / Write
+
  "cell-background-gdk"      GdkColor*             : Read / Write

Cell background color as a GdkColor.


@@ -981,7 +981,7 @@

The "height" property

  "height"                   gint                  : Read / Write

The fixed height.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -1024,7 +1024,7 @@

The "width" property

  "width"                    gint                  : Read / Write

The fixed width.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -1190,6 +1190,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererAccel.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererAccel.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererAccel.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererAccel.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -67,7 +67,7 @@
   "accel-key"                guint                 : Read / Write
   "accel-mode"               GtkCellRendererAccelMode  : Read / Write
-  "accel-mods"               GdkModifierType       : Read / Write
+  "accel-mods"               GdkModifierType       : Read / Write
   "keycode"                  guint                 : Read / Write
 
@@ -174,7 +174,7 @@

The "accel-mods" property

-
  "accel-mods"               GdkModifierType       : Read / Write
+
  "accel-mods"               GdkModifierType       : Read / Write

The modifier mask of the accelerator.

@@ -232,7 +232,7 @@
void                user_function                      (GtkCellRendererAccel *accel,
                                                         gchar                *path_string,
                                                         guint                 accel_key,
-                                                        GdkModifierType       accel_mods,
+                                                        GdkModifierType       accel_mods,
                                                         guint                 hardware_keycode,
                                                         gpointer              user_data)             : Run Last

@@ -276,6 +276,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererCombo.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererCombo.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererCombo.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererCombo.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -176,7 +176,7 @@ this column to its combo box.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -235,6 +235,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererPixbuf.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererPixbuf.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererPixbuf.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererPixbuf.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -205,6 +205,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererProgress.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererProgress.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererProgress.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererProgress.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -140,7 +140,7 @@ To indicate that the activity has not started yet, set the property to zero. To indicate completion, set the property to G_MAXINT.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.12

@@ -201,6 +201,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererSpin.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererSpin.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererSpin.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererSpin.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -160,6 +160,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererSpinner.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererSpinner.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererSpinner.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererSpinner.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -155,6 +155,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererText.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererText.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererText.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererText.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -73,7 +73,7 @@ "alignment" PangoAlignment : Read / Write "attributes" PangoAttrList* : Read / Write "background" gchar* : Write - "background-gdk" GdkColor* : Read / Write + "background-gdk" GdkColor* : Read / Write "background-set" gboolean : Read / Write "editable" gboolean : Read / Write "editable-set" gboolean : Read / Write @@ -84,7 +84,7 @@ "font" gchar* : Read / Write "font-desc" PangoFontDescription* : Read / Write "foreground" gchar* : Write - "foreground-gdk" GdkColor* : Read / Write + "foreground-gdk" GdkColor* : Read / Write "foreground-set" gboolean : Read / Write "language" gchar* : Read / Write "language-set" gboolean : Read / Write @@ -242,7 +242,7 @@

The "background-gdk" property

-
  "background-gdk"           GdkColor*             : Read / Write
+
  "background-gdk"           GdkColor*             : Read / Write

Background color as a GdkColor.


@@ -325,7 +325,7 @@

The "foreground-gdk" property

-
  "foreground-gdk"           GdkColor*             : Read / Write
+
  "foreground-gdk"           GdkColor*             : Read / Write

Foreground color as a GdkColor.


@@ -517,7 +517,7 @@ -1, the width will be calculated automatically, otherwise the cell will request either 3 characters or the property value, whichever is greater.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -545,7 +545,7 @@ be used to influence at what character positions the line breaks can be placed. Setting wrap-width to -1 turns wrapping off.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.8

@@ -594,6 +594,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererToggle.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererToggle.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellRendererToggle.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellRendererToggle.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -370,6 +370,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellView.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellView.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCellView.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCellView.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -61,7 +61,7 @@ GtkTreePath *path, GtkRequisition *requisition); void gtk_cell_view_set_background_color (GtkCellView *cell_view, - const GdkColor *color); + const GdkColor *color); GList * gtk_cell_view_get_cell_renderers (GtkCellView *cell_view); @@ -85,7 +85,7 @@

Properties

   "background"               gchar*                : Write
-  "background-gdk"           GdkColor*             : Read / Write
+  "background-gdk"           GdkColor*             : Read / Write
   "background-set"           gboolean              : Read / Write
   "model"                    GtkTreeModel*         : Read / Write
 
@@ -369,7 +369,7 @@

gtk_cell_view_set_background_color ()

void                gtk_cell_view_set_background_color  (GtkCellView *cell_view,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Sets the background color of view.

@@ -436,7 +436,7 @@

The "background-gdk" property

-
  "background-gdk"           GdkColor*             : Read / Write
+
  "background-gdk"           GdkColor*             : Read / Write

Background color as a GdkColor.


@@ -461,6 +461,6 @@
+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCheckButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCheckButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCheckButton.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCheckButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -221,6 +221,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkColorButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkColorButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkColorButton.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkColorButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -50,11 +50,11 @@ struct GtkColorButton; GtkWidget * gtk_color_button_new (void); -GtkWidget * gtk_color_button_new_with_color (const GdkColor *color); +GtkWidget * gtk_color_button_new_with_color (const GdkColor *color); void gtk_color_button_set_color (GtkColorButton *color_button, - const GdkColor *color); + const GdkColor *color); void gtk_color_button_get_color (GtkColorButton *color_button, - GdkColor *color); + GdkColor *color); void gtk_color_button_set_alpha (GtkColorButton *color_button, guint16 alpha); guint16 gtk_color_button_get_alpha (GtkColorButton *color_button); @@ -89,7 +89,7 @@

Properties

   "alpha"                    guint                 : Read / Write
-  "color"                    GdkColor*             : Read / Write
+  "color"                    GdkColor*             : Read / Write
   "title"                    gchar*                : Read / Write
   "use-alpha"                gboolean              : Read / Write
 
@@ -144,7 +144,7 @@

gtk_color_button_new_with_color ()

-
GtkWidget *         gtk_color_button_new_with_color     (const GdkColor *color);
+
GtkWidget *         gtk_color_button_new_with_color     (const GdkColor *color);

Creates a new color button.

@@ -156,7 +156,7 @@

color :

-A GdkColor to set the current color with. +A GdkColor to set the current color with.

Returns :

@@ -170,7 +170,7 @@

gtk_color_button_set_color ()

void                gtk_color_button_set_color          (GtkColorButton *color_button,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Sets the current color to be color.

@@ -186,7 +186,7 @@

color :

-A GdkColor to set the current color with. +A GdkColor to set the current color with.
@@ -196,7 +196,7 @@

gtk_color_button_get_color ()

void                gtk_color_button_get_color          (GtkColorButton *color_button,
-                                                         GdkColor *color);
+ GdkColor *color);

Sets color to be the current color in the GtkColorButton widget.

@@ -212,7 +212,7 @@

color :

-a GdkColor to fill in with the current color. +a GdkColor to fill in with the current color.
@@ -391,7 +391,7 @@

The "color" property

-
  "color"                    GdkColor*             : Read / Write
+
  "color"                    GdkColor*             : Read / Write

The selected color.

@@ -468,6 +468,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkColorSelection.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkColorSelection.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkColorSelection.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkColorSelection.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -68,10 +68,10 @@ guint16 alpha); void gtk_color_selection_get_current_color (GtkColorSelection *colorsel, - GdkColor *color); + GdkColor *color); void gtk_color_selection_set_current_color (GtkColorSelection *colorsel, - const GdkColor *color); + const GdkColor *color); guint16 gtk_color_selection_get_previous_alpha (GtkColorSelection *colorsel); void gtk_color_selection_set_previous_alpha @@ -79,28 +79,28 @@ guint16 alpha); void gtk_color_selection_get_previous_color (GtkColorSelection *colorsel, - GdkColor *color); + GdkColor *color); void gtk_color_selection_set_previous_color (GtkColorSelection *colorsel, - const GdkColor *color); + const GdkColor *color); gboolean gtk_color_selection_is_adjusting (GtkColorSelection *colorsel); gboolean gtk_color_selection_palette_from_string (const gchar *str, - GdkColor **colors, + GdkColor **colors, gint *n_colors); gchar * gtk_color_selection_palette_to_string - (const GdkColor *colors, + (const GdkColor *colors, gint n_colors); GtkColorSelectionChangePaletteFunc gtk_color_selection_set_change_palette_hook (GtkColorSelectionChangePaletteFunc func); void (*GtkColorSelectionChangePaletteFunc) - (const GdkColor *colors, + (const GdkColor *colors, gint n_colors); GtkColorSelectionChangePaletteWithScreenFunc gtk_color_selection_set_change_palette_with_screen_hook (GtkColorSelectionChangePaletteWithScreenFunc func); void (*GtkColorSelectionChangePaletteWithScreenFunc) - (GdkScreen *screen, - const GdkColor *colors, + (GdkScreen *screen, + const GdkColor *colors, gint n_colors); void gtk_color_selection_set_color (GtkColorSelection *colorsel, gdouble *color); @@ -131,7 +131,7 @@

Properties

   "current-alpha"            guint                 : Read / Write
-  "current-color"            GdkColor*             : Read / Write
+  "current-color"            GdkColor*             : Read / Write
   "has-opacity-control"      gboolean              : Read / Write
   "has-palette"              gboolean              : Read / Write
 
@@ -390,7 +390,7 @@

gtk_color_selection_get_current_color ()

void                gtk_color_selection_get_current_color
                                                         (GtkColorSelection *colorsel,
-                                                         GdkColor *color);
+ GdkColor *color);

Sets color to be the current color in the GtkColorSelection widget.

@@ -406,7 +406,7 @@

color :

-a GdkColor to fill in with the current color. [out] +a GdkColor to fill in with the current color. [out] @@ -417,7 +417,7 @@

gtk_color_selection_set_current_color ()

void                gtk_color_selection_set_current_color
                                                         (GtkColorSelection *colorsel,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Sets the current color to be color. The first time this is called, it will also set the original color to be color too. @@ -434,7 +434,7 @@

color :

-A GdkColor to set the current color with. +A GdkColor to set the current color with. @@ -496,7 +496,7 @@

gtk_color_selection_get_previous_color ()

void                gtk_color_selection_get_previous_color
                                                         (GtkColorSelection *colorsel,
-                                                         GdkColor *color);
+ GdkColor *color);

Fills color in with the original color value.

@@ -512,7 +512,7 @@

color :

-a GdkColor to fill in with the original color value. [out] +a GdkColor to fill in with the original color value. [out] @@ -523,7 +523,7 @@

gtk_color_selection_set_previous_color ()

void                gtk_color_selection_set_previous_color
                                                         (GtkColorSelection *colorsel,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Sets the 'previous' color to be color. This function should be called with some hesitations, as it might seem confusing to have that color change. @@ -542,7 +542,7 @@

color :

-a GdkColor to set the previous color with. +a GdkColor to set the previous color with. @@ -578,11 +578,11 @@

gtk_color_selection_palette_from_string ()

gboolean            gtk_color_selection_palette_from_string
                                                         (const gchar *str,
-                                                         GdkColor **colors,
+                                                         GdkColor **colors,
                                                          gint *n_colors);

Parses a color palette string; the string is a colon-separated -list of color names readable by gdk_color_parse(). +list of color names readable by gdk_color_parse().

@@ -597,7 +597,7 @@ @@ -616,7 +616,7 @@

gtk_color_selection_palette_to_string ()

gchar *             gtk_color_selection_palette_to_string
-                                                        (const GdkColor *colors,
+                                                        (const GdkColor *colors,
                                                          gint n_colors);

Encodes a palette as a string, useful for persistent storage. @@ -680,7 +680,7 @@

GtkColorSelectionChangePaletteFunc ()

void                (*GtkColorSelectionChangePaletteFunc)
-                                                        (const GdkColor *colors,
+                                                        (const GdkColor *colors,
                                                          gint n_colors);

@@ -718,8 +718,8 @@

GtkColorSelectionChangePaletteWithScreenFunc ()

void                (*GtkColorSelectionChangePaletteWithScreenFunc)
-                                                        (GdkScreen *screen,
-                                                         const GdkColor *colors,
+                                                        (GdkScreen *screen,
+                                                         const GdkColor *colors,
                                                          gint n_colors);

@@ -798,7 +798,7 @@

The "current-color" property

-
  "current-color"            GdkColor*             : Read / Write
+
  "current-color"            GdkColor*             : Read / Write

The current color.


@@ -847,6 +847,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkColorSelectionDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkColorSelectionDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkColorSelectionDialog.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkColorSelectionDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -232,6 +232,6 @@
+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCombo.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCombo.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCombo.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCombo.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -529,6 +529,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkComboBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkComboBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkComboBox.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkComboBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1359,7 +1359,7 @@ gtk_tree_path_get_indices (path)[0], where path is the GtkTreePath of the active item.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.4

@@ -1405,7 +1405,7 @@ in the list will span.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.4

@@ -1417,7 +1417,7 @@ The column in the combo box's model to associate with strings from the entry if the combo was created with "has-entry" = TRUE.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.24

@@ -1489,7 +1489,7 @@ by this property must be greater than zero and not larger than wrap-width.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.4

@@ -1694,6 +1694,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkComboBoxEntry.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkComboBoxEntry.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkComboBoxEntry.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkComboBoxEntry.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -295,7 +295,7 @@

The "text-column" property

  "text-column"              gint                  : Read / Write

A column in the data source model to get the strings from.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

@@ -308,6 +308,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkComboBoxText.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkComboBoxText.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkComboBoxText.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkComboBoxText.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -344,6 +344,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkContainer.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkContainer.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkContainer.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkContainer.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -122,7 +122,7 @@ guint border_width); voidgtk_container_propagate_expose (GtkContainer *container, GtkWidget *child, - GdkEventExpose *event); + GdkEventExpose *event); gbooleangtk_container_get_focus_chain (GtkContainer *container, GList **focusable_widgets); voidgtk_container_set_focus_chain (GtkContainer *container, @@ -1243,10 +1243,10 @@

gtk_container_propagate_expose ()

void                gtk_container_propagate_expose      (GtkContainer *container,
                                                          GtkWidget *child,
-                                                         GdkEventExpose *event);
+ GdkEventExpose *event);

When a container receives an expose event, it must send synthetic -expose events to all children that don't have their own GdkWindows. +expose events to all children that don't have their own GdkWindows. This function provides a convenient way of doing this. A container, when it receives an expose event, calls gtk_container_propagate_expose() once for each child, passing in the event the container received. @@ -1613,6 +1613,6 @@

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCurve.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCurve.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkCurve.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkCurve.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -445,6 +445,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkDialog.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -86,7 +86,7 @@ GtkWidget * gtk_dialog_get_action_area (GtkDialog *dialog); GtkWidget * gtk_dialog_get_content_area (GtkDialog *dialog); -gbooleangtk_alternative_dialog_button_order (GdkScreen *screen); +gbooleangtk_alternative_dialog_button_order (GdkScreen *screen); voidgtk_dialog_set_alternative_button_order (GtkDialog *dialog, gint first_response_id, @@ -1070,7 +1070,7 @@

gtk_alternative_dialog_button_order ()

-
gboolean            gtk_alternative_dialog_button_order (GdkScreen *screen);
+
gboolean            gtk_alternative_dialog_button_order (GdkScreen *screen);

Returns TRUE if dialogs are expected to use an alternative button order on the screen screen. See @@ -1091,7 +1091,7 @@

- @@ -1391,6 +1391,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkDrawingArea.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkDrawingArea.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkDrawingArea.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkDrawingArea.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -131,7 +131,7 @@ - @@ -445,6 +445,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFrame.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFrame.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFrame.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFrame.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -466,6 +466,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkGammaCurve.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkGammaCurve.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkGammaCurve.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkGammaCurve.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -125,6 +125,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHBox.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -130,6 +130,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHButtonBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHButtonBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHButtonBox.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHButtonBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -243,6 +243,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHPaned.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHPaned.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHPaned.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHPaned.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -106,6 +106,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHRuler.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHRuler.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHRuler.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHRuler.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -127,6 +127,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHSV.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHSV.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHSV.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHSV.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -490,6 +490,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHScale.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHScale.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHScale.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHScale.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -161,6 +161,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHScrollbar.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHScrollbar.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHScrollbar.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHScrollbar.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -123,6 +123,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHSeparator.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHSeparator.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHSeparator.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHSeparator.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -131,6 +131,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHandleBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHandleBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkHandleBox.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkHandleBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -503,6 +503,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIMContext.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIMContext.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIMContext.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIMContext.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -49,18 +49,18 @@ struct GtkIMContextClass; struct GtkIMContextInfo; voidgtk_im_context_set_client_window (GtkIMContext *context, - GdkWindow *window); + GdkWindow *window); voidgtk_im_context_get_preedit_string (GtkIMContext *context, gchar **str, PangoAttrList **attrs, gint *cursor_pos); gbooleangtk_im_context_filter_keypress (GtkIMContext *context, - GdkEventKey *event); + GdkEventKey *event); voidgtk_im_context_focus_in (GtkIMContext *context); voidgtk_im_context_focus_out (GtkIMContext *context); voidgtk_im_context_reset (GtkIMContext *context); voidgtk_im_context_set_cursor_location (GtkIMContext *context, - const GdkRectangle *area); + const GdkRectangle *area); voidgtk_im_context_set_use_preedit (GtkIMContext *context, gboolean use_preedit); voidgtk_im_context_set_surrounding (GtkIMContext *context, @@ -428,10 +428,10 @@

gtk_im_context_set_client_window ()

void                gtk_im_context_set_client_window    (GtkIMContext *context,
-                                                         GdkWindow *window);
+ GdkWindow *window);

Set the client window for the input context; this is the -GdkWindow in which the input appears. This window is +GdkWindow in which the input appears. This window is used in order to correctly position status windows, and may also be used for purposes internal to the input method.

@@ -505,7 +505,7 @@

gtk_im_context_filter_keypress ()

gboolean            gtk_im_context_filter_keypress      (GtkIMContext *context,
-                                                         GdkEventKey *event);
+ GdkEventKey *event);

Allow an input method to internally handle key press and release events. If this function returns TRUE, then no further processing @@ -603,7 +603,7 @@

gtk_im_context_set_cursor_location ()

void                gtk_im_context_set_cursor_location  (GtkIMContext *context,
-                                                         const GdkRectangle *area);
+ const GdkRectangle *area);

Notify the input method that a change in cursor position has been made. The location is relative to the client @@ -999,6 +999,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIMContextSimple.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIMContextSimple.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIMContextSimple.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIMContextSimple.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -149,6 +149,6 @@
+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIMMulticontext.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIMMulticontext.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIMMulticontext.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIMMulticontext.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -182,6 +182,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIconTheme.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIconTheme.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIconTheme.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIconTheme.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -51,9 +51,9 @@ enum GtkIconThemeError; GtkIconTheme * gtk_icon_theme_new (void); GtkIconTheme * gtk_icon_theme_get_default (void); -GtkIconTheme * gtk_icon_theme_get_for_screen (GdkScreen *screen); +GtkIconTheme * gtk_icon_theme_get_for_screen (GdkScreen *screen); voidgtk_icon_theme_set_screen (GtkIconTheme *icon_theme, - GdkScreen *screen); + GdkScreen *screen); #define gtk_icon_theme_set_search_path #define gtk_icon_theme_get_search_path #define gtk_icon_theme_append_search_path @@ -102,9 +102,9 @@ voidgtk_icon_info_set_raw_coordinates (GtkIconInfo *icon_info, gboolean raw_coordinates); gbooleangtk_icon_info_get_embedded_rect (GtkIconInfo *icon_info, - GdkRectangle *rectangle); + GdkRectangle *rectangle); gbooleangtk_icon_info_get_attach_points (GtkIconInfo *icon_info, - GdkPoint **points, + GdkPoint **points, gint *n_points); const gchar * gtk_icon_info_get_display_name (GtkIconInfo *icon_info); @@ -177,7 +177,7 @@ directly is also simple. The GtkIconTheme object acts as a database of all the icons in the current theme. You can create new GtkIconTheme objects, but its much more -efficient to use the standard icon theme for the GdkScreen +efficient to use the standard icon theme for the GdkScreen so that the icon information is shared with other people looking up icons. In the case where the default screen is being used, looking up an icon can be as simple as: @@ -393,7 +393,7 @@

gtk_icon_theme_get_for_screen ()

-
GtkIconTheme *      gtk_icon_theme_get_for_screen       (GdkScreen *screen);
+
GtkIconTheme *      gtk_icon_theme_get_for_screen       (GdkScreen *screen);

Gets the icon theme object associated with screen; if this function has not previously been called for the given @@ -412,7 +412,7 @@

- @@ -431,7 +431,7 @@

gtk_icon_theme_set_screen ()

void                gtk_icon_theme_set_screen           (GtkIconTheme *icon_theme,
-                                                         GdkScreen *screen);
+ GdkScreen *screen);

Sets the screen for an icon theme; the screen is used to track the user's currently configured icon theme, @@ -450,7 +450,7 @@

- @@ -1359,7 +1359,7 @@

gtk_icon_info_get_embedded_rect ()

gboolean            gtk_icon_info_get_embedded_rect     (GtkIconInfo *icon_info,
-                                                         GdkRectangle *rectangle);
+ GdkRectangle *rectangle);

Gets the coordinates of a rectangle within the icon that can be used for display of information such @@ -1381,7 +1381,7 @@

@@ -1399,7 +1399,7 @@

gtk_icon_info_get_attach_points ()

gboolean            gtk_icon_info_get_attach_points     (GtkIconInfo *icon_info,
-                                                         GdkPoint **points,
+                                                         GdkPoint **points,
                                                          gint *n_points);

Fetches the set of attach points for an icon. An attach point @@ -1500,6 +1500,6 @@

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIconView.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIconView.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkIconView.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkIconView.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -166,15 +166,15 @@ enum GtkIconViewDropPosition; voidgtk_icon_view_enable_model_drag_source (GtkIconView *icon_view, - GdkModifierType start_button_mask, + GdkModifierType start_button_mask, const GtkTargetEntry *targets, gint n_targets, - GdkDragAction actions); + GdkDragAction actions); voidgtk_icon_view_enable_model_drag_dest (GtkIconView *icon_view, const GtkTargetEntry *targets, gint n_targets, - GdkDragAction actions); + GdkDragAction actions); voidgtk_icon_view_unset_model_drag_source (GtkIconView *icon_view); voidgtk_icon_view_unset_model_drag_dest (GtkIconView *icon_view); @@ -192,7 +192,7 @@ gint drag_y, GtkTreePath **path, GtkIconViewDropPosition *pos); -GdkPixmap * gtk_icon_view_create_drag_icon (GtkIconView *icon_view, +GdkPixmap * gtk_icon_view_create_drag_icon (GtkIconView *icon_view, GtkTreePath *path); @@ -238,7 +238,7 @@

Style Properties

   "selection-box-alpha"      guchar                : Read
-  "selection-box-color"      GdkColor*             : Read
+  "selection-box-color"      GdkColor*             : Read
 
@@ -2021,10 +2021,10 @@

gtk_icon_view_enable_model_drag_source ()

void                gtk_icon_view_enable_model_drag_source
                                                         (GtkIconView *icon_view,
-                                                         GdkModifierType start_button_mask,
+                                                         GdkModifierType start_button_mask,
                                                          const GtkTargetEntry *targets,
                                                          gint n_targets,
-                                                         GdkDragAction actions);
+ GdkDragAction actions);

Turns icon_view into a drag source for automatic DND. Calling this method sets "reorderable" to FALSE. @@ -2069,7 +2069,7 @@ (GtkIconView *icon_view, const GtkTargetEntry *targets, gint n_targets, - GdkDragAction actions); + GdkDragAction actions);

Turns icon_view into a drop destination for automatic DND. Calling this method sets "reorderable" to FALSE. @@ -2331,10 +2331,10 @@


gtk_icon_view_create_drag_icon ()

-
GdkPixmap *         gtk_icon_view_create_drag_icon      (GtkIconView *icon_view,
+
GdkPixmap *         gtk_icon_view_create_drag_icon      (GtkIconView *icon_view,
                                                          GtkTreePath *path);

-Creates a GdkPixmap representation of the item at path. +Creates a GdkPixmap representation of the item at path. This image is used for a drag icon.

colors :

return location for allocated -array of GdkColor. [out][array length=n_colors] +array of GdkColor. [out][array length=n_colors]

screen :

a GdkScreen, or NULL to use the default screen. [allow-none] +a GdkScreen, or NULL to use the default screen. [allow-none]
gboolean
 expose_event_callback (GtkWidget *widget, GdkEventExpose *event, gpointer data)
 {
-  gdk_draw_arc (widget->window,
+  gdk_draw_arc (widget->window,
                 widget->style->fg_gc[gtk_widget_get_state (widget)],
                 TRUE,
                 0, 0, widget->allocation.width, widget->allocation.height,
@@ -154,12 +154,12 @@
 onscreen, or when it's covered by another window and then uncovered
 (exposed). You can also force an expose event by adding to the "damage
 region" of the drawing area's window; gtk_widget_queue_draw_area() and
-gdk_window_invalidate_rect() are equally good ways to do this. You'll
+gdk_window_invalidate_rect() are equally good ways to do this. You'll
 then get an expose event for the invalid region.
 

The available routines for drawing are documented on the GDK Drawing Primitives page. -See also gdk_draw_pixbuf() for drawing a GdkPixbuf. +See also gdk_draw_pixbuf() for drawing a GdkPixbuf.

To receive mouse events on a drawing area, you will need to enable @@ -244,7 +244,7 @@

See Also

Sometimes GtkImage is a useful alternative to a drawing area. -You can put a GdkPixmap in the GtkImage and draw to the GdkPixmap, +You can put a GdkPixmap in the GtkImage and draw to the GdkPixmap, calling gtk_widget_queue_draw() on the GtkImage when you want to refresh to the screen.

@@ -252,6 +252,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEditable.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEditable.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEditable.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEditable.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -705,6 +705,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEntry.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEntry.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEntry.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEntry.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -125,7 +125,7 @@ void gtk_entry_progress_pulse (GtkEntry *entry); gboolean gtk_entry_im_context_filter_keypress (GtkEntry *entry, - GdkEventKey *event); + GdkEventKey *event); void gtk_entry_reset_im_context (GtkEntry *entry); enum GtkEntryIconPosition; void gtk_entry_set_icon_from_pixbuf (GtkEntry *entry, @@ -176,12 +176,12 @@ void gtk_entry_set_icon_drag_source (GtkEntry *entry, GtkEntryIconPosition icon_pos, GtkTargetList *target_list, - GdkDragAction actions); + GdkDragAction actions); gint gtk_entry_get_current_icon_drag_source (GtkEntry *entry); -GdkWindow * gtk_entry_get_icon_window (GtkEntry *entry, +GdkWindow * gtk_entry_get_icon_window (GtkEntry *entry, GtkEntryIconPosition icon_pos); -GdkWindow * gtk_entry_get_text_window (GtkEntry *entry); +GdkWindow * gtk_entry_get_text_window (GtkEntry *entry);
@@ -1748,7 +1748,7 @@

gtk_entry_im_context_filter_keypress ()

gboolean            gtk_entry_im_context_filter_keypress
                                                         (GtkEntry *entry,
-                                                         GdkEventKey *event);
+ GdkEventKey *event);

Allow the GtkEntry input method to internally handle key press and release events. If this function returns TRUE, then no further @@ -2492,7 +2492,7 @@

void                gtk_entry_set_icon_drag_source      (GtkEntry *entry,
                                                          GtkEntryIconPosition icon_pos,
                                                          GtkTargetList *target_list,
-                                                         GdkDragAction actions);
+ GdkDragAction actions);

Sets up the icon at the given position so that GTK+ will start a drag operation when the user clicks and drags the icon. @@ -2573,10 +2573,10 @@


gtk_entry_get_icon_window ()

-
GdkWindow *         gtk_entry_get_icon_window           (GtkEntry *entry,
+
GdkWindow *         gtk_entry_get_icon_window           (GtkEntry *entry,
                                                          GtkEntryIconPosition icon_pos);

-Returns the GdkWindow which contains the entry's icon at +Returns the GdkWindow which contains the entry's icon at icon_pos. This function is useful when drawing something to the entry in an expose-event callback because it enables the callback to distinguish between the text window and entry's icon windows. @@ -2615,9 +2615,9 @@


gtk_entry_get_text_window ()

-
GdkWindow *         gtk_entry_get_text_window           (GtkEntry *entry);
+
GdkWindow *         gtk_entry_get_text_window           (GtkEntry *entry);

-Returns the GdkWindow which contains the text. This function is +Returns the GdkWindow which contains the text. This function is useful when drawing something to the entry in an expose-event callback because it enables the callback to distinguish between the text window and entry's icon windows. @@ -3103,7 +3103,7 @@

The "width-chars" property

  "width-chars"              gint                  : Read / Write

Number of characters to leave space for in the entry.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -3366,7 +3366,7 @@

The "icon-press" signal

void                user_function                      (GtkEntry            *entry,
                                                         GtkEntryIconPosition icon_pos,
-                                                        GdkEvent            *event,
+                                                        GdkEvent            *event,
                                                         gpointer             user_data)      : Run Last

The ::icon-press signal is emitted when an activatable icon @@ -3403,7 +3403,7 @@

The "icon-release" signal

void                user_function                      (GtkEntry            *entry,
                                                         GtkEntryIconPosition icon_pos,
-                                                        GdkEvent            *event,
+                                                        GdkEvent            *event,
                                                         gpointer             user_data)      : Run Last

The ::icon-release signal is emitted on the button release from a @@ -3694,6 +3694,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEntryBuffer.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEntryBuffer.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEntryBuffer.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEntryBuffer.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -624,6 +624,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEntryCompletion.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEntryCompletion.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEntryCompletion.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEntryCompletion.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1043,7 +1043,7 @@ The column of the model containing the strings. Note that the strings must be UTF-8.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -1223,6 +1223,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEventBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEventBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkEventBox.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkEventBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -193,12 +193,12 @@

In an invisible window event box, the window that the -event box creates is a GDK_INPUT_ONLY window, which +event box creates is a GDK_INPUT_ONLY window, which means that it is invisible and only serves to receive events.

-A visible window event box creates a visible (GDK_INPUT_OUTPUT) +A visible window event box creates a visible (GDK_INPUT_OUTPUT) window that acts as the parent window for all the widgets contained in the event box.

@@ -302,6 +302,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkExpander.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkExpander.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkExpander.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkExpander.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -785,6 +785,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileChooser.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileChooser.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileChooser.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileChooser.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -3409,6 +3409,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileChooserButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileChooserButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileChooserButton.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileChooserButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -477,7 +477,7 @@

The width of the entry and label inside the button, in characters.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -523,6 +523,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileChooserDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileChooserDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileChooserDialog.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileChooserDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -322,6 +322,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileChooserWidget.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileChooserWidget.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileChooserWidget.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileChooserWidget.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -171,6 +171,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileSelection.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileSelection.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFileSelection.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFileSelection.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -639,6 +639,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFixed.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFixed.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFixed.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFixed.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -255,7 +255,7 @@

gtk_fixed_get_has_window has been deprecated since version 2.20 and should not be used in newly-written code. Use gtk_widget_get_has_window() instead.

-Gets whether the GtkFixed has its own GdkWindow. +Gets whether the GtkFixed has its own GdkWindow. See gtk_fixed_set_has_window().

@@ -288,8 +288,8 @@

Sets whether a GtkFixed widget is created with a separate -GdkWindow for widget->window or not. (By default, it will be -created with no separate GdkWindow). This function must be called +GdkWindow for widget->window or not. (By default, it will be +created with no separate GdkWindow). This function must be called while the GtkFixed is not realized, for instance, immediately after the window is created.

@@ -336,6 +336,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFontButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFontButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFontButton.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFontButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -619,6 +619,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFontSelection.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFontSelection.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFontSelection.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFontSelection.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -48,7 +48,7 @@ struct GtkFontSelection; GtkWidget * gtk_font_selection_new (void); -GdkFont * gtk_font_selection_get_font (GtkFontSelection *fontsel); +GdkFont * gtk_font_selection_get_font (GtkFontSelection *fontsel); gchar * gtk_font_selection_get_font_name (GtkFontSelection *fontsel); gbooleangtk_font_selection_set_font_name (GtkFontSelection *fontsel, const gchar *fontname); @@ -88,7 +88,7 @@

Properties

-  "font"                     GdkFont*              : Read
+  "font"                     GdkFont*              : Read
   "font-name"                gchar*                : Read / Write
   "preview-text"             gchar*                : Read / Write
 
@@ -145,7 +145,7 @@

gtk_font_selection_get_font ()

-
GdkFont *           gtk_font_selection_get_font         (GtkFontSelection *fontsel);
+
GdkFont *           gtk_font_selection_get_font         (GtkFontSelection *fontsel);

Warning

gtk_font_selection_get_font has been deprecated since version 2.0 and should not be used in newly-written code. Use gtk_font_selection_get_font_name() instead.

@@ -166,7 +166,7 @@
- +

Returns :

A GdkFont.A GdkFont.
@@ -528,7 +528,7 @@

Property Details

The "font" property

-
  "font"                     GdkFont*              : Read
+
  "font"                     GdkFont*              : Read

The GdkFont that is currently selected.


@@ -566,6 +566,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFontSelectionDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFontSelectionDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkFontSelectionDialog.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkFontSelectionDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -46,7 +46,7 @@ struct GtkFontSelectionDialog; GtkWidget * gtk_font_selection_dialog_new (const gchar *title); -GdkFont * gtk_font_selection_dialog_get_font (GtkFontSelectionDialog *fsd); +GdkFont * gtk_font_selection_dialog_get_font (GtkFontSelectionDialog *fsd); gchar * gtk_font_selection_dialog_get_font_name (GtkFontSelectionDialog *fsd); gboolean gtk_font_selection_dialog_set_font_name @@ -152,7 +152,7 @@

gtk_font_selection_dialog_get_font ()

-
GdkFont *           gtk_font_selection_dialog_get_font  (GtkFontSelectionDialog *fsd);
+
GdkFont *           gtk_font_selection_dialog_get_font  (GtkFontSelectionDialog *fsd);

Warning

gtk_font_selection_dialog_get_font has been deprecated since version 2.0 and should not be used in newly-written code. Use gtk_font_selection_dialog_get_font_name() instead.

@@ -173,7 +173,7 @@

Returns :

the GdkFont from the GtkFontSelection for the +the GdkFont from the GtkFontSelection for the currently selected font in the dialog, or NULL if no font is selected

screen :

a GdkScreen +a GdkScreen

screen :

a GdkScreen +a GdkScreen

rectangle :

-GdkRectangle in which to store embedded +GdkRectangle in which to store embedded rectangle coordinates; coordinates are only stored when this function returns TRUE. [out]
@@ -2385,7 +2385,7 @@ items should be displayed. If it is -1, the number of columns will be chosen automatically to fill the available area.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -2423,7 +2423,7 @@ suitable item size.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -2453,7 +2453,7 @@ are both set to column numbers, it overrides the text column. If both are set to -1, no texts are displayed.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -2490,7 +2490,7 @@ of type GDK_TYPE_PIXBUF. Setting this property to -1 turns off the display of pixbufs.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -2553,7 +2553,7 @@ property are both set to -1, no texts are displayed.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -2562,7 +2562,7 @@

The "tooltip-column" property

  "tooltip-column"           gint                  : Read / Write

The column in the model containing the tooltip texts for the items.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

@@ -2577,7 +2577,7 @@

The "selection-box-color" style property

-
  "selection-box-color"      GdkColor*             : Read
+
  "selection-box-color"      GdkColor*             : Read

Color of the selection box.

@@ -2916,6 +2916,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkImage.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkImage.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkImage.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkImage.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -52,12 +52,12 @@ GtkIconSet **icon_set, GtkIconSize *size); voidgtk_image_get_image (GtkImage *image, - GdkImage **gdk_image, - GdkBitmap **mask); + GdkImage **gdk_image, + GdkBitmap **mask); GdkPixbuf * gtk_image_get_pixbuf (GtkImage *image); voidgtk_image_get_pixmap (GtkImage *image, - GdkPixmap **pixmap, - GdkBitmap **mask); + GdkPixmap **pixmap, + GdkBitmap **mask); voidgtk_image_get_stock (GtkImage *image, gchar **stock_id, GtkIconSize *size); @@ -72,11 +72,11 @@ #define gtk_image_new_from_fileGtkWidget * gtk_image_new_from_icon_set (GtkIconSet *icon_set, GtkIconSize size); -GtkWidget * gtk_image_new_from_image (GdkImage *image, - GdkBitmap *mask); +GtkWidget * gtk_image_new_from_image (GdkImage *image, + GdkBitmap *mask); GtkWidget * gtk_image_new_from_pixbuf (GdkPixbuf *pixbuf); -GtkWidget * gtk_image_new_from_pixmap (GdkPixmap *pixmap, - GdkBitmap *mask); +GtkWidget * gtk_image_new_from_pixmap (GdkPixmap *pixmap, + GdkBitmap *mask); GtkWidget * gtk_image_new_from_stock (const gchar *stock_id, GtkIconSize size); GtkWidget * gtk_image_new_from_animation (GdkPixbufAnimation *animation); @@ -89,13 +89,13 @@ GtkIconSet *icon_set, GtkIconSize size); voidgtk_image_set_from_image (GtkImage *image, - GdkImage *gdk_image, - GdkBitmap *mask); + GdkImage *gdk_image, + GdkBitmap *mask); voidgtk_image_set_from_pixbuf (GtkImage *image, GdkPixbuf *pixbuf); voidgtk_image_set_from_pixmap (GtkImage *image, - GdkPixmap *pixmap, - GdkBitmap *mask); + GdkPixmap *pixmap, + GdkBitmap *mask); voidgtk_image_set_from_stock (GtkImage *image, const gchar *stock_id, GtkIconSize size); @@ -110,11 +110,11 @@ voidgtk_image_clear (GtkImage *image); GtkWidget * gtk_image_new (void); voidgtk_image_set (GtkImage *image, - GdkImage *val, - GdkBitmap *mask); + GdkImage *val, + GdkBitmap *mask); voidgtk_image_get (GtkImage *image, - GdkImage **val, - GdkBitmap **mask); + GdkImage **val, + GdkBitmap **mask); voidgtk_image_set_pixel_size (GtkImage *image, gint pixel_size); gintgtk_image_get_pixel_size (GtkImage *image); @@ -145,12 +145,12 @@ "icon-name" gchar* : Read / Write "icon-set" GtkIconSet* : Read / Write "icon-size" gint : Read / Write - "image" GdkImage* : Read / Write - "mask" GdkPixmap* : Read / Write + "image" GdkImage* : Read / Write + "mask" GdkPixmap* : Read / Write "pixbuf" GdkPixbuf* : Read / Write "pixbuf-animation" GdkPixbufAnimation* : Read / Write "pixel-size" gint : Read / Write - "pixmap" GdkPixmap* : Read / Write + "pixmap" GdkPixmap* : Read / Write "stock" gchar* : Read / Write "storage-type" GtkImageType : Read @@ -195,7 +195,7 @@ GtkMisc methods.

-GtkImage is a "no window" widget (has no GdkWindow of its own), +GtkImage is a "no window" widget (has no GdkWindow of its own), so by default does not receive events. If you want to receive events on the image, such as button clicks, place the image inside a GtkEventBox, then connect to the event signals on the event box. @@ -349,12 +349,12 @@

- - @@ -433,10 +433,10 @@

gtk_image_get_image ()

void                gtk_image_get_image                 (GtkImage *image,
-                                                         GdkImage **gdk_image,
-                                                         GdkBitmap **mask);
+ GdkImage **gdk_image, + GdkBitmap **mask);

-Gets the GdkImage and mask being displayed by the GtkImage. +Gets the GdkImage and mask being displayed by the GtkImage. The storage type of the image must be GTK_IMAGE_EMPTY or GTK_IMAGE_IMAGE (see gtk_image_get_storage_type()). The caller of this function does not own a reference to the @@ -462,7 +462,7 @@

@@ -503,8 +503,8 @@

gtk_image_get_pixmap ()

void                gtk_image_get_pixmap                (GtkImage *image,
-                                                         GdkPixmap **pixmap,
-                                                         GdkBitmap **mask);
+ GdkPixmap **pixmap, + GdkBitmap **mask);

Gets the pixmap and mask being displayed by the GtkImage. The storage type of the image must be GTK_IMAGE_EMPTY or @@ -805,11 +805,11 @@


gtk_image_new_from_image ()

-
GtkWidget *         gtk_image_new_from_image            (GdkImage *image,
-                                                         GdkBitmap *mask);
+
GtkWidget *         gtk_image_new_from_image            (GdkImage *image,
+                                                         GdkBitmap *mask);

Creates a GtkImage widget displaying a image with a mask. -A GdkImage is a client-side image buffer in the pixel format of the +A GdkImage is a client-side image buffer in the pixel format of the current display. The GtkImage does not assume a reference to the image or mask; you still need to unref them if you own references. GtkImage will add its own reference rather than adopting yours. @@ -822,12 +822,12 @@

- - @@ -875,11 +875,11 @@

gtk_image_new_from_pixmap ()

-
GtkWidget *         gtk_image_new_from_pixmap           (GdkPixmap *pixmap,
-                                                         GdkBitmap *mask);
+
GtkWidget *         gtk_image_new_from_pixmap           (GdkPixmap *pixmap,
+                                                         GdkBitmap *mask);

Creates a GtkImage widget displaying pixmap with a mask. -A GdkPixmap is a server-side image buffer in the pixel format of the +A GdkPixmap is a server-side image buffer in the pixel format of the current display. The GtkImage does not assume a reference to the pixmap or mask; you still need to unref them if you own references. GtkImage will add its own reference rather than adopting yours. @@ -892,12 +892,12 @@

- - @@ -1108,8 +1108,8 @@

gtk_image_set_from_image ()

void                gtk_image_set_from_image            (GtkImage *image,
-                                                         GdkImage *gdk_image,
-                                                         GdkBitmap *mask);
+ GdkImage *gdk_image, + GdkBitmap *mask);

See gtk_image_new_from_image() for details.

@@ -1126,12 +1126,12 @@
- - @@ -1168,8 +1168,8 @@

gtk_image_set_from_pixmap ()

void                gtk_image_set_from_pixmap           (GtkImage *image,
-                                                         GdkPixmap *pixmap,
-                                                         GdkBitmap *mask);
+ GdkPixmap *pixmap, + GdkBitmap *mask);

See gtk_image_new_from_pixmap() for details.

@@ -1186,12 +1186,12 @@
- - @@ -1365,8 +1365,8 @@

gtk_image_set ()

void                gtk_image_set                       (GtkImage *image,
-                                                         GdkImage *val,
-                                                         GdkBitmap *mask);
+ GdkImage *val, + GdkBitmap *mask);

Warning

gtk_image_set has been deprecated since version 2.0 and should not be used in newly-written code. Use gtk_image_set_from_image() instead.

@@ -1387,12 +1387,12 @@
- - +

GTK_IMAGE_PIXMAP

the widget contains a GdkPixmap +the widget contains a GdkPixmap

GTK_IMAGE_IMAGE

the widget contains a GdkImage +the widget contains a GdkImage

mask :

return location for a -GdkBitmap, or NULL. [out][transfer none][allow-none] +GdkBitmap, or NULL. [out][transfer none][allow-none]

image :

a GdkImage, or NULL. [allow-none] +a GdkImage, or NULL. [allow-none]

mask :

a GdkBitmap, or NULL. [allow-none] +a GdkBitmap, or NULL. [allow-none]

pixmap :

a GdkPixmap, or NULL. [allow-none] +a GdkPixmap, or NULL. [allow-none]

mask :

a GdkBitmap, or NULL. [allow-none] +a GdkBitmap, or NULL. [allow-none]

gdk_image :

a GdkImage or NULL. [allow-none] +a GdkImage or NULL. [allow-none]

mask :

a GdkBitmap or NULL. [allow-none] +a GdkBitmap or NULL. [allow-none]

pixmap :

a GdkPixmap or NULL. [allow-none] +a GdkPixmap or NULL. [allow-none]

mask :

a GdkBitmap or NULL. [allow-none] +a GdkBitmap or NULL. [allow-none]

val :

a GdkImage +a GdkImage

mask :

a GdkBitmap that indicates which parts of the image should be transparent.a GdkBitmap that indicates which parts of the image should be transparent.
@@ -1401,8 +1401,8 @@

gtk_image_get ()

void                gtk_image_get                       (GtkImage *image,
-                                                         GdkImage **val,
-                                                         GdkBitmap **mask);
+ GdkImage **val, + GdkBitmap **mask);

Warning

gtk_image_get has been deprecated since version 2.0 and should not be used in newly-written code. Use gtk_image_get_image() instead.

@@ -1423,12 +1423,12 @@

val :

-return location for a GdkImage +return location for a GdkImage

mask :

-a GdkBitmap that indicates which parts of the image should be transparent. +a GdkBitmap that indicates which parts of the image should be transparent.
@@ -1536,13 +1536,13 @@

The "image" property

-
  "image"                    GdkImage*             : Read / Write
+
  "image"                    GdkImage*             : Read / Write

A GdkImage to display.


The "mask" property

-
  "mask"                     GdkPixmap*            : Read / Write
+
  "mask"                     GdkPixmap*            : Read / Write

Mask bitmap to use with GdkImage or GdkPixmap.


@@ -1567,14 +1567,14 @@ GTK_IMAGE_ICON_NAME.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6


The "pixmap" property

-
  "pixmap"                   GdkPixmap*            : Read / Write
+
  "pixmap"                   GdkPixmap*            : Read / Write

A GdkPixmap to display.


@@ -1599,6 +1599,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkImageMenuItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkImageMenuItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkImageMenuItem.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkImageMenuItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -485,6 +485,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkInfoBar.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkInfoBar.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkInfoBar.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkInfoBar.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -751,6 +751,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkInputDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkInputDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkInputDialog.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkInputDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -140,11 +140,11 @@

The "disable-device" signal

void                user_function                      (GtkInputDialog *inputdialog,
-                                                        GdkDevice      *arg1,
+                                                        GdkDevice      *arg1,
                                                         gpointer        user_data)        : Run Last

This signal is emitted when the user changes the -mode of a device from a GDK_MODE_SCREEN or GDK_MODE_WINDOW +mode of a device from a GDK_MODE_SCREEN or GDK_MODE_WINDOW to GDK_MODE_ENABLED.

@@ -172,12 +172,12 @@

The "enable-device" signal

void                user_function                      (GtkInputDialog *inputdialog,
-                                                        GdkDevice      *arg1,
+                                                        GdkDevice      *arg1,
                                                         gpointer        user_data)        : Run Last

This signal is emitted when the user changes the -mode of a device from GDK_MODE_DISABLED to a -GDK_MODE_SCREEN or GDK_MODE_WINDOW. +mode of a device from GDK_MODE_DISABLED to a +GDK_MODE_SCREEN or GDK_MODE_WINDOW.

@@ -204,6 +204,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkInvisible.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkInvisible.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkInvisible.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkInvisible.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -48,10 +48,10 @@ struct GtkInvisible; GtkWidget * gtk_invisible_new (void); -GtkWidget * gtk_invisible_new_for_screen (GdkScreen *screen); +GtkWidget * gtk_invisible_new_for_screen (GdkScreen *screen); voidgtk_invisible_set_screen (GtkInvisible *invisible, - GdkScreen *screen); -GdkScreen * gtk_invisible_get_screen (GtkInvisible *invisible); + GdkScreen *screen); +GdkScreen * gtk_invisible_get_screen (GtkInvisible *invisible);
@@ -73,7 +73,7 @@

Properties

-  "screen"                   GdkScreen*            : Read / Write
+  "screen"                   GdkScreen*            : Read / Write
 
@@ -117,7 +117,7 @@

gtk_invisible_new_for_screen ()

-
GtkWidget *         gtk_invisible_new_for_screen        (GdkScreen *screen);
+
GtkWidget *         gtk_invisible_new_for_screen        (GdkScreen *screen);

Creates a new GtkInvisible object for a specified screen

@@ -129,7 +129,7 @@
- @@ -144,9 +144,9 @@

gtk_invisible_set_screen ()

void                gtk_invisible_set_screen            (GtkInvisible *invisible,
-                                                         GdkScreen *screen);
+ GdkScreen *screen);

-Sets the GdkScreen where the GtkInvisible object will be displayed. +Sets the GdkScreen where the GtkInvisible object will be displayed.

screen :

a GdkScreen which identifies on which +a GdkScreen which identifies on which the new GtkInvisible will be created.
@@ -160,7 +160,7 @@ - +

screen :

a GdkScreen.a GdkScreen.
@@ -169,9 +169,9 @@

gtk_invisible_get_screen ()

-
GdkScreen *         gtk_invisible_get_screen            (GtkInvisible *invisible);
+
GdkScreen *         gtk_invisible_get_screen            (GtkInvisible *invisible);

-Returns the GdkScreen object associated with invisible +Returns the GdkScreen object associated with invisible

@@ -185,7 +185,7 @@ - @@ -197,13 +197,13 @@

Property Details

The "screen" property

-
  "screen"                   GdkScreen*            : Read / Write
+
  "screen"                   GdkScreen*            : Read / Write

The screen where this window will be displayed.

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkItem.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -248,6 +248,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkItemFactory.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkItemFactory.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkItemFactory.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkItemFactory.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -67,7 +67,7 @@ const gchar *full_path, GtkAccelGroup *accel_group, guint keyval, - GdkModifierType modifiers); + GdkModifierType modifiers); GtkItemFactory * gtk_item_factory_from_widget (GtkWidget *widget); const gchar * gtk_item_factory_path_from_widget (GtkWidget *widget); GtkWidget * gtk_item_factory_get_item (GtkItemFactory *ifactory, @@ -391,7 +391,7 @@ const gchar *full_path, GtkAccelGroup *accel_group, guint keyval, - GdkModifierType modifiers); + GdkModifierType modifiers);

Warning

gtk_item_factory_add_foreign has been deprecated since version 2.4 and should not be used in newly-written code. The recommended API for this purpose are the functions @@ -1239,6 +1239,6 @@

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkLabel.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkLabel.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkLabel.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkLabel.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1924,7 +1924,7 @@ value, then the "max-width-chars" property is ignored.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -2016,7 +2016,7 @@ "max-width-chars" property is ignored.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.6

@@ -2249,6 +2249,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkLayout.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkLayout.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkLayout.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkLayout.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -75,7 +75,7 @@ GtkAdjustment *adjustment); voidgtk_layout_set_vadjustment (GtkLayout *layout, GtkAdjustment *adjustment); -GdkWindow * gtk_layout_get_bin_window (GtkLayout *layout); +GdkWindow * gtk_layout_get_bin_window (GtkLayout *layout);
@@ -494,7 +494,7 @@

gtk_layout_get_bin_window ()

-
GdkWindow *         gtk_layout_get_bin_window           (GtkLayout *layout);
+
GdkWindow *         gtk_layout_get_bin_window           (GtkLayout *layout);

Retrieve the bin window of the layout used for drawing operations.

@@ -511,7 +511,7 @@
- @@ -611,6 +611,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkLinkButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkLinkButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkLinkButton.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkLinkButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -409,6 +409,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkList.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkList.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkList.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkList.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1057,6 +1057,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkListItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkListItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkListItem.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkListItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -478,6 +478,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkListStore.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkListStore.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkListStore.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkListStore.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1114,6 +1114,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenu.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenu.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenu.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenu.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -55,7 +55,7 @@ struct GtkMenu; GtkWidget * gtk_menu_new (void); voidgtk_menu_set_screen (GtkMenu *menu, - GdkScreen *screen); + GdkScreen *screen); #define gtk_menu_append (menu, child) #define gtk_menu_prepend (menu, @@ -258,9 +258,9 @@ * g_signal_connect_swapped() was called. */ menu = GTK_MENU (widget); - if (event->type == GDK_BUTTON_PRESS) + if (event->type == GDK_BUTTON_PRESS) { - event_button = (GdkEventButton *) event; + event_button = (GdkEventButton *) event; if (event_button->button == 3) { gtk_menu_popup (menu, NULL, NULL, NULL, NULL, @@ -310,9 +310,9 @@

gtk_menu_set_screen ()

void                gtk_menu_set_screen                 (GtkMenu *menu,
-                                                         GdkScreen *screen);
+ GdkScreen *screen);

-Sets the GdkScreen on which the menu will be displayed. +Sets the GdkScreen on which the menu will be displayed.

Returns :

the associated GdkScreen. [transfer none] +the associated GdkScreen. [transfer none]

Returns :

a GdkWindow. [transfer none] +a GdkWindow. [transfer none]
@@ -326,7 +326,7 @@ - @@ -777,7 +777,7 @@ gint monitor_num);

Informs GTK+ on which monitor a menu should be popped up. -See gdk_screen_get_monitor_geometry(). +See gdk_screen_get_monitor_geometry().

This function should be called from a GtkMenuPositionFunc if the @@ -1259,7 +1259,7 @@ The index of the currently selected menu item, or -1 if no menu item is selected.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.14

@@ -1281,7 +1281,7 @@

The monitor the menu will be popped up on.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.14

@@ -1326,7 +1326,7 @@

The "bottom-attach" child property

  "bottom-attach"            gint                  : Read / Write

The row number to attach the bottom of the child to.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -1334,7 +1334,7 @@

The "left-attach" child property

  "left-attach"              gint                  : Read / Write

The column number to attach the left side of the child to.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -1342,7 +1342,7 @@

The "right-attach" child property

  "right-attach"             gint                  : Read / Write

The column number to attach the right side of the child to.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -1350,7 +1350,7 @@

The "top-attach" child property

  "top-attach"               gint                  : Read / Write

The row number to attach the top of the child to.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

@@ -1441,6 +1441,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenuBar.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenuBar.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenuBar.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenuBar.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -434,6 +434,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenuItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenuItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenuItem.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenuItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -952,6 +952,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenuShell.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenuShell.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenuShell.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenuShell.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -412,7 +412,7 @@ guaranteed that they will work.

-See also gdk_keyboard_grab() +See also gdk_keyboard_grab()

screen :

a GdkScreen, or NULL if the screen should be +a GdkScreen, or NULL if the screen should be determined by the widget the menu is attached to. [allow-none]
@@ -766,6 +766,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenuToolButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenuToolButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMenuToolButton.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMenuToolButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -456,6 +456,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMessageDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMessageDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMessageDialog.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMessageDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -815,6 +815,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMisc.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMisc.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkMisc.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkMisc.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -320,6 +320,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkNotebook.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkNotebook.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkNotebook.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkNotebook.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -2298,7 +2298,7 @@

The "group-id" property

  "group-id"                 gint                  : Read / Write

Group ID for tabs drag and drop.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -2323,7 +2323,7 @@

The "page" property

  "page"                     gint                  : Read / Write

The index of the current page.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -2396,7 +2396,7 @@

The "position" child property

  "position"                 gint                  : Read / Write

The index of the child in the parent.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: 0


@@ -2889,6 +2889,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkObject.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkObject.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkObject.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkObject.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1299,6 +1299,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkOffscreenWindow.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkOffscreenWindow.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkOffscreenWindow.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkOffscreenWindow.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -47,7 +47,7 @@ struct GtkOffscreenWindow; GtkWidget * gtk_offscreen_window_new (void); -GdkPixmap * gtk_offscreen_window_get_pixmap (GtkOffscreenWindow *offscreen); +GdkPixmap * gtk_offscreen_window_get_pixmap (GtkOffscreenWindow *offscreen); GdkPixbuf * gtk_offscreen_window_get_pixbuf (GtkOffscreenWindow *offscreen); @@ -84,7 +84,7 @@

The idea is to take a widget and manually set the state of it, add it to a GtkOffscreenWindow and then retrieve the snapshot -as a GdkPixmap or GdkPixbuf. +as a GdkPixmap or GdkPixbuf.

GtkOffscreenWindow derives from GtkWindow only as an implementation @@ -131,10 +131,10 @@


gtk_offscreen_window_get_pixmap ()

-
GdkPixmap *         gtk_offscreen_window_get_pixmap     (GtkOffscreenWindow *offscreen);
+
GdkPixmap *         gtk_offscreen_window_get_pixmap     (GtkOffscreenWindow *offscreen);

Retrieves a snapshot of the contained widget in the form of -a GdkPixmap. If you need to keep this around over window +a GdkPixmap. If you need to keep this around over window resizes then you should add a reference to it.

@@ -149,7 +149,7 @@ - @@ -190,6 +190,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkOldEditable.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkOldEditable.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkOldEditable.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkOldEditable.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -541,6 +541,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkOptionMenu.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkOptionMenu.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkOptionMenu.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkOptionMenu.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -349,6 +349,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPageSetup.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPageSetup.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPageSetup.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPageSetup.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1007,6 +1007,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPageSetupUnixDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPageSetupUnixDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPageSetupUnixDialog.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPageSetupUnixDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -252,6 +252,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPaned.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPaned.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPaned.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPaned.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -74,7 +74,7 @@ voidgtk_paned_set_position (GtkPaned *paned, gint position); gintgtk_paned_get_position (GtkPaned *paned); -GdkWindow * gtk_paned_get_handle_window (GtkPaned *paned); +GdkWindow * gtk_paned_get_handle_window (GtkPaned *paned);
@@ -500,9 +500,9 @@

gtk_paned_get_handle_window ()

-
GdkWindow *         gtk_paned_get_handle_window         (GtkPaned *paned);
+
GdkWindow *         gtk_paned_get_handle_window         (GtkPaned *paned);

-Returns the GdkWindow of the handle. This function is +Returns the GdkWindow of the handle. This function is useful when handling button or motion events because it enables the callback to distinguish between the window of the paned, a child and the handle. @@ -817,6 +817,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPaperSize.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPaperSize.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPaperSize.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPaperSize.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -906,6 +906,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPixmap.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPixmap.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPixmap.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPixmap.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -45,14 +45,14 @@ #include <gtk/gtk.h> struct GtkPixmap; -GtkWidget * gtk_pixmap_new (GdkPixmap *pixmap, - GdkBitmap *mask); +GtkWidget * gtk_pixmap_new (GdkPixmap *pixmap, + GdkBitmap *mask); voidgtk_pixmap_set (GtkPixmap *pixmap, - GdkPixmap *val, - GdkBitmap *mask); + GdkPixmap *val, + GdkBitmap *mask); voidgtk_pixmap_get (GtkPixmap *pixmap, - GdkPixmap **val, - GdkBitmap **mask); + GdkPixmap **val, + GdkBitmap **mask); voidgtk_pixmap_set_build_insensitive (GtkPixmap *pixmap, gboolean build); @@ -78,8 +78,8 @@

Description

The GtkPixmap widget displays a graphical image or icon. -The icon is typically created using gdk_pixmap_colormap_create_from_xpm() -or gdk_pixmap_colormap_create_from_xpm_d(). +The icon is typically created using gdk_pixmap_colormap_create_from_xpm() +or gdk_pixmap_colormap_create_from_xpm_d().

The pixels in a GtkPixmap cannot be manipulated by the application after @@ -110,8 +110,8 @@


gtk_pixmap_new ()

-
GtkWidget *         gtk_pixmap_new                      (GdkPixmap *pixmap,
-                                                         GdkBitmap *mask);
+
GtkWidget *         gtk_pixmap_new                      (GdkPixmap *pixmap,
+                                                         GdkBitmap *mask);

Warning

gtk_pixmap_new is deprecated and should not be used in newly-written code.

@@ -145,14 +145,14 @@

gtk_pixmap_set ()

void                gtk_pixmap_set                      (GtkPixmap *pixmap,
-                                                         GdkPixmap *val,
-                                                         GdkBitmap *mask);
+ GdkPixmap *val, + GdkBitmap *mask);

Warning

gtk_pixmap_set is deprecated and should not be used in newly-written code.

-Sets the GdkPixmap and GdkBitmap mask. +Sets the GdkPixmap and GdkBitmap mask.

Returns :

A GdkPixmap pointer to the offscreen pixmap, +A GdkPixmap pointer to the offscreen pixmap, or NULL. [transfer none]
@@ -166,11 +166,11 @@ - + - @@ -181,14 +181,14 @@

gtk_pixmap_get ()

void                gtk_pixmap_get                      (GtkPixmap *pixmap,
-                                                         GdkPixmap **val,
-                                                         GdkBitmap **mask);
+ GdkPixmap **val, + GdkBitmap **mask);

Warning

gtk_pixmap_get is deprecated and should not be used in newly-written code.

-Gets the current GdkPixmap and GdkBitmap mask. +Gets the current GdkPixmap and GdkBitmap mask.

val :

a GdkPixmap.a GdkPixmap.

mask :

a GdkBitmap, which indicates which parts of the pixmap should be +a GdkBitmap, which indicates which parts of the pixmap should be transparent. This can be NULL, in which case none of the pixmap is transparent.
@@ -202,11 +202,11 @@ - + - +

val :

returns the current GdkPixmap.returns the current GdkPixmap.

mask :

returns the current GdkBitmap mask.returns the current GdkBitmap mask.
@@ -246,6 +246,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPlug.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPlug.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPlug.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPlug.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -50,16 +50,16 @@ struct GtkPlug; void gtk_plug_construct (GtkPlug *plug, - GdkNativeWindow socket_id); + GdkNativeWindow socket_id); void gtk_plug_construct_for_display (GtkPlug *plug, - GdkDisplay *display, - GdkNativeWindow socket_id); -GtkWidget * gtk_plug_new (GdkNativeWindow socket_id); -GtkWidget * gtk_plug_new_for_display (GdkDisplay *display, - GdkNativeWindow socket_id); -GdkNativeWindow gtk_plug_get_id (GtkPlug *plug); + GdkDisplay *display, + GdkNativeWindow socket_id); +GtkWidget * gtk_plug_new (GdkNativeWindow socket_id); +GtkWidget * gtk_plug_new_for_display (GdkDisplay *display, + GdkNativeWindow socket_id); +GdkNativeWindow gtk_plug_get_id (GtkPlug *plug); gboolean gtk_plug_get_embedded (GtkPlug *plug); -GdkWindow * gtk_plug_get_socket_window (GtkPlug *plug); +GdkWindow * gtk_plug_get_socket_window (GtkPlug *plug);
@@ -85,7 +85,7 @@

Properties

   "embedded"                 gboolean              : Read
-  "socket-window"            GdkWindow*            : Read
+  "socket-window"            GdkWindow*            : Read
 
@@ -128,7 +128,7 @@

gtk_plug_construct ()

void                gtk_plug_construct                  (GtkPlug *plug,
-                                                         GdkNativeWindow socket_id);
+ GdkNativeWindow socket_id);

Finish the initialization of plug for a given GtkSocket identified by socket_id. This function will generally only be used by classes deriving from GtkPlug. @@ -154,8 +154,8 @@

gtk_plug_construct_for_display ()

void                gtk_plug_construct_for_display      (GtkPlug *plug,
-                                                         GdkDisplay *display,
-                                                         GdkNativeWindow socket_id);
+ GdkDisplay *display, + GdkNativeWindow socket_id);

Finish the initialization of plug for a given GtkSocket identified by socket_id which is currently displayed on display. @@ -173,7 +173,7 @@

display :

-the GdkDisplay associated with socket_id's +the GdkDisplay associated with socket_id's GtkSocket. @@ -187,7 +187,7 @@

gtk_plug_new ()

-
GtkWidget *         gtk_plug_new                        (GdkNativeWindow socket_id);
+
GtkWidget *         gtk_plug_new                        (GdkNativeWindow socket_id);

Creates a new plug widget inside the GtkSocket identified by socket_id. If socket_id is 0, the plug is left "unplugged" and @@ -213,8 +213,8 @@


gtk_plug_new_for_display ()

-
GtkWidget *         gtk_plug_new_for_display            (GdkDisplay *display,
-                                                         GdkNativeWindow socket_id);
+
GtkWidget *         gtk_plug_new_for_display            (GdkDisplay *display,
+                                                         GdkNativeWindow socket_id);

Create a new plug widget inside the GtkSocket identified by socket_id.

@@ -226,7 +226,7 @@

display :

-the GdkDisplay on which socket_id is displayed +the GdkDisplay on which socket_id is displayed

socket_id :

@@ -243,7 +243,7 @@

gtk_plug_get_id ()

-
GdkNativeWindow     gtk_plug_get_id                     (GtkPlug *plug);
+
GdkNativeWindow     gtk_plug_get_id                     (GtkPlug *plug);

Gets the window ID of a GtkPlug widget, which can then be used to embed this window inside another window, for @@ -296,7 +296,7 @@


gtk_plug_get_socket_window ()

-
GdkWindow *         gtk_plug_get_socket_window          (GtkPlug *plug);
+
GdkWindow *         gtk_plug_get_socket_window          (GtkPlug *plug);

Retrieves the socket the plug is embedded in.

@@ -335,7 +335,7 @@

The "socket-window" property

-
  "socket-window"            GdkWindow*            : Read
+
  "socket-window"            GdkWindow*            : Read

The window of the socket the plug is embedded in.

@@ -376,6 +376,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPreview.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPreview.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPreview.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPreview.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -55,8 +55,8 @@ gint width, gint height); void gtk_preview_put (GtkPreview *preview, - GdkWindow *window, - GdkGC *gc, + GdkWindow *window, + GdkGC *gc, gint srcx, gint srcy, gint destx, @@ -78,9 +78,9 @@ void gtk_preview_set_install_cmap (gint install_cmap); void gtk_preview_set_reserved (gint nreserved); void gtk_preview_set_dither (GtkPreview *preview, - GdkRgbDither dither); -GdkVisual * gtk_preview_get_visual (void); -GdkColormap * gtk_preview_get_cmap (void); + GdkRgbDither dither); +GdkVisual * gtk_preview_get_visual (void); +GdkColormap * gtk_preview_get_cmap (void); GtkPreviewInfo * gtk_preview_get_info (void); void gtk_preview_reset (void); @@ -159,12 +159,12 @@ -GdkVisual *visual; +GdkVisual *visual; the visual used by all previews. -GdkColormap *cmap; +GdkColormap *cmap; the colormap used by all previews. @@ -279,8 +279,8 @@

gtk_preview_put ()

void                gtk_preview_put                     (GtkPreview *preview,
-                                                         GdkWindow *window,
-                                                         GdkGC *gc,
+                                                         GdkWindow *window,
+                                                         GdkGC *gc,
                                                          gint srcx,
                                                          gint srcy,
                                                          gint destx,
@@ -548,7 +548,7 @@
 

gtk_preview_set_dither ()

void                gtk_preview_set_dither              (GtkPreview *preview,
-                                                         GdkRgbDither dither);
+ GdkRgbDither dither);

Warning

gtk_preview_set_dither is deprecated and should not be used in newly-written code.

@@ -576,7 +576,7 @@

gtk_preview_get_visual ()

-
GdkVisual *         gtk_preview_get_visual              (void);
+
GdkVisual *         gtk_preview_get_visual              (void);

Warning

gtk_preview_get_visual is deprecated and should not be used in newly-written code.

@@ -584,7 +584,7 @@

Returns the visual used by preview widgets. This function is deprecated, and you should use -gdk_rgb_get_visual() instead. +gdk_rgb_get_visual() instead.

@@ -600,7 +600,7 @@

gtk_preview_get_cmap ()

-
GdkColormap *       gtk_preview_get_cmap                (void);
+
GdkColormap *       gtk_preview_get_cmap                (void);

Warning

gtk_preview_get_cmap is deprecated and should not be used in newly-written code.

@@ -608,7 +608,7 @@

Returns the colormap used by preview widgets. This function is deprecated, and you should use -gdk_rgb_get_cmap() instead. +gdk_rgb_get_cmap() instead.

@@ -689,6 +689,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrintContext.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrintContext.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrintContext.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrintContext.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -541,6 +541,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrintJob.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrintJob.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrintJob.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrintJob.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -558,6 +558,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrintSettings.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrintSettings.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrintSettings.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrintSettings.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -3027,6 +3027,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrintUnixDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrintUnixDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrintUnixDialog.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrintUnixDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -850,7 +850,7 @@

The "current-page" property

  "current-page"             gint                  : Read / Write

The current page in the document.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -908,6 +908,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrinter.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrinter.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkPrinter.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkPrinter.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1003,6 +1003,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkProgress.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkProgress.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkProgress.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkProgress.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -589,6 +589,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkProgressBar.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkProgressBar.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkProgressBar.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkProgressBar.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -913,6 +913,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRadioAction.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRadioAction.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRadioAction.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRadioAction.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -381,6 +381,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRadioButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRadioButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRadioButton.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRadioButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -550,6 +550,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRadioMenuItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRadioMenuItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRadioMenuItem.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRadioMenuItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -482,6 +482,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRadioToolButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRadioToolButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRadioToolButton.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRadioToolButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -343,6 +343,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRange.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRange.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRange.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRange.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -99,7 +99,7 @@ gboolean flippable); gintgtk_range_get_min_slider_size (GtkRange *range); voidgtk_range_get_range_rect (GtkRange *range, - GdkRectangle *range_rect); + GdkRectangle *range_rect); voidgtk_range_get_slider_range (GtkRange *range, gint *slider_start, gint *slider_end); @@ -980,7 +980,7 @@

gtk_range_get_range_rect ()

void                gtk_range_get_range_rect            (GtkRange *range,
-                                                         GdkRectangle *range_rect);
+ GdkRectangle *range_rect);

This function returns the area that contains the range's trough and its steppers, in widget->window coordinates. @@ -1192,7 +1192,7 @@ The number of digits to round the value to when it changes, or -1. See "change-value".

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.24

@@ -1490,6 +1490,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentAction.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentAction.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentAction.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentAction.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -274,6 +274,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentChooser.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentChooser.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentChooser.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentChooser.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1325,7 +1325,7 @@ override that limit on a particular instance of GtkRecentChooser by setting this property.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.10

@@ -1482,6 +1482,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentChooserDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentChooserDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentChooserDialog.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentChooserDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -229,6 +229,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentChooserMenu.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentChooserMenu.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentChooserMenu.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentChooserMenu.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -266,6 +266,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentChooserWidget.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentChooserWidget.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentChooserWidget.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentChooserWidget.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -156,6 +156,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentFilter.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentFilter.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentFilter.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentFilter.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -660,6 +660,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentManager.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentManager.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRecentManager.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRecentManager.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -53,9 +53,9 @@ enum GtkRecentManagerError; GtkRecentManager * gtk_recent_manager_new (void); GtkRecentManager * gtk_recent_manager_get_default (void); -GtkRecentManager * gtk_recent_manager_get_for_screen (GdkScreen *screen); +GtkRecentManager * gtk_recent_manager_get_for_screen (GdkScreen *screen); voidgtk_recent_manager_set_screen (GtkRecentManager *manager, - GdkScreen *screen); + GdkScreen *screen); gbooleangtk_recent_manager_add_item (GtkRecentManager *manager, const gchar *uri); gbooleangtk_recent_manager_add_full (GtkRecentManager *manager, @@ -153,7 +153,7 @@ The GtkRecentManager acts like a database of all the recently used files. You can create new GtkRecentManager objects, but it is more efficient to use the standard recent manager for -the GdkScreen so that informations about the recently used +the GdkScreen so that informations about the recently used files is shared with other people using them. In case the default screen is being used, adding a new recently used file is as simple as: @@ -428,7 +428,7 @@

gtk_recent_manager_get_for_screen ()

-
GtkRecentManager *  gtk_recent_manager_get_for_screen   (GdkScreen *screen);
+
GtkRecentManager *  gtk_recent_manager_get_for_screen   (GdkScreen *screen);

Warning

gtk_recent_manager_get_for_screen has been deprecated since version 2.12 and should not be used in newly-written code. This function has been deprecated and should @@ -453,7 +453,7 @@

- @@ -471,7 +471,7 @@

gtk_recent_manager_set_screen ()

void                gtk_recent_manager_set_screen       (GtkRecentManager *manager,
-                                                         GdkScreen *screen);
+ GdkScreen *screen);

Warning

gtk_recent_manager_set_screen has been deprecated since version 2.12 and should not be used in newly-written code. This function has been deprecated and should @@ -496,7 +496,7 @@

- @@ -1631,7 +1631,7 @@ The maximum number of items to be returned by the gtk_recent_manager_get_items() function.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.10

@@ -1642,7 +1642,7 @@

The size of the recently used resources list.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: 0

Since 2.10

@@ -1679,6 +1679,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRuler.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRuler.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkRuler.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkRuler.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -364,6 +364,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkScale.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkScale.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkScale.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkScale.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -458,7 +458,7 @@

The "digits" property

  "digits"                   gint                  : Read / Write

The number of decimal places that are displayed in the value.

-

Allowed values: [G_MAXULONG,64]

+

Allowed values: [-1,64]

Default value: 1


@@ -566,6 +566,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkScaleButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkScaleButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkScaleButton.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkScaleButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -608,6 +608,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkScrollbar.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkScrollbar.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkScrollbar.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkScrollbar.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -185,6 +185,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkScrolledWindow.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkScrolledWindow.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkScrolledWindow.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkScrolledWindow.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -385,8 +385,8 @@ gtk_container_add() instead of this function.

-The viewport scrolls the child by moving its GdkWindow, and takes -the size of the child to be the size of its toplevel GdkWindow. +The viewport scrolls the child by moving its GdkWindow, and takes +the size of the child to be the size of its toplevel GdkWindow. This will be very wrong for most widgets that support native scrolling; for example, if you add a widget such as GtkTreeView with a viewport, the whole widget will scroll, including the column headings. Thus, @@ -807,6 +807,6 @@

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSeparator.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSeparator.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSeparator.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSeparator.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -85,6 +85,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSeparatorMenuItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSeparatorMenuItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSeparatorMenuItem.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSeparatorMenuItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -108,6 +108,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSeparatorToolItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSeparatorToolItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSeparatorToolItem.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSeparatorToolItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -218,6 +218,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSettings.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSettings.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSettings.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSettings.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -47,7 +47,7 @@ GtkSettings; struct GtkSettingsValue; GtkSettings * gtk_settings_get_default (void); -GtkSettings * gtk_settings_get_for_screen (GdkScreen *screen); +GtkSettings * gtk_settings_get_for_screen (GdkScreen *screen); voidgtk_settings_install_property (GParamSpec *pspec); voidgtk_settings_install_property_parser (GParamSpec *pspec, @@ -258,7 +258,7 @@

gtk_settings_get_for_screen ()

-
GtkSettings *       gtk_settings_get_for_screen         (GdkScreen *screen);
+
GtkSettings *       gtk_settings_get_for_screen         (GdkScreen *screen);

Gets the GtkSettings object for screen, creating it if necessary.

@@ -270,7 +270,7 @@
- + @@ -328,13 +328,13 @@ - + +has been set to the resulting GdkColor.

screen :

a GdkScreen +a GdkScreen

screen :

a GdkScreen +a GdkScreen

screen :

a GdkScreen.a GdkScreen.

Returns :

property_value :

a GValue which must hold GdkColor values.a GValue which must hold GdkColor values.

Returns :

TRUE if gstring could be parsed and property_value -has been set to the resulting GdkColor.
@@ -555,7 +555,7 @@

Holds a hash table representation of the "gtk-color-scheme" -setting, mapping color names to GdkColors. +setting, mapping color names to GdkColors.

Since 2.10

@@ -627,7 +627,7 @@ gtkrc syntax, and color specifications must be in the format accepted by -gdk_color_parse(). +gdk_color_parse().

Note that due to the way the color tables from different sources are @@ -829,7 +829,7 @@

When TRUE, keyboard navigation and other input-related errors will cause a beep. Since the error bell is implemented using -gdk_window_beep(), the windowing system may offer ways to +gdk_window_beep(), the windowing system may offer ways to configure the error bell in many ways, such as flashing the window or similar visual effects.

@@ -1062,7 +1062,7 @@ GtkRecentChooser implementations and by the GtkFileChooser. A value of -1 means every recently used file stored.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: 50

Since 2.12

@@ -1076,7 +1076,7 @@ from the list. If set to 0, the list will always be empty; if set to -1, no item will be removed.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: 30

Since 2.14

@@ -1244,7 +1244,7 @@

The "gtk-xft-antialias" property

  "gtk-xft-antialias"        gint                  : Read / Write

Whether to antialias Xft fonts; 0=no, 1=yes, -1=default.

-

Allowed values: [G_MAXULONG,1]

+

Allowed values: [-1,1]

Default value: -1


@@ -1252,7 +1252,7 @@

The "gtk-xft-dpi" property

  "gtk-xft-dpi"              gint                  : Read / Write

Resolution for Xft, in 1024 * dots/inch. -1 to use default value.

-

Allowed values: [G_MAXULONG,1048576]

+

Allowed values: [-1,1048576]

Default value: -1


@@ -1260,7 +1260,7 @@

The "gtk-xft-hinting" property

  "gtk-xft-hinting"          gint                  : Read / Write

Whether to hint Xft fonts; 0=no, 1=yes, -1=default.

-

Allowed values: [G_MAXULONG,1]

+

Allowed values: [-1,1]

Default value: -1


@@ -1281,6 +1281,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSizeGroup.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSizeGroup.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSizeGroup.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSizeGroup.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -463,6 +463,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSocket.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSocket.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSocket.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSocket.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -49,11 +49,11 @@ struct GtkSocket; GtkWidget * gtk_socket_new (void); void gtk_socket_steal (GtkSocket *socket_, - GdkNativeWindow wid); + GdkNativeWindow wid); void gtk_socket_add_id (GtkSocket *socket_, - GdkNativeWindow window_id); -GdkNativeWindow gtk_socket_get_id (GtkSocket *socket_); -GdkWindow * gtk_socket_get_plug_window (GtkSocket *socket_); + GdkNativeWindow window_id); +GdkNativeWindow gtk_socket_get_id (GtkSocket *socket_); +GdkWindow * gtk_socket_get_plug_window (GtkSocket *socket_);
@@ -207,7 +207,7 @@

gtk_socket_steal ()

void                gtk_socket_steal                    (GtkSocket *socket_,
-                                                         GdkNativeWindow wid);
+ GdkNativeWindow wid);

Warning

gtk_socket_steal is deprecated and should not be used in newly-written code.

@@ -244,7 +244,7 @@

gtk_socket_add_id ()

void                gtk_socket_add_id                   (GtkSocket *socket_,
-                                                         GdkNativeWindow window_id);
+ GdkNativeWindow window_id);

Adds an XEMBED client, such as a GtkPlug, to the GtkSocket. The client may be in the same process or in a different process. @@ -282,7 +282,7 @@


gtk_socket_get_id ()

-
GdkNativeWindow     gtk_socket_get_id                   (GtkSocket *socket_);
+
GdkNativeWindow     gtk_socket_get_id                   (GtkSocket *socket_);

Gets the window ID of a GtkSocket widget, which can then be used to create a client embedded inside the socket, for @@ -312,7 +312,7 @@


gtk_socket_get_plug_window ()

-
GdkWindow *         gtk_socket_get_plug_window          (GtkSocket *socket_);
+
GdkWindow *         gtk_socket_get_plug_window          (GtkSocket *socket_);

Retrieves the window of the plug. Use this to check if the plug has been created inside of the socket. @@ -406,6 +406,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSpinButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSpinButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSpinButton.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSpinButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1411,6 +1411,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSpinner.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSpinner.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkSpinner.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkSpinner.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -207,6 +207,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkStatusIcon.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkStatusIcon.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkStatusIcon.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkStatusIcon.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -70,8 +70,8 @@ GIcon * gtk_status_icon_get_gicon (GtkStatusIcon *status_icon); gint gtk_status_icon_get_size (GtkStatusIcon *status_icon); void gtk_status_icon_set_screen (GtkStatusIcon *status_icon, - GdkScreen *screen); -GdkScreen * gtk_status_icon_get_screen (GtkStatusIcon *status_icon); + GdkScreen *screen); +GdkScreen * gtk_status_icon_get_screen (GtkStatusIcon *status_icon); void gtk_status_icon_set_tooltip (GtkStatusIcon *status_icon, const gchar *tooltip_text); void gtk_status_icon_set_tooltip_text (GtkStatusIcon *status_icon, @@ -101,8 +101,8 @@ gboolean *push_in, gpointer user_data); gboolean gtk_status_icon_get_geometry (GtkStatusIcon *status_icon, - GdkScreen **screen, - GdkRectangle *area, + GdkScreen **screen, + GdkRectangle *area, GtkOrientation *orientation); guint32 gtk_status_icon_get_x11_window_id (GtkStatusIcon *status_icon); @@ -125,7 +125,7 @@ "icon-name" gchar* : Read / Write "orientation" GtkOrientation : Read "pixbuf" GdkPixbuf* : Read / Write - "screen" GdkScreen* : Read / Write + "screen" GdkScreen* : Read / Write "size" gint : Read "stock" gchar* : Read / Write "storage-type" GtkImageType : Read @@ -684,9 +684,9 @@

gtk_status_icon_set_screen ()

void                gtk_status_icon_set_screen          (GtkStatusIcon *status_icon,
-                                                         GdkScreen *screen);
+ GdkScreen *screen);

-Sets the GdkScreen where status_icon is displayed; if +Sets the GdkScreen where status_icon is displayed; if the icon is already mapped, it will be unmapped, and then remapped on the new screen.

@@ -703,7 +703,7 @@

screen :

-a GdkScreen +a GdkScreen @@ -713,9 +713,9 @@

gtk_status_icon_get_screen ()

-
GdkScreen *         gtk_status_icon_get_screen          (GtkStatusIcon *status_icon);
+
GdkScreen *         gtk_status_icon_get_screen          (GtkStatusIcon *status_icon);

-Returns the GdkScreen associated with status_icon. +Returns the GdkScreen associated with status_icon.

@@ -730,7 +730,7 @@ - @@ -1240,8 +1240,8 @@

gtk_status_icon_get_geometry ()

gboolean            gtk_status_icon_get_geometry        (GtkStatusIcon *status_icon,
-                                                         GdkScreen **screen,
-                                                         GdkRectangle *area,
+                                                         GdkScreen **screen,
+                                                         GdkRectangle *area,
                                                          GtkOrientation *orientation);

Obtains information about the location of the status icon @@ -1431,7 +1431,7 @@


The "screen" property

-
  "screen"                   GdkScreen*            : Read / Write
+
  "screen"                   GdkScreen*            : Read / Write

The screen where this status icon will be displayed.


@@ -1562,7 +1562,7 @@

The "button-press-event" signal

gboolean            user_function                      (GtkStatusIcon *status_icon,
-                                                        GdkEvent      *event,
+                                                        GdkEvent      *event,
                                                         gpointer       user_data)        : Run Last

The ::button-press-event signal will be emitted when a button @@ -1584,7 +1584,7 @@

- + @@ -1604,7 +1604,7 @@

The "button-release-event" signal

gboolean            user_function                      (GtkStatusIcon *status_icon,
-                                                        GdkEvent      *event,
+                                                        GdkEvent      *event,
                                                         gpointer       user_data)        : Run Last

The ::button-release-event signal will be emitted when a button @@ -1626,7 +1626,7 @@

- + @@ -1771,7 +1771,7 @@

The "scroll-event" signal

gboolean            user_function                      (GtkStatusIcon *status_icon,
-                                                        GdkEvent      *event,
+                                                        GdkEvent      *event,
                                                         gpointer       user_data)        : Run Last

The ::scroll-event signal is emitted when a button in the 4 to 7 @@ -1794,7 +1794,7 @@

- + @@ -1851,6 +1851,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkStatusbar.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkStatusbar.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkStatusbar.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkStatusbar.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -519,6 +519,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkStyle.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkStyle.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkStyle.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkStyle.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -49,18 +49,18 @@ GtkStyle * gtk_style_new (void); GtkStyle * gtk_style_copy (GtkStyle *style); GtkStyle * gtk_style_attach (GtkStyle *style, - GdkWindow *window); + GdkWindow *window); voidgtk_style_detach (GtkStyle *style); GtkStyle * gtk_style_ref (GtkStyle *style); voidgtk_style_unref (GtkStyle *style); voidgtk_style_set_background (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type); voidgtk_style_apply_default_background (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, gboolean set_bg, GtkStateType state_type, - const GdkRectangle *area, + const GdkRectangle *area, gint x, gint y, gint width, @@ -75,7 +75,7 @@ h) gbooleangtk_style_lookup_color (GtkStyle *style, const gchar *color_name, - GdkColor *color); + GdkColor *color); GtkIconSet * gtk_style_lookup_icon_set (GtkStyle *style, const gchar *stock_id); GdkPixbuf * gtk_style_render_icon (GtkStyle *style, @@ -85,9 +85,9 @@ GtkIconSize size, GtkWidget *widget, const gchar *detail); -GdkFont * gtk_style_get_font (GtkStyle *style); +GdkFont * gtk_style_get_font (GtkStyle *style); voidgtk_style_set_font (GtkStyle *style, - GdkFont *font); + GdkFont *font); voidgtk_style_get_style_property (GtkStyle *style, GType widget_type, const gchar *property_name, @@ -101,19 +101,19 @@ const gchar *first_property_name, ...); voidgtk_draw_hline (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, gint x1, gint x2, gint y); voidgtk_draw_vline (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, gint y1_, gint y2_, gint x); voidgtk_draw_shadow (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -121,14 +121,14 @@ gint width, gint height); voidgtk_draw_polygon (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - GdkPoint *points, + GdkPoint *points, gint npoints, gboolean fill); voidgtk_draw_arrow (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GtkArrowType arrow_type, @@ -138,7 +138,7 @@ gint width, gint height); voidgtk_draw_diamond (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -146,13 +146,13 @@ gint width, gint height); voidgtk_draw_string (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, gint x, gint y, const gchar *string); voidgtk_draw_box (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -160,7 +160,7 @@ gint width, gint height); voidgtk_draw_box_gap (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -171,7 +171,7 @@ gint gap_x, gint gap_width); voidgtk_draw_check (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -179,7 +179,7 @@ gint width, gint height); voidgtk_draw_extension (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -188,7 +188,7 @@ gint height, GtkPositionType gap_side); voidgtk_draw_flat_box (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -196,13 +196,13 @@ gint width, gint height); voidgtk_draw_focus (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, gint x, gint y, gint width, gint height); voidgtk_draw_handle (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -211,7 +211,7 @@ gint height, GtkOrientation orientation); voidgtk_draw_option (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -219,7 +219,7 @@ gint width, gint height); voidgtk_draw_shadow_gap (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -230,7 +230,7 @@ gint gap_x, gint gap_width); voidgtk_draw_slider (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -239,7 +239,7 @@ gint height, GtkOrientation orientation); voidgtk_draw_tab (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, gint x, @@ -247,31 +247,31 @@ gint width, gint height); voidgtk_draw_expander (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, gint x, gint y, GtkExpanderStyle expander_style); voidgtk_draw_layout (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, gboolean use_text, gint x, gint y, PangoLayout *layout); voidgtk_draw_resize_grip (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, - GdkWindowEdge edge, + GdkWindowEdge edge, gint x, gint y, gint width, gint height); voidgtk_paint_arrow (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, GtkArrowType arrow_type, @@ -281,10 +281,10 @@ gint width, gint height); voidgtk_paint_box (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -292,10 +292,10 @@ gint width, gint height); voidgtk_paint_box_gap (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -306,10 +306,10 @@ gint gap_x, gint gap_width); voidgtk_paint_check (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -317,10 +317,10 @@ gint width, gint height); voidgtk_paint_diamond (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -328,10 +328,10 @@ gint width, gint height); voidgtk_paint_extension (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -340,10 +340,10 @@ gint height, GtkPositionType gap_side); voidgtk_paint_flat_box (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -351,9 +351,9 @@ gint width, gint height); voidgtk_paint_focus (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -361,10 +361,10 @@ gint width, gint height); voidgtk_paint_handle (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -373,19 +373,19 @@ gint height, GtkOrientation orientation); voidgtk_paint_hline (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x1, gint x2, gint y); voidgtk_paint_option (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -393,20 +393,20 @@ gint width, gint height); voidgtk_paint_polygon (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, - const GdkPoint *points, + const GdkPoint *points, gint n_points, gboolean fill); voidgtk_paint_shadow (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -414,10 +414,10 @@ gint width, gint height); voidgtk_paint_shadow_gap (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -428,10 +428,10 @@ gint gap_x, gint gap_width); voidgtk_paint_slider (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -440,9 +440,9 @@ gint height, GtkOrientation orientation); voidgtk_paint_spinner (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, guint step, @@ -451,19 +451,19 @@ gint width, gint height); voidgtk_paint_string (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, const gchar *string); voidgtk_paint_tab (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, @@ -471,48 +471,48 @@ gint width, gint height); voidgtk_paint_vline (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint y1_, gint y2_, gint x); voidgtk_paint_expander (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, GtkExpanderStyle expander_style); voidgtk_paint_layout (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, gboolean use_text, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, PangoLayout *layout); voidgtk_paint_resize_grip (GtkStyle *style, - GdkWindow *window, + GdkWindow *window, GtkStateType state_type, - const GdkRectangle *area, + const GdkRectangle *area, GtkWidget *widget, const gchar *detail, - GdkWindowEdge edge, + GdkWindowEdge edge, gint x, gint y, gint width, gint height); voidgtk_draw_insertion_cursor (GtkWidget *widget, - GdkDrawable *drawable, - const GdkRectangle *area, - const GdkRectangle *location, + GdkDrawable *drawable, + const GdkRectangle *area, + const GdkRectangle *location, gboolean is_primary, GtkTextDirection direction, gboolean draw_arrow); @@ -656,7 +656,7 @@

gtk_style_attach ()

GtkStyle *          gtk_style_attach                    (GtkStyle *style,
-                                                         GdkWindow *window);
+ GdkWindow *window);

Attaches a style to a window; this process allocates the colors and creates the GC's for the style - it specializes @@ -681,7 +681,7 @@

- + @@ -768,7 +768,7 @@

gtk_style_set_background ()

void                gtk_style_set_background            (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type);

Sets the background of window to the background color or pixmap @@ -787,7 +787,7 @@

- @@ -801,10 +801,10 @@

gtk_style_apply_default_background ()

void                gtk_style_apply_default_background  (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          gboolean set_bg,
                                                          GtkStateType state_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          gint x,
                                                          gint y,
                                                          gint width,
@@ -839,7 +839,7 @@
 

gtk_style_lookup_color ()

gboolean            gtk_style_lookup_color              (GtkStyle *style,
                                                          const gchar *color_name,
-                                                         GdkColor *color);
+ GdkColor *color);

Looks up color_name in the style's logical color mappings, filling in color and returning TRUE if found, otherwise @@ -864,7 +864,7 @@

- @@ -975,13 +975,13 @@

gtk_style_get_font ()

-
GdkFont *           gtk_style_get_font                  (GtkStyle *style);
+
GdkFont *           gtk_style_get_font                  (GtkStyle *style);

Warning

gtk_style_get_font is deprecated and should not be used in newly-written code.

-Gets the GdkFont to use for the given style. This is +Gets the GdkFont to use for the given style. This is meant only as a replacement for direct access to style->font and should not be used in new code. New code should use style->font_desc instead. @@ -999,9 +999,9 @@

- +call gdk_font_ref().

Returns :

a GdkScreen. [transfer none] +a GdkScreen. [transfer none]

event :

the GdkEventButton which triggered this signalthe GdkEventButton which triggered this signal

user_data :

event :

the GdkEventButton which triggered this signalthe GdkEventButton which triggered this signal

user_data :

event :

the GdkEventScroll which triggered this signalthe GdkEventScroll which triggered this signal

user_data :

window :

a GdkWindow.a GdkWindow.

Returns :

window :

a GdkWindow +a GdkWindow

color :

the GdkColor to fill in. [out] +the GdkColor to fill in. [out]

Returns :

the GdkFont for the style. This font is owned +the GdkFont for the style. This font is owned by the style; if you want to keep around a copy, you must -call gdk_font_ref().
@@ -1010,13 +1010,13 @@

gtk_style_set_font ()

void                gtk_style_set_font                  (GtkStyle *style,
-                                                         GdkFont *font);
+ GdkFont *font);

Warning

gtk_style_set_font is deprecated and should not be used in newly-written code.

-Sets the GdkFont to use for a given style. This is +Sets the GdkFont to use for a given style. This is meant only as a replacement for direct access to style->font and should not be used in new code. New code should use style->font_desc instead. @@ -1033,7 +1033,7 @@

font :

-a GdkFont, or NULL to use the GdkFont corresponding +a GdkFont, or NULL to use the GdkFont corresponding to style->font_desc. [allow-none] @@ -1160,7 +1160,7 @@

gtk_draw_hline ()

void                gtk_draw_hline                      (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          gint x1,
                                                          gint x2,
@@ -1186,7 +1186,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1212,7 +1212,7 @@

gtk_draw_vline ()

void                gtk_draw_vline                      (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          gint y1_,
                                                          gint y2_,
@@ -1238,7 +1238,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1264,7 +1264,7 @@

gtk_draw_shadow ()

void                gtk_draw_shadow                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -1292,7 +1292,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1326,10 +1326,10 @@

gtk_draw_polygon ()

void                gtk_draw_polygon                    (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         GdkPoint *points,
+                                                         GdkPoint *points,
                                                          gint npoints,
                                                          gboolean fill);
@@ -1352,7 +1352,7 @@

window :

-a GdkWindow +a GdkWindow @@ -1365,7 +1365,7 @@

points :

-an array of GdkPoints +an array of GdkPoints

npoints :

@@ -1384,7 +1384,7 @@

gtk_draw_arrow ()

void                gtk_draw_arrow                      (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          GtkArrowType arrow_type,
@@ -1414,7 +1414,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1457,7 +1457,7 @@

gtk_draw_diamond ()

void                gtk_draw_diamond                    (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -1485,7 +1485,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1519,7 +1519,7 @@

gtk_draw_string ()

void                gtk_draw_string                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          gint x,
                                                          gint y,
@@ -1544,7 +1544,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1570,7 +1570,7 @@

gtk_draw_box ()

void                gtk_draw_box                        (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -1597,7 +1597,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1631,7 +1631,7 @@

gtk_draw_box_gap ()

void                gtk_draw_box_gap                    (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -1662,7 +1662,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1708,7 +1708,7 @@

gtk_draw_check ()

void                gtk_draw_check                      (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -1736,7 +1736,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1770,7 +1770,7 @@

gtk_draw_extension ()

void                gtk_draw_extension                  (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -1798,7 +1798,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1836,7 +1836,7 @@

gtk_draw_flat_box ()

void                gtk_draw_flat_box                   (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -1863,7 +1863,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1897,7 +1897,7 @@

gtk_draw_focus ()

void                gtk_draw_focus                      (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          gint x,
                                                          gint y,
                                                          gint width,
@@ -1923,7 +1923,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -1949,7 +1949,7 @@

gtk_draw_handle ()

void                gtk_draw_handle                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -1977,7 +1977,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2015,7 +2015,7 @@

gtk_draw_option ()

void                gtk_draw_option                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -2043,7 +2043,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2077,7 +2077,7 @@

gtk_draw_shadow_gap ()

void                gtk_draw_shadow_gap                 (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -2109,7 +2109,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2155,7 +2155,7 @@

gtk_draw_slider ()

void                gtk_draw_slider                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -2184,7 +2184,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2222,7 +2222,7 @@

gtk_draw_tab ()

void                gtk_draw_tab                        (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
                                                          gint x,
@@ -2250,7 +2250,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2284,7 +2284,7 @@

gtk_draw_expander ()

void                gtk_draw_expander                   (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          gint x,
                                                          gint y,
@@ -2309,7 +2309,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2335,7 +2335,7 @@

gtk_draw_layout ()

void                gtk_draw_layout                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          gboolean use_text,
                                                          gint x,
@@ -2361,7 +2361,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2393,9 +2393,9 @@

gtk_draw_resize_grip ()

void                gtk_draw_resize_grip                (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
-                                                         GdkWindowEdge edge,
+                                                         GdkWindowEdge edge,
                                                          gint x,
                                                          gint y,
                                                          gint width,
@@ -2421,7 +2421,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2455,10 +2455,10 @@

gtk_paint_arrow ()

void                gtk_paint_arrow                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          GtkArrowType arrow_type,
@@ -2484,7 +2484,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2543,10 +2543,10 @@

gtk_paint_box ()

void                gtk_paint_box                       (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -2569,7 +2569,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2619,10 +2619,10 @@

gtk_paint_box_gap ()

void                gtk_paint_box_gap                   (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -2649,7 +2649,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2711,10 +2711,10 @@

gtk_paint_check ()

void                gtk_paint_check                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -2738,7 +2738,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2788,10 +2788,10 @@

gtk_paint_diamond ()

void                gtk_paint_diamond                   (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -2815,7 +2815,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2865,10 +2865,10 @@

gtk_paint_extension ()

void                gtk_paint_extension                 (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -2892,7 +2892,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -2946,10 +2946,10 @@

gtk_paint_flat_box ()

void                gtk_paint_flat_box                  (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -2972,7 +2972,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3022,9 +3022,9 @@

gtk_paint_focus ()

void                gtk_paint_focus                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -3048,7 +3048,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3094,10 +3094,10 @@

gtk_paint_handle ()

void                gtk_paint_handle                    (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -3121,7 +3121,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3175,9 +3175,9 @@

gtk_paint_hline ()

void                gtk_paint_hline                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x1,
@@ -3200,7 +3200,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3242,10 +3242,10 @@

gtk_paint_option ()

void                gtk_paint_option                    (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -3269,7 +3269,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3319,13 +3319,13 @@

gtk_paint_polygon ()

void                gtk_paint_polygon                   (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
-                                                         const GdkPoint *points,
+                                                         const GdkPoint *points,
                                                          gint n_points,
                                                          gboolean fill);

@@ -3344,7 +3344,7 @@

window :

-a GdkWindow +a GdkWindow @@ -3373,7 +3373,7 @@

points :

-an array of GdkPoints +an array of GdkPoints

n_points :

@@ -3392,10 +3392,10 @@

gtk_paint_shadow ()

void                gtk_paint_shadow                    (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -3419,7 +3419,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3469,10 +3469,10 @@

gtk_paint_shadow_gap ()

void                gtk_paint_shadow_gap                (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -3500,7 +3500,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3562,10 +3562,10 @@

gtk_paint_slider ()

void                gtk_paint_slider                    (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -3590,7 +3590,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3644,9 +3644,9 @@

gtk_paint_spinner ()

void                gtk_paint_spinner                   (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          guint step,
@@ -3670,7 +3670,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3722,9 +3722,9 @@

gtk_paint_string ()

void                gtk_paint_string                    (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -3750,7 +3750,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3792,10 +3792,10 @@

gtk_paint_tab ()

void                gtk_paint_tab                       (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          GtkShadowType shadow_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -3819,7 +3819,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3869,9 +3869,9 @@

gtk_paint_vline ()

void                gtk_paint_vline                     (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint y1_,
@@ -3894,7 +3894,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -3936,9 +3936,9 @@

gtk_paint_expander ()

void                gtk_paint_expander                  (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -3968,7 +3968,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -4012,10 +4012,10 @@

gtk_paint_layout ()

void                gtk_paint_layout                    (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
                                                          gboolean use_text,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
                                                          gint x,
@@ -4037,7 +4037,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -4085,12 +4085,12 @@

gtk_paint_resize_grip ()

void                gtk_paint_resize_grip               (GtkStyle *style,
-                                                         GdkWindow *window,
+                                                         GdkWindow *window,
                                                          GtkStateType state_type,
-                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *area,
                                                          GtkWidget *widget,
                                                          const gchar *detail,
-                                                         GdkWindowEdge edge,
+                                                         GdkWindowEdge edge,
                                                          gint x,
                                                          gint y,
                                                          gint width,
@@ -4112,7 +4112,7 @@
 
 
 

window :

-a GdkWindow +a GdkWindow @@ -4162,9 +4162,9 @@

gtk_draw_insertion_cursor ()

void                gtk_draw_insertion_cursor           (GtkWidget *widget,
-                                                         GdkDrawable *drawable,
-                                                         const GdkRectangle *area,
-                                                         const GdkRectangle *location,
+                                                         GdkDrawable *drawable,
+                                                         const GdkRectangle *area,
+                                                         const GdkRectangle *location,
                                                          gboolean is_primary,
                                                          GtkTextDirection direction,
                                                          gboolean draw_arrow);
@@ -4185,7 +4185,7 @@

drawable :

-a GdkDrawable +a GdkDrawable @@ -4360,7 +4360,7 @@

Emitted when the aspects of the style specific to a particular colormap and depth are being cleaned up. A connection to this signal can be useful -if a widget wants to cache objects like a GdkGC as object data on GtkStyle. +if a widget wants to cache objects like a GdkGC as object data on GtkStyle. This signal provides a convenient place to free such cached objects.

@@ -4385,6 +4385,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTable.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTable.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTable.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTable.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -802,6 +802,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTearoffMenuItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTearoffMenuItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTearoffMenuItem.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTearoffMenuItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -136,6 +136,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkText.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkText.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkText.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkText.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -69,9 +69,9 @@ voidgtk_text_freeze (GtkText *text); voidgtk_text_thaw (GtkText *text); voidgtk_text_insert (GtkText *text, - GdkFont *font, - const GdkColor *fore, - const GdkColor *back, + GdkFont *font, + const GdkColor *fore, + const GdkColor *back, const char *chars, gint length); gbooleangtk_text_backward_delete (GtkText *text, @@ -491,9 +491,9 @@

gtk_text_insert ()

void                gtk_text_insert                     (GtkText *text,
-                                                         GdkFont *font,
-                                                         const GdkColor *fore,
-                                                         const GdkColor *back,
+                                                         GdkFont *font,
+                                                         const GdkColor *fore,
+                                                         const GdkColor *back,
                                                          const char *chars,
                                                          gint length);
@@ -516,7 +516,7 @@
- + @@ -708,6 +708,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextBuffer.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextBuffer.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextBuffer.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextBuffer.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -241,44 +241,44 @@ GError **error); gbooleangtk_text_buffer_deserialize (GtkTextBuffer *register_buffer, GtkTextBuffer *content_buffer, - GdkAtom format, + GdkAtom format, GtkTextIter *iter, const guint8 *data, gsize length, GError **error); gbooleangtk_text_buffer_deserialize_get_can_create_tags (GtkTextBuffer *buffer, - GdkAtom format); + GdkAtom format); voidgtk_text_buffer_deserialize_set_can_create_tags (GtkTextBuffer *buffer, - GdkAtom format, + GdkAtom format, gboolean can_create_tags); GtkTargetList * gtk_text_buffer_get_copy_target_list (GtkTextBuffer *buffer); -GdkAtom * gtk_text_buffer_get_deserialize_formats +GdkAtom * gtk_text_buffer_get_deserialize_formats (GtkTextBuffer *buffer, gint *n_formats); GtkTargetList * gtk_text_buffer_get_paste_target_list (GtkTextBuffer *buffer); -GdkAtom * gtk_text_buffer_get_serialize_formats +GdkAtom * gtk_text_buffer_get_serialize_formats (GtkTextBuffer *buffer, gint *n_formats); -GdkAtomgtk_text_buffer_register_deserialize_format +GdkAtomgtk_text_buffer_register_deserialize_format (GtkTextBuffer *buffer, const gchar *mime_type, GtkTextBufferDeserializeFunc function, gpointer user_data, GDestroyNotify user_data_destroy); -GdkAtomgtk_text_buffer_register_deserialize_tagset +GdkAtomgtk_text_buffer_register_deserialize_tagset (GtkTextBuffer *buffer, const gchar *tagset_name); -GdkAtomgtk_text_buffer_register_serialize_format +GdkAtomgtk_text_buffer_register_serialize_format (GtkTextBuffer *buffer, const gchar *mime_type, GtkTextBufferSerializeFunc function, gpointer user_data, GDestroyNotify user_data_destroy); -GdkAtomgtk_text_buffer_register_serialize_tagset +GdkAtomgtk_text_buffer_register_serialize_tagset (GtkTextBuffer *buffer, const gchar *tagset_name); guint8 * (*GtkTextBufferSerializeFunc) (GtkTextBuffer *register_buffer, @@ -289,16 +289,16 @@ gpointer user_data); guint8 * gtk_text_buffer_serialize (GtkTextBuffer *register_buffer, GtkTextBuffer *content_buffer, - GdkAtom format, + GdkAtom format, const GtkTextIter *start, const GtkTextIter *end, gsize *length); voidgtk_text_buffer_unregister_deserialize_format (GtkTextBuffer *buffer, - GdkAtom format); + GdkAtom format); voidgtk_text_buffer_unregister_serialize_format (GtkTextBuffer *buffer, - GdkAtom format); + GdkAtom format);
@@ -2489,7 +2489,7 @@

Adds clipboard to the list of clipboards in which the selection contents of buffer are available. In most cases, clipboard will be -the GtkClipboard of type GDK_SELECTION_PRIMARY for a view of buffer. +the GtkClipboard of type GDK_SELECTION_PRIMARY for a view of buffer.

font :

the GdkFont to usethe GdkFont to use

fore :

@@ -2644,7 +2644,7 @@

gtk_text_buffer_deserialize ()

gboolean            gtk_text_buffer_deserialize         (GtkTextBuffer *register_buffer,
                                                          GtkTextBuffer *content_buffer,
-                                                         GdkAtom format,
+                                                         GdkAtom format,
                                                          GtkTextIter *iter,
                                                          const guint8 *data,
                                                          gsize length,
@@ -2709,7 +2709,7 @@
 

gtk_text_buffer_deserialize_get_can_create_tags ()

gboolean            gtk_text_buffer_deserialize_get_can_create_tags
                                                         (GtkTextBuffer *buffer,
-                                                         GdkAtom format);
+ GdkAtom format);

This functions returns the value set with gtk_text_buffer_deserialize_set_can_create_tags() @@ -2727,7 +2727,7 @@

- + @@ -2742,7 +2742,7 @@

gtk_text_buffer_deserialize_set_can_create_tags ()

void                gtk_text_buffer_deserialize_set_can_create_tags
                                                         (GtkTextBuffer *buffer,
-                                                         GdkAtom format,
+                                                         GdkAtom format,
                                                          gboolean can_create_tags);

Use this function to allow a rich text deserialization function to @@ -2778,7 +2778,7 @@

- + @@ -2823,7 +2823,7 @@

gtk_text_buffer_get_deserialize_formats ()

-
GdkAtom *           gtk_text_buffer_get_deserialize_formats
+
GdkAtom *           gtk_text_buffer_get_deserialize_formats
                                                         (GtkTextBuffer *buffer,
                                                          gint *n_formats);

@@ -2849,7 +2849,7 @@

@@ -2891,7 +2891,7 @@

gtk_text_buffer_get_serialize_formats ()

-
GdkAtom *           gtk_text_buffer_get_serialize_formats
+
GdkAtom *           gtk_text_buffer_get_serialize_formats
                                                         (GtkTextBuffer *buffer,
                                                          gint *n_formats);

@@ -2917,7 +2917,7 @@

@@ -2927,7 +2927,7 @@

gtk_text_buffer_register_deserialize_format ()

-
GdkAtom             gtk_text_buffer_register_deserialize_format
+
GdkAtom             gtk_text_buffer_register_deserialize_format
                                                         (GtkTextBuffer *buffer,
                                                          const gchar *mime_type,
                                                          GtkTextBufferDeserializeFunc function,
@@ -2967,7 +2967,7 @@
 
 
- @@ -2978,7 +2978,7 @@

gtk_text_buffer_register_deserialize_tagset ()

-
GdkAtom             gtk_text_buffer_register_deserialize_tagset
+
GdkAtom             gtk_text_buffer_register_deserialize_tagset
                                                         (GtkTextBuffer *buffer,
                                                          const gchar *tagset_name);

@@ -3004,7 +3004,7 @@

- @@ -3015,7 +3015,7 @@

gtk_text_buffer_register_serialize_format ()

-
GdkAtom             gtk_text_buffer_register_serialize_format
+
GdkAtom             gtk_text_buffer_register_serialize_format
                                                         (GtkTextBuffer *buffer,
                                                          const gchar *mime_type,
                                                          GtkTextBufferSerializeFunc function,
@@ -3055,7 +3055,7 @@
 
 
- @@ -3066,7 +3066,7 @@

gtk_text_buffer_register_serialize_tagset ()

-
GdkAtom             gtk_text_buffer_register_serialize_tagset
+
GdkAtom             gtk_text_buffer_register_serialize_tagset
                                                         (GtkTextBuffer *buffer,
                                                          const gchar *tagset_name);

@@ -3108,7 +3108,7 @@

- @@ -3172,7 +3172,7 @@

gtk_text_buffer_serialize ()

guint8 *            gtk_text_buffer_serialize           (GtkTextBuffer *register_buffer,
                                                          GtkTextBuffer *content_buffer,
-                                                         GdkAtom format,
+                                                         GdkAtom format,
                                                          const GtkTextIter *start,
                                                          const GtkTextIter *end,
                                                          gsize *length);
@@ -3230,7 +3230,7 @@

gtk_text_buffer_unregister_deserialize_format ()

void                gtk_text_buffer_unregister_deserialize_format
                                                         (GtkTextBuffer *buffer,
-                                                         GdkAtom format);
+ GdkAtom format);

This function unregisters a rich text format that was previously registered using gtk_text_buffer_register_deserialize_format() or @@ -3249,7 +3249,7 @@

- +

format :

a GdkAtom representing a registered rich text formata GdkAtom representing a registered rich text format

Returns :

format :

a GdkAtom representing a registered rich text formata GdkAtom representing a registered rich text format

can_create_tags :

Returns :

an array of -GdkAtoms representing the registered formats. [array length=n_formats][transfer container] +GdkAtoms representing the registered formats. [array length=n_formats][transfer container]

Returns :

an array of -GdkAtoms representing the registered formats. [array length=n_formats][transfer container] +GdkAtoms representing the registered formats. [array length=n_formats][transfer container]

Returns :

the GdkAtom that corresponds to the +the GdkAtom that corresponds to the newly registered format's mime-type. [transfer none]

Returns :

the GdkAtom that corresponds to the +the GdkAtom that corresponds to the newly registered format's mime-type. [transfer none]

Returns :

the GdkAtom that corresponds to the +the GdkAtom that corresponds to the newly registered format's mime-type. [transfer none]

Returns :

the GdkAtom that corresponds to the +the GdkAtom that corresponds to the newly registered format's mime-type. [transfer none]

format :

a GdkAtom representing a registered rich text format.a GdkAtom representing a registered rich text format.
@@ -3260,7 +3260,7 @@

gtk_text_buffer_unregister_serialize_format ()

void                gtk_text_buffer_unregister_serialize_format
                                                         (GtkTextBuffer *buffer,
-                                                         GdkAtom format);
+ GdkAtom format);

This function unregisters a rich text format that was previously registered using gtk_text_buffer_register_serialize_format() or @@ -3279,7 +3279,7 @@

format :

-a GdkAtom representing a registered rich text format. +a GdkAtom representing a registered rich text format.
@@ -3920,6 +3920,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextIter.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextIter.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextIter.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextIter.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -3148,6 +3148,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextMark.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextMark.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextMark.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextMark.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -341,6 +341,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextTag.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextTag.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextTag.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextTag.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -55,7 +55,7 @@ gint priority); gboolean gtk_text_tag_event (GtkTextTag *tag, GObject *event_object, - GdkEvent *event, + GdkEvent *event, const GtkTextIter *iter); struct GtkTextAppearance; GtkTextAttributes * gtk_text_attributes_new (void); @@ -80,9 +80,9 @@ "background" gchar* : Write "background-full-height" gboolean : Read / Write "background-full-height-set" gboolean : Read / Write - "background-gdk" GdkColor* : Read / Write + "background-gdk" GdkColor* : Read / Write "background-set" gboolean : Read / Write - "background-stipple" GdkPixmap* : Read / Write + "background-stipple" GdkPixmap* : Read / Write "background-stipple-set" gboolean : Read / Write "direction" GtkTextDirection : Read / Write "editable" gboolean : Read / Write @@ -92,9 +92,9 @@ "font" gchar* : Read / Write "font-desc" PangoFontDescription* : Read / Write "foreground" gchar* : Write - "foreground-gdk" GdkColor* : Read / Write + "foreground-gdk" GdkColor* : Read / Write "foreground-set" gboolean : Read / Write - "foreground-stipple" GdkPixmap* : Read / Write + "foreground-stipple" GdkPixmap* : Read / Write "foreground-stipple-set" gboolean : Read / Write "indent" gint : Read / Write "indent-set" gboolean : Read / Write @@ -108,7 +108,7 @@ "left-margin-set" gboolean : Read / Write "name" gchar* : Read / Write / Construct Only "paragraph-background" gchar* : Write - "paragraph-background-gdk" GdkColor* : Read / Write + "paragraph-background-gdk" GdkColor* : Read / Write "paragraph-background-set" gboolean : Read / Write "pixels-above-lines" gint : Read / Write "pixels-above-lines-set" gboolean : Read / Write @@ -453,7 +453,7 @@

gtk_text_tag_event ()

gboolean            gtk_text_tag_event                  (GtkTextTag *tag,
                                                          GObject *event_object,
-                                                         GdkEvent *event,
+                                                         GdkEvent *event,
                                                          const GtkTextIter *iter);

Emits the "event" signal on the GtkTextTag. @@ -682,7 +682,7 @@


The "background-gdk" property

-
  "background-gdk"           GdkColor*             : Read / Write
+
  "background-gdk"           GdkColor*             : Read / Write

Background color as a (possibly unallocated) GdkColor.


@@ -695,7 +695,7 @@

The "background-stipple" property

-
  "background-stipple"       GdkPixmap*            : Read / Write
+
  "background-stipple"       GdkPixmap*            : Read / Write

Bitmap to use as a mask when drawing the text background.


@@ -770,7 +770,7 @@

The "foreground-gdk" property

-
  "foreground-gdk"           GdkColor*             : Read / Write
+
  "foreground-gdk"           GdkColor*             : Read / Write

Foreground color as a (possibly unallocated) GdkColor.


@@ -783,7 +783,7 @@

The "foreground-stipple" property

-
  "foreground-stipple"       GdkPixmap*            : Read / Write
+
  "foreground-stipple"       GdkPixmap*            : Read / Write

Bitmap to use as a mask when drawing the text foreground.


@@ -903,11 +903,11 @@

The "paragraph-background-gdk" property

-
  "paragraph-background-gdk" GdkColor*             : Read / Write
+
  "paragraph-background-gdk" GdkColor*             : Read / Write

The paragraph background color as a as a (possibly unallocated) -GdkColor. +GdkColor.

Since 2.8

@@ -1149,7 +1149,7 @@

The "event" signal

gboolean            user_function                      (GtkTextTag  *tag,
                                                         GObject     *object,
-                                                        GdkEvent    *event,
+                                                        GdkEvent    *event,
                                                         GtkTextIter *iter,
                                                         gpointer     user_data)      : Run Last

@@ -1195,6 +1195,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextTagTable.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextTagTable.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextTagTable.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextTagTable.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -403,6 +403,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextView.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextView.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTextView.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTextView.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -75,10 +75,10 @@ GtkTextMark *mark); gboolean gtk_text_view_place_cursor_onscreen (GtkTextView *text_view); void gtk_text_view_get_visible_rect (GtkTextView *text_view, - GdkRectangle *visible_rect); + GdkRectangle *visible_rect); void gtk_text_view_get_iter_location (GtkTextView *text_view, const GtkTextIter *iter, - GdkRectangle *location); + GdkRectangle *location); void gtk_text_view_get_line_at_y (GtkTextView *text_view, GtkTextIter *target_iter, gint y, @@ -110,10 +110,10 @@ gint window_y, gint *buffer_x, gint *buffer_y); -GdkWindow * gtk_text_view_get_window (GtkTextView *text_view, +GdkWindow * gtk_text_view_get_window (GtkTextView *text_view, GtkTextWindowType win); GtkTextWindowType gtk_text_view_get_window_type (GtkTextView *text_view, - GdkWindow *window); + GdkWindow *window); void gtk_text_view_set_border_window_size (GtkTextView *text_view, GtkTextWindowType type, @@ -201,7 +201,7 @@ (GtkTextView *text_view); gboolean gtk_text_view_im_context_filter_keypress (GtkTextView *text_view, - GdkEventKey *event); + GdkEventKey *event); void gtk_text_view_reset_im_context (GtkTextView *text_view); GtkAdjustment * gtk_text_view_get_hadjustment (GtkTextView *text_view); GtkAdjustment * gtk_text_view_get_vadjustment (GtkTextView *text_view); @@ -252,7 +252,7 @@

Style Properties

-  "error-underline-color"    GdkColor*             : Read
+  "error-underline-color"    GdkColor*             : Read
 
@@ -677,7 +677,7 @@

gtk_text_view_get_visible_rect ()

void                gtk_text_view_get_visible_rect      (GtkTextView *text_view,
-                                                         GdkRectangle *visible_rect);
+ GdkRectangle *visible_rect);

Fills visible_rect with the currently-visible region of the buffer, in buffer coordinates. Convert to window coordinates @@ -707,7 +707,7 @@

gtk_text_view_get_iter_location ()

void                gtk_text_view_get_iter_location     (GtkTextView *text_view,
                                                          const GtkTextIter *iter,
-                                                         GdkRectangle *location);
+ GdkRectangle *location);

Gets a rectangle which roughly contains the character at iter. The rectangle position is in buffer coordinates; use @@ -1032,10 +1032,10 @@


gtk_text_view_get_window ()

-
GdkWindow *         gtk_text_view_get_window            (GtkTextView *text_view,
+
GdkWindow *         gtk_text_view_get_window            (GtkTextView *text_view,
                                                          GtkTextWindowType win);

-Retrieves the GdkWindow corresponding to an area of the text view; +Retrieves the GdkWindow corresponding to an area of the text view; possible windows include the overall widget window, child windows on the left, right, top, bottom, and the window that displays the text buffer. Windows are NULL and nonexistent if their width or @@ -1059,7 +1059,7 @@

Returns :

-a GdkWindow, or NULL. [transfer none] +a GdkWindow, or NULL. [transfer none] @@ -1069,7 +1069,7 @@

gtk_text_view_get_window_type ()

GtkTextWindowType   gtk_text_view_get_window_type       (GtkTextView *text_view,
-                                                         GdkWindow *window);
+ GdkWindow *window);

Usually used to find out which window an event corresponds to. If you connect to an event signal on text_view, this function @@ -1545,7 +1545,7 @@ Adds a child at fixed coordinates in one of the text widget's windows. The window must have nonzero size (see gtk_text_view_set_border_window_size()). Note that the child -coordinates are given relative to the GdkWindow in question, and +coordinates are given relative to the GdkWindow in question, and that these coordinates have no sane relationship to scrolling. When placing a child in GTK_TEXT_WINDOW_WIDGET, scrolling is irrelevant, the child floats above all scrollable areas. But when @@ -2375,7 +2375,7 @@

gtk_text_view_im_context_filter_keypress ()

gboolean            gtk_text_view_im_context_filter_keypress
                                                         (GtkTextView *text_view,
-                                                         GdkEventKey *event);
+ GdkEventKey *event);

Allow the GtkTextView input method to internally handle key press and release events. If this function returns TRUE, then no further @@ -2667,7 +2667,7 @@

Style Property Details

The "error-underline-color" style property

-
  "error-underline-color"    GdkColor*             : Read
+
  "error-underline-color"    GdkColor*             : Read

Color with which to draw error-indication underlines.

@@ -3314,6 +3314,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTipsQuery.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTipsQuery.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTipsQuery.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTipsQuery.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -413,7 +413,7 @@ GtkWidget *widget, gchar *arg1, gchar *arg2, - GdkEvent *arg3, + GdkEvent *arg3, gpointer user_data) : Run Last

Emitted when a widget is selected during a query. @@ -477,6 +477,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToggleAction.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToggleAction.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToggleAction.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToggleAction.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -332,6 +332,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToggleButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToggleButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToggleButton.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToggleButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -539,6 +539,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToggleToolButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToggleToolButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToggleToolButton.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToggleToolButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -292,6 +292,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolButton.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -711,6 +711,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolItem.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1242,6 +1242,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolItemGroup.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolItemGroup.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolItemGroup.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolItemGroup.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -751,6 +751,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolPalette.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolPalette.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolPalette.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolPalette.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -79,7 +79,7 @@ GtkWidget *widget, GtkDestDefaults flags, GtkToolPaletteDragTargets targets, - GdkDragAction actions); + GdkDragAction actions); GtkWidget * gtk_tool_palette_get_drag_item (GtkToolPalette *palette, const GtkSelectionData *selection); const GtkTargetEntry * gtk_tool_palette_get_drag_target_group @@ -263,7 +263,7 @@ gtk_tool_palette_add_drag_dest (GTK_TOOL_PALETTE (palette), target, GTK_DEST_DEFAULT_ALL, GTK_TOOL_PALETTE_DRAG_ITEMS, - GDK_ACTION_COPY);
+ GDK_ACTION_COPY);
@@ -659,7 +659,7 @@ GtkWidget *widget, GtkDestDefaults flags, GtkToolPaletteDragTargets targets, - GdkDragAction actions);
+ GdkDragAction actions);

Sets palette as drag source (see gtk_tool_palette_set_drag_source()) and sets widget as a drag destination for drags from palette. @@ -693,7 +693,7 @@

actions :

-the GdkDragActions which the widget should suppport +the GdkDragActions which the widget should suppport
@@ -1074,6 +1074,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolShell.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolShell.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolShell.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolShell.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -419,6 +419,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolbar.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolbar.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkToolbar.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkToolbar.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1986,6 +1986,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTooltip.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTooltip.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTooltip.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTooltip.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -60,9 +60,9 @@ GtkIconSize size); void gtk_tooltip_set_custom (GtkTooltip *tooltip, GtkWidget *custom_widget); -void gtk_tooltip_trigger_tooltip_query (GdkDisplay *display); +void gtk_tooltip_trigger_tooltip_query (GdkDisplay *display); void gtk_tooltip_set_tip_area (GtkTooltip *tooltip, - const GdkRectangle *rect); + const GdkRectangle *rect);
@@ -376,7 +376,7 @@

gtk_tooltip_trigger_tooltip_query ()

-
void                gtk_tooltip_trigger_tooltip_query   (GdkDisplay *display);
+
void                gtk_tooltip_trigger_tooltip_query   (GdkDisplay *display);

Triggers a new tooltip query on display, in order to update the current visible tooltip, or to show/hide the current tooltip. This function is @@ -390,7 +390,7 @@

display :

-a GdkDisplay +a GdkDisplay
@@ -400,7 +400,7 @@

gtk_tooltip_set_tip_area ()

void                gtk_tooltip_set_tip_area            (GtkTooltip *tooltip,
-                                                         const GdkRectangle *rect);
+ const GdkRectangle *rect);

Sets the area of the widget, where the contents of this tooltip apply, to be rect (in widget coordinates). This is especially useful for @@ -425,7 +425,7 @@

rect :

-a GdkRectangle +a GdkRectangle @@ -436,6 +436,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTooltips.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTooltips.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTooltips.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTooltips.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -472,6 +472,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTree.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTree.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTree.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTree.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -840,6 +840,6 @@
+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeItem.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeItem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeItem.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeItem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -267,6 +267,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeModel.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeModel.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeModel.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeModel.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -2594,6 +2594,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeModelFilter.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeModelFilter.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeModelFilter.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeModelFilter.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -688,6 +688,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeModelSort.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeModelSort.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeModelSort.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeModelSort.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -573,6 +573,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeSelection.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeSelection.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeSelection.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeSelection.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -860,6 +860,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeSortable.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeSortable.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeSortable.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeSortable.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -480,6 +480,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeStore.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeStore.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeStore.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeStore.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1092,6 +1092,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeView.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeView.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeView.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeView.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -180,17 +180,17 @@ void gtk_tree_view_get_cell_area (GtkTreeView *tree_view, GtkTreePath *path, GtkTreeViewColumn *column, - GdkRectangle *rect); + GdkRectangle *rect); void gtk_tree_view_get_background_area (GtkTreeView *tree_view, GtkTreePath *path, GtkTreeViewColumn *column, - GdkRectangle *rect); + GdkRectangle *rect); void gtk_tree_view_get_visible_rect (GtkTreeView *tree_view, - GdkRectangle *visible_rect); + GdkRectangle *visible_rect); gboolean gtk_tree_view_get_visible_range (GtkTreeView *tree_view, GtkTreePath **start_path, GtkTreePath **end_path); -GdkWindow * gtk_tree_view_get_bin_window (GtkTreeView *tree_view); +GdkWindow * gtk_tree_view_get_bin_window (GtkTreeView *tree_view); void gtk_tree_view_widget_to_tree_coords (GtkTreeView *tree_view, gint wx, gint wy, @@ -241,13 +241,13 @@ (GtkTreeView *tree_view, const GtkTargetEntry *targets, gint n_targets, - GdkDragAction actions); + GdkDragAction actions); void gtk_tree_view_enable_model_drag_source (GtkTreeView *tree_view, - GdkModifierType start_button_mask, + GdkModifierType start_button_mask, const GtkTargetEntry *targets, gint n_targets, - GdkDragAction actions); + GdkDragAction actions); void gtk_tree_view_unset_rows_drag_source (GtkTreeView *tree_view); void gtk_tree_view_unset_rows_drag_dest (GtkTreeView *tree_view); @@ -262,7 +262,7 @@ gint drag_y, GtkTreePath **path, GtkTreeViewDropPosition *pos); -GdkPixmap * gtk_tree_view_create_row_drag_icon (GtkTreeView *tree_view, +GdkPixmap * gtk_tree_view_create_row_drag_icon (GtkTreeView *tree_view, GtkTreePath *path); void gtk_tree_view_set_enable_search (GtkTreeView *tree_view, gboolean enable_search); @@ -394,13 +394,13 @@

Style Properties

   "allow-rules"              gboolean              : Read
-  "even-row-color"           GdkColor*             : Read
+  "even-row-color"           GdkColor*             : Read
   "expander-size"            gint                  : Read
   "grid-line-pattern"        gchar*                : Read
   "grid-line-width"          gint                  : Read
   "horizontal-separator"     gint                  : Read
   "indent-expanders"         gboolean              : Read
-  "odd-row-color"            GdkColor*             : Read
+  "odd-row-color"            GdkColor*             : Read
   "row-ending-details"       gboolean              : Read
   "tree-line-pattern"        gchar*                : Read
   "tree-line-width"          gint                  : Read
@@ -2284,7 +2284,7 @@
 
void                gtk_tree_view_get_cell_area         (GtkTreeView *tree_view,
                                                          GtkTreePath *path,
                                                          GtkTreeViewColumn *column,
-                                                         GdkRectangle *rect);
+ GdkRectangle *rect);

Fills the bounding rectangle in bin_window coordinates for the cell at the row specified by path and the column specified by column. If path is @@ -2331,7 +2331,7 @@

void                gtk_tree_view_get_background_area   (GtkTreeView *tree_view,
                                                          GtkTreePath *path,
                                                          GtkTreeViewColumn *column,
-                                                         GdkRectangle *rect);
+ GdkRectangle *rect);

Fills the bounding rectangle in bin_window coordinates for the cell at the row specified by path and the column specified by column. If path is @@ -2376,7 +2376,7 @@

gtk_tree_view_get_visible_rect ()

void                gtk_tree_view_get_visible_rect      (GtkTreeView *tree_view,
-                                                         GdkRectangle *visible_rect);
+ GdkRectangle *visible_rect);

Fills visible_rect with the currently-visible region of the buffer, in tree coordinates. Convert to bin_window coordinates with @@ -2450,7 +2450,7 @@


gtk_tree_view_get_bin_window ()

-
GdkWindow *         gtk_tree_view_get_bin_window        (GtkTreeView *tree_view);
+
GdkWindow *         gtk_tree_view_get_bin_window        (GtkTreeView *tree_view);

Returns the window that tree_view renders to. This is used primarily to compare to event->window @@ -2469,7 +2469,7 @@

Returns :

-A GdkWindow, or NULL when tree_view +A GdkWindow, or NULL when tree_view hasn't been realized yet. [transfer none] @@ -2857,7 +2857,7 @@ (GtkTreeView *tree_view, const GtkTargetEntry *targets, gint n_targets, - GdkDragAction actions); + GdkDragAction actions);

Turns tree_view into a drop destination for automatic DND. Calling this method sets "reorderable" to FALSE. @@ -2896,10 +2896,10 @@

gtk_tree_view_enable_model_drag_source ()

void                gtk_tree_view_enable_model_drag_source
                                                         (GtkTreeView *tree_view,
-                                                         GdkModifierType start_button_mask,
+                                                         GdkModifierType start_button_mask,
                                                          const GtkTargetEntry *targets,
                                                          gint n_targets,
-                                                         GdkDragAction actions);
+ GdkDragAction actions);

Turns tree_view into a drag source for automatic DND. Calling this method sets "reorderable" to FALSE. @@ -3099,10 +3099,10 @@


gtk_tree_view_create_row_drag_icon ()

-
GdkPixmap *         gtk_tree_view_create_row_drag_icon  (GtkTreeView *tree_view,
+
GdkPixmap *         gtk_tree_view_create_row_drag_icon  (GtkTreeView *tree_view,
                                                          GtkTreePath *path);

-Creates a GdkPixmap representation of the row at path. +Creates a GdkPixmap representation of the row at path. This image is used for a drag icon.

@@ -4408,7 +4408,7 @@

The "search-column" property

  "search-column"            gint                  : Read / Write

Model column to search through during interactive search.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -4426,7 +4426,7 @@

The "tooltip-column" property

  "tooltip-column"           gint                  : Read / Write

The column in the model containing the tooltip texts for the rows.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -4447,7 +4447,7 @@

The "even-row-color" style property

-
  "even-row-color"           GdkColor*             : Read
+
  "even-row-color"           GdkColor*             : Read

Color to use for even rows.


@@ -4491,7 +4491,7 @@

The "odd-row-color" style property

-
  "odd-row-color"            GdkColor*             : Read
+
  "odd-row-color"            GdkColor*             : Read

Color to use for odd rows.


@@ -5024,6 +5024,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeViewColumn.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeViewColumn.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkTreeViewColumn.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkTreeViewColumn.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -150,7 +150,7 @@ gboolean is_expander, gboolean is_expanded); voidgtk_tree_view_column_cell_get_size (GtkTreeViewColumn *tree_column, - const GdkRectangle *cell_area, + const GdkRectangle *cell_area, gint *x_offset, gint *y_offset, gint *width, @@ -1631,7 +1631,7 @@

gtk_tree_view_column_cell_get_size ()

void                gtk_tree_view_column_cell_get_size  (GtkTreeViewColumn *tree_column,
-                                                         const GdkRectangle *cell_area,
+                                                         const GdkRectangle *cell_area,
                                                          gint *x_offset,
                                                          gint *y_offset,
                                                          gint *width,
@@ -1872,7 +1872,7 @@
 

The "max-width" property

  "max-width"                gint                  : Read / Write

Maximum allowed width of the column.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -1880,7 +1880,7 @@

The "min-width" property

  "min-width"                gint                  : Read / Write

Minimum allowed width of the column.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -1912,7 +1912,7 @@ Logical sort column ID this column sorts on when selected for sorting. Setting the sort column ID makes the column header clickable. Set to -1 to make the column unsortable.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.18

@@ -2002,6 +2002,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkUIManager.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkUIManager.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkUIManager.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkUIManager.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1367,6 +1367,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVBox.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -131,6 +131,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVButtonBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVButtonBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVButtonBox.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVButtonBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -219,6 +219,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVPaned.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVPaned.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVPaned.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVPaned.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -106,6 +106,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVRuler.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVRuler.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVRuler.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVRuler.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -127,6 +127,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVScale.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVScale.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVScale.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVScale.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -161,6 +161,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVScrollbar.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVScrollbar.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVScrollbar.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVScrollbar.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -121,6 +121,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVSeparator.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVSeparator.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVSeparator.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVSeparator.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -109,6 +109,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkViewport.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkViewport.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkViewport.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkViewport.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -60,8 +60,8 @@ voidgtk_viewport_set_shadow_type (GtkViewport *viewport, GtkShadowType type); GtkShadowTypegtk_viewport_get_shadow_type (GtkViewport *viewport); -GdkWindow * gtk_viewport_get_bin_window (GtkViewport *viewport); -GdkWindow * gtk_viewport_get_view_window (GtkViewport *viewport); +GdkWindow * gtk_viewport_get_bin_window (GtkViewport *viewport); +GdkWindow * gtk_viewport_get_view_window (GtkViewport *viewport);
@@ -306,7 +306,7 @@

gtk_viewport_get_bin_window ()

-
GdkWindow *         gtk_viewport_get_bin_window         (GtkViewport *viewport);
+
GdkWindow *         gtk_viewport_get_bin_window         (GtkViewport *viewport);

Gets the bin window of the GtkViewport.

@@ -323,7 +323,7 @@
- @@ -333,7 +333,7 @@

gtk_viewport_get_view_window ()

-
GdkWindow *         gtk_viewport_get_view_window        (GtkViewport *viewport);
+
GdkWindow *         gtk_viewport_get_view_window        (GtkViewport *viewport);

Gets the view window of the GtkViewport.

@@ -350,7 +350,7 @@
- @@ -423,6 +423,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVolumeButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVolumeButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkVolumeButton.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkVolumeButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -110,6 +110,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkWidget.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkWidget.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkWidget.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkWidget.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -115,7 +115,7 @@ voidgtk_widget_queue_resize (GtkWidget *widget); voidgtk_widget_queue_resize_no_redraw (GtkWidget *widget); voidgtk_widget_draw (GtkWidget *widget, - const GdkRectangle *area); + const GdkRectangle *area); voidgtk_widget_size_request (GtkWidget *widget, GtkRequisition *requisition); voidgtk_widget_get_child_requisition (GtkWidget *widget, @@ -126,12 +126,12 @@ const gchar *accel_signal, GtkAccelGroup *accel_group, guint accel_key, - GdkModifierType accel_mods, + GdkModifierType accel_mods, GtkAccelFlags accel_flags); gbooleangtk_widget_remove_accelerator (GtkWidget *widget, GtkAccelGroup *accel_group, guint accel_key, - GdkModifierType accel_mods); + GdkModifierType accel_mods); voidgtk_widget_set_accel_path (GtkWidget *widget, const gchar *accel_path, GtkAccelGroup *accel_group); @@ -139,13 +139,13 @@ gbooleangtk_widget_can_activate_accel (GtkWidget *widget, guint signal_id); gbooleangtk_widget_event (GtkWidget *widget, - GdkEvent *event); + GdkEvent *event); gbooleangtk_widget_activate (GtkWidget *widget); voidgtk_widget_reparent (GtkWidget *widget, GtkWidget *new_parent); gbooleangtk_widget_intersect (GtkWidget *widget, - const GdkRectangle *area, - GdkRectangle *intersection); + const GdkRectangle *area, + GdkRectangle *intersection); gbooleangtk_widget_is_focus (GtkWidget *widget); voidgtk_widget_grab_focus (GtkWidget *widget); voidgtk_widget_grab_default (GtkWidget *widget); @@ -159,8 +159,8 @@ voidgtk_widget_set_parent (GtkWidget *widget, GtkWidget *parent); voidgtk_widget_set_parent_window (GtkWidget *widget, - GdkWindow *parent_window); -GdkWindow * gtk_widget_get_parent_window (GtkWidget *widget); + GdkWindow *parent_window); +GdkWindow * gtk_widget_get_parent_window (GtkWidget *widget); voidgtk_widget_set_uposition (GtkWidget *widget, gint x, gint y); @@ -172,15 +172,15 @@ voidgtk_widget_add_events (GtkWidget *widget, gint events); voidgtk_widget_set_extension_events (GtkWidget *widget, - GdkExtensionMode mode); -GdkExtensionModegtk_widget_get_extension_events (GtkWidget *widget); + GdkExtensionMode mode); +GdkExtensionModegtk_widget_get_extension_events (GtkWidget *widget); GtkWidget * gtk_widget_get_toplevel (GtkWidget *widget); GtkWidget * gtk_widget_get_ancestor (GtkWidget *widget, GType widget_type); -GdkColormap * gtk_widget_get_colormap (GtkWidget *widget); +GdkColormap * gtk_widget_get_colormap (GtkWidget *widget); voidgtk_widget_set_colormap (GtkWidget *widget, - GdkColormap *colormap); -GdkVisual * gtk_widget_get_visual (GtkWidget *widget); + GdkColormap *colormap); +GdkVisual * gtk_widget_get_visual (GtkWidget *widget); gintgtk_widget_get_events (GtkWidget *widget); voidgtk_widget_get_pointer (GtkWidget *widget, gint *x, @@ -201,12 +201,12 @@ GtkStyle * gtk_widget_get_style (GtkWidget *widget); #define gtk_widget_restore_default_style (widget) voidgtk_widget_reset_rc_styles (GtkWidget *widget); -voidgtk_widget_push_colormap (GdkColormap *cmap); +voidgtk_widget_push_colormap (GdkColormap *cmap); voidgtk_widget_pop_colormap (void); -voidgtk_widget_set_default_colormap (GdkColormap *colormap); +voidgtk_widget_set_default_colormap (GdkColormap *colormap); GtkStyle * gtk_widget_get_default_style (void); -GdkColormap * gtk_widget_get_default_colormap (void); -GdkVisual * gtk_widget_get_default_visual (void); +GdkColormap * gtk_widget_get_default_colormap (void); +GdkVisual * gtk_widget_get_default_visual (void); voidgtk_widget_set_direction (GtkWidget *widget, GtkTextDirection dir); enum GtkTextDirection; @@ -214,11 +214,11 @@ voidgtk_widget_set_default_direction (GtkTextDirection dir); GtkTextDirectiongtk_widget_get_default_direction (void); voidgtk_widget_shape_combine_mask (GtkWidget *widget, - GdkBitmap *shape_mask, + GdkBitmap *shape_mask, gint offset_x, gint offset_y); voidgtk_widget_input_shape_combine_mask (GtkWidget *widget, - GdkBitmap *shape_mask, + GdkBitmap *shape_mask, gint offset_x, gint offset_y); voidgtk_widget_path (GtkWidget *widget, @@ -235,21 +235,21 @@ GtkRcStyle * gtk_widget_get_modifier_style (GtkWidget *widget); voidgtk_widget_modify_fg (GtkWidget *widget, GtkStateType state, - const GdkColor *color); + const GdkColor *color); voidgtk_widget_modify_bg (GtkWidget *widget, GtkStateType state, - const GdkColor *color); + const GdkColor *color); voidgtk_widget_modify_text (GtkWidget *widget, GtkStateType state, - const GdkColor *color); + const GdkColor *color); voidgtk_widget_modify_base (GtkWidget *widget, GtkStateType state, - const GdkColor *color); + const GdkColor *color); voidgtk_widget_modify_font (GtkWidget *widget, PangoFontDescription *font_desc); voidgtk_widget_modify_cursor (GtkWidget *widget, - const GdkColor *primary, - const GdkColor *secondary); + const GdkColor *primary, + const GdkColor *secondary); PangoContext * gtk_widget_create_pango_context (GtkWidget *widget); PangoContext * gtk_widget_get_pango_context (GtkWidget *widget); PangoLayout * gtk_widget_create_pango_layout (GtkWidget *widget, @@ -298,12 +298,12 @@ GParamSpec ** gtk_widget_class_list_style_properties (GtkWidgetClass *klass, guint *n_properties); -GdkRegion * gtk_widget_region_intersect (GtkWidget *widget, - const GdkRegion *region); +GdkRegion * gtk_widget_region_intersect (GtkWidget *widget, + const GdkRegion *region); gintgtk_widget_send_expose (GtkWidget *widget, - GdkEvent *event); + GdkEvent *event); gbooleangtk_widget_send_focus_change (GtkWidget *widget, - GdkEvent *event); + GdkEvent *event); voidgtk_widget_style_get (GtkWidget *widget, const gchar *first_property_name, ...); @@ -324,10 +324,10 @@ GtkWidget * gtk_widget_get_parent (GtkWidget *widget); GtkSettings * gtk_widget_get_settings (GtkWidget *widget); GtkClipboard * gtk_widget_get_clipboard (GtkWidget *widget, - GdkAtom selection); -GdkDisplay * gtk_widget_get_display (GtkWidget *widget); -GdkWindow * gtk_widget_get_root_window (GtkWidget *widget); -GdkScreen * gtk_widget_get_screen (GtkWidget *widget); + GdkAtom selection); +GdkDisplay * gtk_widget_get_display (GtkWidget *widget); +GdkWindow * gtk_widget_get_root_window (GtkWidget *widget); +GdkScreen * gtk_widget_get_screen (GtkWidget *widget); gbooleangtk_widget_has_screen (GtkWidget *widget); voidgtk_widget_get_size_request (GtkWidget *widget, gint *width, @@ -369,9 +369,9 @@ voidgtk_widget_set_has_tooltip (GtkWidget *widget, gboolean has_tooltip); voidgtk_widget_trigger_tooltip_query (GtkWidget *widget); -GdkPixmap * gtk_widget_get_snapshot (GtkWidget *widget, - GdkRectangle *clip_rect); -GdkWindow * gtk_widget_get_window (GtkWidget *widget); +GdkPixmap * gtk_widget_get_snapshot (GtkWidget *widget, + GdkRectangle *clip_rect); +GdkWindow * gtk_widget_get_window (GtkWidget *widget); voidgtk_widget_get_allocation (GtkWidget *widget, GtkAllocation *allocation); voidgtk_widget_set_allocation (GtkWidget *widget, @@ -400,7 +400,7 @@ gbooleangtk_widget_is_drawable (GtkWidget *widget); gbooleangtk_widget_is_toplevel (GtkWidget *widget); voidgtk_widget_set_window (GtkWidget *widget, - GdkWindow *window); + GdkWindow *window); voidgtk_widget_set_receives_default (GtkWidget *widget, gboolean receives_default); gbooleangtk_widget_get_receives_default (GtkWidget *widget); @@ -468,8 +468,8 @@ "can-focus" gboolean : Read / Write "composite-child" gboolean : Read "double-buffered" gboolean : Read / Write - "events" GdkEventMask : Read / Write - "extension-events" GdkExtensionMode : Read / Write + "events" GdkEventMask : Read / Write + "extension-events" GdkExtensionMode : Read / Write "has-default" gboolean : Read / Write "has-focus" gboolean : Read / Write "has-tooltip" gboolean : Read / Write @@ -485,28 +485,28 @@ "tooltip-text" gchar* : Read / Write "visible" gboolean : Read / Write "width-request" gint : Read / Write - "window" GdkWindow* : Read + "window" GdkWindow* : Read @@ -794,25 +794,25 @@ - @@ -1065,7 +1065,7 @@

GTK_WIDGET_NO_WINDOW has been deprecated since version 2.20 and should not be used in newly-written code. Use gtk_widget_get_has_window() instead.

-Evaluates to TRUE if the widget doesn't have an own GdkWindow. +Evaluates to TRUE if the widget doesn't have an own GdkWindow.

Returns :

a GdkWindow. [transfer none] +a GdkWindow. [transfer none]

Returns :

a GdkWindow. [transfer none] +a GdkWindow. [transfer none]

GTK_TOPLEVEL

widgets without a real parent, as there are GtkWindows and GtkMenus have this flag set throughout their lifetime. - Toplevel widgets always contain their own GdkWindow. + Toplevel widgets always contain their own GdkWindow.

GTK_NO_WINDOW

Indicative for a widget that does not provide its own GdkWindow. - Visible action (e.g. drawing) is performed on the parent's GdkWindow. +Indicative for a widget that does not provide its own GdkWindow. + Visible action (e.g. drawing) is performed on the parent's GdkWindow.

GTK_REALIZED

Set by gtk_widget_realize(), unset by gtk_widget_unrealize(). - A realized widget has an associated GdkWindow. + A realized widget has an associated GdkWindow.

GTK_MAPPED

Set by gtk_widget_map(), unset by gtk_widget_unmap(). - Only realized widgets can be mapped. It means that gdk_window_show() + Only realized widgets can be mapped. It means that gdk_window_show() has been called on the widgets window(s).
@@ -2167,7 +2167,7 @@

gtk_widget_draw ()

void                gtk_widget_draw                     (GtkWidget *widget,
-                                                         const GdkRectangle *area);
+ const GdkRectangle *area);

Warning

gtk_widget_draw is deprecated and should not be used in newly-written code.

@@ -2322,7 +2322,7 @@ const gchar *accel_signal, GtkAccelGroup *accel_group, guint accel_key, - GdkModifierType accel_mods, + GdkModifierType accel_mods, GtkAccelFlags accel_flags);

Installs an accelerator for this widget in accel_group that causes @@ -2374,7 +2374,7 @@

gboolean            gtk_widget_remove_accelerator       (GtkWidget *widget,
                                                          GtkAccelGroup *accel_group,
                                                          guint accel_key,
-                                                         GdkModifierType accel_mods);
+ GdkModifierType accel_mods);

Removes an accelerator from widget, previously installed with gtk_widget_add_accelerator(). @@ -2537,7 +2537,7 @@

gtk_widget_event ()

gboolean            gtk_widget_event                    (GtkWidget *widget,
-                                                         GdkEvent *event);
+ GdkEvent *event);

Rarely-used function. This function is used to emit the event signals on a widget (those signals should never @@ -2545,7 +2545,7 @@ If you want to synthesize an event though, don't use this function; instead, use gtk_main_do_event() so the event will behave as if it were in the event queue. Don't synthesize expose events; instead, -use gdk_window_invalidate_rect() to invalidate a region of the +use gdk_window_invalidate_rect() to invalidate a region of the window.

@@ -2561,7 +2561,7 @@ - @@ -2631,8 +2631,8 @@

gtk_widget_intersect ()

gboolean            gtk_widget_intersect                (GtkWidget *widget,
-                                                         const GdkRectangle *area,
-                                                         GdkRectangle *intersection);
+ const GdkRectangle *area, + GdkRectangle *intersection);

Computes the intersection of a widget's area and area, storing the intersection in intersection, and returns TRUE if there was @@ -2904,7 +2904,7 @@

gtk_widget_set_parent_window ()

void                gtk_widget_set_parent_window        (GtkWidget *widget,
-                                                         GdkWindow *parent_window);
+ GdkWindow *parent_window);

Sets a non default parent window for widget.

@@ -2928,7 +2928,7 @@

gtk_widget_get_parent_window ()

-
GdkWindow *         gtk_widget_get_parent_window        (GtkWidget *widget);
+
GdkWindow *         gtk_widget_get_parent_window        (GtkWidget *widget);

Gets widget's parent window.

@@ -3059,7 +3059,7 @@
void                gtk_widget_set_events               (GtkWidget *widget,
                                                          gint events);

-Sets the event mask (see GdkEventMask) for a widget. The event +Sets the event mask (see GdkEventMask) for a widget. The event mask determines which events a widget will receive. Keep in mind that different widgets have different default event masks, and by changing the event mask you may disrupt a widget's functionality, @@ -3110,7 +3110,7 @@

- @@ -3120,10 +3120,10 @@

gtk_widget_set_extension_events ()

void                gtk_widget_set_extension_events     (GtkWidget *widget,
-                                                         GdkExtensionMode mode);
+ GdkExtensionMode mode);

-Sets the extension events mask to mode. See GdkExtensionMode -and gdk_input_set_extension_events(). +Sets the extension events mask to mode. See GdkExtensionMode +and gdk_input_set_extension_events().

event :

a GdkEvent +a GdkEvent

events :

an event mask, see GdkEventMask +an event mask, see GdkEventMask
@@ -3146,10 +3146,10 @@

gtk_widget_get_extension_events ()

-
GdkExtensionMode    gtk_widget_get_extension_events     (GtkWidget *widget);
+
GdkExtensionMode    gtk_widget_get_extension_events     (GtkWidget *widget);

Retrieves the extension events the widget will receive; see -gdk_input_set_extension_events(). +gdk_input_set_extension_events().

@@ -3279,7 +3279,7 @@

gtk_widget_get_colormap ()

-
GdkColormap *       gtk_widget_get_colormap             (GtkWidget *widget);
+
GdkColormap *       gtk_widget_get_colormap             (GtkWidget *widget);

Gets the colormap that will be used to render widget. No reference will be added to the returned colormap; it should not be unreferenced. @@ -3307,7 +3307,7 @@

gtk_widget_set_colormap ()

void                gtk_widget_set_colormap             (GtkWidget *widget,
-                                                         GdkColormap *colormap);
+ GdkColormap *colormap);

Sets the colormap for the widget to the given value. Widget must not have been previously realized. This probably should only be used @@ -3335,7 +3335,7 @@


gtk_widget_get_visual ()

-
GdkVisual *         gtk_widget_get_visual               (GtkWidget *widget);
+
GdkVisual *         gtk_widget_get_visual               (GtkWidget *widget);

Gets the visual that will be used to render widget.

@@ -3364,7 +3364,7 @@
gint                gtk_widget_get_events               (GtkWidget *widget);

Returns the event mask for the widget (a bitfield containing flags -from the GdkEventMask enumeration). These are the events that the widget +from the GdkEventMask enumeration). These are the events that the widget will receive.

@@ -3700,7 +3700,7 @@

gtk_widget_push_colormap ()

-
void                gtk_widget_push_colormap            (GdkColormap *cmap);
+
void                gtk_widget_push_colormap            (GdkColormap *cmap);

Pushes cmap onto a global stack of colormaps; the topmost colormap on the stack will be used to create all widgets. @@ -3714,7 +3714,7 @@

-

cmap :

a GdkColormap +a GdkColormap
@@ -3730,7 +3730,7 @@

gtk_widget_set_default_colormap ()

-
void                gtk_widget_set_default_colormap     (GdkColormap *colormap);
+
void                gtk_widget_set_default_colormap     (GdkColormap *colormap);

Sets the default colormap to use when creating widgets. gtk_widget_push_colormap() is a better function to use if @@ -3743,7 +3743,7 @@

colormap :

-a GdkColormap +a GdkColormap
@@ -3771,7 +3771,7 @@

gtk_widget_get_default_colormap ()

-
GdkColormap *       gtk_widget_get_default_colormap     (void);
+
GdkColormap *       gtk_widget_get_default_colormap     (void);

Obtains the default colormap used to create widgets.

@@ -3790,10 +3790,10 @@

gtk_widget_get_default_visual ()

-
GdkVisual *         gtk_widget_get_default_visual       (void);
+
GdkVisual *         gtk_widget_get_default_visual       (void);

Obtains the visual of the default colormap. Not really useful; -used to be useful before gdk_colormap_get_visual() existed. +used to be useful before gdk_colormap_get_visual() existed.

@@ -3949,12 +3949,12 @@

gtk_widget_shape_combine_mask ()

void                gtk_widget_shape_combine_mask       (GtkWidget *widget,
-                                                         GdkBitmap *shape_mask,
+                                                         GdkBitmap *shape_mask,
                                                          gint offset_x,
                                                          gint offset_y);

Sets a shape for this widget's GDK window. This allows for -transparent windows etc., see gdk_window_shape_combine_mask() +transparent windows etc., see gdk_window_shape_combine_mask() for more information.

@@ -3990,13 +3990,13 @@

gtk_widget_input_shape_combine_mask ()

void                gtk_widget_input_shape_combine_mask (GtkWidget *widget,
-                                                         GdkBitmap *shape_mask,
+                                                         GdkBitmap *shape_mask,
                                                          gint offset_x,
                                                          gint offset_y);

Sets an input shape for this widget's GDK window. This allows for windows which react to mouse click in a nonrectangular region, see -gdk_window_input_shape_combine_mask() for more information. +gdk_window_input_shape_combine_mask() for more information.

@@ -4234,7 +4234,7 @@

gtk_widget_modify_fg ()

void                gtk_widget_modify_fg                (GtkWidget *widget,
                                                          GtkStateType state,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Sets the foreground color for a widget in a particular state. All other style values are left untouched. See also @@ -4270,7 +4270,7 @@

gtk_widget_modify_bg ()

void                gtk_widget_modify_bg                (GtkWidget *widget,
                                                          GtkStateType state,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Sets the background color for a widget in a particular state. All other style values are left untouched. See also @@ -4315,7 +4315,7 @@

gtk_widget_modify_text ()

void                gtk_widget_modify_text              (GtkWidget *widget,
                                                          GtkStateType state,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Sets the text color for a widget in a particular state. All other style values are left untouched. The text color is the foreground @@ -4353,7 +4353,7 @@

gtk_widget_modify_base ()

void                gtk_widget_modify_base              (GtkWidget *widget,
                                                          GtkStateType state,
-                                                         const GdkColor *color);
+ const GdkColor *color);

Sets the base color for a widget in a particular state. All other style values are left untouched. The base color @@ -4428,8 +4428,8 @@

gtk_widget_modify_cursor ()

void                gtk_widget_modify_cursor            (GtkWidget *widget,
-                                                         const GdkColor *primary,
-                                                         const GdkColor *secondary);
+ const GdkColor *primary, + const GdkColor *secondary);

Sets the cursor color to use in a widget, overriding the "cursor-color" and "secondary-cursor-color" @@ -4760,7 +4760,7 @@ gint height);

Invalidates the rectangular area of widget defined by x, y, -width and height by calling gdk_window_invalidate_rect() on the +width and height by calling gdk_window_invalidate_rect() on the widget's window and all its child windows. Once the main loop becomes idle (after the current batch of events has been processed, roughly), the window will receive expose events for the union of @@ -4769,12 +4769,12 @@

Normally you would only use this function in widget implementations. You might also use it, or -gdk_window_invalidate_rect() directly, to schedule a redraw of a +gdk_window_invalidate_rect() directly, to schedule a redraw of a GtkDrawingArea or some portion thereof.

-Frequently you can just call gdk_window_invalidate_rect() or -gdk_window_invalidate_region() instead of this function. Those +Frequently you can just call gdk_window_invalidate_rect() or +gdk_window_invalidate_region() instead of this function. Those functions will invalidate only a single window, instead of the widget and all its children.

@@ -4866,7 +4866,7 @@ 2 3
@@ -4902,10 +4902,10 @@

Widgets are double buffered by default; you can use this function to turn off the buffering. "Double buffered" simply means that -gdk_window_begin_paint_region() and gdk_window_end_paint() are called +gdk_window_begin_paint_region() and gdk_window_end_paint() are called automatically around expose events sent to the widget. gdk_window_begin_paint() diverts all drawing to a widget's -window to an offscreen buffer, and gdk_window_end_paint() draws the +window to an offscreen buffer, and gdk_window_end_paint() draws the buffer to the screen. The result is that users see the window update in one smooth step, and don't see individual graphics primitives being rendered. @@ -5219,11 +5219,11 @@


gtk_widget_region_intersect ()

-
GdkRegion *         gtk_widget_region_intersect         (GtkWidget *widget,
-                                                         const GdkRegion *region);
+
GdkRegion *         gtk_widget_region_intersect         (GtkWidget *widget,
+                                                         const GdkRegion *region);

Computes the intersection of a widget's area and region, returning -the intersection. The result may be empty, use gdk_region_empty() to +the intersection. The result may be empty, use gdk_region_empty() to check.

gtk_widget_realize (window);
-gdk_window_set_back_pixmap (window->window, NULL, FALSE);
+gdk_window_set_back_pixmap (window->window, NULL, FALSE);
 gtk_widget_show (window);
@@ -5239,7 +5239,7 @@ - @@ -5259,7 +5259,7 @@

gtk_widget_send_expose ()

gint                gtk_widget_send_expose              (GtkWidget *widget,
-                                                         GdkEvent *event);
+ GdkEvent *event);

Very rarely-used function. This function is used to emit an expose event signals on a widget. This function is not @@ -5269,9 +5269,9 @@

If you want to force an area of a window to be redrawn, -use gdk_window_invalidate_rect() or gdk_window_invalidate_region(). +use gdk_window_invalidate_rect() or gdk_window_invalidate_region(). To cause the redraw to be done immediately, follow that call -with a call to gdk_window_process_updates(). +with a call to gdk_window_process_updates().

region :

a GdkRegion, in the same coordinate system as +a GdkRegion, in the same coordinate system as widget->allocation. That is, relative to widget->window for NO_WINDOW widgets; relative to the parent window of widget->window for widgets with their own window.
@@ -5286,7 +5286,7 @@ - @@ -5301,7 +5301,7 @@

gtk_widget_send_focus_change ()

gboolean            gtk_widget_send_focus_change        (GtkWidget *widget,
-                                                         GdkEvent *event);
+ GdkEvent *event);

Sends the focus change event to widget

@@ -5332,9 +5332,9 @@ 9 10 11 -
+gdk_event_free (event);

event :

a expose GdkEvent +a expose GdkEvent
GdkEvent *fevent = gdk_event_new (GDK_FOCUS_CHANGE);
+        
GdkEvent *fevent = gdk_event_new (GDK_FOCUS_CHANGE);
 
-fevent->focus_change.type = GDK_FOCUS_CHANGE;
+fevent->focus_change.type = GDK_FOCUS_CHANGE;
 fevent->focus_change.in = TRUE;
 fevent->focus_change.window = gtk_widget_get_window (widget);
 if (fevent->focus_change.window != NULL)
@@ -5342,7 +5342,7 @@
 
 gtk_widget_send_focus_change (widget, fevent);
 
-gdk_event_free (event);
@@ -5363,7 +5363,7 @@

event :

-a GdkEvent of type GDK_FOCUS_CHANGE +a GdkEvent of type GDK_FOCUS_CHANGE

Returns :

@@ -5472,7 +5472,7 @@
void                gtk_widget_style_attach             (GtkWidget *style);

This function attaches the widget's GtkStyle to the widget's -GdkWindow. It is a replacement for +GdkWindow. It is a replacement for

@@ -5712,7 +5712,7 @@

Note that this function can only be called when the GtkWidget is attached to a toplevel, since the settings object is specific -to a particular GdkScreen. +to a particular GdkScreen.

@@ -5737,10 +5737,10 @@

gtk_widget_get_clipboard ()

GtkClipboard *      gtk_widget_get_clipboard            (GtkWidget *widget,
-                                                         GdkAtom selection);
+ GdkAtom selection);

Returns the clipboard object for the given selection to -be used with widget. widget must have a GdkDisplay +be used with widget. widget must have a GdkDisplay associated with it, so must be attached to a toplevel window.

@@ -5757,10 +5757,10 @@
- @@ -5778,9 +5778,9 @@

gtk_widget_get_display ()

-
GdkDisplay *        gtk_widget_get_display              (GtkWidget *widget);
+
GdkDisplay *        gtk_widget_get_display              (GtkWidget *widget);

-Get the GdkDisplay for the toplevel window associated with +Get the GdkDisplay for the toplevel window associated with this widget. This function can only be called after the widget has been added to a widget hierarchy with a GtkWindow at the top.

@@ -5802,7 +5802,7 @@
- @@ -5812,7 +5812,7 @@

gtk_widget_get_root_window ()

-
GdkWindow *         gtk_widget_get_root_window          (GtkWidget *widget);
+
GdkWindow *         gtk_widget_get_root_window          (GtkWidget *widget);

Get the root window where this widget is located. This function can only be called after the widget has been added to a widget @@ -5820,7 +5820,7 @@

The root window is useful for such purposes as creating a popup -GdkWindow associated with the window. In general, you should only +GdkWindow associated with the window. In general, you should only create display specific resources when a widget has been realized, and you should free those resources when the widget is unrealized.

@@ -5837,7 +5837,7 @@
- @@ -5847,9 +5847,9 @@

gtk_widget_get_screen ()

-
GdkScreen *         gtk_widget_get_screen               (GtkWidget *widget);
+
GdkScreen *         gtk_widget_get_screen               (GtkWidget *widget);

-Get the GdkScreen from the toplevel window associated with +Get the GdkScreen from the toplevel window associated with this widget. This function can only be called after the widget has been added to a widget hierarchy with a GtkWindow at the top. @@ -5872,7 +5872,7 @@

- @@ -5884,7 +5884,7 @@

gtk_widget_has_screen ()

gboolean            gtk_widget_has_screen               (GtkWidget *widget);

-Checks whether there is a GdkScreen is associated with +Checks whether there is a GdkScreen is associated with this widget. All toplevel widgets have an associated screen, and all widgets added into a hierarchy with a toplevel window at the top. @@ -5903,7 +5903,7 @@

@@ -6376,7 +6376,7 @@

Please note that the semantics of this call will change in the future if used on a widget that has a composited -window in its hierarchy (as set by gdk_window_set_composited()). +window in its hierarchy (as set by gdk_window_set_composited()).

selection :

a GdkAtom which identifies the clipboard -to use. GDK_SELECTION_CLIPBOARD gives the +a GdkAtom which identifies the clipboard +to use. GDK_SELECTION_CLIPBOARD gives the default clipboard. Another common value -is GDK_SELECTION_PRIMARY, which gives +is GDK_SELECTION_PRIMARY, which gives the primary X selection.

Returns :

the GdkDisplay for the toplevel for this widget. [transfer none] +the GdkDisplay for the toplevel for this widget. [transfer none]

Returns :

the GdkWindow root window for the toplevel for this widget. [transfer none] +the GdkWindow root window for the toplevel for this widget. [transfer none]

Returns :

the GdkScreen for the toplevel for this widget. [transfer none] +the GdkScreen for the toplevel for this widget. [transfer none]

Returns :

-TRUE if there is a GdkScreen associcated +TRUE if there is a GdkScreen associcated with the widget.
@@ -6406,10 +6406,10 @@

Notifies the user about an input-related error on this widget. If the "gtk-error-bell" setting is TRUE, it calls -gdk_window_beep(), otherwise it does nothing. +gdk_window_beep(), otherwise it does nothing.

-Note that the effect of gdk_window_beep() can be configured in many +Note that the effect of gdk_window_beep() can be configured in many ways, depending on the windowing backend and the desktop environment or window manager that is used.

@@ -6764,16 +6764,16 @@

gtk_widget_get_snapshot ()

-
GdkPixmap *         gtk_widget_get_snapshot             (GtkWidget *widget,
-                                                         GdkRectangle *clip_rect);
+
GdkPixmap *         gtk_widget_get_snapshot             (GtkWidget *widget,
+                                                         GdkRectangle *clip_rect);

-Create a GdkPixmap of the contents of the widget and its children. +Create a GdkPixmap of the contents of the widget and its children.

Works even if the widget is obscured. The depth and visual of the resulting pixmap is dependent on the widget being snapshot and likely differs from those of a target widget displaying the pixmap. -The function gdk_pixbuf_get_from_drawable() can be used to convert +The function gdk_pixbuf_get_from_drawable() can be used to convert the pixmap to a visual independant representation.

@@ -6811,13 +6811,13 @@

- +GdkPixmap snapshot of the widget

clip_rect :

a GdkRectangle or NULL. [allow-none] +a GdkRectangle or NULL. [allow-none]

Returns :

-GdkPixmap snapshot of the widget
@@ -6826,7 +6826,7 @@

gtk_widget_get_window ()

-
GdkWindow *         gtk_widget_get_window               (GtkWidget *widget);
+
GdkWindow *         gtk_widget_get_window               (GtkWidget *widget);

Returns the widget's window if it is realized, NULL otherwise

@@ -7087,7 +7087,7 @@

gtk_widget_get_has_window ()

gboolean            gtk_widget_get_has_window           (GtkWidget *widget);

-Determines whether widget has a GdkWindow of its own. See +Determines whether widget has a GdkWindow of its own. See gtk_widget_set_has_window().

@@ -7116,10 +7116,10 @@
void                gtk_widget_set_has_window           (GtkWidget *widget,
                                                          gboolean has_window);

-Specifies whether widget has a GdkWindow of its own. Note that +Specifies whether widget has a GdkWindow of its own. Note that all realized widgets have a non-NULL "window" pointer (gtk_widget_get_window() never returns a NULL window when a widget -is realized), but for many of them it's actually the GdkWindow of +is realized), but for many of them it's actually the GdkWindow of one of its parent widgets. Widgets that do not create a window for themselves in GtkWidget::realize() must announce this by calling this function with has_window = FALSE. @@ -7477,16 +7477,16 @@

gtk_widget_set_window ()

void                gtk_widget_set_window               (GtkWidget *widget,
-                                                         GdkWindow *window);
+ GdkWindow *window);

Sets a widget's window. This function should only be used in a widget's GtkWidget::realize() implementation. The window passed is -usually either new window created with gdk_window_new(), or the +usually either new window created with gdk_window_new(), or the window of its parent widget as returned by gtk_widget_get_parent_window().

-Widgets must indicate whether they will create their own GdkWindow +Widgets must indicate whether they will create their own GdkWindow by calling gtk_widget_set_has_window(). This is usually done in the widget's init() function.

@@ -7503,7 +7503,7 @@
- @@ -7819,14 +7819,14 @@

The "events" property

-
  "events"                   GdkEventMask          : Read / Write
+
  "events"                   GdkEventMask          : Read / Write

The event mask that decides what kind of GdkEvents this widget gets.

Default value: GDK_STRUCTURE_MASK


The "extension-events" property

-
  "extension-events"         GdkExtensionMode      : Read / Write
+
  "extension-events"         GdkExtensionMode      : Read / Write

The mask that decides what kind of extension events this widget gets.

Default value: GDK_EXTENSION_EVENTS_NONE

@@ -7869,7 +7869,7 @@

The "height-request" property

  "height-request"           gint                  : Read / Write

Override for height request of the widget, or -1 if natural request should be used.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -7968,13 +7968,13 @@

The "width-request" property

  "width-request"            gint                  : Read / Write

Override for width request of the widget, or -1 if natural request should be used.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


The "window" property

-
  "window"                   GdkWindow*            : Read
+
  "window"                   GdkWindow*            : Read

The widget's window if it is realized, NULL otherwise.

@@ -7993,7 +7993,7 @@

The "cursor-color" style property

-
  "cursor-color"             GdkColor*             : Read
+
  "cursor-color"             GdkColor*             : Read

Color with which to draw insertion cursor.


@@ -8044,7 +8044,7 @@

The "link-color" style property

-
  "link-color"               GdkColor*             : Read
+
  "link-color"               GdkColor*             : Read

The "link-color" style property defines the color of unvisited links.

@@ -8079,7 +8079,7 @@

The "secondary-cursor-color" style property

-
  "secondary-cursor-color"   GdkColor*             : Read
+
  "secondary-cursor-color"   GdkColor*             : Read

Color with which to draw the secondary insertion cursor when editing mixed right-to-left and left-to-right text.


@@ -8130,7 +8130,7 @@

The "visited-link-color" style property

-
  "visited-link-color"       GdkColor*             : Read
+
  "visited-link-color"       GdkColor*             : Read

The "visited-link-color" style property defines the color of visited links.

@@ -8176,16 +8176,16 @@

The "button-press-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::button-press-event signal will be emitted when a button (typically from a mouse) is pressed.

-To receive this signal, the GdkWindow associated to the +To receive this signal, the GdkWindow associated to the -widget needs to enable the GDK_BUTTON_PRESS_MASK mask. +widget needs to enable the GDK_BUTTON_PRESS_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -8202,7 +8202,7 @@

- @@ -8223,16 +8223,16 @@

The "button-release-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::button-release-event signal will be emitted when a button (typically from a mouse) is released.

-To receive this signal, the GdkWindow associated to the +To receive this signal, the GdkWindow associated to the -widget needs to enable the GDK_BUTTON_RELEASE_MASK mask. +widget needs to enable the GDK_BUTTON_RELEASE_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -8249,7 +8249,7 @@

- @@ -8343,7 +8343,7 @@

The "client-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::client-event will be emitted when the widget's window @@ -8362,7 +8362,7 @@

- @@ -8388,7 +8388,7 @@ The ::composited-changed signal is emitted when the composited status of widgets screen changes. -See gdk_screen_is_composited(). +See gdk_screen_is_composited().

window :

a GdkWindow +a GdkWindow

event :

the GdkEventButton which triggered +the GdkEventButton which triggered this signal. [type Gdk.EventButton]

event :

the GdkEventButton which triggered +the GdkEventButton which triggered this signal. [type Gdk.EventButton]

event :

the GdkEventClient which triggered +the GdkEventClient which triggered this signal. [type Gdk.EventClient]
@@ -8411,15 +8411,15 @@

The "configure-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::configure-event signal will be emitted when the size, position or stacking of the widget's window has changed.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_STRUCTURE_MASK mask. GDK will enable this mask +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_STRUCTURE_MASK mask. GDK will enable this mask automatically for all new windows.

@@ -8434,7 +8434,7 @@ - @@ -8455,7 +8455,7 @@

The "damage-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

Emitted when a redirected window belonging to widget gets drawn into. @@ -8474,7 +8474,7 @@

- + @@ -8494,7 +8494,7 @@

The "delete-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::delete-event signal is emitted if a user requests that @@ -8534,10 +8534,10 @@

The "destroy-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

-The ::destroy-event signal is emitted when a GdkWindow is destroyed. +The ::destroy-event signal is emitted when a GdkWindow is destroyed. You rarely get this signal, because most widgets disconnect themselves from their window before they destroy it, so no widget owns the @@ -8545,8 +8545,8 @@ window at destroy time.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_STRUCTURE_MASK mask. GDK will enable this mask +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_STRUCTURE_MASK mask. GDK will enable this mask automatically for all new windows.

event :

the GdkEventConfigure which triggered +the GdkEventConfigure which triggered this signal. [type Gdk.EventConfigure]

event :

the GdkEventExpose eventthe GdkEventExpose event

user_data :

@@ -8612,7 +8612,7 @@

The "drag-begin" signal

void                user_function                      (GtkWidget      *widget,
-                                                        GdkDragContext *drag_context,
+                                                        GdkDragContext *drag_context,
                                                         gpointer        user_data)         : Run Last

The ::drag-begin signal is emitted on the drag source when a drag is @@ -8651,12 +8651,12 @@

The "drag-data-delete" signal

void                user_function                      (GtkWidget      *widget,
-                                                        GdkDragContext *drag_context,
+                                                        GdkDragContext *drag_context,
                                                         gpointer        user_data)         : Run Last

The ::drag-data-delete signal is emitted on the drag source when a drag -with the action GDK_ACTION_MOVE is successfully completed. The signal +with the action GDK_ACTION_MOVE is successfully completed. The signal handler is responsible for deleting the data that has been dropped. What @@ -8687,7 +8687,7 @@

The "drag-data-get" signal

void                user_function                      (GtkWidget        *widget,
-                                                        GdkDragContext   *drag_context,
+                                                        GdkDragContext   *drag_context,
                                                         GtkSelectionData *data,
                                                         guint             info,
                                                         guint             time,
@@ -8742,7 +8742,7 @@
 

The "drag-data-received" signal

void                user_function                      (GtkWidget        *widget,
-                                                        GdkDragContext   *drag_context,
+                                                        GdkDragContext   *drag_context,
                                                         gint              x,
                                                         gint              y,
                                                         GtkSelectionData *data,
@@ -8756,7 +8756,7 @@
 
 determine whether the drop will be accepted, the handler is expected
 
-to call gdk_drag_status() and not finish the drag.
+to call gdk_drag_status() and not finish the drag.
 
 If the data was received in response to a "drag-drop" signal
 
@@ -8772,7 +8772,7 @@
 

The handler may inspect and modify drag_context->action before calling -gtk_drag_finish(), e.g. to implement GDK_ACTION_ASK as shown in the +gtk_drag_finish(), e.g. to implement GDK_ACTION_ASK as shown in the following example:

@@ -8832,7 +8832,7 @@ { if ((data->length >= 0) && (data->format == 8)) { - if (drag_context->action == GDK_ACTION_ASK) + if (drag_context->action == GDK_ACTION_ASK) { GtkWidget *dialog; @@ -8849,9 +8849,9 @@ gtk_widget_destroy (dialog); if (response == GTK_RESPONSE_YES) - drag_context->action = GDK_ACTION_MOVE; + drag_context->action = GDK_ACTION_MOVE; else - drag_context->action = GDK_ACTION_COPY; + drag_context->action = GDK_ACTION_COPY; } gtk_drag_finish (drag_context, TRUE, FALSE, time); @@ -8914,7 +8914,7 @@

The "drag-drop" signal

gboolean            user_function                      (GtkWidget      *widget,
-                                                        GdkDragContext *drag_context,
+                                                        GdkDragContext *drag_context,
                                                         gint            x,
                                                         gint            y,
                                                         guint           time,
@@ -8981,7 +8981,7 @@
 

The "drag-end" signal

void                user_function                      (GtkWidget      *widget,
-                                                        GdkDragContext *drag_context,
+                                                        GdkDragContext *drag_context,
                                                         gpointer        user_data)         : Run Last

The ::drag-end signal is emitted on the drag source when a drag is @@ -9015,7 +9015,7 @@

The "drag-failed" signal

gboolean            user_function                      (GtkWidget      *widget,
-                                                        GdkDragContext *drag_context,
+                                                        GdkDragContext *drag_context,
                                                         GtkDragResult   result,
                                                         gpointer        user_data)         : Run Last

@@ -9060,7 +9060,7 @@

The "drag-leave" signal

void                user_function                      (GtkWidget      *widget,
-                                                        GdkDragContext *drag_context,
+                                                        GdkDragContext *drag_context,
                                                         guint           time,
                                                         gpointer        user_data)         : Run Last

@@ -9101,7 +9101,7 @@

The "drag-motion" signal

gboolean            user_function                      (GtkWidget      *widget,
-                                                        GdkDragContext *drag_context,
+                                                        GdkDragContext *drag_context,
                                                         gint            x,
                                                         gint            y,
                                                         guint           time,
@@ -9113,13 +9113,13 @@
 If it is not in a drop zone, it returns FALSE and no further processing
 is necessary. Otherwise, the handler returns TRUE. In this case, the
 handler is responsible for providing the necessary information for
-displaying feedback to the user, by calling gdk_drag_status().
+displaying feedback to the user, by calling gdk_drag_status().
 

If the decision whether the drop will be accepted or rejected can't be made based solely on the cursor position and the type of the data, the handler may inspect the dragged data by calling gtk_drag_get_data() and -defer the gdk_drag_status() call to the "drag-data-received" +defer the gdk_drag_status() call to the "drag-data-received" handler. Note that you cannot not pass GTK_DEST_DEFAULT_DROP, GTK_DEST_DEFAULT_MOTION or GTK_DEST_DEFAULT_ALL to gtk_drag_dest_set() when using the drag-motion signal that way. @@ -9219,8 +9219,8 @@ } target = gtk_drag_dest_find_target (widget, context, NULL); - if (target == GDK_NONE) - gdk_drag_status (context, 0, time); + if (target == GDK_NONE) + gdk_drag_status (context, 0, time); else { @@ -9256,9 +9256,9 @@ str = gtk_selection_data_get_text (selection_data); if (!data_is_acceptable (str)) - gdk_drag_status (context, 0, time); + gdk_drag_status (context, 0, time); else - gdk_drag_status (context, private_data->suggested_action, time); + gdk_drag_status (context, private_data->suggested_action, time); } else { @@ -9313,15 +9313,15 @@

The "enter-notify-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::enter-notify-event will be emitted when the pointer enters the widget's window.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_ENTER_NOTIFY_MASK mask. +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_ENTER_NOTIFY_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -9338,7 +9338,7 @@

- @@ -9359,7 +9359,7 @@

The "event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The GTK+ main loop will emit three signals for each GDK event delivered @@ -9382,7 +9382,7 @@

- + @@ -9404,7 +9404,7 @@

The "event-after" signal

void                user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)

After the emission of the "event" signal and (optionally) @@ -9425,7 +9425,7 @@

- + @@ -9438,17 +9438,17 @@

The "expose-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::expose-event signal is emitted when an area of a previously -obscured GdkWindow is made visible and needs to be redrawn. +obscured GdkWindow is made visible and needs to be redrawn. GTK_NO_WINDOW widgets will get a synthesized event from their parent widget.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_EXPOSURE_MASK mask. +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_EXPOSURE_MASK mask.

Note that the ::expose-event signal has been replaced by a ::draw @@ -9467,7 +9467,7 @@

- @@ -9516,15 +9516,15 @@

The "focus-in-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::focus-in-event signal will be emitted when the keyboard focus enters the widget's window.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_FOCUS_CHANGE_MASK mask. +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_FOCUS_CHANGE_MASK mask.

event :

the GdkEventCrossing which triggered +the GdkEventCrossing which triggered this signal. [type Gdk.EventCrossing]

event :

the GdkEvent which triggered this signalthe GdkEvent which triggered this signal

user_data :

event :

the GdkEvent which triggered this signalthe GdkEvent which triggered this signal

user_data :

event :

the GdkEventExpose which triggered +the GdkEventExpose which triggered this signal. [type Gdk.EventExpose]
@@ -9538,7 +9538,7 @@ - @@ -9559,15 +9559,15 @@

The "focus-out-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::focus-out-event signal will be emitted when the keyboard focus leaves the widget's window.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_FOCUS_CHANGE_MASK mask. +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_FOCUS_CHANGE_MASK mask.

event :

the GdkEventFocus which triggered +the GdkEventFocus which triggered this signal. [type Gdk.EventFocus]
@@ -9581,7 +9581,7 @@ - @@ -9602,7 +9602,7 @@

The "grab-broken-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

Emitted when a pointer or keyboard grab on a window belonging @@ -9629,7 +9629,7 @@

- + @@ -9773,14 +9773,14 @@

The "key-press-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::key-press-event signal is emitted when a key is pressed.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_KEY_PRESS_MASK mask. +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_KEY_PRESS_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -9797,7 +9797,7 @@

- @@ -9817,14 +9817,14 @@

The "key-release-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::key-release-event signal is emitted when a key is pressed.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_KEY_RELEASE_MASK mask. +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_KEY_RELEASE_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -9841,7 +9841,7 @@

- @@ -9901,15 +9901,15 @@

The "leave-notify-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::leave-notify-event will be emitted when the pointer leaves the widget's window.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_LEAVE_NOTIFY_MASK mask. +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_LEAVE_NOTIFY_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -9926,7 +9926,7 @@

- @@ -9969,15 +9969,15 @@

The "map-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::map-event signal will be emitted when the widget's window is mapped. A window is mapped when it becomes visible on the screen.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_STRUCTURE_MASK mask. GDK will enable this mask +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_STRUCTURE_MASK mask. GDK will enable this mask automatically for all new windows.

event :

the GdkEventFocus which triggered this +the GdkEventFocus which triggered this signal. [type Gdk.EventFocus]

event :

the GdkEventGrabBroken eventthe GdkEventGrabBroken event

user_data :

event :

the GdkEventKey which triggered this signal. [type Gdk.EventKey] +the GdkEventKey which triggered this signal. [type Gdk.EventKey]

event :

the GdkEventKey which triggered this signal. [type Gdk.EventKey] +the GdkEventKey which triggered this signal. [type Gdk.EventKey]

event :

the GdkEventCrossing which triggered +the GdkEventCrossing which triggered this signal. [type Gdk.EventCrossing]
@@ -9992,7 +9992,7 @@ - @@ -10035,17 +10035,17 @@

The "motion-notify-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::motion-notify-event signal is emitted when the pointer moves -over the widget's GdkWindow. +over the widget's GdkWindow.

-To receive this signal, the GdkWindow associated to the widget +To receive this signal, the GdkWindow associated to the widget -needs to enable the GDK_POINTER_MOTION_MASK mask. +needs to enable the GDK_POINTER_MOTION_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -10062,7 +10062,7 @@

- @@ -10106,14 +10106,14 @@

The "no-expose-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::no-expose-event will be emitted when the widget's window is -drawn as a copy of another GdkDrawable (with gdk_draw_drawable() or -gdk_window_copy_area()) which was completely unobscured. If the source -window was partially obscured GdkEventExpose events will be generated +drawn as a copy of another GdkDrawable (with gdk_draw_drawable() or +gdk_window_copy_area()) which was completely unobscured. If the source +window was partially obscured GdkEventExpose events will be generated for those areas.

event :

the GdkEventAny which triggered this signal. [type Gdk.EventAny] +the GdkEventAny which triggered this signal. [type Gdk.EventAny]

event :

the GdkEventMotion which triggered +the GdkEventMotion which triggered this signal. [type Gdk.EventMotion]
@@ -10128,7 +10128,7 @@ - @@ -10223,15 +10223,15 @@

The "property-notify-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::property-notify-event signal will be emitted when a property on the widget's window has been changed or deleted.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_PROPERTY_CHANGE_MASK mask. +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_PROPERTY_CHANGE_MASK mask.

event :

the GdkEventNoExpose which triggered +the GdkEventNoExpose which triggered this signal. [type Gdk.EventNoExpose]
@@ -10245,7 +10245,7 @@ - @@ -10266,11 +10266,11 @@

The "proximity-in-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

-To receive this signal the GdkWindow associated to the widget needs -to enable the GDK_PROXIMITY_IN_MASK mask. +To receive this signal the GdkWindow associated to the widget needs +to enable the GDK_PROXIMITY_IN_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -10287,7 +10287,7 @@

- @@ -10308,11 +10308,11 @@

The "proximity-out-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

-To receive this signal the GdkWindow associated to the widget needs -to enable the GDK_PROXIMITY_OUT_MASK mask. +To receive this signal the GdkWindow associated to the widget needs +to enable the GDK_PROXIMITY_OUT_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -10329,7 +10329,7 @@

- @@ -10444,7 +10444,7 @@

The "screen-changed" signal

void                user_function                      (GtkWidget *widget,
-                                                        GdkScreen *previous_screen,
+                                                        GdkScreen *previous_screen,
                                                         gpointer   user_data)            : Run Last

The ::screen-changed signal gets emitted when the @@ -10477,7 +10477,7 @@

The "scroll-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::scroll-event signal is emitted when a button in the 4 to 7 @@ -10486,8 +10486,8 @@ button press events for buttons 4 and 5 when the wheel is turned.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_BUTTON_PRESS_MASK mask. +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_BUTTON_PRESS_MASK mask.

This signal will be sent to the grab widget if there is one. @@ -10504,7 +10504,7 @@

- @@ -10525,7 +10525,7 @@

The "selection-clear-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::selection-clear-event signal will be emitted when the @@ -10543,7 +10543,7 @@

- @@ -10589,7 +10589,7 @@

The "selection-notify-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

event :

the GdkEventProperty which triggered +the GdkEventProperty which triggered this signal. [type Gdk.EventProperty]

event :

the GdkEventProximity which triggered +the GdkEventProximity which triggered this signal. [type Gdk.EventProximity]

event :

the GdkEventProximity which triggered +the GdkEventProximity which triggered this signal. [type Gdk.EventProximity]

event :

the GdkEventScroll which triggered +the GdkEventScroll which triggered this signal. [type Gdk.EventScroll]

event :

the GdkEventSelection which triggered +the GdkEventSelection which triggered this signal. [type Gdk.EventSelection]
@@ -10641,7 +10641,7 @@

The "selection-request-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::selection-request-event signal will be emitted when @@ -10660,7 +10660,7 @@

- @@ -10726,7 +10726,7 @@

The "size-allocate" signal

void                user_function                      (GtkWidget    *widget,
-                                                        GdkRectangle *allocation,
+                                                        GdkRectangle *allocation,
                                                         gpointer      user_data)       : Run First

event :

the GdkEventSelection which triggered +the GdkEventSelection which triggered this signal. [type Gdk.EventSelection]
@@ -10861,15 +10861,15 @@

The "unmap-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::unmap-event signal will be emitted when the widget's window is unmapped. A window is unmapped when it becomes invisible on the screen.

-To receive this signal, the GdkWindow associated to the widget needs -to enable the GDK_STRUCTURE_MASK mask. GDK will enable this mask +To receive this signal, the GdkWindow associated to the widget needs +to enable the GDK_STRUCTURE_MASK mask. GDK will enable this mask automatically for all new windows.

@@ -10884,7 +10884,7 @@ - @@ -10926,15 +10926,15 @@

The "visibility-notify-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::visibility-notify-event will be emitted when the widget's window is obscured or unobscured.

-To receive this signal the GdkWindow associated to the widget needs -to enable the GDK_VISIBILITY_NOTIFY_MASK mask. +To receive this signal the GdkWindow associated to the widget needs +to enable the GDK_VISIBILITY_NOTIFY_MASK mask.

event :

the GdkEventAny which triggered this signal. [type Gdk.EventAny] +the GdkEventAny which triggered this signal. [type Gdk.EventAny]
@@ -10948,7 +10948,7 @@ - @@ -10969,7 +10969,7 @@

The "window-state-event" signal

gboolean            user_function                      (GtkWidget *widget,
-                                                        GdkEvent  *event,
+                                                        GdkEvent  *event,
                                                         gpointer   user_data)      : Run Last

The ::window-state-event will be emitted when the state of the @@ -10977,9 +10977,9 @@ toplevel window associated to the widget changes.

-To receive this signal the GdkWindow associated to the widget +To receive this signal the GdkWindow associated to the widget -needs to enable the GDK_STRUCTURE_MASK mask. GDK will enable +needs to enable the GDK_STRUCTURE_MASK mask. GDK will enable this mask automatically for all new windows.

@@ -10995,7 +10995,7 @@
- @@ -11016,6 +11016,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkWindow.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkWindow.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkWindow.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkWindow.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -76,11 +76,11 @@ gint height); voidgtk_window_set_geometry_hints (GtkWindow *window, GtkWidget *geometry_widget, - GdkGeometry *geometry, - GdkWindowHints geom_mask); + GdkGeometry *geometry, + GdkWindowHints geom_mask); voidgtk_window_set_gravity (GtkWindow *window, - GdkGravity gravity); -GdkGravitygtk_window_get_gravity (GtkWindow *window); + GdkGravity gravity); +GdkGravitygtk_window_get_gravity (GtkWindow *window); voidgtk_window_set_position (GtkWindow *window, GtkWindowPosition position); voidgtk_window_set_transient_for (GtkWindow *window, @@ -88,8 +88,8 @@ voidgtk_window_set_destroy_with_parent (GtkWindow *window, gboolean setting); voidgtk_window_set_screen (GtkWindow *window, - GdkScreen *screen); -GdkScreen * gtk_window_get_screen (GtkWindow *window); + GdkScreen *screen); +GdkScreen * gtk_window_get_screen (GtkWindow *window); gbooleangtk_window_is_active (GtkWindow *window); gbooleangtk_window_has_toplevel_focus (GtkWindow *window); GList * gtk_window_list_toplevels (void); @@ -101,11 +101,11 @@ GtkWidget *target); gbooleangtk_window_mnemonic_activate (GtkWindow *window, guint keyval, - GdkModifierType modifier); + GdkModifierType modifier); gbooleangtk_window_activate_key (GtkWindow *window, - GdkEventKey *event); + GdkEventKey *event); gbooleangtk_window_propagate_key_event (GtkWindow *window, - GdkEventKey *event); + GdkEventKey *event); GtkWidget * gtk_window_get_focus (GtkWindow *window); voidgtk_window_set_focus (GtkWindow *window, GtkWidget *focus); @@ -128,7 +128,7 @@ voidgtk_window_set_keep_below (GtkWindow *window, gboolean setting); voidgtk_window_begin_resize_drag (GtkWindow *window, - GdkWindowEdge edge, + GdkWindowEdge edge, gint button, gint root_x, gint root_y, @@ -150,9 +150,9 @@ voidgtk_window_set_has_frame (GtkWindow *window, gboolean setting); voidgtk_window_set_mnemonic_modifier (GtkWindow *window, - GdkModifierType modifier); + GdkModifierType modifier); voidgtk_window_set_type_hint (GtkWindow *window, - GdkWindowTypeHint hint); + GdkWindowTypeHint hint); voidgtk_window_set_skip_taskbar_hint (GtkWindow *window, gboolean setting); voidgtk_window_set_skip_pager_hint (GtkWindow *window, @@ -184,7 +184,7 @@ GdkPixbuf * gtk_window_get_icon (GtkWindow *window); GList * gtk_window_get_icon_list (GtkWindow *window); const gchar * gtk_window_get_icon_name (GtkWindow *window); -GdkModifierTypegtk_window_get_mnemonic_modifier (GtkWindow *window); +GdkModifierTypegtk_window_get_mnemonic_modifier (GtkWindow *window); gbooleangtk_window_get_modal (GtkWindow *window); voidgtk_window_get_position (GtkWindow *window, gint *root_x, @@ -195,7 +195,7 @@ gint *height); const gchar * gtk_window_get_title (GtkWindow *window); GtkWindow * gtk_window_get_transient_for (GtkWindow *window); -GdkWindowTypeHintgtk_window_get_type_hint (GtkWindow *window); +GdkWindowTypeHintgtk_window_get_type_hint (GtkWindow *window); gbooleangtk_window_get_skip_taskbar_hint (GtkWindow *window); gbooleangtk_window_get_skip_pager_hint (GtkWindow *window); gbooleangtk_window_get_urgency_hint (GtkWindow *window); @@ -268,7 +268,7 @@ "deletable" gboolean : Read / Write "destroy-with-parent" gboolean : Read / Write "focus-on-map" gboolean : Read / Write - "gravity" GdkGravity : Read / Write + "gravity" GdkGravity : Read / Write "has-toplevel-focus" gboolean : Read "icon" GdkPixbuf* : Read / Write "icon-name" gchar* : Read / Write @@ -278,14 +278,14 @@ "opacity" gdouble : Read / Write "resizable" gboolean : Read / Write "role" gchar* : Read / Write - "screen" GdkScreen* : Read / Write + "screen" GdkScreen* : Read / Write "skip-pager-hint" gboolean : Read / Write "skip-taskbar-hint" gboolean : Read / Write "startup-id" gchar* : Write "title" gchar* : Read / Write "transient-for" GtkWindow* : Read / Write / Construct "type" GtkWindowType : Read / Write / Construct Only - "type-hint" GdkWindowTypeHint : Read / Write + "type-hint" GdkWindowTypeHint : Read / Write "urgency-hint" gboolean : Read / Write "window-position" GtkWindowPosition : Read / Write @@ -830,13 +830,13 @@

gtk_window_set_geometry_hints ()

void                gtk_window_set_geometry_hints       (GtkWindow *window,
                                                          GtkWidget *geometry_widget,
-                                                         GdkGeometry *geometry,
-                                                         GdkWindowHints geom_mask);
+ GdkGeometry *geometry, + GdkWindowHints geom_mask);

This function sets up hints about how a window can be resized by the user. You can set a minimum and maximum size; allowed resize increments (e.g. for xterm, you can only resize by the size of a -character); aspect ratios; and more. See the GdkGeometry struct. +character); aspect ratios; and more. See the GdkGeometry struct.

event :

the GdkEventVisibility which +the GdkEventVisibility which triggered this signal. [type Gdk.EventVisibility]

event :

the GdkEventWindowState which +the GdkEventWindowState which triggered this signal. [type Gdk.EventWindowState]
@@ -868,14 +868,14 @@

gtk_window_set_gravity ()

void                gtk_window_set_gravity              (GtkWindow *window,
-                                                         GdkGravity gravity);
+ GdkGravity gravity);

Window gravity defines the meaning of coordinates passed to -gtk_window_move(). See gtk_window_move() and GdkGravity for +gtk_window_move(). See gtk_window_move() and GdkGravity for more details.

-The default window gravity is GDK_GRAVITY_NORTH_WEST which will +The default window gravity is GDK_GRAVITY_NORTH_WEST which will typically "do what you mean."

@@ -899,7 +899,7 @@

gtk_window_get_gravity ()

-
GdkGravity          gtk_window_get_gravity              (GtkWindow *window);
+
GdkGravity          gtk_window_get_gravity              (GtkWindow *window);

Gets the value set by gtk_window_set_gravity().

@@ -1021,9 +1021,9 @@

gtk_window_set_screen ()

void                gtk_window_set_screen               (GtkWindow *window,
-                                                         GdkScreen *screen);
+ GdkScreen *screen);

-Sets the GdkScreen where the window is displayed; if +Sets the GdkScreen where the window is displayed; if the window is already mapped, it will be unmapped, and then remapped on the new screen.

@@ -1039,7 +1039,7 @@
- +

screen :

a GdkScreen.a GdkScreen.
@@ -1048,9 +1048,9 @@

gtk_window_get_screen ()

-
GdkScreen *         gtk_window_get_screen               (GtkWindow *window);
+
GdkScreen *         gtk_window_get_screen               (GtkWindow *window);

-Returns the GdkScreen associated with window. +Returns the GdkScreen associated with window.

@@ -1064,7 +1064,7 @@ - @@ -1224,7 +1224,7 @@

gtk_window_mnemonic_activate ()

gboolean            gtk_window_mnemonic_activate        (GtkWindow *window,
                                                          guint keyval,
-                                                         GdkModifierType modifier);
+ GdkModifierType modifier);

Activates the targets associated with the mnemonic.

@@ -1259,7 +1259,7 @@

gtk_window_activate_key ()

gboolean            gtk_window_activate_key             (GtkWindow *window,
-                                                         GdkEventKey *event);
+ GdkEventKey *event);

Activates mnemonics and accelerators for this GtkWindow. This is normally called by the default ::key_press_event handler for toplevel windows, @@ -1279,7 +1279,7 @@

- @@ -1295,7 +1295,7 @@

gtk_window_propagate_key_event ()

gboolean            gtk_window_propagate_key_event      (GtkWindow *window,
-                                                         GdkEventKey *event);
+ GdkEventKey *event);

Propagate a key press or release event to the focus widget and up the focus container chain until a widget handles event. @@ -1317,7 +1317,7 @@

- @@ -1855,7 +1855,7 @@

gtk_window_begin_resize_drag ()

void                gtk_window_begin_resize_drag        (GtkWindow *window,
-                                                         GdkWindowEdge edge,
+                                                         GdkWindowEdge edge,
                                                          gint button,
                                                          gint root_x,
                                                          gint root_y,
@@ -2121,7 +2121,7 @@
 

gtk_window_set_mnemonic_modifier ()

void                gtk_window_set_mnemonic_modifier    (GtkWindow *window,
-                                                         GdkModifierType modifier);
+ GdkModifierType modifier);

Sets the mnemonic modifier for this window.

@@ -2148,7 +2148,7 @@

gtk_window_set_type_hint ()

void                gtk_window_set_type_hint            (GtkWindow *window,
-                                                         GdkWindowTypeHint hint);
+ GdkWindowTypeHint hint);

By setting the type hint for the window, you allow the window manager to decorate and handle the window in a way which is @@ -2584,7 +2584,7 @@ framebuffer port; see gtk_window_set_has_frame(). It will not return the size of the window border drawn by the window manager, which is the normal case when using a windowing system. See - gdk_window_get_frame_extents() to get the standard window border + gdk_window_get_frame_extents() to get the standard window border extents.)

@@ -2744,7 +2744,7 @@


gtk_window_get_mnemonic_modifier ()

-
GdkModifierType     gtk_window_get_mnemonic_modifier    (GtkWindow *window);
+
GdkModifierType     gtk_window_get_mnemonic_modifier    (GtkWindow *window);

Returns the mnemonic modifier for this window. See gtk_window_set_mnemonic_modifier(). @@ -2809,7 +2809,7 @@

If you haven't changed the window gravity, its gravity will be -GDK_GRAVITY_NORTH_WEST. This means that gtk_window_get_position() +GDK_GRAVITY_NORTH_WEST. This means that gtk_window_get_position() gets the position of the top-left corner of the window manager frame for the window. gtk_window_move() sets the position of this same top-left corner. @@ -2829,7 +2829,7 @@ slowly getting better over time.

-If a window has gravity GDK_GRAVITY_STATIC the window manager +If a window has gravity GDK_GRAVITY_STATIC the window manager frame is not relevant, and thus gtk_window_get_position() will always produce accurate results. However you can't use static gravity to do things like place a window in a corner of the screen, @@ -2908,7 +2908,7 @@ size (but this is not reliably the same as the size the window manager will actually select). The size obtained by gtk_window_get_size() is the last size received in a -GdkEventConfigure, that is, GTK+ uses its locally-stored size, +GdkEventConfigure, that is, GTK+ uses its locally-stored size, rather than querying the X server for the size. As a result, if you call gtk_window_resize() then immediately call gtk_window_get_size(), the size won't have taken effect yet. After @@ -2922,7 +2922,7 @@ get the size and the time that you perform some action assuming that size is the current size. To avoid race conditions, connect to "configure-event" on the window and adjust your size-dependent -state to match the size delivered in the GdkEventConfigure. +state to match the size delivered in the GdkEventConfigure.

Note 2: The returned size does not include the @@ -3033,7 +3033,7 @@


gtk_window_get_type_hint ()

-
GdkWindowTypeHint   gtk_window_get_type_hint            (GtkWindow *window);
+
GdkWindowTypeHint   gtk_window_get_type_hint            (GtkWindow *window);

Gets the type hint for this window. See gtk_window_set_type_hint().

@@ -3294,22 +3294,22 @@ the reference point.

-By default the gravity is GDK_GRAVITY_NORTH_WEST, so the reference +By default the gravity is GDK_GRAVITY_NORTH_WEST, so the reference point is simply the x, y supplied to gtk_window_move(). The top-left corner of the window decorations (aka window frame or border) will be placed at x, y. Therefore, to position a window at the top left of the screen, you want to use the default gravity -(which is GDK_GRAVITY_NORTH_WEST) and move the window to 0,0. +(which is GDK_GRAVITY_NORTH_WEST) and move the window to 0,0.

To position a window at the bottom right corner of the screen, you -would set GDK_GRAVITY_SOUTH_EAST, which means that the reference +would set GDK_GRAVITY_SOUTH_EAST, which means that the reference point is at x + the window width and y + the window height, and the bottom-right corner of the window border will be placed at that reference point. So, to place a window in the bottom right corner you would first set gravity to south east, then write: -gtk_window_move (window, gdk_screen_width() - window_width, -gdk_screen_height() - window_height) (note that this +gtk_window_move (window, gdk_screen_width() - window_width, +gdk_screen_height() - window_height) (note that this example does not take multi-head scenarios into account).

@@ -3361,7 +3361,7 @@

If gtk_window_parse_geometry() returns TRUE, it will also -set the GDK_HINT_USER_POS and/or GDK_HINT_USER_SIZE hints +set the GDK_HINT_USER_POS and/or GDK_HINT_USER_SIZE hints indicating to the window manager that the size/position of the window was user-specified. This causes most window managers to honor the geometry. @@ -3432,7 +3432,7 @@ { GtkWidget *window, *vbox; GdkGeometry size_hints = { - 100, 50, 0, 0, 100, 50, 10, 10, 0.0, 0.0, GDK_GRAVITY_NORTH_WEST + 100, 50, 0, 0, 100, 50, 10, 10, 0.0, 0.0, GDK_GRAVITY_NORTH_WEST }; gtk_init (&argc, &argv); @@ -3447,7 +3447,7 @@ gtk_window_set_geometry_hints (GTK_WINDOW (window), window, &size_hints, - GDK_HINT_MIN_SIZE | + GDK_HINT_MIN_SIZE | GDK_HINT_BASE_SIZE | GDK_HINT_RESIZE_INC); @@ -3814,7 +3814,7 @@ (gboolean setting);

By default, after showing the first GtkWindow, GTK+ calls -gdk_notify_startup_complete(). Call this function to disable +gdk_notify_startup_complete(). Call this function to disable the automatic startup notification. You might do this if your first window is a splash screen, and you want to delay notification until after your real main window has been shown, for example. @@ -3988,7 +3988,7 @@

The "default-height" property

  "default-height"           gint                  : Read / Write

The default height of the window, used when initially showing the window.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -3996,7 +3996,7 @@

The "default-width" property

  "default-width"            gint                  : Read / Write

The default width of the window, used when initially showing the window.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1


@@ -4029,9 +4029,9 @@

The "gravity" property

-
  "gravity"                  GdkGravity            : Read / Write
+
  "gravity"                  GdkGravity            : Read / Write

-The window gravity of the window. See gtk_window_move() and GdkGravity for +The window gravity of the window. See gtk_window_move() and GdkGravity for more details about window gravity.

Default value: GDK_GRAVITY_NORTH_WEST

@@ -4111,7 +4111,7 @@

The "screen" property

-
  "screen"                   GdkScreen*            : Read / Write
+
  "screen"                   GdkScreen*            : Read / Write

The screen where this window will be displayed.


@@ -4167,7 +4167,7 @@

The "type-hint" property

-
  "type-hint"                GdkWindowTypeHint     : Read / Write
+
  "type-hint"                GdkWindowTypeHint     : Read / Write

Hint to help the desktop environment understand what kind of window this is and how to treat it.

Default value: GDK_WINDOW_TYPE_HINT_NORMAL

@@ -4247,7 +4247,7 @@

The "frame-event" signal

gboolean            user_function                      (GtkWindow *window,
-                                                        GdkEvent  *arg1,
+                                                        GdkEvent  *arg1,
                                                         gpointer   user_data)      : Run Last

@@ -4323,6 +4323,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/GtkWindowGroup.html gtk+2.0-2.24.20/docs/reference/gtk/html/GtkWindowGroup.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/GtkWindowGroup.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/GtkWindowGroup.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -182,6 +182,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/LayoutContainers.html gtk+2.0-2.24.20/docs/reference/gtk/html/LayoutContainers.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/LayoutContainers.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/LayoutContainers.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -69,6 +69,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/MenusAndCombos.html gtk+2.0-2.24.20/docs/reference/gtk/html/MenusAndCombos.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/MenusAndCombos.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/MenusAndCombos.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -90,6 +90,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/MiscObjects.html gtk+2.0-2.24.20/docs/reference/gtk/html/MiscObjects.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/MiscObjects.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/MiscObjects.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -63,6 +63,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/NumericEntry.html gtk+2.0-2.24.20/docs/reference/gtk/html/NumericEntry.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/NumericEntry.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/NumericEntry.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -48,6 +48,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/Ornaments.html gtk+2.0-2.24.20/docs/reference/gtk/html/Ornaments.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/Ornaments.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/Ornaments.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -36,6 +36,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/PlugSocket.html gtk+2.0-2.24.20/docs/reference/gtk/html/PlugSocket.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/PlugSocket.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/PlugSocket.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -33,6 +33,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/Printing.html gtk+2.0-2.24.20/docs/reference/gtk/html/Printing.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/Printing.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/Printing.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -54,6 +54,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/RecentDocuments.html gtk+2.0-2.24.20/docs/reference/gtk/html/RecentDocuments.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/RecentDocuments.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/RecentDocuments.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -45,6 +45,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/ScrollingWidgets.html gtk+2.0-2.24.20/docs/reference/gtk/html/ScrollingWidgets.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/ScrollingWidgets.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/ScrollingWidgets.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -36,6 +36,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/SelectorWidgets.html gtk+2.0-2.24.20/docs/reference/gtk/html/SelectorWidgets.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/SelectorWidgets.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/SelectorWidgets.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -66,6 +66,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/SpecialObjects.html gtk+2.0-2.24.20/docs/reference/gtk/html/SpecialObjects.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/SpecialObjects.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/SpecialObjects.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -42,6 +42,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/TextWidget.html gtk+2.0-2.24.20/docs/reference/gtk/html/TextWidget.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/TextWidget.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/TextWidget.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -224,7 +224,7 @@ pango_font_description_free (font_desc);/* Change default color throughout the widget */ -gdk_color_parse ("green", &color); +gdk_color_parse ("green", &color);gtk_widget_modify_text (view, GTK_STATE_NORMAL, &color);/* Change left margin throughout the widget */ @@ -261,6 +261,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/TextWidgetObjects.html gtk+2.0-2.24.20/docs/reference/gtk/html/TextWidgetObjects.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/TextWidgetObjects.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/TextWidgetObjects.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -48,6 +48,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/TreeWidget.html gtk+2.0-2.24.20/docs/reference/gtk/html/TreeWidget.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/TreeWidget.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/TreeWidget.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -551,6 +551,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/TreeWidgetObjects.html gtk+2.0-2.24.20/docs/reference/gtk/html/TreeWidgetObjects.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/TreeWidgetObjects.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/TreeWidgetObjects.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -99,6 +99,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/WindowWidgets.html gtk+2.0-2.24.20/docs/reference/gtk/html/WindowWidgets.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/WindowWidgets.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/WindowWidgets.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -52,6 +52,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/annotation-glossary.html gtk+2.0-2.24.20/docs/reference/gtk/html/annotation-glossary.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/annotation-glossary.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/annotation-glossary.html 2013-07-04 17:15:08.000000000 +0000 @@ -7,7 +7,7 @@ - + @@ -81,6 +81,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-10.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-10.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-10.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-10.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -2090,6 +2090,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-12.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-12.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-12.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-12.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -785,6 +785,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-14.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-14.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-14.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-14.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -781,6 +781,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-16.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-16.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-16.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-16.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -597,6 +597,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-18.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-18.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-18.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-18.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -513,6 +513,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-2.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-2.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-2.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-2.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -286,6 +286,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-20.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-20.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-20.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-20.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -460,6 +460,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-22.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-22.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-22.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-22.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -176,6 +176,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-24.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-24.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-24.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-24.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -123,6 +123,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-4.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-4.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-4.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-4.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1853,6 +1853,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-6.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-6.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-6.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-6.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1085,6 +1085,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-8.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-8.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-2-8.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-2-8.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -381,6 +381,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-deprecated.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-deprecated.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-deprecated.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-deprecated.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -3396,6 +3396,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-full.html gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-full.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/api-index-full.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/api-index-full.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -22945,6 +22945,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/ch01.html gtk+2.0-2.24.20/docs/reference/gtk/html/ch01.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/ch01.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/ch01.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -241,6 +241,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/ch02.html gtk+2.0-2.24.20/docs/reference/gtk/html/ch02.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/ch02.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/ch02.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -149,6 +149,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/chap-drawing-model.html gtk+2.0-2.24.20/docs/reference/gtk/html/chap-drawing-model.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/chap-drawing-model.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/chap-drawing-model.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -87,13 +87,13 @@

Window and no-window widgets

- A GdkWindow + A GdkWindow represents a window from the underlying windowing system on which GTK+ is running. For example, on X11 it corresponds to a Window; on Win32, it corresponds to a HANDLE. The windowing system generates events for these windows. The GDK interface to the windowing system translates such native events into - GdkEvent + GdkEvent structures and sends them on to the GTK layer. In turn, the GTK layer finds the widget that corresponds to a particular GdkWindow and emits the corresponding event @@ -265,7 +265,7 @@

Notes on drawing no-window widgets

- Remember that the coordinates in a GdkEventExpose are relative to + Remember that the coordinates in a GdkEventExpose are relative to the GdkWindow that received the event, not to the widget whose expose-event handler is being called. If your widget owns the window, then @@ -293,7 +293,7 @@ drawing gets clipped by any child windows that it may intersect. Sometimes you need to draw over your child windows as well; for example, when drawing a drag-handle to resize - something. In this case, turn on the GDK_INCLUDE_INFERIORS + something. In this case, turn on the GDK_INCLUDE_INFERIORS subwindow mode for the GdkGC which you use for drawing.

@@ -491,6 +491,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/checklist-gdkeventexpose-region.html gtk+2.0-2.24.20/docs/reference/gtk/html/checklist-gdkeventexpose-region.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/checklist-gdkeventexpose-region.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/checklist-gdkeventexpose-region.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -52,7 +52,7 @@ Regions have an internal representation that is accessible as a list of rectangles. To turn the GdkEventExpose.region field into such - a list, use gdk_region_get_rectangles(): + a list, use gdk_region_get_rectangles():

 static gboolean
@@ -79,6 +79,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/checklist-modifiers.html gtk+2.0-2.24.20/docs/reference/gtk/html/checklist-modifiers.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/checklist-modifiers.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/checklist-modifiers.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -84,6 +84,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/checklist-named-icons.html gtk+2.0-2.24.20/docs/reference/gtk/html/checklist-named-icons.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/checklist-named-icons.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/checklist-named-icons.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -36,6 +36,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/decorating-the-assistant-pages.html gtk+2.0-2.24.20/docs/reference/gtk/html/decorating-the-assistant-pages.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/decorating-the-assistant-pages.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/decorating-the-assistant-pages.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -45,6 +45,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/glossary.html gtk+2.0-2.24.20/docs/reference/gtk/html/glossary.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/glossary.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/glossary.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -330,6 +330,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-builder-convert.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-builder-convert.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-builder-convert.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-builder-convert.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -84,6 +84,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-building.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-building.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-building.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-building.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -436,6 +436,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-changes-1-2.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-changes-1-2.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-changes-1-2.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-changes-1-2.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -563,6 +563,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-changes-2-0.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-changes-2-0.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-changes-2-0.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-changes-2-0.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -1170,6 +1170,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-compiling.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-compiling.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-compiling.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-compiling.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -106,6 +106,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-directfb.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-directfb.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-directfb.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-directfb.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -55,6 +55,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-ClientSideWindows.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-ClientSideWindows.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-ClientSideWindows.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-ClientSideWindows.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -24,15 +24,15 @@
 Migrating to client-side windows
 

In version 2.18, GDK has been changed to use client-side windows. This - means that there is no longer a 1-1 correspondence between GdkWindows + means that there is no longer a 1-1 correspondence between GdkWindows and windows in the underlying window system. In particular, it is no longer correct to assume that each window has an associated XID. Code that makes this assumption can sometimes be fixed by calling - gdk_window_ensure_native() on the windows in question. - Calling gdk_x11_drawable_get_xid() (or GDK_WINDOW_XID()) from the + gdk_window_ensure_native() on the windows in question. + Calling gdk_x11_drawable_get_xid() (or GDK_WINDOW_XID()) from the X11-specific API on a non-native window will explicitly call - gdk_window_ensure_native(), so old code using this will continue to - work. A small gotcha is that the GDK_WINDOW_XID() call is no longer a + gdk_window_ensure_native(), so old code using this will continue to + work. A small gotcha is that the GDK_WINDOW_XID() call is no longer a trivial accessor for the XID of the window, and thus must not be called from another thread without taking locking precautions.

@@ -48,7 +48,7 @@ using XRestackWindows(). Fixing this properly requires to fix the code to use GDK functions to achieve whatever it is trying to achieve. To make this easier in the case of stacking order changes, we've added - a gdk_window_restack() function. + a gdk_window_restack() function.

One change that can cause problems for some applications is that GDK @@ -60,26 +60,26 @@ Problems can also occur when using cairo for drawing. One thing that can go wrong is clip handling. If you ever need to reset the clip region on a cairo_t (i.e. use cairo_reset_clip()), you have to to use - gdk_cairo_reset_clip() instead. The reason for this is that the cairo_reset_clip() call will remove the initial clip region that limits your drawing to + gdk_cairo_reset_clip() instead. The reason for this is that the cairo_reset_clip() call will remove the initial clip region that limits your drawing to the client-side window at hand, so you will end up drawing over stuff - outside the window. You also need to use gdk_cairo_reset_clip() if you + outside the window. You also need to use gdk_cairo_reset_clip() if you use a cairo_t that was not allocated in a double-buffered expose handler and keep it in use after window hierarchy changes (resizing, moving, stacking order changes). The easiest fix for this kind of problem is to simply create a new cairo context for each expose event.

- Due to a weird API in XClearArea the gdk_window_clear_area() call handled + Due to a weird API in XClearArea the gdk_window_clear_area() call handled a specified width or height of zero to mean "to end of window" for non-double-buffered drawing. This has been changed to be consistent with the docs and what happens in the double-buffered case. All code in GTK+ that relied on this has been fixed, but it is possible (although unlikely) that third party applications rely on this. If you need to do this, just - implement it yourself using gdk_drawable_get_size(). + implement it yourself using gdk_drawable_get_size().

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkAboutDialog.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkAboutDialog.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkAboutDialog.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkAboutDialog.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -155,6 +155,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkAction.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkAction.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkAction.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkAction.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -86,6 +86,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkAssistant.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkAssistant.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkAssistant.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkAssistant.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -97,6 +97,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkBuilder.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkBuilder.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkBuilder.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkBuilder.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -113,6 +113,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkColorButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkColorButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkColorButton.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkColorButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -102,6 +102,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkComboBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkComboBox.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkComboBox.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkComboBox.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -251,6 +251,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkFileChooser.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkFileChooser.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkFileChooser.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkFileChooser.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -75,6 +75,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkIconView.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkIconView.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkIconView.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkIconView.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -259,6 +259,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkLinkButton.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkLinkButton.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkLinkButton.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkLinkButton.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -150,6 +150,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkRecentChooser.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkRecentChooser.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-GtkRecentChooser.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-GtkRecentChooser.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -305,6 +305,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-checklist.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-checklist.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-checklist.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-checklist.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -158,6 +158,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-entry-icons.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-entry-icons.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-entry-icons.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-entry-icons.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -132,7 +132,7 @@ if (position == SEXY_ICON_ENTRY_PRIMARY) gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, - button, GDK_CURRENT_TIME); + button, GDK_CURRENT_TIME); }
@@ -288,6 +288,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-label-links.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-label-links.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-label-links.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-label-links.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -40,6 +40,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-tooltips.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-tooltips.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-migrating-tooltips.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-migrating-tooltips.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -119,6 +119,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-osx.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-osx.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-osx.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-osx.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -48,6 +48,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-query-immodules-2.0.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-query-immodules-2.0.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-query-immodules-2.0.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-query-immodules-2.0.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -30,13 +30,14 @@

Returns :

a GdkScreen. [transfer none] +a GdkScreen. [transfer none]

event :

a GdkEventKey +a GdkEventKey

event :

a GdkEventKey +a GdkEventKey

Synopsis

-

gtk-query-immodules-2.0 [module...]

+

gtk-query-immodules-2.0 [--update-cache] [module...]

Description

-gtk-query-immodules-2.0 collects information about loadable -input method modules for GTK+ and writes it to stdout. +gtk-query-immodules-2.0 collects information about loadable +input method modules for GTK+ and writes it to the default cache file +location, or to stdout.

If called without arguments, it looks for modules in the GTK+ input method @@ -46,16 +47,36 @@ If called with arguments, it looks for the specified modules. The arguments may be absolute or relative paths.

+

+Normally, the output of gtk-query-immodules-2.0 is written +to libdir/gtk-2.0/2.10.0/immodules.cache, where GTK+ looks for it by default. If it is written to some other +location, the environment variable GTK_IM_MODULE_FILE +can be set to point GTK+ at the file. +

+
+
+

Options

+
++++ + + + + +

--update-cache

Write the output to the default cache location instead of + stdout

-

Environment

+

Environment

The environment variable GTK_PATH can be used to prepend directories to the input method module path.

-

Bugs

+

Bugs

None known yet.

@@ -63,6 +84,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-question-index.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-question-index.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-question-index.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-question-index.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -546,8 +546,8 @@
1
 2
-
gdk_window_set_events (gdk_window, 
-                       GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
+
gdk_window_set_events (gdk_window, 
+                       GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
@@ -562,8 +562,8 @@
1
 2
-
gdk_window_set_events (gdk_window, 
-                       (GdkEventMask) GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
+
gdk_window_set_events (gdk_window, 
+                       (GdkEventMask) GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
@@ -627,7 +627,7 @@

-To draw a piece of text, use a Pango layout and gdk_draw_layout(), +To draw a piece of text, use a Pango layout and gdk_draw_layout(), using code like the following:

@@ -643,7 +643,7 @@
layout = gtk_widget_create_pango_layout (widget, text);
 fontdesc = pango_font_description_from_string ("Luxi Mono 12");
 pango_layout_set_font_description (layout, fontdesc); 
-gdk_draw_layout (..., layout);
+gdk_draw_layout (..., layout);
 pango_font_description_free (fontdesc);
 g_object_unref (layout);
@@ -652,7 +652,7 @@

-Do not use the deprecated GdkFont and gdk_draw_text(). +Do not use the deprecated GdkFont and gdk_draw_text().

See also the "Text Handling in GTK 2" section of @@ -698,7 +698,7 @@

-Do not use the deprecated function gdk_text_width(). +Do not use the deprecated function gdk_text_width().

See also the "Text Handling in GTK 2" section of @@ -758,8 +758,8 @@

To make a window transparent, it needs to use a visual which supports that. This is done by getting the RGBA colormap of the screen with -gdk_screen_get_rgba_colormap() and setting it on the window. Note that -gdk_screen_get_rgba_colormap() will return NULL if transparent windows +gdk_screen_get_rgba_colormap() and setting it on the window. Note that +gdk_screen_get_rgba_colormap() will return NULL if transparent windows are not supported on the screen; also note that this may change from screen to screen, so it needs to be repeated whenever the window is moved to a different screen. @@ -777,9 +777,9 @@ 7

GdkColormap *colormap;
 
-colormap = gdk_screen_get_rgba_colormap (screen);
+colormap = gdk_screen_get_rgba_colormap (screen);
 if (!colormap)
-  colormap = gdk_screen_get_rgb_colormap (screen);
+  colormap = gdk_screen_get_rgb_colormap (screen);
 
 gtk_widget_set_colormap (widget, colormap);
@@ -789,7 +789,7 @@

One possibility to fill the alpha channel on the window is to use -gdk_draw_rgb_32_image(). +gdk_draw_rgb_32_image().

Note that the presence of an RGBA visual is no guarantee that the @@ -1328,7 +1328,7 @@

-Use gdk_cairo_create() to obtain a cairo context for drawing +Use gdk_cairo_create() to obtain a cairo context for drawing on a GDK window or pixmap. See Cairo Interaction for some more useful functions.

@@ -1338,7 +1338,7 @@

6.2.

-I have created a cairo context with gdk_cairo_create(), but when I +I have created a cairo context with gdk_cairo_create(), but when I later use it, my drawing does not show up. Why is that ?

@@ -1422,6 +1422,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-resources.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-resources.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-resources.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-resources.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -141,6 +141,6 @@
+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-running.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-running.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-running.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-running.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -228,11 +228,10 @@

GTK_IM_MODULE_FILE.  Specifies the file listing the IM modules to load. This environment - variable overrides the im_module_file specified in - the RC files, which in turn overrides the default value - sysconfdir/gtk-2.0/gtk.immodules - (sysconfdir is the sysconfdir specified when GTK+ was configured, - usually /usr/local/etc.) + variable overrides the im_module_file specified in + the RC files, which in turn overrides the default value + libdir/gtk-2.0/2.10.0/immodules.cache + (libdir has the same meaning here as explained for GTK_PATH).

GTK2_RC_FILES.  Specifies a list of RC files to parse instead of the default ones; @@ -347,6 +346,6 @@

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-update-icon-cache.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-update-icon-cache.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-update-icon-cache.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-update-icon-cache.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -104,6 +104,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-windows.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-windows.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-windows.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-windows.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -82,6 +82,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-x11.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-x11.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk-x11.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk-x11.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -129,6 +129,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -157,6 +157,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Accelerator-Maps.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Accelerator-Maps.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Accelerator-Maps.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Accelerator-Maps.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -48,16 +48,16 @@ void (*GtkAccelMapForeach) (gpointer data, const gchar *accel_path, guint accel_key, - GdkModifierType accel_mods, + GdkModifierType accel_mods, gboolean changed); void gtk_accel_map_add_entry (const gchar *accel_path, guint accel_key, - GdkModifierType accel_mods); + GdkModifierType accel_mods); gboolean gtk_accel_map_lookup_entry (const gchar *accel_path, GtkAccelKey *key); gboolean gtk_accel_map_change_entry (const gchar *accel_path, guint accel_key, - GdkModifierType accel_mods, + GdkModifierType accel_mods, gboolean replace); #define gtk_accel_map_load #define gtk_accel_map_save @@ -106,7 +106,7 @@
void                (*GtkAccelMapForeach)               (gpointer data,
                                                          const gchar *accel_path,
                                                          guint accel_key,
-                                                         GdkModifierType accel_mods,
+                                                         GdkModifierType accel_mods,
                                                          gboolean changed);

@@ -116,7 +116,7 @@

gtk_accel_map_add_entry ()

void                gtk_accel_map_add_entry             (const gchar *accel_path,
                                                          guint accel_key,
-                                                         GdkModifierType accel_mods);
+ GdkModifierType accel_mods);

Registers a new accelerator with the global accelerator map. This function should only be called once per accel_path @@ -194,7 +194,7 @@

gtk_accel_map_change_entry ()

gboolean            gtk_accel_map_change_entry          (const gchar *accel_path,
                                                          guint accel_key,
-                                                         GdkModifierType accel_mods,
+                                                         GdkModifierType accel_mods,
                                                          gboolean replace);

Changes the accel_key and accel_mods currently associated with accel_path. @@ -520,7 +520,7 @@

void                user_function                      (GtkAccelMap    *object,
                                                         gchar          *accel_path,
                                                         guint           accel_key,
-                                                        GdkModifierType accel_mods,
+                                                        GdkModifierType accel_mods,
                                                         gpointer        user_data)       : Has Details

Notifies of a change in the global accelerator map. @@ -562,6 +562,6 @@

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Bindings.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Bindings.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Bindings.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Bindings.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -47,37 +47,37 @@ #define gtk_binding_entry_add void gtk_binding_entry_add_signall (GtkBindingSet *binding_set, guint keyval, - GdkModifierType modifiers, + GdkModifierType modifiers, const gchar *signal_name, GSList *binding_args); void gtk_binding_entry_clear (GtkBindingSet *binding_set, guint keyval, - GdkModifierType modifiers); + GdkModifierType modifiers); guint gtk_binding_parse_binding (GScanner *scanner); GtkBindingSet * gtk_binding_set_new (const gchar *set_name); GtkBindingSet * gtk_binding_set_by_class (gpointer object_class); GtkBindingSet * gtk_binding_set_find (const gchar *set_name); gboolean gtk_bindings_activate (GtkObject *object, guint keyval, - GdkModifierType modifiers); + GdkModifierType modifiers); gboolean gtk_bindings_activate_event (GtkObject *object, - GdkEventKey *event); + GdkEventKey *event); gboolean gtk_binding_set_activate (GtkBindingSet *binding_set, guint keyval, - GdkModifierType modifiers, + GdkModifierType modifiers, GtkObject *object); void gtk_binding_entry_add_signal (GtkBindingSet *binding_set, guint keyval, - GdkModifierType modifiers, + GdkModifierType modifiers, const gchar *signal_name, guint n_args, ...); void gtk_binding_entry_skip (GtkBindingSet *binding_set, guint keyval, - GdkModifierType modifiers); + GdkModifierType modifiers); void gtk_binding_entry_remove (GtkBindingSet *binding_set, guint keyval, - GdkModifierType modifiers); + GdkModifierType modifiers); void gtk_binding_set_add_path (GtkBindingSet *binding_set, GtkPathType path_type, const gchar *path_pattern, @@ -101,10 +101,10 @@ Pathnames and patterns. Inside the binding definition, key combinations are bound to specific signal emissions on the target widget. Key combinations are strings consisting of -an optional GdkModifierType name and +an optional GdkModifierType name and key names such as those defined in <gdk/gdkkeysyms.h> or returned from -gdk_keyval_name(), they have to be parsable by gtk_accelerator_parse(). +gdk_keyval_name(), they have to be parsable by gtk_accelerator_parse(). Specifications of signal emissions consist of a string identifying the signal name, and a list of signal specific arguments in parenthesis.

@@ -308,7 +308,7 @@ key value to match -

GdkModifierType modifiers;

+

GdkModifierType modifiers;

key modifier to match @@ -446,7 +446,7 @@

gtk_binding_entry_add_signall ()

void                gtk_binding_entry_add_signall       (GtkBindingSet *binding_set,
                                                          guint keyval,
-                                                         GdkModifierType modifiers,
+                                                         GdkModifierType modifiers,
                                                          const gchar *signal_name,
                                                          GSList *binding_args);

@@ -488,7 +488,7 @@

gtk_binding_entry_clear ()

void                gtk_binding_entry_clear             (GtkBindingSet *binding_set,
                                                          guint keyval,
-                                                         GdkModifierType modifiers);
+ GdkModifierType modifiers);

Warning

gtk_binding_entry_clear has been deprecated since version 2.12 and should not be used in newly-written code. Use gtk_binding_entry_remove() instead.

@@ -630,7 +630,7 @@

gtk_bindings_activate ()

gboolean            gtk_bindings_activate               (GtkObject *object,
                                                          guint keyval,
-                                                         GdkModifierType modifiers);
+ GdkModifierType modifiers);

Find a key binding matching keyval and modifiers and activate the binding on object. @@ -665,7 +665,7 @@

gtk_bindings_activate_event ()

gboolean            gtk_bindings_activate_event         (GtkObject *object,
-                                                         GdkEventKey *event);
+ GdkEventKey *event);

Looks up key bindings for object to find one matching event, and if one was found, activate it. @@ -682,7 +682,7 @@

event :

-a GdkEventKey +a GdkEventKey @@ -699,7 +699,7 @@

gtk_binding_set_activate ()

gboolean            gtk_binding_set_activate            (GtkBindingSet *binding_set,
                                                          guint keyval,
-                                                         GdkModifierType modifiers,
+                                                         GdkModifierType modifiers,
                                                          GtkObject *object);

Find a key binding matching keyval and modifiers within @@ -740,7 +740,7 @@

gtk_binding_entry_add_signal ()

void                gtk_binding_entry_add_signal        (GtkBindingSet *binding_set,
                                                          guint keyval,
-                                                         GdkModifierType modifiers,
+                                                         GdkModifierType modifiers,
                                                          const gchar *signal_name,
                                                          guint n_args,
                                                          ...);
@@ -785,7 +785,7 @@

gtk_binding_entry_skip ()

void                gtk_binding_entry_skip              (GtkBindingSet *binding_set,
                                                          guint keyval,
-                                                         GdkModifierType modifiers);
+ GdkModifierType modifiers);

Install a binding on binding_set which causes key lookups to be aborted, to prevent bindings from lower priority sets @@ -818,7 +818,7 @@

gtk_binding_entry_remove ()

void                gtk_binding_entry_remove            (GtkBindingSet *binding_set,
                                                          guint keyval,
-                                                         GdkModifierType modifiers);
+ GdkModifierType modifiers);

Remove a binding previously installed via gtk_binding_entry_add_signal() on binding_set. @@ -909,6 +909,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Clipboards.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Clipboards.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Clipboards.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Clipboards.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -55,11 +55,11 @@ GdkPixbuf *pixbuf, gpointer data); void (*GtkClipboardTargetsReceivedFunc) (GtkClipboard *clipboard, - GdkAtom *atoms, + GdkAtom *atoms, gint n_atoms, gpointer data); void (*GtkClipboardRichTextReceivedFunc) (GtkClipboard *clipboard, - GdkAtom format, + GdkAtom format, const guint8 *text, gsize length, gpointer data); @@ -72,10 +72,10 @@ gpointer user_data_or_owner); void (*GtkClipboardClearFunc) (GtkClipboard *clipboard, gpointer user_data_or_owner); -GtkClipboard * gtk_clipboard_get (GdkAtom selection); -GtkClipboard * gtk_clipboard_get_for_display (GdkDisplay *display, - GdkAtom selection); -GdkDisplay * gtk_clipboard_get_display (GtkClipboard *clipboard); +GtkClipboard * gtk_clipboard_get (GdkAtom selection); +GtkClipboard * gtk_clipboard_get_for_display (GdkDisplay *display, + GdkAtom selection); +GdkDisplay * gtk_clipboard_get_display (GtkClipboard *clipboard); gboolean gtk_clipboard_set_with_data (GtkClipboard *clipboard, const GtkTargetEntry *targets, guint n_targets, @@ -96,7 +96,7 @@ void gtk_clipboard_set_image (GtkClipboard *clipboard, GdkPixbuf *pixbuf); void gtk_clipboard_request_contents (GtkClipboard *clipboard, - GdkAtom target, + GdkAtom target, GtkClipboardReceivedFunc callback, gpointer user_data); void gtk_clipboard_request_text (GtkClipboard *clipboard, @@ -116,12 +116,12 @@ GtkClipboardURIReceivedFunc callback, gpointer user_data); GtkSelectionData * gtk_clipboard_wait_for_contents (GtkClipboard *clipboard, - GdkAtom target); + GdkAtom target); gchar * gtk_clipboard_wait_for_text (GtkClipboard *clipboard); GdkPixbuf * gtk_clipboard_wait_for_image (GtkClipboard *clipboard); guint8 * gtk_clipboard_wait_for_rich_text (GtkClipboard *clipboard, GtkTextBuffer *buffer, - GdkAtom *format, + GdkAtom *format, gsize *length); gchar ** gtk_clipboard_wait_for_uris (GtkClipboard *clipboard); gboolean gtk_clipboard_wait_is_text_available @@ -134,11 +134,11 @@ gboolean gtk_clipboard_wait_is_uris_available (GtkClipboard *clipboard); gboolean gtk_clipboard_wait_for_targets (GtkClipboard *clipboard, - GdkAtom **targets, + GdkAtom **targets, gint *n_targets); gboolean gtk_clipboard_wait_is_target_available (GtkClipboard *clipboard, - GdkAtom target); + GdkAtom target); void gtk_clipboard_set_can_store (GtkClipboard *clipboard, const GtkTargetEntry *targets, gint n_targets); @@ -164,8 +164,8 @@ The GtkClipboard object represents a clipboard of data shared between different processes or between different widgets in the same process. Each clipboard is identified by a name encoded as a - GdkAtom. (Conversion to and from strings can be done with - gdk_atom_intern() and gdk_atom_name().) The default clipboard + GdkAtom. (Conversion to and from strings can be done with + gdk_atom_intern() and gdk_atom_name().) The default clipboard corresponds to the "CLIPBOARD" atom; another commonly used clipboard is the "PRIMARY" clipboard, which, in X, traditionally contains the currently selected text. @@ -336,7 +336,7 @@

GtkClipboardTargetsReceivedFunc ()

void                (*GtkClipboardTargetsReceivedFunc)  (GtkClipboard *clipboard,
-                                                         GdkAtom *atoms,
+                                                         GdkAtom *atoms,
                                                          gint n_atoms,
                                                          gpointer data);

@@ -356,7 +356,7 @@

atoms :

-the supported targets, as array of GdkAtom, or NULL +the supported targets, as array of GdkAtom, or NULL if retrieving the data failed. @@ -375,7 +375,7 @@

GtkClipboardRichTextReceivedFunc ()

void                (*GtkClipboardRichTextReceivedFunc) (GtkClipboard *clipboard,
-                                                         GdkAtom format,
+                                                         GdkAtom format,
                                                          const guint8 *text,
                                                          gsize length,
                                                          gpointer data);
@@ -472,7 +472,7 @@

gtk_clipboard_get ()

-
GtkClipboard *      gtk_clipboard_get                   (GdkAtom selection);
+
GtkClipboard *      gtk_clipboard_get                   (GdkAtom selection);

Returns the clipboard object for the given selection. See gtk_clipboard_get_for_display() for complete details. @@ -485,7 +485,7 @@

selection :

-a GdkAtom which identifies the clipboard to use +a GdkAtom which identifies the clipboard to use

Returns :

@@ -501,27 +501,27 @@

gtk_clipboard_get_for_display ()

-
GtkClipboard *      gtk_clipboard_get_for_display       (GdkDisplay *display,
-                                                         GdkAtom selection);
+
GtkClipboard *      gtk_clipboard_get_for_display       (GdkDisplay *display,
+                                                         GdkAtom selection);

Returns the clipboard object for the given selection. Cut/copy/paste menu items and keyboard shortcuts should use -the default clipboard, returned by passing GDK_SELECTION_CLIPBOARD for selection. -(GDK_NONE is supported as a synonym for GDK_SELECTION_CLIPBOARD +the default clipboard, returned by passing GDK_SELECTION_CLIPBOARD for selection. +(GDK_NONE is supported as a synonym for GDK_SELECTION_CLIPBOARD for backwards compatibility reasons.) The currently-selected object or text should be provided on the clipboard -identified by GDK_SELECTION_PRIMARY. Cut/copy/paste menu items -conceptually copy the contents of the GDK_SELECTION_PRIMARY clipboard +identified by GDK_SELECTION_PRIMARY. Cut/copy/paste menu items +conceptually copy the contents of the GDK_SELECTION_PRIMARY clipboard to the default clipboard, i.e. they copy the selection to what the user sees as the clipboard.

-(Passing GDK_NONE is the same as using gdk_atom_intern +(Passing GDK_NONE is the same as using gdk_atom_intern ("CLIPBOARD", FALSE). See http://www.freedesktop.org/Standards/clipboards-spec for a detailed discussion of the "CLIPBOARD" vs. "PRIMARY" selections under the X window system. On Win32 the -GDK_SELECTION_PRIMARY clipboard is essentially ignored.) +GDK_SELECTION_PRIMARY clipboard is essentially ignored.)

It's possible to have arbitrary named clipboards; if you do invent @@ -543,7 +543,7 @@

selection :

-a GdkAtom which identifies the clipboard +a GdkAtom which identifies the clipboard to use. @@ -563,9 +563,9 @@

gtk_clipboard_get_display ()

-
GdkDisplay *        gtk_clipboard_get_display           (GtkClipboard *clipboard);
+
GdkDisplay *        gtk_clipboard_get_display           (GtkClipboard *clipboard);

-Gets the GdkDisplay associated with clipboard +Gets the GdkDisplay associated with clipboard

@@ -580,7 +580,7 @@ - @@ -829,7 +829,7 @@

gtk_clipboard_request_contents ()

void                gtk_clipboard_request_contents      (GtkClipboard *clipboard,
-                                                         GdkAtom target,
+                                                         GdkAtom target,
                                                          GtkClipboardReceivedFunc callback,
                                                          gpointer user_data);

@@ -1084,7 +1084,7 @@

gtk_clipboard_wait_for_contents ()

GtkSelectionData *  gtk_clipboard_wait_for_contents     (GtkClipboard *clipboard,
-                                                         GdkAtom target);
+ GdkAtom target);

Requests the contents of the clipboard using the given target. This function waits for the data to be received using the main @@ -1189,7 +1189,7 @@

gtk_clipboard_wait_for_rich_text ()

guint8 *            gtk_clipboard_wait_for_rich_text    (GtkClipboard *clipboard,
                                                          GtkTextBuffer *buffer,
-                                                         GdkAtom *format,
+                                                         GdkAtom *format,
                                                          gsize *length);

Requests the contents of the clipboard as rich text. This function @@ -1427,7 +1427,7 @@

gtk_clipboard_wait_for_targets ()

gboolean            gtk_clipboard_wait_for_targets      (GtkClipboard *clipboard,
-                                                         GdkAtom **targets,
+                                                         GdkAtom **targets,
                                                          gint *n_targets);

Returns a list of targets that are present on the clipboard, or NULL @@ -1472,7 +1472,7 @@

gtk_clipboard_wait_is_target_available ()

gboolean            gtk_clipboard_wait_is_target_available
                                                         (GtkClipboard *clipboard,
-                                                         GdkAtom target);
+ GdkAtom target);

Checks if a clipboard supports pasting data of a given type. This function can be used to determine if a "Paste" menu item should be @@ -1495,7 +1495,7 @@

- + @@ -1519,7 +1519,7 @@

This value is reset when the clipboard owner changes. Where the clipboard data is stored is platform dependent, -see gdk_display_store_clipboard() for more information. +see gdk_display_store_clipboard() for more information.

Returns :

the GdkDisplay associated with clipboard. [transfer none] +the GdkDisplay associated with clipboard. [transfer none]

target :

A GdkAtom indicating which target to look for.A GdkAtom indicating which target to look for.

Returns :

@@ -1575,7 +1575,7 @@

The "owner-change" signal

void                user_function                      (GtkClipboard *clipboard,
-                                                        GdkEvent     *event,
+                                                        GdkEvent     *event,
                                                         gpointer      user_data)      : Run First

The ::owner-change signal is emitted when GTK+ receives an @@ -1629,6 +1629,6 @@

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Drag-and-Drop.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Drag-and-Drop.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Drag-and-Drop.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Drag-and-Drop.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -47,14 +47,14 @@ GtkDestDefaults flags, const GtkTargetEntry *targets, gint n_targets, - GdkDragAction actions); + GdkDragAction actions); voidgtk_drag_dest_set_proxy (GtkWidget *widget, - GdkWindow *proxy_window, - GdkDragProtocol protocol, + GdkWindow *proxy_window, + GdkDragProtocol protocol, gboolean use_coordinates); voidgtk_drag_dest_unset (GtkWidget *widget); -GdkAtomgtk_drag_dest_find_target (GtkWidget *widget, - GdkDragContext *context, +GdkAtomgtk_drag_dest_find_target (GtkWidget *widget, + GdkDragContext *context, GtkTargetList *target_list); GtkTargetList * gtk_drag_dest_get_target_list (GtkWidget *widget); voidgtk_drag_dest_set_target_list (GtkWidget *widget, @@ -65,49 +65,49 @@ voidgtk_drag_dest_set_track_motion (GtkWidget *widget, gboolean track_motion); gbooleangtk_drag_dest_get_track_motion (GtkWidget *widget); -voidgtk_drag_finish (GdkDragContext *context, +voidgtk_drag_finish (GdkDragContext *context, gboolean success, gboolean del, guint32 time_); voidgtk_drag_get_data (GtkWidget *widget, - GdkDragContext *context, - GdkAtom target, + GdkDragContext *context, + GdkAtom target, guint32 time_); -GtkWidget * gtk_drag_get_source_widget (GdkDragContext *context); +GtkWidget * gtk_drag_get_source_widget (GdkDragContext *context); voidgtk_drag_highlight (GtkWidget *widget); voidgtk_drag_unhighlight (GtkWidget *widget); -GdkDragContext * gtk_drag_begin (GtkWidget *widget, +GdkDragContext * gtk_drag_begin (GtkWidget *widget, GtkTargetList *targets, - GdkDragAction actions, + GdkDragAction actions, gint button, - GdkEvent *event); -voidgtk_drag_set_icon_widget (GdkDragContext *context, + GdkEvent *event); +voidgtk_drag_set_icon_widget (GdkDragContext *context, GtkWidget *widget, gint hot_x, gint hot_y); -voidgtk_drag_set_icon_pixmap (GdkDragContext *context, - GdkColormap *colormap, - GdkPixmap *pixmap, - GdkBitmap *mask, +voidgtk_drag_set_icon_pixmap (GdkDragContext *context, + GdkColormap *colormap, + GdkPixmap *pixmap, + GdkBitmap *mask, gint hot_x, gint hot_y); -voidgtk_drag_set_icon_pixbuf (GdkDragContext *context, +voidgtk_drag_set_icon_pixbuf (GdkDragContext *context, GdkPixbuf *pixbuf, gint hot_x, gint hot_y); -voidgtk_drag_set_icon_stock (GdkDragContext *context, +voidgtk_drag_set_icon_stock (GdkDragContext *context, const gchar *stock_id, gint hot_x, gint hot_y); -voidgtk_drag_set_icon_name (GdkDragContext *context, +voidgtk_drag_set_icon_name (GdkDragContext *context, const gchar *icon_name, gint hot_x, gint hot_y); -voidgtk_drag_set_icon_default (GdkDragContext *context); -voidgtk_drag_set_default_icon (GdkColormap *colormap, - GdkPixmap *pixmap, - GdkBitmap *mask, +voidgtk_drag_set_icon_default (GdkDragContext *context); +voidgtk_drag_set_default_icon (GdkColormap *colormap, + GdkPixmap *pixmap, + GdkBitmap *mask, gint hot_x, gint hot_y); gbooleangtk_drag_check_threshold (GtkWidget *widget, @@ -116,14 +116,14 @@ gint current_x, gint current_y); voidgtk_drag_source_set (GtkWidget *widget, - GdkModifierType start_button_mask, + GdkModifierType start_button_mask, const GtkTargetEntry *targets, gint n_targets, - GdkDragAction actions); + GdkDragAction actions); voidgtk_drag_source_set_icon (GtkWidget *widget, - GdkColormap *colormap, - GdkPixmap *pixmap, - GdkBitmap *mask); + GdkColormap *colormap, + GdkPixmap *pixmap, + GdkBitmap *mask); voidgtk_drag_source_set_icon_pixbuf (GtkWidget *widget, GdkPixbuf *pixbuf); voidgtk_drag_source_set_icon_stock (GtkWidget *widget, @@ -182,7 +182,7 @@ If set for a widget, GTK+, during a drag over this widget will check if the drag matches this widget's list of possible targets and actions. - GTK+ will then call gdk_drag_status() as appropriate. + GTK+ will then call gdk_drag_status() as appropriate. @@ -275,7 +275,7 @@ GtkDestDefaults flags, const GtkTargetEntry *targets, gint n_targets, - GdkDragAction actions); + GdkDragAction actions);

Sets a widget as a potential drop destination, and adds default behaviors.

@@ -292,7 +292,7 @@ as described in the documentation for "drag-motion". The default behaviors described by flags make some assumptions, that can conflict with your own signal handlers. For instance GTK_DEST_DEFAULT_DROP causes -invokations of gdk_drag_status() in the context of "drag-motion", +invokations of gdk_drag_status() in the context of "drag-motion", and invokations of gtk_drag_finish() in "drag-data-received". Especially the later is dramatic, when your own "drag-motion" handler calls gtk_drag_get_data() to inspect the dragged data. @@ -331,12 +331,12 @@ { GdkModifierType mask; - gdk_window_get_pointer (gtk_widget_get_window (widget), + gdk_window_get_pointer (gtk_widget_get_window (widget), NULL, NULL, &mask); - if (mask & GDK_CONTROL_MASK) - gdk_drag_status (context, GDK_ACTION_COPY, time); + if (mask & GDK_CONTROL_MASK) + gdk_drag_status (context, GDK_ACTION_COPY, time); else - gdk_drag_status (context, GDK_ACTION_MOVE, time); + gdk_drag_status (context, GDK_ACTION_MOVE, time);} @@ -384,8 +384,8 @@

gtk_drag_dest_set_proxy ()

void                gtk_drag_dest_set_proxy             (GtkWidget *widget,
-                                                         GdkWindow *proxy_window,
-                                                         GdkDragProtocol protocol,
+                                                         GdkWindow *proxy_window,
+                                                         GdkDragProtocol protocol,
                                                          gboolean use_coordinates);

Sets this widget as a proxy for drops to another window. @@ -408,7 +408,7 @@

+(You can use gdk_drag_get_protocol() to determine this) @@ -443,8 +443,8 @@

gtk_drag_dest_find_target ()

-
GdkAtom             gtk_drag_dest_find_target           (GtkWidget *widget,
-                                                         GdkDragContext *context,
+
GdkAtom             gtk_drag_dest_find_target           (GtkWidget *widget,
+                                                         GdkDragContext *context,
                                                          GtkTargetList *target_list);

protocol :

the drag protocol which the proxy_window accepts -(You can use gdk_drag_get_protocol() to determine this)

use_coordinates :

@@ -466,7 +466,7 @@ gtk_drag_dest_get_target_list (widget). Looks for a match between the supported targets of context and the dest_target_list, returning the first matching target, otherwise -returning GDK_NONE. dest_target_list should usually be the return +returning GDK_NONE. dest_target_list should usually be the return value from gtk_drag_dest_get_target_list(), but some widgets may have different valid targets for different parts of the widget; in that case, they will have to implement a drag_motion handler that @@ -476,7 +476,7 @@ @@ -668,7 +668,7 @@

gtk_drag_finish ()

-
void                gtk_drag_finish                     (GdkDragContext *context,
+
void                gtk_drag_finish                     (GdkDragContext *context,
                                                          gboolean success,
                                                          gboolean del,
                                                          guint32 time_);
@@ -706,8 +706,8 @@

gtk_drag_get_data ()

void                gtk_drag_get_data                   (GtkWidget *widget,
-                                                         GdkDragContext *context,
-                                                         GdkAtom target,
+                                                         GdkDragContext *context,
+                                                         GdkAtom target,
                                                          guint32 time_);

Gets the data associated with a drag. When the data @@ -750,7 +750,7 @@


gtk_drag_get_source_widget ()

-
GtkWidget *         gtk_drag_get_source_widget          (GdkDragContext *context);
+
GtkWidget *         gtk_drag_get_source_widget          (GdkDragContext *context);

Determines the source widget for a drag.

@@ -820,11 +820,11 @@

gtk_drag_begin ()

-
GdkDragContext *    gtk_drag_begin                      (GtkWidget *widget,
+
GdkDragContext *    gtk_drag_begin                      (GtkWidget *widget,
                                                          GtkTargetList *targets,
-                                                         GdkDragAction actions,
+                                                         GdkDragAction actions,
                                                          gint button,
-                                                         GdkEvent *event);
+ GdkEvent *event);

Initiates a drag on the source side. The function only needs to be used when the application is @@ -855,8 +855,8 @@

3. During a timeout handler, if you want to start a drag after the mouse button is held down for some time. Try to save the last event that you got -from the mouse, using gdk_event_copy(), and pass it to this function -(remember to free the event with gdk_event_free() when you are done). If you +from the mouse, using gdk_event_copy(), and pass it to this function +(remember to free the event with gdk_event_free() when you are done). If you can really not pass a real event, pass NULL instead.

Returns :

first target that the source offers -and the dest can accept, or GDK_NONE. [transfer none] +and the dest can accept, or GDK_NONE. [transfer none]
@@ -897,7 +897,7 @@

gtk_drag_set_icon_widget ()

-
void                gtk_drag_set_icon_widget            (GdkDragContext *context,
+
void                gtk_drag_set_icon_widget            (GdkDragContext *context,
                                                          GtkWidget *widget,
                                                          gint hot_x,
                                                          gint hot_y);
@@ -936,10 +936,10 @@

gtk_drag_set_icon_pixmap ()

-
void                gtk_drag_set_icon_pixmap            (GdkDragContext *context,
-                                                         GdkColormap *colormap,
-                                                         GdkPixmap *pixmap,
-                                                         GdkBitmap *mask,
+
void                gtk_drag_set_icon_pixmap            (GdkDragContext *context,
+                                                         GdkColormap *colormap,
+                                                         GdkPixmap *pixmap,
+                                                         GdkBitmap *mask,
                                                          gint hot_x,
                                                          gint hot_y);

@@ -986,7 +986,7 @@


gtk_drag_set_icon_pixbuf ()

-
void                gtk_drag_set_icon_pixbuf            (GdkDragContext *context,
+
void                gtk_drag_set_icon_pixbuf            (GdkDragContext *context,
                                                          GdkPixbuf *pixbuf,
                                                          gint hot_x,
                                                          gint hot_y);
@@ -1022,7 +1022,7 @@

gtk_drag_set_icon_stock ()

-
void                gtk_drag_set_icon_stock             (GdkDragContext *context,
+
void                gtk_drag_set_icon_stock             (GdkDragContext *context,
                                                          const gchar *stock_id,
                                                          gint hot_x,
                                                          gint hot_y);
@@ -1058,7 +1058,7 @@

gtk_drag_set_icon_name ()

-
void                gtk_drag_set_icon_name              (GdkDragContext *context,
+
void                gtk_drag_set_icon_name              (GdkDragContext *context,
                                                          const gchar *icon_name,
                                                          gint hot_x,
                                                          gint hot_y);
@@ -1099,7 +1099,7 @@

gtk_drag_set_icon_default ()

-
void                gtk_drag_set_icon_default           (GdkDragContext *context);
+
void                gtk_drag_set_icon_default           (GdkDragContext *context);

Sets the icon for a particular drag to the default icon. @@ -1119,9 +1119,9 @@


gtk_drag_set_default_icon ()

-
void                gtk_drag_set_default_icon           (GdkColormap *colormap,
-                                                         GdkPixmap *pixmap,
-                                                         GdkBitmap *mask,
+
void                gtk_drag_set_default_icon           (GdkColormap *colormap,
+                                                         GdkPixmap *pixmap,
+                                                         GdkBitmap *mask,
                                                          gint hot_x,
                                                          gint hot_y);
@@ -1215,10 +1215,10 @@

gtk_drag_source_set ()

void                gtk_drag_source_set                 (GtkWidget *widget,
-                                                         GdkModifierType start_button_mask,
+                                                         GdkModifierType start_button_mask,
                                                          const GtkTargetEntry *targets,
                                                          gint n_targets,
-                                                         GdkDragAction actions);
+ GdkDragAction actions);

Sets up a widget so that GTK+ will start a drag operation when the user clicks and drags on the widget. The widget must have a window. @@ -1260,9 +1260,9 @@

gtk_drag_source_set_icon ()

void                gtk_drag_source_set_icon            (GtkWidget *widget,
-                                                         GdkColormap *colormap,
-                                                         GdkPixmap *pixmap,
-                                                         GdkBitmap *mask);
+ GdkColormap *colormap, + GdkPixmap *pixmap, + GdkBitmap *mask);

Sets the icon that will be used for drags from a particular widget from a pixmap/mask. GTK+ retains references for the arguments, and @@ -1528,6 +1528,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Feature-Test-Macros.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Feature-Test-Macros.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Feature-Test-Macros.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Feature-Test-Macros.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -223,7 +223,7 @@

GTK_MICRO_VERSION

-
#define GTK_MICRO_VERSION				(19)
+
#define GTK_MICRO_VERSION				(20)
 

Like gtk_micro_version, but from the headers used at @@ -234,7 +234,7 @@


GTK_BINARY_AGE

-
#define GTK_BINARY_AGE					(2419)
+
#define GTK_BINARY_AGE					(2420)
 

Like gtk_binary_age, but from the headers used at @@ -245,7 +245,7 @@


GTK_INTERFACE_AGE

-
#define GTK_INTERFACE_AGE				(19)
+
#define GTK_INTERFACE_AGE				(20)
 

Like gtk_interface_age, but from the headers used at @@ -286,6 +286,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Filesystem-utilities.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Filesystem-utilities.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Filesystem-utilities.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Filesystem-utilities.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -51,9 +51,9 @@ GtkWindow *parent); GtkWindow * gtk_mount_operation_get_parent (GtkMountOperation *op); void gtk_mount_operation_set_screen (GtkMountOperation *op, - GdkScreen *screen); -GdkScreen * gtk_mount_operation_get_screen (GtkMountOperation *op); -gboolean gtk_show_uri (GdkScreen *screen, + GdkScreen *screen); +GdkScreen * gtk_mount_operation_get_screen (GtkMountOperation *op); +gboolean gtk_show_uri (GdkScreen *screen, const gchar *uri, guint32 timestamp, GError **error); @@ -72,7 +72,7 @@
   "is-showing"               gboolean              : Read
   "parent"                   GtkWindow*            : Read / Write
-  "screen"                   GdkScreen*            : Read / Write
+  "screen"                   GdkScreen*            : Read / Write
 
@@ -97,7 +97,7 @@

Another object that is worth mentioning in this context is -GdkAppLaunchContext, which provides visual feedback when lauching +GdkAppLaunchContext, which provides visual feedback when lauching applications.

@@ -225,7 +225,7 @@

gtk_mount_operation_set_screen ()

void                gtk_mount_operation_set_screen      (GtkMountOperation *op,
-                                                         GdkScreen *screen);
+ GdkScreen *screen);

Sets the screen to show windows of the GtkMountOperation on.

@@ -242,7 +242,7 @@
- @@ -252,7 +252,7 @@

gtk_mount_operation_get_screen ()

-
GdkScreen *         gtk_mount_operation_get_screen      (GtkMountOperation *op);
+
GdkScreen *         gtk_mount_operation_get_screen      (GtkMountOperation *op);

Gets the screen on which windows of the GtkMountOperation will be shown. @@ -280,7 +280,7 @@


gtk_show_uri ()

-
gboolean            gtk_show_uri                        (GdkScreen *screen,
+
gboolean            gtk_show_uri                        (GdkScreen *screen,
                                                          const gchar *uri,
                                                          guint32 timestamp,
                                                          GError **error);
@@ -299,7 +299,7 @@

Ideally the timestamp is taken from the event triggering the gtk_show_uri() call. If timestamp is not known you can take -GDK_CURRENT_TIME. +GDK_CURRENT_TIME.

This function can be used as a replacement for gnome_vfs_url_show() @@ -355,13 +355,13 @@


The "screen" property

-
  "screen"                   GdkScreen*            : Read / Write
+
  "screen"                   GdkScreen*            : Read / Write

The screen where this window will be displayed.

+ Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-General.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-General.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-General.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-General.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -63,10 +63,10 @@ voidgtk_main_quit (void); gbooleangtk_main_iteration (void); gbooleangtk_main_iteration_do (gboolean blocking); -voidgtk_main_do_event (GdkEvent *event); +voidgtk_main_do_event (GdkEvent *event); void (*GtkModuleInitFunc) (gint *argc, gchar ***argv); -void (*GtkModuleDisplayInitFunc) (GdkDisplay *display); +void (*GtkModuleDisplayInitFunc) (GdkDisplay *display); gbooleangtk_true (void); gbooleangtk_false (void); @@ -114,8 +114,8 @@ voidgtk_idle_remove_by_data (gpointer data); guintgtk_input_add_full (gint source, - GdkInputCondition condition, - GdkInputFunction function, + GdkInputCondition condition, + GdkInputFunction function, GtkCallbackMarshal marshal, gpointer data, GDestroyNotify destroy); @@ -131,16 +131,16 @@ guintgtk_key_snooper_install (GtkKeySnoopFunc snooper, gpointer func_data); gint (*GtkKeySnoopFunc) (GtkWidget *grab_widget, - GdkEventKey *event, + GdkEventKey *event, gpointer func_data); voidgtk_key_snooper_remove (guint snooper_handler_id); -GdkEvent * gtk_get_current_event (void); +GdkEvent * gtk_get_current_event (void); guint32gtk_get_current_event_time (void); -gbooleangtk_get_current_event_state (GdkModifierType *state); -GtkWidget * gtk_get_event_widget (GdkEvent *event); +gbooleangtk_get_current_event_state (GdkModifierType *state); +GtkWidget * gtk_get_event_widget (GdkEvent *event); voidgtk_propagate_event (GtkWidget *widget, - GdkEvent *event); + GdkEvent *event);
@@ -322,7 +322,7 @@

Parses command line arguments, and initializes global attributes of GTK+, but does not actually open a connection -to a display. (See gdk_display_open(), gdk_get_display_arg_name()) +to a display. (See gdk_display_open(), gdk_get_display_arg_name())

Any arguments used by GTK+ or GDK are removed from the array and @@ -731,7 +731,7 @@


gtk_main_do_event ()

-
void                gtk_main_do_event                   (GdkEvent *event);
+
void                gtk_main_do_event                   (GdkEvent *event);

Processes a single GDK event. This is public only to allow filtering of events between GDK and GTK+. You will not usually need to call this function directly. @@ -832,7 +832,7 @@


GtkModuleDisplayInitFunc ()

-
void                (*GtkModuleDisplayInitFunc)         (GdkDisplay *display);
+
void                (*GtkModuleDisplayInitFunc)         (GdkDisplay *display);

Since 2.2

@@ -1493,8 +1493,8 @@

gtk_input_add_full ()

guint               gtk_input_add_full                  (gint source,
-                                                         GdkInputCondition condition,
-                                                         GdkInputFunction function,
+                                                         GdkInputCondition condition,
+                                                         GdkInputFunction function,
                                                          GtkCallbackMarshal marshal,
                                                          gpointer data,
                                                          GDestroyNotify destroy);
@@ -1573,7 +1573,7 @@

Warning

-

GTK_PRIORITY_REDRAW has been deprecated since version 2.4 and should not be used in newly-written code. This macro is deprecated. You should use GDK_PRIORITY_REDRAW instead.

+

GTK_PRIORITY_REDRAW has been deprecated since version 2.4 and should not be used in newly-written code. This macro is deprecated. You should use GDK_PRIORITY_REDRAW instead.

Use this priority for redrawing related stuff. It is used internally by @@ -1681,7 +1681,7 @@

GtkKeySnoopFunc ()

gint                (*GtkKeySnoopFunc)                  (GtkWidget *grab_widget,
-                                                         GdkEventKey *event,
+                                                         GdkEventKey *event,
                                                          gpointer func_data);

Key snooper functions are called before normal event delivery. @@ -1734,12 +1734,12 @@


gtk_get_current_event ()

-
GdkEvent *          gtk_get_current_event               (void);
+
GdkEvent *          gtk_get_current_event               (void);

Obtains a copy of the event currently being processed by GTK+. For example, if you get a "clicked" signal from GtkButton, the current -event will be the GdkEventButton that triggered the "clicked" -signal. The returned event must be freed with gdk_event_free(). +event will be the GdkEventButton that triggered the "clicked" +signal. The returned event must be freed with gdk_event_free(). If there is no current event, the function returns NULL.

screen :

a GdkScreen +a GdkScreen
@@ -1761,7 +1761,7 @@
guint32             gtk_get_current_event_time          (void);

If there is a current event and it has a timestamp, return that -timestamp, otherwise return GDK_CURRENT_TIME. +timestamp, otherwise return GDK_CURRENT_TIME.

@@ -1770,14 +1770,14 @@ - +

Returns :

the timestamp from the current event, or GDK_CURRENT_TIME.the timestamp from the current event, or GDK_CURRENT_TIME.

gtk_get_current_event_state ()

-
gboolean            gtk_get_current_event_state         (GdkModifierType *state);
+
gboolean            gtk_get_current_event_state         (GdkModifierType *state);

If there is a current event and it has a state field, place that state field in state and return TRUE, otherwise return @@ -1805,7 +1805,7 @@


gtk_get_event_widget ()

-
GtkWidget *         gtk_get_event_widget                (GdkEvent *event);
+
GtkWidget *         gtk_get_event_widget                (GdkEvent *event);

If event is NULL or the event was not associated with any widget, returns NULL, otherwise returns the widget that received the event @@ -1819,7 +1819,7 @@

event :

-a GdkEvent +a GdkEvent @@ -1835,7 +1835,7 @@

gtk_propagate_event ()

void                gtk_propagate_event                 (GtkWidget *widget,
-                                                         GdkEvent *event);
+ GdkEvent *event);

Sends an event to a widget, propagating the event to parent widgets if the event remains unhandled. Events received by GTK+ from GDK @@ -1852,7 +1852,7 @@ All that said, you most likely don't want to use any of these functions; synthesizing events is rarely needed. Consider asking on the mailing list for better ways to achieve your goals. For -example, use gdk_window_invalidate_rect() or +example, use gdk_window_invalidate_rect() or gtk_widget_queue_draw() instead of making up expose events.

@@ -1884,6 +1884,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Graphics-Contexts.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Graphics-Contexts.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Graphics-Contexts.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Graphics-Contexts.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -40,36 +40,36 @@
 #include <gtk/gtk.h>
 
-GdkGC *             gtk_gc_get                          (gint depth,
-                                                         GdkColormap *colormap,
-                                                         GdkGCValues *values,
-                                                         GdkGCValuesMask values_mask);
-void                gtk_gc_release                      (GdkGC *gc);
+GdkGC *             gtk_gc_get                          (gint depth,
+                                                         GdkColormap *colormap,
+                                                         GdkGCValues *values,
+                                                         GdkGCValuesMask values_mask);
+void                gtk_gc_release                      (GdkGC *gc);
 

Description

-These functions provide access to a shared pool of GdkGC objects. -When a new GdkGC is needed, gtk_gc_get() is called with the required depth, -colormap and GdkGCValues. If a GdkGC with the required properties already -exists then that is returned. If not, a new GdkGC is created. -When the GdkGC is no longer needed, gtk_gc_release() should be called. +These functions provide access to a shared pool of GdkGC objects. +When a new GdkGC is needed, gtk_gc_get() is called with the required depth, +colormap and GdkGCValues. If a GdkGC with the required properties already +exists then that is returned. If not, a new GdkGC is created. +When the GdkGC is no longer needed, gtk_gc_release() should be called.

Details

gtk_gc_get ()

-
GdkGC *             gtk_gc_get                          (gint depth,
-                                                         GdkColormap *colormap,
-                                                         GdkGCValues *values,
-                                                         GdkGCValuesMask values_mask);
+
GdkGC *             gtk_gc_get                          (gint depth,
+                                                         GdkColormap *colormap,
+                                                         GdkGCValues *values,
+                                                         GdkGCValuesMask values_mask);

-Gets a GdkGC with the given depth, colormap and GdkGCValues. -If a GdkGC with the given properties already exists then it is returned, -otherwise a new GdkGC is created. -The returned GdkGC should be released with gtk_gc_release() when it is no +Gets a GdkGC with the given depth, colormap and GdkGCValues. +If a GdkGC with the given properties already exists then it is returned, +otherwise a new GdkGC is created. +The returned GdkGC should be released with gtk_gc_release() when it is no longer needed.

@@ -80,15 +80,15 @@ - + - + - + @@ -97,7 +97,7 @@ - +

depth :

the depth of the GdkGC to create.the depth of the GdkGC to create.

colormap :

the GdkColormap (FIXME: I don't know why this is needed).the GdkColormap (FIXME: I don't know why this is needed).

values :

a GdkGCValues struct containing settings for the GdkGC.a GdkGCValues struct containing settings for the GdkGC.

values_mask :

Returns :

a GdkGC.a GdkGC.
@@ -105,9 +105,9 @@

gtk_gc_release ()

-
void                gtk_gc_release                      (GdkGC *gc);
+
void                gtk_gc_release                      (GdkGC *gc);

-Releases a GdkGC allocated using gtk_gc_get(). +Releases a GdkGC allocated using gtk_gc_get().

@@ -116,7 +116,7 @@ - +

gc :

a GdkGC.a GdkGC.
@@ -124,6 +124,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-GtkTreeView-drag-and-drop.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-GtkTreeView-drag-and-drop.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-GtkTreeView-drag-and-drop.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-GtkTreeView-drag-and-drop.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -455,6 +455,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-High-level-Printing-API.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-High-level-Printing-API.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-High-level-Printing-API.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-High-level-Printing-API.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1853,7 +1853,7 @@

Note that this only makes sense for pre-paginated documents.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.10

@@ -1973,7 +1973,7 @@ will be for page n_pages - 1.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.10

@@ -1993,7 +1993,7 @@ print status is GTK_PRINT_STATUS_GENERATING_DATA. This is typically used to track the progress of print operation.

-

Allowed values: >= G_MAXULONG

+

Allowed values: >= -1

Default value: -1

Since 2.18

@@ -2779,6 +2779,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Keyboard-Accelerators.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Keyboard-Accelerators.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Keyboard-Accelerators.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Keyboard-Accelerators.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -52,7 +52,7 @@ #define gtk_accel_group_unref void gtk_accel_group_connect (GtkAccelGroup *accel_group, guint accel_key, - GdkModifierType accel_mods, + GdkModifierType accel_mods, GtkAccelFlags accel_flags, GClosure *closure); void gtk_accel_group_connect_by_path (GtkAccelGroup *accel_group, @@ -61,7 +61,7 @@ gboolean (*GtkAccelGroupActivate) (GtkAccelGroup *accel_group, GObject *acceleratable, guint keyval, - GdkModifierType modifier); + GdkModifierType modifier); gboolean (*GtkAccelGroupFindFunc) (GtkAccelKey *key, GClosure *closure, gpointer data); @@ -69,40 +69,40 @@ GClosure *closure); gboolean gtk_accel_group_disconnect_key (GtkAccelGroup *accel_group, guint accel_key, - GdkModifierType accel_mods); + GdkModifierType accel_mods); GtkAccelGroupEntry * gtk_accel_group_query (GtkAccelGroup *accel_group, guint accel_key, - GdkModifierType accel_mods, + GdkModifierType accel_mods, guint *n_entries); gboolean gtk_accel_group_activate (GtkAccelGroup *accel_group, GQuark accel_quark, GObject *acceleratable, guint accel_key, - GdkModifierType accel_mods); + GdkModifierType accel_mods); void gtk_accel_group_lock (GtkAccelGroup *accel_group); void gtk_accel_group_unlock (GtkAccelGroup *accel_group); gboolean gtk_accel_group_get_is_locked (GtkAccelGroup *accel_group); GtkAccelGroup * gtk_accel_group_from_accel_closure (GClosure *closure); -GdkModifierType gtk_accel_group_get_modifier_mask (GtkAccelGroup *accel_group); +GdkModifierType gtk_accel_group_get_modifier_mask (GtkAccelGroup *accel_group); gboolean gtk_accel_groups_activate (GObject *object, guint accel_key, - GdkModifierType accel_mods); + GdkModifierType accel_mods); GSList * gtk_accel_groups_from_object (GObject *object); GtkAccelKey * gtk_accel_group_find (GtkAccelGroup *accel_group, GtkAccelGroupFindFunc find_func, gpointer data); struct GtkAccelKey; gboolean gtk_accelerator_valid (guint keyval, - GdkModifierType modifiers); + GdkModifierType modifiers); void gtk_accelerator_parse (const gchar *accelerator, guint *accelerator_key, - GdkModifierType *accelerator_mods); + GdkModifierType *accelerator_mods); gchar * gtk_accelerator_name (guint accelerator_key, - GdkModifierType accelerator_mods); + GdkModifierType accelerator_mods); gchar * gtk_accelerator_get_label (guint accelerator_key, - GdkModifierType accelerator_mods); + GdkModifierType accelerator_mods); void gtk_accelerator_set_default_mod_mask - (GdkModifierType default_mod_mask); + (GdkModifierType default_mod_mask); guint gtk_accelerator_get_default_mod_mask (void); @@ -118,7 +118,7 @@

Properties

   "is-locked"                gboolean              : Read
-  "modifier-mask"            GdkModifierType       : Read
+  "modifier-mask"            GdkModifierType       : Read
 
@@ -217,7 +217,7 @@

gtk_accel_group_connect ()

void                gtk_accel_group_connect             (GtkAccelGroup *accel_group,
                                                          guint accel_key,
-                                                         GdkModifierType accel_mods,
+                                                         GdkModifierType accel_mods,
                                                          GtkAccelFlags accel_flags,
                                                          GClosure *closure);

@@ -311,7 +311,7 @@

gboolean            (*GtkAccelGroupActivate)            (GtkAccelGroup *accel_group,
                                                          GObject *acceleratable,
                                                          guint keyval,
-                                                         GdkModifierType modifier);
+ GdkModifierType modifier);

@@ -364,7 +364,7 @@

gtk_accel_group_disconnect_key ()

gboolean            gtk_accel_group_disconnect_key      (GtkAccelGroup *accel_group,
                                                          guint accel_key,
-                                                         GdkModifierType accel_mods);
+ GdkModifierType accel_mods);

Removes an accelerator previously installed through gtk_accel_group_connect(). @@ -401,7 +401,7 @@

gtk_accel_group_query ()

GtkAccelGroupEntry * gtk_accel_group_query              (GtkAccelGroup *accel_group,
                                                          guint accel_key,
-                                                         GdkModifierType accel_mods,
+                                                         GdkModifierType accel_mods,
                                                          guint *n_entries);

Queries an accelerator group for all entries matching accel_key and @@ -445,7 +445,7 @@ GQuark accel_quark, GObject *acceleratable, guint accel_key, - GdkModifierType accel_mods); + GdkModifierType accel_mods);

Finds the first accelerator in accel_group that matches accel_key and accel_mods, and @@ -595,10 +595,10 @@


gtk_accel_group_get_modifier_mask ()

-
GdkModifierType     gtk_accel_group_get_modifier_mask   (GtkAccelGroup *accel_group);
+
GdkModifierType     gtk_accel_group_get_modifier_mask   (GtkAccelGroup *accel_group);

-Gets a GdkModifierType representing the mask for this -accel_group. For example, GDK_CONTROL_MASK, GDK_SHIFT_MASK, etc. +Gets a GdkModifierType representing the mask for this +accel_group. For example, GDK_CONTROL_MASK, GDK_SHIFT_MASK, etc.

@@ -624,7 +624,7 @@

gtk_accel_groups_activate ()

gboolean            gtk_accel_groups_activate           (GObject *object,
                                                          guint accel_key,
-                                                         GdkModifierType accel_mods);
+ GdkModifierType accel_mods);

Finds the first accelerator in any GtkAccelGroup attached to object that matches accel_key and accel_mods, and @@ -738,11 +738,11 @@

gtk_accelerator_valid ()

gboolean            gtk_accelerator_valid               (guint keyval,
-                                                         GdkModifierType modifiers);
+ GdkModifierType modifiers);

Determines whether a given keyval and modifier mask constitute a valid keyboard accelerator. For example, the GDK_a keyval -plus GDK_CONTROL_MASK is valid - this is a "Ctrl+a" accelerator. +plus GDK_CONTROL_MASK is valid - this is a "Ctrl+a" accelerator. But, you can't, for instance, use the GDK_Control_L keyval as an accelerator.

@@ -773,14 +773,14 @@

gtk_accelerator_parse ()

void                gtk_accelerator_parse               (const gchar *accelerator,
                                                          guint *accelerator_key,
-                                                         GdkModifierType *accelerator_mods);
+ GdkModifierType *accelerator_mods);

Parses a string representing an accelerator. The format looks like "<Control>a" or "<Shift><Alt>F1" or "<Release>z" (the last one is for key release). The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". -Key names are parsed using gdk_keyval_from_name(). For character keys the +Key names are parsed using gdk_keyval_from_name(). For character keys the name is not the symbol, but the lowercase name, e.g. one would use "<Ctrl>minus" instead of "<Ctrl>-".

@@ -815,11 +815,11 @@

gtk_accelerator_name ()

gchar *             gtk_accelerator_name                (guint accelerator_key,
-                                                         GdkModifierType accelerator_mods);
+ GdkModifierType accelerator_mods);

Converts an accelerator keyval and modifier mask into a string parseable by gtk_accelerator_parse(). -For example, if you pass in GDK_q and GDK_CONTROL_MASK, +For example, if you pass in GDK_q and GDK_CONTROL_MASK, this function returns "<Control>q".

@@ -851,7 +851,7 @@

gtk_accelerator_get_label ()

gchar *             gtk_accelerator_get_label           (guint accelerator_key,
-                                                         GdkModifierType accelerator_mods);
+ GdkModifierType accelerator_mods);

Converts an accelerator keyval and modifier mask into a string which can be used to represent the accelerator to the user. @@ -882,12 +882,12 @@

gtk_accelerator_set_default_mod_mask ()

void                gtk_accelerator_set_default_mod_mask
-                                                        (GdkModifierType default_mod_mask);
+ (GdkModifierType default_mod_mask);

Sets the modifiers that will be considered significant for keyboard -accelerators. The default mod mask is GDK_CONTROL_MASK | -GDK_SHIFT_MASK | GDK_MOD1_MASK | GDK_SUPER_MASK | -GDK_HYPER_MASK | GDK_META_MASK, that is, Control, Shift, Alt, +accelerators. The default mod mask is GDK_CONTROL_MASK | +GDK_SHIFT_MASK | GDK_MOD1_MASK | GDK_SUPER_MASK | +GDK_HYPER_MASK | GDK_META_MASK, that is, Control, Shift, Alt, Super, Hyper and Meta. Other modifiers will by default be ignored by GtkAccelGroup. You must include at least the three modifiers Control, Shift @@ -939,7 +939,7 @@


The "modifier-mask" property

-
  "modifier-mask"            GdkModifierType       : Read
+
  "modifier-mask"            GdkModifierType       : Read

Modifier Mask.

Default value: GDK_SHIFT_MASK|GDK_CONTROL_MASK|GDK_MOD1_MASK|GDK_SUPER_MASK|GDK_HYPER_MASK|GDK_META_MASK

@@ -951,7 +951,7 @@
gboolean            user_function                      (GtkAccelGroup  *accel_group,
                                                         GObject        *acceleratable,
                                                         guint           keyval,
-                                                        GdkModifierType modifier,
+                                                        GdkModifierType modifier,
                                                         gpointer        user_data)          : Has Details

The accel-activate signal is an implementation detail of @@ -996,7 +996,7 @@

The "accel-changed" signal

void                user_function                      (GtkAccelGroup  *accel_group,
                                                         guint           keyval,
-                                                        GdkModifierType modifier,
+                                                        GdkModifierType modifier,
                                                         GClosure       *accel_closure,
                                                         gpointer        user_data)          : Has Details

@@ -1049,6 +1049,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Orientable.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Orientable.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Orientable.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Orientable.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -170,6 +170,6 @@
+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Resource-Files.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Resource-Files.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Resource-Files.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Resource-Files.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -67,10 +67,10 @@ gchar ** gtk_rc_get_default_files (void); #define gtk_rc_set_default_filesguintgtk_rc_parse_color (GScanner *scanner, - GdkColor *color); + GdkColor *color); guintgtk_rc_parse_color_full (GScanner *scanner, GtkRcStyle *style, - GdkColor *color); + GdkColor *color); guintgtk_rc_parse_state (GScanner *scanner, GtkStateType *state); guintgtk_rc_parse_priority (GScanner *scanner, @@ -1541,7 +1541,7 @@

This function recomputes the styles for all widgets that use a particular GtkSettings object. (There is one GtkSettings object -per GdkScreen, see gtk_settings_get_for_screen()); It is useful +per GdkScreen, see gtk_settings_get_for_screen()); It is useful when some global parameter has changed that affects the appearance of all widgets, because when a widget gets a new style, it will both redraw and recompute any cached information about its @@ -1630,7 +1630,7 @@

gtk_rc_parse_color ()

guint               gtk_rc_parse_color                  (GScanner *scanner,
-                                                         GdkColor *color);
+ GdkColor *color);

Parses a color in the format expected in a RC file. @@ -1652,7 +1652,7 @@

- @@ -1670,7 +1670,7 @@

gtk_rc_parse_color_full ()

guint               gtk_rc_parse_color_full             (GScanner *scanner,
                                                          GtkRcStyle *style,
-                                                         GdkColor *color);
+ GdkColor *color);

Parses a color in the format expected in a RC file. If style is not NULL, it will be consulted to resolve @@ -1694,7 +1694,7 @@

- @@ -2022,6 +2022,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Selections.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Selections.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Selections.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Selections.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -50,7 +50,7 @@ GtkTargetList * gtk_target_list_ref (GtkTargetList *list); voidgtk_target_list_unref (GtkTargetList *list); voidgtk_target_list_add (GtkTargetList *list, - GdkAtom target, + GdkAtom target, guint flags, guint info); voidgtk_target_list_add_table (GtkTargetList *list, @@ -69,37 +69,37 @@ gboolean deserializable, GtkTextBuffer *buffer); voidgtk_target_list_remove (GtkTargetList *list, - GdkAtom target); + GdkAtom target); gbooleangtk_target_list_find (GtkTargetList *list, - GdkAtom target, + GdkAtom target, guint *info); voidgtk_target_table_free (GtkTargetEntry *targets, gint n_targets); GtkTargetEntry * gtk_target_table_new_from_list (GtkTargetList *list, gint *n_targets); gbooleangtk_selection_owner_set (GtkWidget *widget, - GdkAtom selection, + GdkAtom selection, guint32 time_); -gbooleangtk_selection_owner_set_for_display (GdkDisplay *display, +gbooleangtk_selection_owner_set_for_display (GdkDisplay *display, GtkWidget *widget, - GdkAtom selection, + GdkAtom selection, guint32 time_); voidgtk_selection_add_target (GtkWidget *widget, - GdkAtom selection, - GdkAtom target, + GdkAtom selection, + GdkAtom target, guint info); voidgtk_selection_add_targets (GtkWidget *widget, - GdkAtom selection, + GdkAtom selection, const GtkTargetEntry *targets, guint ntargets); voidgtk_selection_clear_targets (GtkWidget *widget, - GdkAtom selection); + GdkAtom selection); gbooleangtk_selection_convert (GtkWidget *widget, - GdkAtom selection, - GdkAtom target, + GdkAtom selection, + GdkAtom target, guint32 time_); voidgtk_selection_data_set (GtkSelectionData *selection_data, - GdkAtom type, + GdkAtom type, gint format, const guchar *data, gint length); @@ -114,7 +114,7 @@ gchar **uris); gchar ** gtk_selection_data_get_uris (GtkSelectionData *selection_data); gbooleangtk_selection_data_get_targets (GtkSelectionData *selection_data, - GdkAtom **targets, + GdkAtom **targets, gint *n_atoms); gbooleangtk_selection_data_targets_include_image (GtkSelectionData *selection_data, @@ -126,26 +126,26 @@ gbooleangtk_selection_data_targets_include_rich_text (GtkSelectionData *selection_data, GtkTextBuffer *buffer); -GdkAtomgtk_selection_data_get_selection (GtkSelectionData *selection_data); +GdkAtomgtk_selection_data_get_selection (GtkSelectionData *selection_data); const guchar * gtk_selection_data_get_data (GtkSelectionData *selection_data); gintgtk_selection_data_get_length (GtkSelectionData *selection_data); -GdkAtomgtk_selection_data_get_data_type (GtkSelectionData *selection_data); -GdkDisplay * gtk_selection_data_get_display (GtkSelectionData *selection_data); +GdkAtomgtk_selection_data_get_data_type (GtkSelectionData *selection_data); +GdkDisplay * gtk_selection_data_get_display (GtkSelectionData *selection_data); gintgtk_selection_data_get_format (GtkSelectionData *selection_data); -GdkAtomgtk_selection_data_get_target (GtkSelectionData *selection_data); -gbooleangtk_targets_include_image (GdkAtom *targets, +GdkAtomgtk_selection_data_get_target (GtkSelectionData *selection_data); +gbooleangtk_targets_include_image (GdkAtom *targets, gint n_targets, gboolean writable); -gbooleangtk_targets_include_text (GdkAtom *targets, +gbooleangtk_targets_include_text (GdkAtom *targets, gint n_targets); -gbooleangtk_targets_include_uri (GdkAtom *targets, +gbooleangtk_targets_include_uri (GdkAtom *targets, gint n_targets); -gbooleangtk_targets_include_rich_text (GdkAtom *targets, +gbooleangtk_targets_include_rich_text (GdkAtom *targets, gint n_targets, GtkTextBuffer *buffer); voidgtk_selection_remove_all (GtkWidget *widget); gbooleangtk_selection_clear (GtkWidget *widget, - GdkEventSelection *event); + GdkEventSelection *event); GtkSelectionData * gtk_selection_data_copy (GtkSelectionData *data); voidgtk_selection_data_free (GtkSelectionData *data); @@ -308,7 +308,7 @@

gtk_target_list_add ()

void                gtk_target_list_add                 (GtkTargetList *list,
-                                                         GdkAtom target,
+                                                         GdkAtom target,
                                                          guint flags,
                                                          guint info);

@@ -508,7 +508,7 @@

gtk_target_list_remove ()

void                gtk_target_list_remove              (GtkTargetList *list,
-                                                         GdkAtom target);
+ GdkAtom target);

Removes a target from a target list.

@@ -534,7 +534,7 @@

gtk_target_list_find ()

gboolean            gtk_target_list_find                (GtkTargetList *list,
-                                                         GdkAtom target,
+                                                         GdkAtom target,
                                                          guint *info);

Looks up a given target in a GtkTargetList. @@ -636,7 +636,7 @@

gtk_selection_owner_set ()

gboolean            gtk_selection_owner_set             (GtkWidget *widget,
-                                                         GdkAtom selection,
+                                                         GdkAtom selection,
                                                          guint32 time_);

Claims ownership of a given selection for a particular widget, @@ -672,9 +672,9 @@


gtk_selection_owner_set_for_display ()

-
gboolean            gtk_selection_owner_set_for_display (GdkDisplay *display,
+
gboolean            gtk_selection_owner_set_for_display (GdkDisplay *display,
                                                          GtkWidget *widget,
-                                                         GdkAtom selection,
+                                                         GdkAtom selection,
                                                          guint32 time_);

Claim ownership of a given selection for a particular widget, or, @@ -715,8 +715,8 @@

gtk_selection_add_target ()

void                gtk_selection_add_target            (GtkWidget *widget,
-                                                         GdkAtom selection,
-                                                         GdkAtom target,
+                                                         GdkAtom selection,
+                                                         GdkAtom target,
                                                          guint info);

Appends a specified target to the list of supported targets for a @@ -752,7 +752,7 @@

gtk_selection_add_targets ()

void                gtk_selection_add_targets           (GtkWidget *widget,
-                                                         GdkAtom selection,
+                                                         GdkAtom selection,
                                                          const GtkTargetEntry *targets,
                                                          guint ntargets);

@@ -791,7 +791,7 @@

gtk_selection_clear_targets ()

void                gtk_selection_clear_targets         (GtkWidget *widget,
-                                                         GdkAtom selection);
+ GdkAtom selection);

Remove all targets registered for the given selection for the widget. @@ -818,8 +818,8 @@

gtk_selection_convert ()

gboolean            gtk_selection_convert               (GtkWidget *widget,
-                                                         GdkAtom selection,
-                                                         GdkAtom target,
+                                                         GdkAtom selection,
+                                                         GdkAtom target,
                                                          guint32 time_);

Requests the contents of a selection. When received, @@ -846,7 +846,7 @@

@@ -863,7 +863,7 @@

gtk_selection_data_set ()

void                gtk_selection_data_set              (GtkSelectionData *selection_data,
-                                                         GdkAtom type,
+                                                         GdkAtom type,
                                                          gint format,
                                                          const guchar *data,
                                                          gint length);
@@ -1107,7 +1107,7 @@

gtk_selection_data_get_targets ()

gboolean            gtk_selection_data_get_targets      (GtkSelectionData *selection_data,
-                                                         GdkAtom **targets,
+                                                         GdkAtom **targets,
                                                          gint *n_atoms);

Gets the contents of selection_data as an array of targets. @@ -1279,9 +1279,9 @@


gtk_selection_data_get_selection ()

-
GdkAtom             gtk_selection_data_get_selection    (GtkSelectionData *selection_data);
+
GdkAtom             gtk_selection_data_get_selection    (GtkSelectionData *selection_data);

-Retrieves the selection GdkAtom of the selection data. +Retrieves the selection GdkAtom of the selection data.

color :

a pointer to a GdkColor structure in which to store +a pointer to a GdkColor structure in which to store the result. [out]

color :

a pointer to a GdkColor structure in which to store +a pointer to a GdkColor structure in which to store the result. [out]

time_ :

Time of request (usually of triggering event) -In emergency, you could use GDK_CURRENT_TIME +In emergency, you could use GDK_CURRENT_TIME
@@ -1295,7 +1295,7 @@ - @@ -1355,7 +1355,7 @@

gtk_selection_data_get_data_type ()

-
GdkAtom             gtk_selection_data_get_data_type    (GtkSelectionData *selection_data);
+
GdkAtom             gtk_selection_data_get_data_type    (GtkSelectionData *selection_data);

Retrieves the data type of the selection.

@@ -1381,7 +1381,7 @@

gtk_selection_data_get_display ()

-
GdkDisplay *        gtk_selection_data_get_display      (GtkSelectionData *selection_data);
+
GdkDisplay *        gtk_selection_data_get_display      (GtkSelectionData *selection_data);

Retrieves the display of the selection.

@@ -1432,7 +1432,7 @@

gtk_selection_data_get_target ()

-
GdkAtom             gtk_selection_data_get_target       (GtkSelectionData *selection_data);
+
GdkAtom             gtk_selection_data_get_target       (GtkSelectionData *selection_data);

Retrieves the target of the selection.

@@ -1458,7 +1458,7 @@

gtk_targets_include_image ()

-
gboolean            gtk_targets_include_image           (GdkAtom *targets,
+
gboolean            gtk_targets_include_image           (GdkAtom *targets,
                                                          gint n_targets,
                                                          gboolean writable);

@@ -1473,7 +1473,7 @@

- @@ -1499,7 +1499,7 @@

gtk_targets_include_text ()

-
gboolean            gtk_targets_include_text            (GdkAtom *targets,
+
gboolean            gtk_targets_include_text            (GdkAtom *targets,
                                                          gint n_targets);

Determines if any of the targets in targets can be used to @@ -1513,7 +1513,7 @@

- @@ -1534,7 +1534,7 @@

gtk_targets_include_uri ()

-
gboolean            gtk_targets_include_uri             (GdkAtom *targets,
+
gboolean            gtk_targets_include_uri             (GdkAtom *targets,
                                                          gint n_targets);

Determines if any of the targets in targets can be used to @@ -1548,7 +1548,7 @@

- @@ -1569,7 +1569,7 @@

gtk_targets_include_rich_text ()

-
gboolean            gtk_targets_include_rich_text       (GdkAtom *targets,
+
gboolean            gtk_targets_include_rich_text       (GdkAtom *targets,
                                                          gint n_targets,
                                                          GtkTextBuffer *buffer);

@@ -1584,7 +1584,7 @@

- @@ -1633,7 +1633,7 @@

gtk_selection_clear ()

gboolean            gtk_selection_clear                 (GtkWidget *widget,
-                                                         GdkEventSelection *event);
+ GdkEventSelection *event);

Warning

gtk_selection_clear has been deprecated since version 2.4 and should not be used in newly-written code. Instead of calling this function, chain up from @@ -1737,6 +1737,6 @@

+ Generated by GTK-Doc V1.19.1
\ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Signals.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Signals.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Signals.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Signals.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1662,6 +1662,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Standard-Enumerations.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Standard-Enumerations.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Standard-Enumerations.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Standard-Enumerations.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -2030,6 +2030,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Stock-Items.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Stock-Items.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Stock-Items.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Stock-Items.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1581,6 +1581,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Testing.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Testing.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Testing.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Testing.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -71,10 +71,10 @@ const gchar *string); gbooleangtk_test_widget_click (GtkWidget *widget, guint button, - GdkModifierType modifiers); + GdkModifierType modifiers); gbooleangtk_test_widget_send_key (GtkWidget *widget, guint keyval, - GdkModifierType modifiers); + GdkModifierType modifiers);
@@ -547,7 +547,7 @@

gtk_test_widget_click ()

gboolean            gtk_test_widget_click               (GtkWidget *widget,
                                                          guint button,
-                                                         GdkModifierType modifiers);
+ GdkModifierType modifiers);

This function will generate a button click (button press and button release event) in the middle of the first GdkWindow found that belongs @@ -556,7 +556,7 @@ input-only event window. For other widgets, this is usually widget->window. Certain caveats should be considered when using this function, in particular because the mouse pointer is warped to the button click -location, see gdk_test_simulate_button() for details. +location, see gdk_test_simulate_button() for details.

Returns :

the selection GdkAtom of the selection data. [transfer none] +the selection GdkAtom of the selection data. [transfer none]

targets :

an array of GdkAtoms. [array length=n_targets] +an array of GdkAtoms. [array length=n_targets]

targets :

an array of GdkAtoms. [array length=n_targets] +an array of GdkAtoms. [array length=n_targets]

targets :

an array of GdkAtoms. [array length=n_targets] +an array of GdkAtoms. [array length=n_targets]

targets :

an array of GdkAtoms. [array length=n_targets] +an array of GdkAtoms. [array length=n_targets]
@@ -589,7 +589,7 @@

gtk_test_widget_send_key ()

gboolean            gtk_test_widget_send_key            (GtkWidget *widget,
                                                          guint keyval,
-                                                         GdkModifierType modifiers);
+ GdkModifierType modifiers);

This function will generate keyboard press and release events in the middle of the first GdkWindow found that belongs to widget. @@ -597,7 +597,7 @@ input-only event window. For other widgets, this is usually widget->window. Certain caveats should be considered when using this function, in particular because the mouse pointer is warped to the key press -location, see gdk_test_simulate_key() for details. +location, see gdk_test_simulate_key() for details.

@@ -629,6 +629,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Themeable-Stock-Images.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Themeable-Stock-Images.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Themeable-Stock-Images.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Themeable-Stock-Images.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -775,7 +775,7 @@ @@ -1661,6 +1661,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Types.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Types.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-Types.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-Types.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -1716,6 +1716,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-gtkcheckmenuitem.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-gtkcheckmenuitem.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-gtkcheckmenuitem.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-gtkcheckmenuitem.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -524,6 +524,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-gtkfilefilter.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-gtkfilefilter.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtk2-gtkfilefilter.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtk2-gtkfilefilter.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -540,6 +540,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtkbase.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtkbase.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtkbase.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtkbase.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -90,6 +90,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtkfilechooser-installing-extra-widgets.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtkfilechooser-installing-extra-widgets.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtkfilechooser-installing-extra-widgets.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtkfilechooser-installing-extra-widgets.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -35,6 +35,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtkfilechooser-installing-preview.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtkfilechooser-installing-preview.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtkfilechooser-installing-preview.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtkfilechooser-installing-preview.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -36,6 +36,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtkfilechooser-new-features.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtkfilechooser-new-features.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtkfilechooser-new-features.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtkfilechooser-new-features.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -50,6 +50,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtkfilechooser-selection-modes.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtkfilechooser-selection-modes.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtkfilechooser-selection-modes.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtkfilechooser-selection-modes.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -46,6 +46,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtkobjects.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtkobjects.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtkobjects.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtkobjects.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -663,6 +663,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtkrecent-advanced.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtkrecent-advanced.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtkrecent-advanced.html 2013-06-16 17:02:19.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtkrecent-advanced.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -201,6 +201,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/gtkrecent-chooser.html gtk+2.0-2.24.20/docs/reference/gtk/html/gtkrecent-chooser.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/gtkrecent-chooser.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/gtkrecent-chooser.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -92,6 +92,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/index.html gtk+2.0-2.24.20/docs/reference/gtk/html/index.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/index.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/index.html 2013-07-04 17:15:08.000000000 +0000 @@ -6,7 +6,7 @@ - + @@ -870,6 +870,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/migrating-GtkCombo.html gtk+2.0-2.24.20/docs/reference/gtk/html/migrating-GtkCombo.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/migrating-GtkCombo.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/migrating-GtkCombo.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -89,6 +89,6 @@ + Generated by GTK-Doc V1.19.1 \ No newline at end of file diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/migrating-gnomeuiinfo.html gtk+2.0-2.24.20/docs/reference/gtk/html/migrating-gnomeuiinfo.html --- gtk+2.0-2.24.19/docs/reference/gtk/html/migrating-gnomeuiinfo.html 2013-06-16 17:02:18.000000000 +0000 +++ gtk+2.0-2.24.20/docs/reference/gtk/html/migrating-gnomeuiinfo.html 2013-07-04 17:15:08.000000000 +0000 @@ -8,7 +8,7 @@ - + @@ -178,7 +178,7 @@ rather than key values plus modifiers; you will have to convert these values by hand. For example, GDK_F11 with no modifiers is equivalent to a key name of "F11". Likewise, "o" - with GDK_CONTROL_MASK is equivalent to "<ontrol>O". + with GDK_CONTROL_MASK is equivalent to "<ontrol>O".

 /* Normal items */
@@ -346,6 +346,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/migrating.html gtk+2.0-2.24.20/docs/reference/gtk/html/migrating.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/migrating.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/migrating.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -99,6 +99,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/new-features-GtkComboBox.html gtk+2.0-2.24.20/docs/reference/gtk/html/new-features-GtkComboBox.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/new-features-GtkComboBox.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/new-features-GtkComboBox.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -69,6 +69,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/pt05.html gtk+2.0-2.24.20/docs/reference/gtk/html/pt05.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/pt05.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/pt05.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -39,6 +39,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/setting-the-page-flow.html gtk+2.0-2.24.20/docs/reference/gtk/html/setting-the-page-flow.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/setting-the-page-flow.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/setting-the-page-flow.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -72,6 +72,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/html/ui-manager.html gtk+2.0-2.24.20/docs/reference/gtk/html/ui-manager.html
--- gtk+2.0-2.24.19/docs/reference/gtk/html/ui-manager.html	2013-06-16 17:02:18.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/html/ui-manager.html	2013-07-04 17:15:08.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -40,6 +40,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/running.sgml gtk+2.0-2.24.20/docs/reference/gtk/running.sgml
--- gtk+2.0-2.24.19/docs/reference/gtk/running.sgml	2012-08-25 00:28:59.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/running.sgml	2013-07-04 13:22:22.000000000 +0000
@@ -274,11 +274,10 @@
 
   
     Specifies the file listing the IM modules to load. This environment
-    variable overrides the im_module_file specified in 
-    the RC files, which in turn overrides the default value 
-    sysconfdir/gtk-2.0/gtk.immodules
-    (sysconfdir is the sysconfdir specified when GTK+ was configured, 
-     usually /usr/local/etc.)
+    variable overrides the im_module_file specified in
+    the RC files, which in turn overrides the default value
+    libdir/gtk-2.0/2.10.0/immodules.cache
+    (libdir has the same meaning here as explained for GTK_PATH).
   
 
 
diff -Nru gtk+2.0-2.24.19/docs/reference/gtk/version.xml gtk+2.0-2.24.20/docs/reference/gtk/version.xml
--- gtk+2.0-2.24.19/docs/reference/gtk/version.xml	2013-06-16 15:04:52.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/gtk/version.xml	2013-07-04 13:52:32.000000000 +0000
@@ -1 +1 @@
-2.24.19
+2.24.20
diff -Nru gtk+2.0-2.24.19/docs/reference/libgail-util/Makefile.in gtk+2.0-2.24.20/docs/reference/libgail-util/Makefile.in
--- gtk+2.0-2.24.19/docs/reference/libgail-util/Makefile.in	2013-06-16 15:04:42.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/libgail-util/Makefile.in	2013-07-04 13:52:22.000000000 +0000
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.13.2 from Makefile.am.
+# Makefile.in generated by automake 1.13.4 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
diff -Nru gtk+2.0-2.24.19/docs/reference/libgail-util/html/gail-libgail-util-GailMisc.html gtk+2.0-2.24.20/docs/reference/libgail-util/html/gail-libgail-util-GailMisc.html
--- gtk+2.0-2.24.19/docs/reference/libgail-util/html/gail-libgail-util-GailMisc.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/libgail-util/html/gail-libgail-util-GailMisc.html	2013-07-04 17:15:09.000000000 +0000
@@ -7,7 +7,7 @@
 
 
 
-
+
 
 
 
@@ -468,6 +468,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/libgail-util/html/gail-libgail-util-GailTextUtil.html gtk+2.0-2.24.20/docs/reference/libgail-util/html/gail-libgail-util-GailTextUtil.html
--- gtk+2.0-2.24.19/docs/reference/libgail-util/html/gail-libgail-util-GailTextUtil.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/libgail-util/html/gail-libgail-util-GailTextUtil.html	2013-07-04 17:15:09.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -288,6 +288,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/libgail-util/html/index.html gtk+2.0-2.24.20/docs/reference/libgail-util/html/index.html
--- gtk+2.0-2.24.19/docs/reference/libgail-util/html/index.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/libgail-util/html/index.html	2013-07-04 17:15:09.000000000 +0000
@@ -6,7 +6,7 @@
 
 
 
-
+
 
 
 
@@ -39,6 +39,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/reference/libgail-util/html/libgail-util-main.html gtk+2.0-2.24.20/docs/reference/libgail-util/html/libgail-util-main.html
--- gtk+2.0-2.24.19/docs/reference/libgail-util/html/libgail-util-main.html	2013-06-16 17:02:19.000000000 +0000
+++ gtk+2.0-2.24.20/docs/reference/libgail-util/html/libgail-util-main.html	2013-07-04 17:15:09.000000000 +0000
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -36,6 +36,6 @@
 
 
+          Generated by GTK-Doc V1.19.1
 
 
\ No newline at end of file
diff -Nru gtk+2.0-2.24.19/docs/tools/Makefile.in gtk+2.0-2.24.20/docs/tools/Makefile.in
--- gtk+2.0-2.24.19/docs/tools/Makefile.in	2013-06-16 15:04:42.000000000 +0000
+++ gtk+2.0-2.24.20/docs/tools/Makefile.in	2013-07-04 13:52:22.000000000 +0000
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.13.2 from Makefile.am.
+# Makefile.in generated by automake 1.13.4 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
diff -Nru gtk+2.0-2.24.19/docs/tutorial/Makefile.in gtk+2.0-2.24.20/docs/tutorial/Makefile.in
--- gtk+2.0-2.24.19/docs/tutorial/Makefile.in	2013-06-16 15:04:42.000000000 +0000
+++ gtk+2.0-2.24.20/docs/tutorial/Makefile.in	2013-07-04 13:52:22.000000000 +0000
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.13.2 from Makefile.am.
+# Makefile.in generated by automake 1.13.4 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
diff -Nru gtk+2.0-2.24.19/gdk/Makefile.in gtk+2.0-2.24.20/gdk/Makefile.in
--- gtk+2.0-2.24.19/gdk/Makefile.in	2013-06-16 15:04:42.000000000 +0000
+++ gtk+2.0-2.24.20/gdk/Makefile.in	2013-07-04 13:52:22.000000000 +0000
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.13.2 from Makefile.am.
+# Makefile.in generated by automake 1.13.4 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
diff -Nru gtk+2.0-2.24.19/gdk/directfb/Makefile.in gtk+2.0-2.24.20/gdk/directfb/Makefile.in
--- gtk+2.0-2.24.19/gdk/directfb/Makefile.in	2013-06-16 15:04:42.000000000 +0000
+++ gtk+2.0-2.24.20/gdk/directfb/Makefile.in	2013-07-04 13:52:22.000000000 +0000
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.13.2 from Makefile.am.
+# Makefile.in generated by automake 1.13.4 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
diff -Nru gtk+2.0-2.24.19/gdk/quartz/Makefile.in gtk+2.0-2.24.20/gdk/quartz/Makefile.in
--- gtk+2.0-2.24.19/gdk/quartz/Makefile.in	2013-06-16 15:04:42.000000000 +0000
+++ gtk+2.0-2.24.20/gdk/quartz/Makefile.in	2013-07-04 13:52:22.000000000 +0000
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.13.2 from Makefile.am.
+# Makefile.in generated by automake 1.13.4 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
diff -Nru gtk+2.0-2.24.19/gdk/quartz/gdkkeys-quartz.c gtk+2.0-2.24.20/gdk/quartz/gdkkeys-quartz.c
--- gtk+2.0-2.24.19/gdk/quartz/gdkkeys-quartz.c	2012-12-05 10:36:04.000000000 +0000
+++ gtk+2.0-2.24.20/gdk/quartz/gdkkeys-quartz.c	2013-07-04 13:06:28.000000000 +0000
@@ -61,17 +61,6 @@
 
 static GdkKeymap *default_keymap = NULL;
 
-/* Note: we could check only if building against the 10.5 SDK instead, but
- * that would make non-xml layouts not work in 32-bit which would be a quite
- * bad regression. This way, old unsupported layouts will just not work in
- * 64-bit.
- */
-#ifdef __LP64__
-static TISInputSourceRef current_layout = NULL;
-#else
-static KeyboardLayoutRef current_layout = NULL;
-#endif
-
 /* This is a table of all keyvals. Each keycode gets KEYVALS_PER_KEYCODE entries.
  * TThere is 1 keyval per modifier (Nothing, Shift, Alt, Shift+Alt);
  */
@@ -246,10 +235,17 @@
 };
 
 static void
-maybe_update_keymap (void)
+update_keymap (void)
 {
   const void *chr_data = NULL;
+  guint *p;
+  int i;
 
+  /* Note: we could check only if building against the 10.5 SDK instead, but
+   * that would make non-xml layouts not work in 32-bit which would be a quite
+   * bad regression. This way, old unsupported layouts will just not work in
+   * 64-bit.
+   */
 #ifdef __LP64__
   TISInputSourceRef new_layout = TISCopyCurrentKeyboardLayoutInputSource ();
   CFDataRef layout_data_ref;
@@ -261,228 +257,230 @@
   KLGetCurrentKeyboardLayout (&new_layout);
 #endif
 
-  if (new_layout != current_layout)
-    {
-      guint *p;
-      int i;
-
-      g_free (keyval_array);
-      keyval_array = g_new0 (guint, NUM_KEYCODES * KEYVALS_PER_KEYCODE);
+  g_free (keyval_array);
+  keyval_array = g_new0 (guint, NUM_KEYCODES * KEYVALS_PER_KEYCODE);
 
 #ifdef __LP64__
-      layout_data_ref = (CFDataRef) TISGetInputSourceProperty
-	(new_layout, kTISPropertyUnicodeKeyLayoutData);
+  layout_data_ref = (CFDataRef) TISGetInputSourceProperty
+    (new_layout, kTISPropertyUnicodeKeyLayoutData);
 
-      if (layout_data_ref)
-	chr_data = CFDataGetBytePtr (layout_data_ref);
+  if (layout_data_ref)
+    chr_data = CFDataGetBytePtr (layout_data_ref);
 
-      if (chr_data == NULL)
-	{
-	  g_error ("cannot get keyboard layout data");
-	  return;
-	}
+  if (chr_data == NULL)
+    {
+      g_error ("cannot get keyboard layout data");
+      return;
+    }
 #else
-      /* Get the layout kind */
-      KLGetKeyboardLayoutProperty (new_layout, kKLKind, (const void **)&layout_kind);
+  /* Get the layout kind */
+  KLGetKeyboardLayoutProperty (new_layout, kKLKind, (const void **)&layout_kind);
 
-      /* 8-bit-only keyabord layout */
-      if (layout_kind == kKLKCHRKind)
-	{ 
-	  /* Get chr data */
-	  KLGetKeyboardLayoutProperty (new_layout, kKLKCHRData, (const void **)&chr_data);
-	  
-	  for (i = 0; i < NUM_KEYCODES; i++) 
-	    {
-	      int j;
-	      UInt32 modifiers[] = {0, shiftKey, optionKey, shiftKey | optionKey};
-
-	      p = keyval_array + i * KEYVALS_PER_KEYCODE;
-	      
-	      for (j = 0; j < KEYVALS_PER_KEYCODE; j++)
-		{
-		  UInt32 c, state = 0;
-		  UInt16 key_code;
-		  UniChar uc;
-		  
-		  key_code = modifiers[j] | i;
-		  c = KeyTranslate (chr_data, key_code, &state);
-
-		  if (state != 0)
-		    {
-		      UInt32 state2 = 0;
-		      c = KeyTranslate (chr_data, key_code | 128, &state2);
-		    }
-
-		  if (c != 0 && c != 0x10)
-		    {
-		      int k;
-		      gboolean found = FALSE;
-
-		      /* FIXME: some keyboard layouts (e.g. Russian) use
-                       * a different 8-bit character set. We should
-                       * check for this. Not a serious problem, because
-		       * most (all?) of these layouts also have a
-		       * uchr version. 
-		       */
-		      uc = macroman2ucs (c);
-
-		      for (k = 0; k < G_N_ELEMENTS (special_ucs_table); k++) 
-			{
-			  if (special_ucs_table[k].ucs_value == uc)
-			    {
-			      p[j] = special_ucs_table[k].keyval;
-			      found = TRUE;
-			      break;
-			    }
-			}
-		      
-		      /* Special-case shift-tab since GTK+ expects
-		       * GDK_ISO_Left_Tab for that. 
-		       */
-		      if (found && p[j] == GDK_Tab && modifiers[j] == shiftKey) 
-			p[j] = GDK_ISO_Left_Tab;
-
-		      if (!found)
-                        p[j] = gdk_unicode_to_keyval (uc);
-		    }
-		}
-
-	      if (p[3] == p[2])
-		p[3] = 0;
-	      if (p[2] == p[1])
-		p[2] = 0;
-	      if (p[1] == p[0])
-		p[1] = 0;
-	      if (p[0] == p[2] && 
-		  p[1] == p[3])
-		p[2] = p[3] = 0;
-	    }
-	}
-      /* unicode keyboard layout */
-      else if (layout_kind == kKLKCHRuchrKind || layout_kind == kKLuchrKind)
-	{ 
-	  /* Get chr data */
-	  KLGetKeyboardLayoutProperty (new_layout, kKLuchrData, (const void **)&chr_data);
+  /* 8-bit-only keyabord layout */
+  if (layout_kind == kKLKCHRKind)
+    {
+      /* Get chr data */
+      KLGetKeyboardLayoutProperty (new_layout, kKLKCHRData, (const void **)&chr_data);
+
+      for (i = 0; i < NUM_KEYCODES; i++)
+        {
+          int j;
+          UInt32 modifiers[] = {0, shiftKey, optionKey, shiftKey | optionKey};
+
+          p = keyval_array + i * KEYVALS_PER_KEYCODE;
+
+          for (j = 0; j < KEYVALS_PER_KEYCODE; j++)
+            {
+              UInt32 c, state = 0;
+              UInt16 key_code;
+              UniChar uc;
+
+              key_code = modifiers[j] | i;
+              c = KeyTranslate (chr_data, key_code, &state);
+
+              if (state != 0)
+                {
+                  UInt32 state2 = 0;
+                  c = KeyTranslate (chr_data, key_code | 128, &state2);
+                }
+
+              if (c != 0 && c != 0x10)
+                {
+                  int k;
+                  gboolean found = FALSE;
+
+                  /* FIXME: some keyboard layouts (e.g. Russian) use a
+                   * different 8-bit character set. We should check
+                   * for this. Not a serious problem, because most
+                   * (all?) of these layouts also have a uchr version.
+                   */
+                  uc = macroman2ucs (c);
+
+                  for (k = 0; k < G_N_ELEMENTS (special_ucs_table); k++)
+                    {
+                      if (special_ucs_table[k].ucs_value == uc)
+                        {
+                          p[j] = special_ucs_table[k].keyval;
+                          found = TRUE;
+                          break;
+                        }
+                    }
+
+                  /* Special-case shift-tab since GTK+ expects
+                   * GDK_ISO_Left_Tab for that.
+                   */
+                  if (found && p[j] == GDK_Tab && modifiers[j] == shiftKey)
+                    p[j] = GDK_ISO_Left_Tab;
+
+                  if (!found)
+                    p[j] = gdk_unicode_to_keyval (uc);
+                }
+            }
+
+          if (p[3] == p[2])
+            p[3] = 0;
+          if (p[2] == p[1])
+            p[2] = 0;
+          if (p[1] == p[0])
+            p[1] = 0;
+          if (p[0] == p[2] &&
+              p[1] == p[3])
+            p[2] = p[3] = 0;
+        }
+    }
+  /* unicode keyboard layout */
+  else if (layout_kind == kKLKCHRuchrKind || layout_kind == kKLuchrKind)
+    {
+      /* Get chr data */
+      KLGetKeyboardLayoutProperty (new_layout, kKLuchrData, (const void **)&chr_data);
 #endif
-	  
-	  for (i = 0; i < NUM_KEYCODES; i++) 
-	    {
-	      int j;
-	      UInt32 modifiers[] = {0, shiftKey, optionKey, shiftKey | optionKey};
-              UniChar chars[4];
-              UniCharCount nChars;
-
-	      p = keyval_array + i * KEYVALS_PER_KEYCODE;
-
-	      for (j = 0; j < KEYVALS_PER_KEYCODE; j++)
-		{
-		  UInt32 state = 0;
-		  OSStatus err;
-		  UInt16 key_code;
-		  UniChar uc;
-		  
-		  key_code = modifiers[j] | i;
-		  err = UCKeyTranslate (chr_data, i, kUCKeyActionDisplay,
-		                        (modifiers[j] >> 8) & 0xFF,
-		                        LMGetKbdType(),
-		                        0,
-		                        &state, 4, &nChars, chars);
-
-                  /* FIXME: Theoretically, we can get multiple UTF-16 values;
-		   * we should convert them to proper unicode and figure
-		   * out whether there are really keyboard layouts that
-		   * give us more than one character for one keypress. */
-		  if (err == noErr && nChars == 1)
-		    {
-		      int k;
-		      gboolean found = FALSE;
-
-		      /* A few 

widget :

widget that will display the icon, or NULL. The only use that is typically made of this -is to determine the appropriate GdkScreen. [allow-none] +is to determine the appropriate GdkScreen. [allow-none]