summaryrefslogtreecommitdiff
path: root/gtk/gtkshadowprivate.h
Commit message (Collapse)AuthorAgeFilesLines
* shadow: Also rename filesBenjamin Otte2012-04-171-56/+0
|
* shadow: Rename to GtkCssShadowValueBenjamin Otte2012-04-171-23/+19
| | | | I don't want to confuse css values with other stuff, so there.
* shadow: Move parse function into GtkShadowBenjamin Otte2012-04-171-9/+2
| | | | | This way, we have less public API. And gtkcssstylepropertyimpl.c looks less scary (only 1624 lines now).
* shadow: Make this a GtkCssValueBenjamin Otte2012-04-171-10/+3
|
* shadow: Remove _gtk_shadow_get_resolved()Benjamin Otte2012-04-171-1/+0
| | | | It's unused
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* css: Redo value resolvingBenjamin Otte2012-01-091-2/+2
| | | | | | | | | | | | Instead of on-demand resolvage, we now resolve during lookup. The step is done via _gtk_css_style_property_compute_value() which currently calls into _gtk_css_style_compute_value() That function has all the old resolving machinery. The only part missing for now is the handling of win32 code. It will be added back later.
* shadow: add _gtk_box_shadow_render()Cosimo Cecchi2011-06-111-3/+9
| | | | This supports only inset box-shadow elements for now.
* shadow: render icon-shadow for spinnersCosimo Cecchi2011-06-091-0/+5
|
* shadow: add _gtk_icon_shadow_paint()Cosimo Cecchi2011-06-091-0/+3
| | | | Paints a shadow of the current source, using the defined colors.
* css: Change to_string() to print()Benjamin Otte2011-06-021-1/+2
| | | | | It's preferrable to print to an existing GString instead of returning a char* everywhere that needs to be freed later.
* shadow: Redo shadow implementation for rotationsBenjamin Otte2011-05-221-2/+0
| | | | The shadows went bonkers when the labels were rotated
* shadow: add a method to paint the shadow for a PangoLayoutCosimo Cecchi2011-05-201-0/+7
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=649314
* shadow: add a GtkShadow private typeCosimo Cecchi2011-05-201-0/+57
This will be used as a base both for parsing text-shadow and box-shadow properties. The type is private, as there's no real use in exporting this in a public API. https://bugzilla.gnome.org/show_bug.cgi?id=649314