111 x = this_proj -> curves[rid][cid] -> title_pos[0] *
resol[0];
112 y = this_proj -> curves[rid][cid] -> title_pos[1] *
resol[1];
113 cairo_set_source_rgba (cr, this_proj -> curves[rid][cid] -> title_color.red,
114 this_proj -> curves[rid][cid] -> title_color.green,
115 this_proj -> curves[rid][cid] -> title_color.blue,
116 this_proj -> curves[rid][cid] -> title_color.alpha);
117 pango_layout_set_font_description (
layout, pango_font_description_from_string (this_proj -> curves[rid][cid] -> title_font));
118 pango_layout_set_text (
layout, this_proj -> curves[rid][cid] -> title, -1);
119 cairo_move_to (cr,
x,
y);
120 pango_cairo_update_layout (cr,
layout);
121 pango_cairo_show_layout (cr,
layout);