gtk2/gtk
Benjamin Otte 1454ba15ba css: Huge refactoring to avoid computing wrong values
Here's the shortest description of the bug I can come up with:
When computing values, we have 3 kinds of dependencies:
(1) other properties ("currentColor" or em values)
(2) inherited properties ("inherit")
(3) generic things from the theme (@keyframes or @define-color)
Previously, we passed the GtkStyleContext as an argument, because it
provided these 3 things using:
(1) _gtk_style_context_peek_property()
(2) _gtk_style_context_peek_property(gtk_style_context_get_parent())
(3) context->priv->cascade

However, this makes it impossible to lookup values other than the ones
accessible via _gtk_style_context_peek_property(). And this is exactly
what we are doing in gtk_style_context_update_cache(). So when the cache
updates encountered case (1), they were looking up the values from the
wrong style data.

So this large patch essentially does nothing but replace the
context argument in all compute functions with new arguments for the 3
cases above:
(1) values
(2) parent_values
(3) provider

We apparently have a lot of computing code.
2012-09-28 18:27:49 +02:00
..
a11y Shut down a11y when an app shuts down 2012-09-16 19:31:23 -04:00
deprecated Preserve gtk_widget_get_default_style semantics 2012-09-17 07:53:44 -04:00
stock-icons
tests tests/filtermodel: Add test for bug 679910 2012-07-17 10:49:00 +02:00
abicheck.sh
compose-parse.py Change FSF Address 2012-02-27 17:06:11 +00:00
cursor_dnd_ask.png
cursor_dnd_copy.png
cursor_dnd_link.png
cursor_dnd_move.png
cursor_dnd_none.png
fallback-c89.c Bug 670499-gtk/fallback-c89.c: Add fallback for nearbyint() 2012-05-03 11:59:16 +08:00
fnmatch.c Change FSF Address 2012-02-27 17:06:11 +00:00
gactionmuxer.c GActionMuxer: add support for parent muxers 2012-08-20 13:08:17 -04:00
gactionmuxer.h GActionMuxer: add support for parent muxers 2012-08-20 13:08:17 -04:00
gactionobservable.c Change FSF Address 2012-02-27 17:06:11 +00:00
gactionobservable.h Change FSF Address 2012-02-27 17:06:11 +00:00
gactionobserver.c Change FSF Address 2012-02-27 17:06:11 +00:00
gactionobserver.h Change FSF Address 2012-02-27 17:06:11 +00:00
gen-paper-names.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtk-compose-lookaside.txt
gtk-default.css Raleigh: Improve the spinner animation 2012-09-18 15:28:42 +02:00
gtk-keys.css.default
gtk-keys.css.emacs Change FSF Address 2012-02-27 17:06:11 +00:00
gtk-keys.css.mac
gtk-launch.c New gtk-launch command 2012-07-16 14:28:22 -04:00
gtk-win32-base.css css: Remove old animation code 2012-04-17 08:59:19 +02:00
gtk-win32-classic.css win32: Fall back to raleigh with the classic theme 2012-04-03 19:26:15 +02:00
gtk-win32-xp.css win32: Fix up theme for menus on XP 2012-03-15 21:12:34 +01:00
gtk-win32.css win32: Fix up theme for menus on XP 2012-03-15 21:12:34 +01:00
gtk-win32.rc.in
gtk.gresource.xml win32: Fall back to raleigh with the classic theme 2012-04-03 19:26:15 +02:00
gtk.h level-bar: introduce GtkLevelBar 2012-07-16 01:01:38 -04:00
gtk.symbols Remove gtk_menu_button_[sg]et_menu 2012-09-24 00:08:30 -04:00
gtkaboutdialog.c Ensure skipped row between sections has a nonzero height 2012-03-22 13:07:35 -04:00
gtkaboutdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkaccelgroup.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkaccelgroup.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkaccelgroupprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkaccellabel.c GtkAccelLabel: adjust recent accel changes 2012-09-18 08:57:53 -04:00
gtkaccellabel.h GtkAccelLabel: add manual accel API 2012-09-17 12:31:22 -04:00
gtkaccelmap.c Document removing of accelerators 2012-05-18 15:41:31 +02:00
gtkaccelmap.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkaccelmapprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkaccessible.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkaccessible.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkaction.c gtk: ref the action around gtk_action_emit_activate() 2012-08-03 23:28:05 +02:00
gtkaction.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkactionable.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkactionable.h actionable: silence g-i scanner warning 2012-06-25 14:49:11 -04:00
gtkactiongroup.c Added GtkActionGroup:accel-group property. 2012-09-14 17:58:51 -03:00
gtkactiongroup.h Added GtkActionGroup:accel-group property. 2012-09-14 17:58:51 -03:00
gtkactionhelper.c GtkActionHelper: two small fixups in _set_target_value() 2012-08-22 00:54:57 -04:00
gtkactionhelper.h introduce private GtkActionHelper 2012-08-20 13:11:01 -04:00
gtkactivatable.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkactivatable.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkadjustment.c gtk/gtkadjustment.c: Improve docs 2012-08-07 03:20:50 +09:00
gtkadjustment.h types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkalignment.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkalignment.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkallocatedbitmask.c bitmask: Don't allocate memory for small bitmasks 2012-03-01 15:10:36 +01:00
gtkallocatedbitmaskprivate.h bitmask: Don't allocate memory for small bitmasks 2012-03-01 15:10:36 +01:00
gtkappchooser.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooser.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooserbutton.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooserbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooserdialog.c appchooserdialog: add a missing label mnemonic 2012-08-10 13:28:01 +02:00
gtkappchooserdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchoosermodule.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchoosermodule.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooseronline.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooseronline.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooseronlinepk.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooseronlinepk.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooserprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooserwidget.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkappchooserwidget.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkapplication.c Document gtk_application_get_window_by_id 2012-09-23 21:15:27 -04:00
gtkapplication.h GtkApplication: add 'active-window' property 2012-08-20 13:08:17 -04:00
gtkapplicationprivate.h Remove private appwindow observer creation API 2012-08-20 13:13:49 -04:00
gtkapplicationwindow.c gtkmodelmenu: simplify logic, expose bind API 2012-09-17 12:31:22 -04:00
gtkapplicationwindow.h application: Add unique IDs for GtkApplicationWindow 2012-05-03 17:45:46 +02:00
gtkarrow.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkarrow.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkaspectframe.c Docs: GtkAspectFrame: use top/bottom for vertical alignment 2012-08-26 01:01:59 +02:00
gtkaspectframe.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkassistant.c GtkAssistant: bgo#658694 - Unable to change current page in prepare handler 2012-09-16 23:27:57 -04:00
gtkassistant.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbbox.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkbbox.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbin.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbin.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbindings.c types: Clean up gtkwidget.h includes 2012-03-03 19:45:03 +01:00
gtkbindings.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbindingsprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbitmaskprivate.h Fix compile error from splitting bitmask code 2012-03-01 16:26:38 -08:00
gtkbitmaskprivateimpl.h Fix compile error from splitting bitmask code 2012-03-01 16:26:38 -08:00
gtkborder.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkborder.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkborderimage.c cssvalue: Convert border-image-width to border value 2012-04-17 08:59:19 +02:00
gtkborderimageprivate.h cssvalue: Convert border-image-width to border value 2012-04-17 08:59:19 +02:00
gtkbox.c box: Fix typo 2012-09-11 21:40:46 +02:00
gtkbox.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkboxprivate.h
gtkbuildable.c Fix a typo in the the comments 2012-08-26 22:54:55 +08:00
gtkbuildable.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbuilder-menus.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbuilder.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbuilder.h Fix the build 2012-09-23 23:57:34 -04:00
gtkbuilder.rnc
gtkbuilder.rng
gtkbuilderparser.c Fix a cornercase of menu parsing 2012-04-20 01:50:01 -04:00
gtkbuilderprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkbutton.c button: Clear highlight when a button is removed from a container 2012-09-16 23:28:02 -04:00
gtkbutton.h Add GDK_AVAILABLE annotations to new API 2012-07-15 00:53:46 -04:00
gtkbuttonprivate.h port GtkButton to GtkActionHelper 2012-08-20 13:11:02 -04:00
gtkcairoblur.c blur: Do the same thing for rows and cols 2012-09-20 02:45:41 +02:00
gtkcairoblurprivate.h blur: Take the radius as a double parameter 2012-09-20 02:45:41 +02:00
gtkcalendar.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkcalendar.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellarea.c Fix a typo in the the comments 2012-08-26 22:54:55 +08:00
gtkcellarea.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellareabox.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellareabox.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellareaboxcontext.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellareaboxcontextprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellareacontext.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellareacontext.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcelleditable.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkcelleditable.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcelllayout.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkcelllayout.h celllayout: Remove unused include 2012-03-03 19:45:03 +01:00
gtkcellrenderer.c Document "set" properties a bit 2012-05-26 15:06:00 -04:00
gtkcellrenderer.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrendereraccel.c cellrendereraccel: don't translate Alt+Print to SysRq 2012-03-22 00:45:08 -04:00
gtkcellrendereraccel.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrenderercombo.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkcellrenderercombo.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrendererpixbuf.c cellrendererpix: set the IMAGE style class when rendering an icon 2012-07-16 09:35:07 -04:00
gtkcellrendererpixbuf.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrendererprogress.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrendererprogress.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrendererspin.c types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkcellrendererspin.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrendererspinner.c build: Remove now-unused GTK_DISABLE_DEPRECATED undefs 2012-05-01 03:13:01 +02:00
gtkcellrendererspinner.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrenderertext.c cellrenderertext: Add placeholder-text property 2012-05-03 23:35:34 -04:00
gtkcellrenderertext.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrenderertoggle.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellrenderertoggle.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcellview.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkcellview.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcheckbutton.c Don't left align label in check buttons when they have no indicator 2012-08-21 07:09:14 -04:00
gtkcheckbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcheckmenuitem.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcheckmenuitem.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkclipboard-quartz.c Remove empty doc comments 2012-09-23 21:14:46 -04:00
gtkclipboard-wayland.c gtk: Don't use GDK_THREADS_ENTER/LEAVE macros internally 2012-07-30 18:01:47 +02:00
gtkclipboard.c gtk: Don't use GDK_THREADS_ENTER/LEAVE macros internally 2012-07-30 18:01:47 +02:00
gtkclipboard.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcolorbutton.c colobutton: skip set_rgba as it is already in the choosercolor interface 2012-09-20 12:51:10 +02:00
gtkcolorbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcolorchooser.c GtkColorChooser docs: Fix small typos. 2012-03-26 10:51:46 +02:00
gtkcolorchooser.h API: colorchooser: Use GtkOrientation for orientation 2012-03-07 03:11:05 +01:00
gtkcolorchooserdialog.c colorchooser: Drop the ::response handler altogether 2012-03-07 22:06:22 -05:00
gtkcolorchooserdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcolorchooserprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcolorchooserwidget.c Plug a leak 2012-09-16 00:49:04 -04:00
gtkcolorchooserwidget.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcoloreditor.c types: Clean up gtkwidget.h includes 2012-03-03 19:45:03 +01:00
gtkcoloreditorprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcolorplane.c colorplane: Select for touch events 2012-03-04 11:24:51 -05:00
gtkcolorplaneprivate.h types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkcolorscale.c colorscale: Select for touch events 2012-03-04 11:24:51 -05:00
gtkcolorscaleprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcolorswatch.c colorswatch: don't use the clip box directly 2012-05-15 13:24:40 -04:00
gtkcolorswatchprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcolorutils.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcolorutils.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcombobox.c widget: Don't cache widget paths all the time 2012-04-17 08:59:21 +02:00
gtkcombobox.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcomboboxtext.c Documentation: Correct references to properties. 2012-02-15 11:43:33 +01:00
gtkcomboboxtext.h
gtkcontainer.c stylecontext: Pass the changes in the parent to validation function 2012-08-28 15:42:23 +02:00
gtkcontainer.h types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkcontainerprivate.h container: Redo style validation handling 2012-04-17 08:59:23 +02:00
gtkcssanimation.c cssanimation: Implement pausing the animation 2012-09-17 20:40:01 +02:00
gtkcssanimationprivate.h cssanimation: Implement pausing the animation 2012-09-17 20:40:01 +02:00
gtkcssarrayvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssarrayvalueprivate.h cssvalue: Make the array parser no longer parse "none" 2012-09-03 12:54:14 +02:00
gtkcssbgsizevalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssbgsizevalueprivate.h css: Introduce _gtk_css_value_compute() 2012-08-28 15:40:56 +02:00
gtkcssbordervalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssbordervalueprivate.h css: Introduce _gtk_css_value_compute() 2012-08-28 15:40:56 +02:00
gtkcsscomputedvalues.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcsscomputedvaluesprivate.h css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcsscornervalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcsscornervalueprivate.h css: Introduce _gtk_css_value_compute() 2012-08-28 15:40:56 +02:00
gtkcsscustomproperty.c csscustomproperty: Move compute code to GtkCssTypedValue 2012-08-28 15:40:57 +02:00
gtkcsscustompropertyprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcsseasevalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcsseasevalueprivate.h cssvalue: Add GtkCssEaseValue 2012-04-17 08:59:16 +02:00
gtkcssenginevalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssenginevalueprivate.h cssvalue: Add a css value for engines 2012-04-17 08:59:18 +02:00
gtkcssenumvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssenumvalueprivate.h cssvalue: Add animation enum properties 2012-09-17 20:39:11 +02:00
gtkcssimage.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssimagecrossfade.c cssimage: Make cross-fade code safe for non-integer sizes 2012-09-17 20:39:13 +02:00
gtkcssimagecrossfadeprivate.h cssimage: Add GtkCssImageCrossFade 2012-04-17 08:59:16 +02:00
gtkcssimagegradient.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssimagegradientprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcssimagelinear.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssimagelinearprivate.h linear-gradient: Convert from GtkCssNumber to GtkCssValue 2012-04-17 08:59:19 +02:00
gtkcssimageprivate.h css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssimageurl.c cssimage: No need to pass base file anymore 2012-05-11 16:42:12 +02:00
gtkcssimageurlprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcssimagevalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssimagevalueprivate.h cssvalue: Add a cssvalue for images 2012-04-17 08:59:14 +02:00
gtkcssimagewin32.c cssimage: No need to pass base file anymore 2012-05-11 16:42:12 +02:00
gtkcssimagewin32private.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkcssinheritvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssinheritvalueprivate.h css: Move computing of initial and inherit values 2012-08-28 15:40:57 +02:00
gtkcssinitialvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssinitialvalueprivate.h css: Move computing of initial and inherit values 2012-08-28 15:40:57 +02:00
gtkcsskeyframes.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcsskeyframesprivate.h css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcsslookup.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcsslookupprivate.h css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssmatcher.c cssmatcher: Handle case of empty widget path 2012-05-01 03:13:02 +02:00
gtkcssmatcherprivate.h cssmatcher: Handle case of empty widget path 2012-05-01 03:13:02 +02:00
gtkcssnumbervalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssnumbervalueprivate.h css: Introduce _gtk_css_value_compute() 2012-08-28 15:40:56 +02:00
gtkcssparser.c cssparser: Don't use a free'd string in error messages 2012-09-17 20:39:11 +02:00
gtkcssparserprivate.h cssparser: Change APIs that work with files 2012-05-11 16:42:12 +02:00
gtkcsspositionvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcsspositionvalueprivate.h css: Introduce _gtk_css_value_compute() 2012-08-28 15:40:56 +02:00
gtkcssprovider.c section: Add _gtk_css_section_to_string() 2012-09-28 18:27:49 +02:00
gtkcssprovider.h Revert "Bind the themes to the livecycle of the screen" 2012-09-17 22:31:25 -04:00
gtkcssproviderprivate.h Revert "Bind the themes to the livecycle of the screen" 2012-09-17 22:31:25 -04:00
gtkcssrepeatvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssrepeatvalueprivate.h cssvalue: Add a custom value for repeats 2012-04-17 08:59:18 +02:00
gtkcssrgbavalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssrgbavalueprivate.h css: Fold color value computation into gtksymboliccolor.c 2012-08-28 15:40:56 +02:00
gtkcsssection.c section: Add _gtk_css_section_to_string() 2012-09-28 18:27:49 +02:00
gtkcsssection.h cssprovider: Add parsing support for @keyframes 2012-09-17 20:39:10 +02:00
gtkcsssectionprivate.h section: Add _gtk_css_section_to_string() 2012-09-28 18:27:49 +02:00
gtkcssselector.c cssmatcher: Use quarks for classes 2012-04-17 08:59:10 +02:00
gtkcssselectorprivate.h css: Add selector change types 2012-04-17 08:59:07 +02:00
gtkcssshadowsvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssshadowsvalueprivate.h css: Introduce _gtk_css_value_compute() 2012-08-28 15:40:56 +02:00
gtkcssshadowvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssshadowvalueprivate.h css: Introduce _gtk_css_value_compute() 2012-08-28 15:40:56 +02:00
gtkcssshorthandproperty.c styleproperty: Remove base argument 2012-05-11 16:42:12 +02:00
gtkcssshorthandpropertyimpl.c css: Implement 'animation' shorthand parsing 2012-09-17 20:39:11 +02:00
gtkcssshorthandpropertyprivate.h cssshorthand: Don't pass base file anymore 2012-05-11 16:42:12 +02:00
gtkcssstringvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssstringvalueprivate.h cssvalue: Add a GtkCssValue for idents 2012-04-17 08:59:16 +02:00
gtkcssstylefuncs.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssstylefuncsprivate.h css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssstyleproperty.c cssstyleproperty: Get rid of unused API 2012-08-28 15:40:57 +02:00
gtkcssstylepropertyimpl.c cssstyleproperty: Add animation properties 2012-09-17 20:39:11 +02:00
gtkcssstylepropertyprivate.h cssstyleproperty: Get rid of unused API 2012-08-28 15:40:57 +02:00
gtkcsstransition.c animation: Don't set the changed properties anymore 2012-09-17 20:39:13 +02:00
gtkcsstransitionprivate.h animation: Add CSS transition object 2012-04-17 08:59:23 +02:00
gtkcsstypedvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcsstypedvalueprivate.h cssvalue: Split out old value handling to new typed value 2012-04-17 08:59:20 +02:00
gtkcsstypes.c cssvalue: First step of proper dependency tracking 2012-08-28 15:42:24 +02:00
gtkcsstypesprivate.h symboliccolor: Change prototype of _gtk_symbolic_color_resolve_full() 2012-09-28 18:27:49 +02:00
gtkcssvalue.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcssvalueprivate.h css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkcustompaperunixdialog.c Migrate to XDG config dir for custom papers 2012-04-30 06:42:31 -04:00
gtkcustompaperunixdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkdbusinterfaces.xml mountoperation: use the Shell DBus proxy if available 2012-06-22 16:49:05 -04:00
gtkdebug.h debug: Add GTK_DEBUG=no-css-cache 2012-05-02 02:00:11 +02:00
gtkdialog.c gtk: Don't use GDK_THREADS_ENTER/LEAVE macros internally 2012-07-30 18:01:47 +02:00
gtkdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkdnd-quartz.c Copy in annotations missing from gtkdnd-quartz and gtkclipboard-quartz 2012-08-22 14:39:11 -07:00
gtkdnd.c Fix DND keyboard control with XI2 2012-08-06 22:56:59 -04:00
gtkdnd.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkdrawingarea.c types: Clean up gtkwidget.h includes 2012-03-03 19:45:03 +01:00
gtkdrawingarea.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkeditable.c Fix a typo in the the comments 2012-08-26 22:54:55 +08:00
gtkeditable.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkentry.c entry: fix requisition width/height to use the current pango layout 2012-09-03 11:45:51 -04:00
gtkentry.h Make spinbutton orientable 2012-09-03 11:45:51 -04:00
gtkentrybuffer.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkentrybuffer.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkentrycompletion.c Move entry completion code where it belongs 2012-08-31 10:47:23 -04:00
gtkentrycompletion.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkentryprivate.h Move entry completion code where it belongs 2012-08-31 10:47:23 -04:00
gtkenums.h Typo fix 2012-09-23 23:37:46 -04:00
gtkeventbox.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkeventbox.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkexpander.c css: Remove old animation code 2012-04-17 08:59:19 +02:00
gtkexpander.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooser.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkfilechooser.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserbutton.c [GtkFileChooserButton] bgo#645065 - Restore the previously-selected file when the button's GtkFileChooserDialog is canceled 2012-08-31 12:02:00 -05:00
gtkfilechooserbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserdefault.c gtk: Don't use GDK_THREADS_ENTER/LEAVE macros internally 2012-07-30 18:01:47 +02:00
gtkfilechooserdefault.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserdialog.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkfilechooserdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserembed.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserembed.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserentry.c filechooser: Fix entry completion 2012-03-29 18:59:07 -04:00
gtkfilechooserentry.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserutils.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserutils.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserwidget.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilechooserwidget.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilefilter.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkfilefilter.h Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkfilesystem.c Migrate to XDG config dir for bookmarks 2012-04-30 06:42:35 -04:00
gtkfilesystem.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfilesystemmodel.c Emit row-changed notification 2012-07-15 00:41:49 -04:00
gtkfilesystemmodel.h Make it clear that 'filtered' means 'filtered_out' 2012-07-15 00:41:48 -04:00
gtkfixed.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfixed.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfontbutton.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfontbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfontchooser.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfontchooser.h fontchooser: silence g-i scanner warning 2012-06-25 14:49:11 -04:00
gtkfontchooserdialog.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfontchooserdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfontchooserprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfontchooserutils.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfontchooserutils.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkfontchooserwidget.c fontchooserwidget: scroll to the currently selected row 2012-09-16 19:09:45 -04:00
gtkfontchooserwidget.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkframe.c gtk: Get gtkwidgetpath.h includes out of the public headers 2012-03-19 02:26:16 +01:00
gtkframe.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkgradient.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkgradient.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkgrid.c grid: Fix access to grid->priv member 2012-06-03 01:51:26 +02:00
gtkgrid.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkiconcache.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkiconcache.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkiconcachevalidator.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkiconcachevalidator.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkiconfactory.c Destroy the icon factory with the screen 2012-09-16 21:35:58 -04:00
gtkiconfactory.h types: Clean up gtkwidget.h includes 2012-03-03 19:45:03 +01:00
gtkiconhelper.c Add API to force a GtkIconHelper pixbuf rescaling 2012-07-13 16:56:37 +02:00
gtkiconhelperprivate.h Add API to force a GtkIconHelper pixbuf rescaling 2012-07-13 16:56:37 +02:00
gtkicontheme.c icontheme: Don't assume a symbolic icon size of 16x16 2012-07-13 14:44:05 +02:00
gtkicontheme.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkiconview.c iconview: Render focus even in non-selected items 2012-09-27 19:43:50 +02:00
gtkiconview.h Rename gtk_icon_view_get_cell_area to gtk_icon_view_get_cell_rect 2012-06-25 15:07:13 +02:00
gtkiconviewprivate.h iconview: Bring back per-row contexts 2012-05-08 03:58:23 +02:00
gtkimage.c Fix a memory leak in GtkImage 2012-06-20 08:27:01 +02:00
gtkimage.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimagemenuitem.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimagemenuitem.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimageprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimcontext.c GtkIMContext: Add purpose and hints 2012-08-20 18:54:21 -04:00
gtkimcontext.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimcontextinfo.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimcontextsimple.c Fix a typo in the the comments 2012-08-26 22:54:55 +08:00
gtkimcontextsimple.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimcontextsimpleseqs.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimmodule.c build: Remove now-unused GTK_DISABLE_DEPRECATED undefs 2012-05-01 03:13:01 +02:00
gtkimmodule.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimmoduleprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkimmulticontext.c gkimmulticontext: Remove left over debug print 2012-08-26 22:26:23 -04:00
gtkimmulticontext.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkinfobar.c Chain up custom_tag_start() propertly. 2012-05-18 18:09:36 -03:00
gtkinfobar.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkintl.h
gtkinvisible.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkinvisible.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkkeyhash.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkkeyhash.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtklabel.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtklabel.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtklayout.c gtk: Don't call gdk_window_process_updates() when scrolling 2012-04-05 15:48:51 +02:00
gtklayout.h types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtklevelbar.c Revert "levelbar: start filling from the bottom" 2012-09-19 15:23:43 -04:00
gtklevelbar.h level-bar: introduce GtkLevelBar 2012-07-16 01:01:38 -04:00
gtklinkbutton.c gtk: Fix warnings for some uses of GtkLinkButton 2012-05-10 15:22:31 +01:00
gtklinkbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkliststore.c gtkliststore: fix documentation typo 2012-09-03 11:00:15 +03:00
gtkliststore.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtklockbutton.c a11y: Make lockbutton notify about state changes 2012-07-09 03:12:13 +02:00
gtklockbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtklockbuttonprivate.h a11y: Get lockbutton text directly 2012-07-09 02:58:22 +02:00
gtkmain.c Shut down a11y when an app shuts down 2012-09-16 19:31:23 -04:00
gtkmain.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmarshalers.list Add GtkTextHandle 2012-09-03 00:19:03 -04:00
gtkmenu.c gtkmodelmenu: simplify logic, expose bind API 2012-09-17 12:31:22 -04:00
gtkmenu.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmenubar.c gtkmodelmenu: simplify logic, expose bind API 2012-09-17 12:31:22 -04:00
gtkmenubar.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmenubutton.c Remove gtk_menu_button_[sg]et_menu 2012-09-24 00:08:30 -04:00
gtkmenubutton.h Remove gtk_menu_button_[sg]et_menu 2012-09-24 00:08:30 -04:00
gtkmenubuttonprivate.h GtkMenuButton: rename _set_menu() to _set_popup() 2012-08-20 17:04:14 -04:00
gtkmenuitem.c GtkMenuItem: fix leaked action_helper 2012-09-20 15:17:20 -04:00
gtkmenuitem.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmenuitemprivate.h GtkMenuItem: implement GtkActionable 2012-08-20 13:13:45 -04:00
gtkmenuprivate.h menus: Implement scrolling through event capture for touch devices 2012-03-01 16:25:23 -05:00
gtkmenushell.c menushell: Remove gtk-touchscreen-mode usage 2012-03-01 16:25:23 -05:00
gtkmenushell.h gtkmodelmenu: simplify logic, expose bind API 2012-09-17 12:31:22 -04:00
gtkmenushellprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmenutoolbutton.c GtkMenuButton: rename _set_menu() to _set_popup() 2012-08-20 17:04:14 -04:00
gtkmenutoolbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmessagedialog.c Always make primary headings bold in message dialogs 2012-08-30 14:09:42 -04:00
gtkmessagedialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmisc.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmisc.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmnemonichash.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmnemonichash.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmodelmenu-quartz.c Action helper support in Mac OS menus. 2012-08-20 13:13:49 -04:00
gtkmodelmenu-quartz.h Action helper support in Mac OS menus. 2012-08-20 13:13:49 -04:00
gtkmodelmenu.c gtkmodelmenu: simplify logic, expose bind API 2012-09-17 12:31:22 -04:00
gtkmodelmenuitem.c gtkmodelmenu: simplify logic, expose bind API 2012-09-17 12:31:22 -04:00
gtkmodelmenuitem.h GtkAccelLabel: add manual accel API 2012-09-17 12:31:22 -04:00
gtkmodifierstyle.c styleprovider: Make all implementors emit the new signal 2012-04-17 08:59:21 +02:00
gtkmodifierstyle.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmodules.c gtk: Always load the atk-bridge 2012-06-15 17:09:19 +01:00
gtkmodules.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmodulesprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmountoperation-stub.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmountoperation-x11.c OpenBSD: use G_N_ELEMENTS instead of nitems 2012-07-09 18:20:34 +02:00
gtkmountoperation.c mountoperation: fix previous commit 2012-09-18 13:48:07 -04:00
gtkmountoperation.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkmountoperationprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtknotebook.c notebook: restore previous behaviour wrt. unparenting of tab labels 2012-07-31 20:17:54 +02:00
gtknotebook.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtknumerableicon.c gtk: Get gtkwidgetpath.h includes out of the public headers 2012-03-19 02:26:16 +01:00
gtknumerableicon.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtknumerableiconprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkoffscreenwindow.c container: Remove duplicated flag 2012-04-17 08:59:22 +02:00
gtkoffscreenwindow.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkorientable.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkorientable.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkorientableprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkoverlay.c gtkoverlay: fix get-child-position annotation 2012-09-16 19:03:14 +02:00
gtkoverlay.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpagesetup.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpagesetup.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpagesetupunixdialog.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpagesetupunixdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpaned.c paned: Shrinkable widgets don't require a size 2012-04-05 11:30:41 +02:00
gtkpaned.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpango.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpango.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpapersize.c printing: Rename GTK_UNIT_PIXEL to GTK_UNIT_NONE 2012-05-03 18:30:48 -07:00
gtkpapersize.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpathbar.c pathbar: fix a copy/paste error from last commit 2012-05-02 11:49:40 -04:00
gtkpathbar.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkplug.c GtkPlug: fix handling of key events for different layouts 2012-04-30 16:35:10 -04:00
gtkplug.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkpressandhold.c gtk: Be more careful when ignoring touch events 2012-03-04 11:24:51 -05:00
gtkpressandholdprivate.h Break out press-and-hold code as its own object 2012-03-04 00:29:04 -05:00
gtkprint-win32.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprint-win32.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintbackend.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintbackend.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintcontext.c Don't rotate pdf landscape output 2012-09-12 15:38:37 +02:00
gtkprintcontext.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprinter-private.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprinter.c gtk: Don't use GDK_THREADS_ENTER/LEAVE macros internally 2012-07-30 18:01:47 +02:00
gtkprinter.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprinteroption.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprinteroption.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprinteroptionset.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprinteroptionset.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprinteroptionwidget.c Fix mnemonic activation for some printer option widgets 2012-08-31 22:50:28 -04:00
gtkprinteroptionwidget.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintjob.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintjob.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintoperation-private.h Don't rotate pdf landscape output 2012-09-12 15:38:37 +02:00
gtkprintoperation-unix.c Don't rotate pdf landscape output 2012-09-12 15:38:37 +02:00
gtkprintoperation-win32.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintoperation.c Don't rotate pdf landscape output 2012-09-12 15:38:37 +02:00
gtkprintoperation.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintoperationpreview.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintoperationpreview.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintsettings.c Make collate default to enabled 2012-03-19 13:00:33 +00:00
gtkprintsettings.h GTK PrintToFile settings 2012-05-14 14:26:53 +02:00
gtkprintunixdialog.c Fix positioning of file format radios 2012-08-31 22:50:29 -04:00
gtkprintunixdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprintutils.c printing: Rename GTK_UNIT_PIXEL to GTK_UNIT_NONE 2012-05-03 18:30:48 -07:00
gtkprintutils.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprivate.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkprivate.h Add GtkTextHandle 2012-09-03 00:19:03 -04:00
gtkprivatetypebuiltins.c.template
gtkprivatetypebuiltins.h.template
gtkprogressbar.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkprogressbar.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkquartz.c Protect pasteboard GtkTargetPair flag values from being out of range 2012-08-22 14:43:20 -07:00
gtkquartz.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkquery.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkquery.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkradioaction.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkradioaction.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkradiobutton.c docs: Fix up the RadioButton example in the description 2012-08-20 11:03:17 +01:00
gtkradiobutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkradiomenuitem.c radiobutton: add missing (element-type) annotation for radio groups 2012-06-25 14:49:11 -04:00
gtkradiomenuitem.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkradiotoolbutton.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkradiotoolbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrange.c Implement gtk-primary-button-warps-slider GtkSetting 2012-09-11 11:19:09 +02:00
gtkrange.h types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkrbtree.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrbtree.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrc.default
gtkrc.key.default
gtkrc.key.emacs Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrc.key.mac
gtkrecentaction.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentaction.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchooser.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkrecentchooser.h docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkrecentchooserdefault.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchooserdefault.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchooserdialog.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchooserdialog.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchoosermenu.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkrecentchoosermenu.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchooserprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchooserutils.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchooserutils.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchooserwidget.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentchooserwidget.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentfilter.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentfilter.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkrecentmanager.c Ensure that XDG_DATA_HOME is created before using it 2012-07-12 08:42:33 -04:00
gtkrecentmanager.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkroundedbox.c cssvalue: Add a value for border-radius corner properties 2012-04-17 08:59:18 +02:00
gtkroundedboxprivate.h cssvalue: Add a value for border-radius corner properties 2012-04-17 08:59:18 +02:00
gtkscale.c types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkscale.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkscalebutton.c types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkscalebutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkscaleprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkscrollable.c types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkscrollable.h types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkscrollbar.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkscrollbar.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkscrolledwindow.c scrolledwindow: don't capture events meant for non-child windows 2012-09-02 20:30:53 -04:00
gtkscrolledwindow.h scrolledwindow: Kinetic scrolling support 2012-03-01 16:25:21 -05:00
gtksearchengine.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtksearchengine.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksearchenginequartz.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtksearchenginequartz.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksearchenginesimple.c Fix the build on Solaris 2012-05-25 23:13:42 -04:00
gtksearchenginesimple.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksearchenginetracker.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtksearchenginetracker.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksearchentry.c GtkSearchEntry: add rtl support 2012-09-21 23:41:28 -04:00
gtksearchentry.h gtk: Add GtkSearchEntry 2012-06-11 19:02:55 +01:00
gtkselection.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkselection.h docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkselectionprivate.h
gtkseparator.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkseparator.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkseparatormenuitem.c types: Clean up gtkwidget.h includes 2012-03-03 19:45:03 +01:00
gtkseparatormenuitem.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkseparatortoolitem.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkseparatortoolitem.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksettings.c GtkSettings: Fix small typo in docs. 2012-09-19 09:54:47 +02:00
gtksettings.h types: Clean up gtkwidget.h includes 2012-03-03 19:45:03 +01:00
gtksettingsprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkshow.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkshow.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksizegroup-private.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksizegroup.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtksizegroup.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksizerequest.c sizerequest: Improve warning message 2012-05-07 17:37:36 +02:00
gtksizerequest.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksocket.c Chain up relevant GObjectClass:notify vfuncs 2012-08-07 18:14:56 +03:00
gtksocket.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksocketprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkspinbutton.c spinbutton: fix style context path for internal buttons 2012-09-19 15:41:19 -04:00
gtkspinbutton.h types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkspinner.c Force spinners to be square 2012-09-17 22:47:36 -04:00
gtkspinner.h Add missing argument in GTK_SPINNER_GET_CLASS 2012-09-16 19:02:29 -04:00
gtkstatusbar.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkstatusbar.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkstatusicon-quartz.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkstatusicon.c statusicon: Rely on GtkIconHelper for pixbuf resizes 2012-07-13 16:56:37 +02:00
gtkstatusicon.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkstock.c Change the stock help accel to F1 2012-05-26 12:09:13 -04:00
gtkstock.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkstyleanimation.c animation: Don't set the changed properties anymore 2012-09-17 20:39:13 +02:00
gtkstyleanimationprivate.h animation: Don't set the changed properties anymore 2012-09-17 20:39:13 +02:00
gtkstylecascade.c Avoid an unintented export 2012-09-18 13:54:22 -04:00
gtkstylecascadeprivate.h styleprovider: Add a custom object for a list of style providers 2012-04-17 08:59:07 +02:00
gtkstylecontext.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkstylecontext.h Improve CSS styling of touch text selection handles 2012-09-03 17:08:02 +02:00
gtkstylecontextprivate.h css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkstyleproperties.c styleprovider: Make all implementors emit the new signal 2012-04-17 08:59:21 +02:00
gtkstyleproperties.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkstylepropertiesprivate.h css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtkstyleproperty.c styleproperty: Remove base argument 2012-05-11 16:42:12 +02:00
gtkstylepropertyprivate.h styleproperty: Remove base argument 2012-05-11 16:42:12 +02:00
gtkstyleprovider.c gtk: Get gtkwidgetpath.h includes out of the public headers 2012-03-19 02:26:16 +01:00
gtkstyleprovider.h Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkstyleproviderprivate.c symboliccolor: Change prototype of _gtk_symbolic_color_resolve_full() 2012-09-28 18:27:49 +02:00
gtkstyleproviderprivate.h symboliccolor: Change prototype of _gtk_symbolic_color_resolve_full() 2012-09-28 18:27:49 +02:00
gtkswitch.c port GtkSwitch to GtkActionHelper 2012-08-20 13:11:01 -04:00
gtkswitch.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksymboliccolor.c css: Huge refactoring to avoid computing wrong values 2012-09-28 18:27:49 +02:00
gtksymboliccolor.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtksymboliccolorprivate.h symboliccolor: Change prototype of _gtk_symbolic_color_resolve_full() 2012-09-28 18:27:49 +02:00
gtktestutils.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktestutils.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextattributes.c
gtktextattributes.h
gtktextbtree.c
gtktextbtree.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextbuffer.c Add custom va_marshallers in some places 2012-03-05 12:39:09 +01:00
gtktextbuffer.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextbufferrichtext.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextbufferrichtext.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextbufferserialize.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextbufferserialize.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextchild.c
gtktextchild.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextchildprivate.h
gtktextdisplay.c Revert part of "textview: Remove extra magic for drawing children" 2012-04-10 16:21:07 +02:00
gtktextdisplay.h Revert part of "textview: Remove extra magic for drawing children" 2012-04-10 16:21:07 +02:00
gtktexthandle.c Don't create GdkWindows with NULL parents 2012-09-27 13:46:26 +02:00
gtktexthandleprivate.h Add GtkTextHandle 2012-09-03 00:19:03 -04:00
gtktextiter.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtktextiter.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextiterprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextlayout.c Add custom va_marshallers in some places 2012-03-05 12:39:09 +01:00
gtktextlayout.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextmark.c
gtktextmark.h
gtktextmarkprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextsegment.c
gtktextsegment.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktexttag.c Document "set" properties a bit 2012-05-26 15:06:00 -04:00
gtktexttag.h
gtktexttagprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktexttagtable.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktexttagtable.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktexttypes.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktexttypes.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextutil.c Revert part of "textview: Remove extra magic for drawing children" 2012-04-10 16:21:07 +02:00
gtktextutil.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktextview.c Add a way to test touch features 2012-09-03 00:19:46 -04:00
gtktextview.h GtkTextView: Add input purpose and hints 2012-08-20 18:54:22 -04:00
gtkthemingbackground.c themingbackground: fix drawing for repeating positioned images 2012-05-30 12:16:11 -04:00
gtkthemingbackgroundprivate.h themingbackgorund: render all background layers 2012-05-15 13:24:40 -04:00
gtkthemingengine.c themingengine: animate spinners again 2012-09-17 20:39:13 +02:00
gtkthemingengine.h themingengine: add missing deprecation annotation 2012-05-16 21:57:22 -04:00
gtkthemingengineprivate.h themingengine: Make _gtk_theming_engine_paint_spinner() args const 2012-04-17 08:59:17 +02:00
gtktoggleaction.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoggleaction.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktogglebutton.c togglebutton: always set PRELIGHT state when in_button = TRUE 2012-09-14 13:38:15 -04:00
gtktogglebutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoggletoolbutton.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoggletoolbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoolbar.c Don't leak a ref to the settings 2012-09-16 20:21:06 -04:00
gtktoolbar.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoolbutton.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtktoolbutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoolitem.c Chain up relevant GObjectClass:notify vfuncs 2012-08-07 18:14:56 +03:00
gtktoolitem.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoolitemgroup.c Don't leak a ref to the settings 2012-09-16 20:21:06 -04:00
gtktoolitemgroup.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoolpalette.c Don't leak a ref to the settings 2012-09-16 20:21:06 -04:00
gtktoolpalette.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoolpaletteprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktoolshell.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtktoolshell.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktooltip.c Don't leak a ref to the tooltip window 2012-09-16 21:36:18 -04:00
gtktooltip.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktrayicon-x11.c tray: Add suggested braces around empty body in 'if' statements 2012-04-07 13:01:24 +02:00
gtktrayicon.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreedatalist.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreedatalist.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreednd.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreednd.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreemenu.c gtk: Get rid of deprecation warnings 2012-05-01 03:13:01 +02:00
gtktreemenu.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreemodel.c docs: Correct gtk_tree_row_reference_new() description 2012-05-04 03:04:58 +01:00
gtktreemodel.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreemodelfilter.c GtkTreeModelFilter: Fix _iter_previous() when iter points at 2nd node 2012-07-17 10:50:48 +02:00
gtktreemodelfilter.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreemodelsort.c treemodelsort: fix iter_previous so it can go back to the first item 2012-04-28 02:01:16 -04:00
gtktreemodelsort.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreeprivate.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreeselection.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreeselection.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreesortable.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreesortable.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreestore.c Consistently allow -1 to mean 'append' in tree models 2012-07-12 08:42:34 -04:00
gtktreestore.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreeview.c treeview: fix size of the dragged column header 2012-09-27 17:09:55 +02:00
gtktreeview.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtktreeviewcolumn.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtktreeviewcolumn.h docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtktypebuiltins.c.template
gtktypebuiltins.h.template
gtktypes.h types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkuimanager.c doc: Add missing CDATA around a XML programlisting 2012-05-16 23:57:28 -04:00
gtkuimanager.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkunixprint.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkversion.h.in Change FSF Address 2012-02-27 17:06:11 +00:00
gtkviewport.c docs: fix a number of typos and obsolete references 2012-07-02 10:41:11 -04:00
gtkviewport.h types: Move GtkAdustment declaration to gtktypes.h 2012-03-03 19:45:03 +01:00
gtkvolumebutton.c Fix malformed doc comments 2012-04-12 21:12:16 -04:00
gtkvolumebutton.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkwidget.c stylecontext: Refactor the way animations are started and stopped 2012-09-17 20:40:01 +02:00
gtkwidget.h GtkWidget: Add gtk_widget_insert_action_group() 2012-08-20 13:09:04 -04:00
gtkwidgetpath.c Optimize gtk_widget_path_copy() by preallocating "elems" array 2012-08-07 00:38:48 -04:00
gtkwidgetpath.h types: Move widget types into gtktypes.h 2012-03-03 19:45:03 +01:00
gtkwidgetprivate.h GtkWidget: Add gtk_widget_insert_action_group() 2012-08-20 13:09:04 -04:00
gtkwin32.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkwin32embed.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkwin32embed.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkwin32embedwidget.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkwin32embedwidget.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkwin32theme.c cssstylefuncs: Remove base argument 2012-05-11 16:42:12 +02:00
gtkwin32themeprivate.h cssstylefuncs: Remove base argument 2012-05-11 16:42:12 +02:00
gtkwindow.c window: Add the .background class to windows unconditionally 2012-09-17 20:39:11 +02:00
gtkwindow.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkwindowprivate.h window: Add a delay before automatically showing mnemonics 2012-08-31 22:53:23 -04:00
gtkx.h Change FSF Address 2012-02-27 17:06:11 +00:00
gtkxembed.c Change FSF Address 2012-02-27 17:06:11 +00:00
gtkxembed.h Change FSF Address 2012-02-27 17:06:11 +00:00
Makefile.am Add code for blurring (original code from Unico, copyright fine for Gtk+) 2012-09-20 02:45:41 +02:00
makefile.msc.in
org.gtk.Settings.ColorChooser.gschema.xml Initial cut at implementing a new color chooser 2012-02-14 16:36:49 -05:00
org.gtk.Settings.FileChooser.gschema.xml Change FSF Address 2012-02-27 17:06:11 +00:00
paper_names_offsets.c
paper_names.c
queryimmodules.c build: Remove now-unused GTK_DISABLE_DEPRECATED undefs 2012-05-01 03:13:01 +02:00
updateiconcache.c Change FSF Address 2012-02-27 17:06:11 +00:00
xembed.h