Graphics Contexts

A graphics context, or GC, is simply a set of parameters to be used when drawing (such as color, clip mask, font, and so on). It is a server-side resource, just as pixmaps and windows are. GCs reduce the number of arguments to the GDK drawing functions, and also reduce the number of parameters passed from client to server with each drawing request.

A graphics context can be created with a GdkGCValues struct, analagous to GdkWindowAttr; the struct contains all the interesting features of a graphics context, and you pass gdk_gc_new_with_values() flags indicating which fields are valid. The other fields retain their default value. You can also create an all-default GC with gdk_gc_new() (this is usually easier). Functions are provided to change GC settings after the GC is created as well---but remember that each change requires a message to the X server. These functions are summarized in Figure 16. The attributes of a GC, and the flags used as the final argument to gdk_gc_new_with_values(), are summarized in Table 6.

All GCs are not interchangeable; they are tied to a particular depth and visual. The GC's depth and visual must match the depth and visual of the drawable you are drawing to. A GC's depth and visual are taken from the GdkWindow* argument to gdk_gc_new(), so the easiest way to handle this issue is to create the GC with the window you plan to draw on.

GdkGCValues is a nice summary of a GC's attributes:


typedef struct _GdkGCValues GdkGCValues;

struct _GdkGCValues
{
  GdkColor          foreground;
  GdkColor          background;
  GdkFont          *font;
  GdkFunction       function;
  GdkFill           fill;
  GdkPixmap        *tile;
  GdkPixmap        *stipple;
  GdkPixmap        *clip_mask;
  GdkSubwindowMode  subwindow_mode;
  gint              ts_x_origin;
  gint              ts_y_origin;
  gint              clip_x_origin;
  gint              clip_y_origin;
  gint              graphics_exposures;
  gint              line_width;
  GdkLineStyle      line_style;
  GdkCapStyle       cap_style;
  GdkJoinStyle      join_style;
};

The foreground color is the "pen color" used to draw lines, circles, and other shapes. The purpose of the background color depends on the particular drawing operation. These colors must be allocated in the current colormap with gdk_color_alloc().

The font field is unused: in Xlib, it specifies the font to use when drawing text. In GDK, it used to have the same purpose; but now the GDK routines for drawing text all require a GdkFont* argument instead. An Xlib graphics context can only store plain fonts, but a GdkFont can also represent a fontset (used to render some foreign languages). GDK should probably store a font field in its GdkGC instead of requiring a font argument to the text-drawing functions, but it doesn't.

The function field specifies how each pixel being drawn is combined with the pixel that already exists in the drawable. There are many possible values, but only two are ever used:

The fill field determines how the tile and stipple fields are used. A tile is a pixmap with the same depth as the destination drawable; it is copied over and over into the destination drawable---the origin of the first tile is (ts_x_origin, ts_y_origin). A stipple is a bitmap (pixmap with depth 1); stipples are also tiled starting at (ts_x_origin, ts_y_origin). Possible fill values are:

Some X servers do not implement the more obscure function and fill modes very efficiently. Don't be surprised if using them noticeably slows down drawing.

The optional clip_mask is a bitmap; only bits set in this bitmap will be drawn. The mapping from the clip mask to the drawable is determined by clip_x_origin and clip_y_origin; these define the drawable coordinates corresponding to (0,0) in the clip mask. It is also possible to set a clip rectangle (the most common and useful form of clipping) or a clip region (a region is an arbitrary area on the screen, typically a polygon or list of rectangles). To set a clip rectangle, use gdk_gc_set_clip_rectangle():


  GdkRectangle clip_rect;
  clip_rect.x = 10;
  clip_rect.y = 20;
  clip_rect.width = 200;
  clip_rect.height = 100;
  gdk_gc_set_clip_rectangle(gc, &clip_rect);

To turn off clipping, set the clip rectangle, clip region, or clip mask to NULL.

The subwindow_mode of a GC only matters if the drawable is a window. The default setting is GDK_CLIP_BY_CHILDREN; this means that child windows are not affected by drawing on parent windows. This preserves the illusion that child windows are "on top" of parents, and child windows are opaque. GDK_INCLUDE_INFERIORS will draw right over the top of any child windows, overwriting any graphics the child windows may contain; normally this mode is not used. If you do use GDK_INCLUDE_INFERIORS, you will probably use GDK_XOR as your drawing function, since it allows you to restore the child windows' previous contents.

graphics_exposures is a boolean value which defaults to TRUE; it determines whether gdk_window_copy_area() sometimes generates expose events. the section called Expose Events explained this in more detail.

