Top | ![]() |
![]() |
![]() |
![]() |
#define | GO_COLOR_CHANGE_A() |
#define | GO_COLOR_CHANGE_B() |
#define | GO_COLOR_CHANGE_G() |
#define | GO_COLOR_CHANGE_R() |
#define | GO_COLOR_DOUBLE_A() |
#define | GO_COLOR_DOUBLE_B() |
#define | GO_COLOR_DOUBLE_G() |
#define | GO_COLOR_DOUBLE_R() |
#define | GO_COLOR_FROM_GDK_RGBA() |
#define | GO_COLOR_FROM_RGB() |
#define | GO_COLOR_FROM_RGBA() |
#define | GO_COLOR_GREY() |
#define | GO_COLOR_INTERPOLATE() |
#define | GO_COLOR_MONO_INTERPOLATE() |
#define | GO_COLOR_TO_CAIRO() |
#define | GO_COLOR_TO_RGB() |
#define | GO_COLOR_TO_RGBA() |
#define | GO_COLOR_UINT_A() |
#define | GO_COLOR_UINT_B() |
#define | GO_COLOR_UINT_G() |
#define | GO_COLOR_UINT_R() |
gchar * | go_color_as_str () |
GOColor | go_color_from_gdk_rgba () |
gboolean | go_color_from_str () |
GdkRGBA * | go_color_to_gdk_rgba () |
PangoAttribute * | go_color_to_pango () |
typedef | GOColor |
GONamedColor | |
#define | GO_COLOR_BLACK |
#define | GO_COLOR_BLUE |
#define | GO_COLOR_CYAN |
#define | GO_COLOR_GREEN |
#define | GO_COLOR_RED |
#define | GO_COLOR_VIOLET |
#define | GO_COLOR_WHITE |
#define | GO_COLOR_YELLOW |
#define GO_COLOR_FROM_RGBA(r,g,b,a) ((((guint)((r)&0xff))<<24)|(((guint)((g)&0xff))<<16)|((guint)((b)&0xff)<<8)|(guint)((a)&0xff))
#define GO_COLOR_MONO_INTERPOLATE(v1, v2, t) ((gint)go_rint((v2)*(t)+(v1)*(1-(t))))
#define GO_COLOR_TO_CAIRO(x) GO_COLOR_DOUBLE_R(x),GO_COLOR_DOUBLE_G(x),GO_COLOR_DOUBLE_B(x),GO_COLOR_DOUBLE_A(x)