Lines Matching +defs:color +defs:values

2404     GdkColor	color = { 0, 0, 0, 0 };
2415 &color, &color, 0, 0);
2651 * values have been used (those that dictate our initial size)
2652 * Let forced (i.e., correct) values through always.
3139 /* Initialize values */
3521 * Called when the foreground or background color has been changed.
3530 GdkColor color = { 0, 0, 0, 0 };
3532 color.pixel = gui.back_pixel;
3533 gdk_window_set_background(gui.drawarea->window, &color);
3691 * to their correct minimum values, stop them being set as we need
3736 /* Check that none of the colors are the same as the background color */
4524 * Return the Pixel value (color) for the given color name. This routine was
4570 GdkColor color;
4574 parsed = gdk_color_parse((const char *)name, &color);
4579 &color, FALSE, TRUE);
4580 return (guicolor_T)color.pixel;
4602 * Set the current text foreground color.
4605 gui_mch_set_fg_color(guicolor_T color)
4607 gui.fgcolor->pixel = (unsigned long)color;
4611 * Set the current text background color.
4614 gui_mch_set_bg_color(guicolor_T color)
4616 gui.bgcolor->pixel = (unsigned long)color;
4620 * Set the current text special color.
4623 gui_mch_set_sp_color(guicolor_T color)
4625 gui.spcolor->pixel = (unsigned long)color;
5184 GdkGCValues values;
5190 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
5191 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
5192 values.function = GDK_XOR;
5194 &values,
5231 GdkGCValues values;
5237 values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
5238 values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
5239 values.function = GDK_XOR;
5241 &values,
5278 gui_mch_draw_hollow_cursor(guicolor_T color)
5285 gui_mch_set_fg_color(color);
5298 * color "color".
5301 gui_mch_draw_part_cursor(int w, int h, guicolor_T color)
5306 gui_mch_set_fg_color(color);
5480 GdkColor color;
5485 color.pixel = gui.back_pixel;
5487 gdk_gc_set_foreground(gui.text_gc, &color);
5756 GdkColor color;
5758 (unsigned long)pixel, &color);
5760 return (((unsigned)color.red & 0xff00) << 8)
5761 | ((unsigned)color.green & 0xff00)
5762 | (((unsigned)color.blue & 0xff00) >> 8);