The final four GC values determine how lines are drawn. These values are used for drawing lines, including the borders of unfilled polygons and arcs. The line_width field specifies the width of a line, in pixels. A line width of 0 specifies a "thin line"; thin lines are one-pixel lines that can be drawn very quickly (usually with hardware acceleration), but the exact pixels drawn depend on the X server in use. For consistent results, use a width of 1 instead.

The line_style field can have one of three values:

Dashes are specified with gdk_gc_set_dashes(); GdkGCValues does not include a field for this. gdk_gc_set_dashes() accepts three arguments:

You might set a whimsical dash pattern this way, for example:


  gchar dash_list[] = { 5, 5, 3, 3, 1, 1, 3, 3 };
  gdk_gc_set_dashes(gc, 0, dash_list, sizeof(dash_list));

The default dash list is {4, 4} with an offset of 0.

Figure 13 shows some dashed lines drawn with GDK_LINE_DOUBLE_DASH. The graphics context's foreground color is black, and its background color is a light gray. The first five lines are the default {4, 4} dash pattern with offsets of 0, 1, 2, 3, and 4. Remember that 0 is the default. Figure 14 shows a magnified view of these five lines. The last line is the whimsical dash pattern mentioned above; it's shown magnified in Figure 15.

Figure 13. Five dashed lines, with GDK_LINE_DOUBLE_DASH

Figure 14. Default dash pattern, with varied offsets

Figure 15. A complex dash pattern

cap_style determines how X draws line endpoints (or dash endpoints, if a line is dashed). It has four possible values:

The join_style parameter affects how lines are connected to one another, when drawing a polygon or drawing multiple lines in one function call. If you think of lines as long, thin rectangles, it is clear that they do not connect smoothly; there is a "notch" where the two endpoints come together. The three join styles fill in this notch:

#include <gdk/gdk.h>

GdkGC* gdk_gc_new(GdkWindow* window);

GdkGC* gdk_gc_new_with_values(GdkWindow* window, GdkGCValues* values, GdkGCValuesMask values_mask);

void gdk_gc_set_dashes(GdkGC* gc, gint dash_offset, gchar dash_list, gint n);

void gdk_gc_unref(GdkGC* gc);

Figure 16. GdkGC

Table 6. GC Attributes

Attribute GdkGCValuesMask Modifying Function Default Value
GdkColor foreground GDK_GC_FOREGROUND gdk_gc_set_foreground() black
GdkColor background GDK_GC_BACKGROUND gdk_gc_set_background() white
GdkFont *font GDK_GC_FONT gdk_gc_set_font depends on X server
GdkFunction function GDK_GC_FUNCTION gdk_gc_set_function() GDK_COPY
GdkFill fill GDK_GC_FILL gdk_gc_set_fill() GDK_SOLID
GdkPixmap *tile GDK_GC_TILE gdk_gc_set_tile() pixmap filled with foreground color (i.e. effectively none)
GdkPixmap *stipple GDK_GC_STIPPLE gdk_gc_set_stipple() all-bits-on bitmap (i.e. effectively none)
GdkPixmap *clip_mask GDK_GC_CLIP_MASK gdk_gc_set_clip_mask() none
GdkSubwindowMode subwindow_mode GDK_GC_SUBWINDOW gdk_gc_set_subwindow() GDK_CLIP_BY_CHILDREN
gint ts_x_origin GDK_GC_TS_X_ORIGIN gdk_gc_set_ts_origin() 0
gint ts_y_origin GDK_GC_TS_Y_ORIGIN gdk_gc_set_ts_origin() 0
gint clip_x_origin GDK_GC_CLIP_X_ORIGIN gdk_gc_set_clip_origin() 0
gint clip_y_origin GDK_GC_CLIP_Y_ORIGIN gdk_gc_set_clip_origin() 0
gint graphics_exposures GDK_GC_EXPOSURES gdk_gc_set_exposures() TRUE
gint line_width GDK_GC_LINE_WIDTH gdk_gc_set_line_attributes() 0
GdkLineStyle line_style GDK_GC_LINE_STYLE gdk_gc_set_line_attributes() GDK_LINE_SOLID
GdkCapStyle cap_style GDK_GC_CAP_STYLE gdk_gc_set_line_attributes() GDK_CAP_BUTT
GdkJoinStyle join_style GDK_GC_JOIN_STYLE gdk_gc_set_line_attributes() GDK_JOIN_MITER
gchar dash_list[] none gdk_gc_set_dashes() {4, 4}
gint dash_offset none gdk_gc_set_dashes() 0