class CAIRO_PANGO_I
Cairo Pango API interface
note
description: "Cairo Pango API interface"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2024-01-09 9:24:24 GMT (Tuesday 9th January 2024)"
revision: "12"
deferred class
CAIRO_PANGO_I
inherit
EL_MEMORY_ROUTINES
EL_OS_DEPENDENT
CAIRO_PANGO_CONSTANTS
feature -- Access
pango_scale: INTEGER
deferred
end
layout_indent (layout: POINTER): INTEGER
require
layout_attached: is_attached (layout)
deferred
end
layout_pango_size (layout: POINTER): TUPLE [width, height: INTEGER]
-- size scaled by PANGO_SCALE
require
layout_attached: is_attached (layout)
deferred
end
layout_size (layout: POINTER): TUPLE [width, height: INTEGER]
require
layout_attached: is_attached (layout)
deferred
end
layout_unknown_glyphs_count (layout: POINTER): INTEGER
require
layout_attached: is_attached (layout)
deferred
end
layout_text (layout: POINTER): POINTER
require
layout_attached: is_attached (layout)
deferred
end
feature -- Factory
new_font (pango_context, font_description: POINTER): POINTER
-- PangoFont*
require
pango_context_attached: is_attached (pango_context)
font_description_attached: is_attached (font_description)
deferred
end
new_font_description: POINTER
deferred
end
new_font_description_from_string (str: POINTER): POINTER
deferred
end
feature -- Element change
set_context_font_description (a_context, font_description: POINTER)
-- set Pango `a_context' with `font_description'
require
context_attached: is_attached (a_context)
font_description_attached: is_attached (font_description)
deferred
end
set_font_family (font_description: POINTER; a_family: POINTER)
require
attached_font_description: is_attached (font_description)
deferred
end
set_font_style (font_description: POINTER; a_pango_style: INTEGER_32)
require
attached_font_description: is_attached (font_description)
deferred
end
set_font_weight (font_description: POINTER; a_weight: INTEGER_32)
require
attached_font_description: is_attached (font_description)
deferred
end
set_font_stretch (font_description: POINTER; value: INTEGER)
require
attached_font_description: is_attached (font_description)
deferred
end
set_font_size (font_description: POINTER; a_size: INTEGER_32)
require
attached_font_description: is_attached (font_description)
deferred
end
set_font_absolute_size (font_description: POINTER; size: DOUBLE)
require
attached_font_description: is_attached (font_description)
deferred
end
set_layout_text (a_layout: POINTER; a_text: POINTER; a_length: INTEGER_32)
require
layout_attached: is_attached (a_layout)
deferred
end
set_layout_font_description (a_layout, font_description: POINTER)
require
layout_attached: is_attached (a_layout)
font_description_attached: is_attached (font_description)
deferred
end
set_layout_width (a_layout: POINTER; a_width: INTEGER_32)
require
layout_attached: is_attached (a_layout)
deferred
end
feature -- Memory release
font_description_free (font_description: POINTER)
deferred
end
end