summaryrefslogtreecommitdiff
path: root/gdk/gdkrgba.h
Commit message (Collapse)AuthorAgeFilesLines
* Add GDK_AVAILABLE_IN_ALL annotations in gdkMatthias Clasen2013-05-051-0/+8
| | | | | This is in preparation to modernizing our handing of exported symbols.
* Move single-include guards inside include guardsMatthias Clasen2012-12-281-3/+3
| | | | | | gcc has optimizations for include guards that only work if they are outermost in the the header. https://bugzilla.gnome.org/show_bug.cgi?id=689810
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* More GDK documentation tweaksMatthias Clasen2011-02-091-9/+8
|
* gdk: Constify argument to gdk_rgba_copy()Benjamin Otte2010-12-061-1/+1
|
* rgba: Invert the arguments and improve bindabilityEmmanuele Bassi2010-11-281-2/+2
| | | | | | | | Since parse() is a method of the Gdk.RGBA class, the GdkRGBA pointer should be the first argument, and the string the second one, to allow a more natural binding. https://bugzilla.gnome.org/show_bug.cgi?id=635879
* Make gdk_rgba_to_string() take a const GdkRGBAChristian Persch2010-10-291-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=633216
* Add GdkRGBA struct to supersede GdkColorCarlos Garnacho2010-10-221-0/+65
GdkRGBA is a boxed struct similar to GdkColor, with the difference that it stores alpha information as well, and colors are stored in [0..1] doubles, in the cairo spirit. gdk_cairo_set_source_rgba() has been also added to allow easier handling of this new type.