108 x = this_curve -> title_pos[0] *
resol[0];
109 y = this_curve -> title_pos[1] *
resol[1];
110 cairo_set_source_rgba (cr, this_curve -> title_color.red,
111 this_curve -> title_color.green,
112 this_curve -> title_color.blue,
113 this_curve -> title_color.alpha);
114 pango_layout_set_font_description (
layout, pango_font_description_from_string (this_curve -> title_font));
115 pango_layout_set_markup (
layout, this_curve -> title, -1);
117 cairo_move_to (cr,
x,
y);
118 pango_cairo_update_layout (cr,
layout);
119 pango_cairo_show_layout (cr,
layout);