summaryrefslogtreecommitdiff
path: root/gtk/gtksymboliccolor.h
Commit message (Collapse)AuthorAgeFilesLines
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* Cosmetic changesMatthias Clasen2011-12-151-1/+1
|
* Add support for win32 theme colors as symbolic colorsAlexander Larsson2011-11-181-0/+2
|
* API: gtk: Add gtk_symbolic_color_to_string()Benjamin Otte2011-05-181-0/+2
| | | | | See future commits for why this is useful. Or try to debug some color problem.
* Block direct #including in style headersCarlos Garnacho2010-12-041-0/+4
|
* Some header cleanupsMatthias Clasen2010-12-041-35/+16
| | | | | Move GtkGradient to their own files, also move GtkBorder out of gtkstyle.h, so that header can be all deprecated.
* GtkSymbolicColor: Take const GdkRGBA in new_literal().Carlos Garnacho2010-12-041-1/+1
|
* GtkSymbolicColor: Add gtk_symbolic_color_new_alpha()Carlos Garnacho2010-12-041-0/+2
| | | | | This function modifies the alpha channel of a color, multiplying it by a factor.
* Use GdkRGBA all around in GtkStyleContext.Carlos Garnacho2010-12-041-1/+1
|
* Add theming docsCarlos Garnacho2010-12-041-2/+2
| | | | | Both API and file format is documented, there's still missing a migration doc though.
* GtkGradient: Handle symbolic gradients.Carlos Garnacho2010-12-041-0/+6
| | | | | | | | | | | | The css parser has been modified to parse correctly radial gradients: background-image: -gtk-gradient (radial, center center, 0, center center, 0.8, from (#000), to (#fff)); The theming engine has been modified to correctly animate these, as well as transitions between different pattern types.
* Add GtkGradient.Carlos Garnacho2010-12-041-1/+15
| | | | | | | | | | This type defines a gradient between 2 symbolic colors, with any number of color stop between these. At the moment it has been put besides GtkSymbolicColor, although should be completely private, it will likely need extending in the future for radial gradients. At some point, it maybe should also be used for images, so painting both a gradient and an image is consistent.
* Fix include.Carlos Garnacho2010-12-041-2/+1
|
* Add GtkSymbolicColor.Carlos Garnacho2010-12-041-0/+49
This is a small boxed struct used to store symbolic colors so they can be resolved at a later point.