mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-08 06:48:03 +02:00
commited documentation skeleton
This commit is contained in:
parent
5f48214ad2
commit
8ca1f1a825
82 changed files with 2763 additions and 0 deletions
20
doc/reference/.cvsignore
Normal file
20
doc/reference/.cvsignore
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
aclocal.m4
|
||||
autom4te.cache
|
||||
cairo.pc
|
||||
config.cache
|
||||
config.guess
|
||||
config.h
|
||||
config.h.in
|
||||
config.log
|
||||
config.status
|
||||
config.sub
|
||||
configure
|
||||
libtool
|
||||
ltmain.sh
|
||||
stamp-h
|
||||
stamp-h1
|
||||
stamp-h.in
|
||||
*~
|
||||
|
||||
4
doc/reference/ChangeLog
Normal file
4
doc/reference/ChangeLog
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
2003-10-15 Thomas Hunger <info@teh-web.de>
|
||||
|
||||
* doc.xml: some documentation skeleton
|
||||
* files for each entry can be found in xml/
|
||||
5
doc/reference/README
Normal file
5
doc/reference/README
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
How to transform the docs to html:
|
||||
call
|
||||
$ xmlto html doc.xml
|
||||
from within the reference directory
|
||||
|
||||
173
doc/reference/doc.xml
Normal file
173
doc/reference/doc.xml
Normal file
|
|
@ -0,0 +1,173 @@
|
|||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
|
||||
<!ENTITY cairo_create SYSTEM "xml/cairo_create.xml">
|
||||
<!ENTITY cairo_reference SYSTEM "xml/cairo_reference.xml">
|
||||
<!ENTITY cairo_destroy SYSTEM "xml/cairo_destroy.xml">
|
||||
<!ENTITY cairo_save SYSTEM "xml/cairo_save.xml">
|
||||
<!ENTITY cairo_restore SYSTEM "xml/cairo_restore.xml">
|
||||
<!ENTITY cairo_copy SYSTEM "xml/cairo_copy.xml">
|
||||
<!ENTITY cairo_push_group SYSTEM "xml/cairo_push_group.xml">
|
||||
<!ENTITY cairo_pop_group SYSTEM "xml/cairo_pop_group.xml">
|
||||
<!ENTITY cairo_set_target_surface SYSTEM "xml/cairo_set_target_surface.xml">
|
||||
<!ENTITY cairo_set_operator SYSTEM "xml/cairo_set_operator.xml">
|
||||
<!ENTITY cairo_set_rgb_color SYSTEM "xml/cairo_set_rgb_color.xml">
|
||||
<!ENTITY cairo_set_alpha SYSTEM "xml/cairo_set_alpha.xml">
|
||||
<!ENTITY cairo_set_pattern SYSTEM "xml/cairo_set_pattern.xml">
|
||||
<!ENTITY cairo_set_tolerance SYSTEM "xml/cairo_set_tolerance.xml">
|
||||
<!ENTITY cairo_set_fill_rule SYSTEM "xml/cairo_set_fill_rule.xml">
|
||||
<!ENTITY cairo_set_line_width SYSTEM "xml/cairo_set_line_width.xml">
|
||||
<!ENTITY cairo_set_line_cap SYSTEM "xml/cairo_set_line_cap.xml">
|
||||
<!ENTITY cairo_set_line_join SYSTEM "xml/cairo_set_line_join.xml">
|
||||
<!ENTITY cairo_set_dash SYSTEM "xml/cairo_set_dash.xml">
|
||||
<!ENTITY cairo_set_miter_limit SYSTEM "xml/cairo_set_miter_limit.xml">
|
||||
<!ENTITY cairo_translate SYSTEM "xml/cairo_translate.xml">
|
||||
<!ENTITY cairo_scale SYSTEM "xml/cairo_scale.xml">
|
||||
<!ENTITY cairo_rotate SYSTEM "xml/cairo_rotate.xml">
|
||||
<!ENTITY cairo_default_matrix SYSTEM "xml/cairo_default_matrix.xml">
|
||||
<!ENTITY cairo_identity_matrix SYSTEM "xml/cairo_identity_matrix.xml">
|
||||
<!ENTITY cairo_transform_point SYSTEM "xml/cairo_transform_point.xml">
|
||||
<!ENTITY cairo_transform_distance SYSTEM "xml/cairo_transform_distance.xml">
|
||||
<!ENTITY cairo_inverse_transform_point SYSTEM "xml/cairo_inverse_transform_point.xml">
|
||||
<!ENTITY cairo_inverse_transform_distance SYSTEM "xml/cairo_inverse_transform_distance.xml">
|
||||
<!ENTITY cairo_new_path SYSTEM "xml/cairo_new_path.xml">
|
||||
<!ENTITY cairo_move_to SYSTEM "xml/cairo_move_to.xml">
|
||||
<!ENTITY cairo_line_to SYSTEM "xml/cairo_line_to.xml">
|
||||
<!ENTITY cairo_rel_move_to SYSTEM "xml/cairo_rel_move_to.xml">
|
||||
<!ENTITY cairo_rel_line_to SYSTEM "xml/cairo_rel_line_to.xml">
|
||||
<!ENTITY cairo_stroke_path SYSTEM "xml/cairo_stroke_path.xml">
|
||||
<!ENTITY cairo_close_path SYSTEM "xml/cairo_close_path.xml">
|
||||
<!ENTITY cairo_stroke SYSTEM "xml/cairo_stroke.xml">
|
||||
<!ENTITY cairo_fill SYSTEM "xml/cairo_fill.xml">
|
||||
<!ENTITY cairo_in_stroke SYSTEM "xml/cairo_in_stroke.xml">
|
||||
<!ENTITY cairo_in_fill SYSTEM "xml/cairo_in_fill.xml">
|
||||
<!ENTITY cairo_hit SYSTEM "xml/cairo_hit.xml">
|
||||
<!ENTITY cairo_clip SYSTEM "xml/cairo_clip.xml">
|
||||
<!ENTITY cairo_select_font SYSTEM "xml/cairo_select_font.xml">
|
||||
<!ENTITY cairo_scale_font SYSTEM "xml/cairo_scale_font.xml">
|
||||
<!ENTITY cairo_show_text SYSTEM "xml/cairo_show_text.xml">
|
||||
<!ENTITY cairo_current_operator SYSTEM "xml/cairo_current_operator.xml">
|
||||
<!ENTITY cairo_current_rgb_color SYSTEM "xml/cairo_current_rgb_color.xml">
|
||||
<!ENTITY cairo_current_alpha SYSTEM "xml/cairo_current_alpha.xml">
|
||||
<!ENTITY cairo_current_tolerance SYSTEM "xml/cairo_current_tolerance.xml">
|
||||
<!ENTITY cairo_current_point SYSTEM "xml/cairo_current_point.xml">
|
||||
<!ENTITY cairo_current_fill_rule SYSTEM "xml/cairo_current_fill_rule.xml">
|
||||
<!ENTITY cairo_current_line_width SYSTEM "xml/cairo_current_line_width.xml">
|
||||
<!ENTITY cairo_current_line_cap SYSTEM "xml/cairo_current_line_cap.xml">
|
||||
<!ENTITY cairo_current_line_join SYSTEM "xml/cairo_current_line_join.xml">
|
||||
<!ENTITY cairo_current_miter_limit SYSTEM "xml/cairo_current_miter_limit.xml">
|
||||
<!ENTITY cairo_current_matrix SYSTEM "xml/cairo_current_matrix.xml">
|
||||
<!ENTITY cairo_current_target_surface SYSTEM "xml/cairo_current_target_surface.xml">
|
||||
<!ENTITY cairo_status SYSTEM "xml/cairo_status.xml">
|
||||
<!ENTITY cairo_status_string SYSTEM "xml/cairo_status_string.xml">
|
||||
<!ENTITY cairo_surface_reference SYSTEM "xml/cairo_surface_reference.xml">
|
||||
<!ENTITY cairo_surface_destroy SYSTEM "xml/cairo_surface_destroy.xml">
|
||||
<!ENTITY cairo_surface_clip_restore SYSTEM "xml/cairo_surface_clip_restore.xml">
|
||||
<!ENTITY cairo_surface_set_repeat SYSTEM "xml/cairo_surface_set_repeat.xml">
|
||||
<!ENTITY cairo_surface_set_matrix SYSTEM "xml/cairo_surface_set_matrix.xml">
|
||||
<!ENTITY cairo_surface_get_matrix SYSTEM "xml/cairo_surface_get_matrix.xml">
|
||||
<!ENTITY cairo_surface_set_filter SYSTEM "xml/cairo_surface_set_filter.xml">
|
||||
<!ENTITY cairo_matrix_create SYSTEM "xml/cairo_matrix_create.xml">
|
||||
<!ENTITY cairo_matrix_destroy SYSTEM "xml/cairo_matrix_destroy.xml">
|
||||
<!ENTITY cairo_matrix_copy SYSTEM "xml/cairo_matrix_copy.xml">
|
||||
<!ENTITY cairo_matrix_set_identity SYSTEM "xml/cairo_matrix_set_identity.xml">
|
||||
<!ENTITY cairo_matrix_translate SYSTEM "xml/cairo_matrix_translate.xml">
|
||||
<!ENTITY cairo_matrix_scale SYSTEM "xml/cairo_matrix_scale.xml">
|
||||
<!ENTITY cairo_matrix_rotate SYSTEM "xml/cairo_matrix_rotate.xml">
|
||||
<!ENTITY cairo_matrix_invert SYSTEM "xml/cairo_matrix_invert.xml">
|
||||
<!ENTITY cairo_matrix_multiply SYSTEM "xml/cairo_matrix_multiply.xml">
|
||||
<!ENTITY cairo_matrix_transform_distance SYSTEM "xml/cairo_matrix_transform_distance.xml">
|
||||
<!ENTITY cairo_matrix_transform_point SYSTEM "xml/cairo_matrix_transform_point.xml">
|
||||
]>
|
||||
<book lang="en">
|
||||
<title>Cairo: A Vector Graphics Library</title>
|
||||
|
||||
|
||||
<reference>
|
||||
<title>Reference</title>
|
||||
&cairo_create;
|
||||
&cairo_reference;
|
||||
&cairo_destroy;
|
||||
&cairo_save;
|
||||
&cairo_restore;
|
||||
&cairo_copy;
|
||||
&cairo_push_group;
|
||||
&cairo_pop_group;
|
||||
&cairo_set_target_surface;
|
||||
&cairo_set_operator;
|
||||
&cairo_set_rgb_color;
|
||||
&cairo_set_alpha;
|
||||
&cairo_set_pattern;
|
||||
&cairo_set_tolerance;
|
||||
&cairo_set_fill_rule;
|
||||
&cairo_set_line_width;
|
||||
&cairo_set_line_cap;
|
||||
&cairo_set_line_join;
|
||||
&cairo_set_dash;
|
||||
&cairo_set_miter_limit;
|
||||
&cairo_translate;
|
||||
&cairo_scale;
|
||||
&cairo_rotate;
|
||||
&cairo_default_matrix;
|
||||
&cairo_identity_matrix;
|
||||
&cairo_transform_point;
|
||||
&cairo_transform_distance;
|
||||
&cairo_inverse_transform_point;
|
||||
&cairo_inverse_transform_distance;
|
||||
&cairo_new_path;
|
||||
&cairo_move_to;
|
||||
&cairo_line_to;
|
||||
&cairo_rel_move_to;
|
||||
&cairo_rel_line_to;
|
||||
&cairo_stroke_path;
|
||||
&cairo_close_path;
|
||||
&cairo_stroke;
|
||||
&cairo_fill;
|
||||
&cairo_in_stroke;
|
||||
&cairo_in_fill;
|
||||
&cairo_hit;
|
||||
&cairo_clip;
|
||||
&cairo_select_font;
|
||||
&cairo_scale_font;
|
||||
&cairo_show_text;
|
||||
&cairo_current_operator;
|
||||
&cairo_current_rgb_color;
|
||||
&cairo_current_alpha;
|
||||
&cairo_current_tolerance;
|
||||
&cairo_current_point;
|
||||
&cairo_current_fill_rule;
|
||||
&cairo_current_line_width;
|
||||
&cairo_current_line_cap;
|
||||
&cairo_current_line_join;
|
||||
&cairo_current_miter_limit;
|
||||
&cairo_current_matrix;
|
||||
&cairo_current_target_surface;
|
||||
&cairo_status;
|
||||
&cairo_status_string;
|
||||
&cairo_surface_reference;
|
||||
&cairo_surface_destroy;
|
||||
&cairo_surface_clip_restore;
|
||||
&cairo_surface_set_repeat;
|
||||
&cairo_surface_set_matrix;
|
||||
&cairo_surface_get_matrix;
|
||||
&cairo_surface_set_filter;
|
||||
&cairo_matrix_create;
|
||||
&cairo_matrix_destroy;
|
||||
&cairo_matrix_copy;
|
||||
&cairo_matrix_set_identity;
|
||||
&cairo_matrix_translate;
|
||||
&cairo_matrix_scale;
|
||||
&cairo_matrix_rotate;
|
||||
&cairo_matrix_invert;
|
||||
&cairo_matrix_multiply;
|
||||
&cairo_matrix_transform_distance;
|
||||
&cairo_matrix_transform_point;
|
||||
|
||||
</reference>
|
||||
|
||||
</book>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
32
doc/reference/xml/cairo_clip.xml
Normal file
32
doc/reference/xml/cairo_clip.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_clip">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_clip</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_clip</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_clip</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_clip</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_close_path.xml
Normal file
32
doc/reference/xml/cairo_close_path.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_close_path">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_close_path</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_close_path</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_close_path</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_close_path</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_copy.xml
Normal file
33
doc/reference/xml/cairo_copy.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_copy">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_copy</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_copy</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_copy</function></funcdef><paramdef>cairo_t <parameter>*dest</parameter></paramdef>
|
||||
<paramdef>cairo_t <parameter>*src</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_copy</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_create.xml
Normal file
32
doc/reference/xml/cairo_create.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_create">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_create</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_create</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_t * <function>cairo_create</function></funcdef><paramdef>void</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_create</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_current_alpha.xml
Normal file
32
doc/reference/xml/cairo_current_alpha.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_current_alpha">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_alpha</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_alpha</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>double <function>cairo_current_alpha</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_alpha</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_current_fill_rule.xml
Normal file
32
doc/reference/xml/cairo_current_fill_rule.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_current_fill_rule">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_fill_rule</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_fill_rule</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_fill_rule_t <function>cairo_current_fill_rule</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_fill_rule</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_current_line_cap.xml
Normal file
32
doc/reference/xml/cairo_current_line_cap.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_current_line_cap">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_line_cap</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_line_cap</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_line_cap_t <function>cairo_current_line_cap</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_line_cap</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_current_line_join.xml
Normal file
32
doc/reference/xml/cairo_current_line_join.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_current_line_join">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_line_join</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_line_join</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_line_join_t <function>cairo_current_line_join</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_line_join</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_current_line_width.xml
Normal file
32
doc/reference/xml/cairo_current_line_width.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_current_line_width">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_line_width</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_line_width</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>double <function>cairo_current_line_width</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_line_width</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_current_matrix.xml
Normal file
33
doc/reference/xml/cairo_current_matrix.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_current_matrix">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_matrix</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_matrix</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_current_matrix</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_matrix</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_current_miter_limit.xml
Normal file
32
doc/reference/xml/cairo_current_miter_limit.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_current_miter_limit">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_miter_limit</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_miter_limit</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>double <function>cairo_current_miter_limit</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_miter_limit</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_current_operator.xml
Normal file
32
doc/reference/xml/cairo_current_operator.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_current_operator">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_operator</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_operator</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_operator_t <function>cairo_current_operator</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_operator</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_current_point.xml
Normal file
34
doc/reference/xml/cairo_current_point.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_current_point">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_point</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_point</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_current_point</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>*x</parameter></paramdef>
|
||||
<paramdef>double <parameter>*y</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_point</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
35
doc/reference/xml/cairo_current_rgb_color.xml
Normal file
35
doc/reference/xml/cairo_current_rgb_color.xml
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<refentry id="cairo_current_rgb_color">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_rgb_color</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_rgb_color</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_current_rgb_color</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>*red</parameter></paramdef>
|
||||
<paramdef>double <parameter>*green</parameter></paramdef>
|
||||
<paramdef>double <parameter>*blue</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_rgb_color</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_current_target_surface.xml
Normal file
32
doc/reference/xml/cairo_current_target_surface.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_current_target_surface">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_target_surface</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_target_surface</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_surface_t * <function>cairo_current_target_surface</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_target_surface</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_current_tolerance.xml
Normal file
32
doc/reference/xml/cairo_current_tolerance.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_current_tolerance">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_current_tolerance</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_current_tolerance</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>double <function>cairo_current_tolerance</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_current_tolerance</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_default_matrix.xml
Normal file
32
doc/reference/xml/cairo_default_matrix.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_default_matrix">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_default_matrix</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_default_matrix</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_default_matrix</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_default_matrix</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_destroy.xml
Normal file
32
doc/reference/xml/cairo_destroy.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_destroy">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_destroy</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_destroy</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_destroy</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_destroy</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_fill.xml
Normal file
32
doc/reference/xml/cairo_fill.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_fill">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_fill</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_fill</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_fill</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_fill</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_hit.xml
Normal file
32
doc/reference/xml/cairo_hit.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_hit">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_hit</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_hit</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>int <function>cairo_hit</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_hit</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_identity_matrix.xml
Normal file
32
doc/reference/xml/cairo_identity_matrix.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_identity_matrix">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_identity_matrix</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_identity_matrix</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_identity_matrix</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_identity_matrix</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_in_fill.xml
Normal file
34
doc/reference/xml/cairo_in_fill.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_in_fill">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_in_fill</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_in_fill</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_in_fill</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>x</parameter></paramdef>
|
||||
<paramdef>double <parameter>y</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_in_fill</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_in_stroke.xml
Normal file
34
doc/reference/xml/cairo_in_stroke.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_in_stroke">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_in_stroke</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_in_stroke</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_in_stroke</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>x</parameter></paramdef>
|
||||
<paramdef>double <parameter>y</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_in_stroke</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_inverse_transform_distance.xml
Normal file
34
doc/reference/xml/cairo_inverse_transform_distance.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_inverse_transform_distance">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_inverse_transform_distance</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_inverse_transform_distance</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_inverse_transform_distance</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>*dx</parameter></paramdef>
|
||||
<paramdef>double <parameter>*dy</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_inverse_transform_distance</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_inverse_transform_point.xml
Normal file
34
doc/reference/xml/cairo_inverse_transform_point.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_inverse_transform_point">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_inverse_transform_point</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_inverse_transform_point</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_inverse_transform_point</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>*x</parameter></paramdef>
|
||||
<paramdef>double <parameter>*y</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_inverse_transform_point</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_line_to.xml
Normal file
34
doc/reference/xml/cairo_line_to.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_line_to">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_line_to</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_line_to</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_line_to</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>x</parameter></paramdef>
|
||||
<paramdef>double <parameter>y</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_line_to</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_matrix_copy.xml
Normal file
33
doc/reference/xml/cairo_matrix_copy.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_matrix_copy">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_copy</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_copy</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_matrix_copy</function></funcdef><paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
<paramdef> const cairo_matrix_t *other</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_copy</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_matrix_create.xml
Normal file
32
doc/reference/xml/cairo_matrix_create.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_matrix_create">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_create</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_create</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_matrix_t * <function>cairo_matrix_create</function></funcdef><paramdef>void</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_create</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_matrix_destroy.xml
Normal file
32
doc/reference/xml/cairo_matrix_destroy.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_matrix_destroy">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_destroy</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_destroy</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_matrix_destroy</function></funcdef><paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_destroy</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_matrix_invert.xml
Normal file
32
doc/reference/xml/cairo_matrix_invert.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_matrix_invert">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_invert</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_invert</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_matrix_invert</function></funcdef><paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_invert</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_matrix_multiply.xml
Normal file
34
doc/reference/xml/cairo_matrix_multiply.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_matrix_multiply">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_multiply</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_multiply</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_matrix_multiply</function></funcdef><paramdef>cairo_matrix_t <parameter>*result</parameter></paramdef>
|
||||
<paramdef> const cairo_matrix_t *a</paramdef>
|
||||
<paramdef> const cairo_matrix_t *b</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_multiply</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_matrix_rotate.xml
Normal file
33
doc/reference/xml/cairo_matrix_rotate.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_matrix_rotate">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_rotate</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_rotate</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_matrix_rotate</function></funcdef><paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
<paramdef>double <parameter>radians</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_rotate</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_matrix_scale.xml
Normal file
34
doc/reference/xml/cairo_matrix_scale.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_matrix_scale">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_scale</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_scale</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_matrix_scale</function></funcdef><paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
<paramdef>double <parameter>sx</parameter></paramdef>
|
||||
<paramdef>double <parameter>sy</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_scale</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_matrix_set_identity.xml
Normal file
32
doc/reference/xml/cairo_matrix_set_identity.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_matrix_set_identity">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_set_identity</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_set_identity</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_matrix_set_identity</function></funcdef><paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_set_identity</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_matrix_transform_distance.xml
Normal file
34
doc/reference/xml/cairo_matrix_transform_distance.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_matrix_transform_distance">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_transform_distance</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_transform_distance</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_matrix_transform_distance</function></funcdef><paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
<paramdef>double <parameter>*dx</parameter></paramdef>
|
||||
<paramdef>double <parameter>*dy</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_transform_distance</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_matrix_transform_point.xml
Normal file
34
doc/reference/xml/cairo_matrix_transform_point.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_matrix_transform_point">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_transform_point</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_transform_point</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_matrix_transform_point</function></funcdef><paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
<paramdef>double <parameter>*x</parameter></paramdef>
|
||||
<paramdef>double <parameter>*y</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_transform_point</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_matrix_translate.xml
Normal file
34
doc/reference/xml/cairo_matrix_translate.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_matrix_translate">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_matrix_translate</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_matrix_translate</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_matrix_translate</function></funcdef><paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
<paramdef>double <parameter>tx</parameter></paramdef>
|
||||
<paramdef>double <parameter>ty</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_matrix_translate</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_move_to.xml
Normal file
34
doc/reference/xml/cairo_move_to.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_move_to">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_move_to</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_move_to</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_move_to</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>x</parameter></paramdef>
|
||||
<paramdef>double <parameter>y</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_move_to</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_new_path.xml
Normal file
32
doc/reference/xml/cairo_new_path.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_new_path">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_new_path</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_new_path</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_new_path</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_new_path</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_pop_group.xml
Normal file
32
doc/reference/xml/cairo_pop_group.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_pop_group">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_pop_group</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_pop_group</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_pop_group</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_pop_group</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_push_group.xml
Normal file
32
doc/reference/xml/cairo_push_group.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_push_group">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_push_group</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_push_group</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_push_group</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_push_group</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_reference.xml
Normal file
32
doc/reference/xml/cairo_reference.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_reference">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_reference</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_reference</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_reference</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_reference</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_rel_line_to.xml
Normal file
34
doc/reference/xml/cairo_rel_line_to.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_rel_line_to">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_rel_line_to</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_rel_line_to</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_rel_line_to</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>dx</parameter></paramdef>
|
||||
<paramdef>double <parameter>dy</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_rel_line_to</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_rel_move_to.xml
Normal file
34
doc/reference/xml/cairo_rel_move_to.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_rel_move_to">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_rel_move_to</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_rel_move_to</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_rel_move_to</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>dx</parameter></paramdef>
|
||||
<paramdef>double <parameter>dy</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_rel_move_to</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_restore.xml
Normal file
32
doc/reference/xml/cairo_restore.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_restore">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_restore</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_restore</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_restore</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_restore</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_rotate.xml
Normal file
33
doc/reference/xml/cairo_rotate.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_rotate">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_rotate</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_rotate</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_rotate</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>angle</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_rotate</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_save.xml
Normal file
32
doc/reference/xml/cairo_save.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_save">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_save</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_save</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_save</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_save</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_scale.xml
Normal file
34
doc/reference/xml/cairo_scale.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_scale">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_scale</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_scale</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_scale</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>sx</parameter></paramdef>
|
||||
<paramdef>double <parameter>sy</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_scale</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_scale_font.xml
Normal file
33
doc/reference/xml/cairo_scale_font.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_scale_font">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_scale_font</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_scale_font</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_scale_font</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>scale</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_scale_font</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_select_font.xml
Normal file
33
doc/reference/xml/cairo_select_font.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_select_font">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_select_font</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_select_font</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_select_font</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef> const char *key</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_select_font</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_alpha.xml
Normal file
33
doc/reference/xml/cairo_set_alpha.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_alpha">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_alpha</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_alpha</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_alpha</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>alpha</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_alpha</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
35
doc/reference/xml/cairo_set_dash.xml
Normal file
35
doc/reference/xml/cairo_set_dash.xml
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<refentry id="cairo_set_dash">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_dash</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_dash</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_dash</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>*dashes</parameter></paramdef>
|
||||
<paramdef>int <parameter>ndash</parameter></paramdef>
|
||||
<paramdef>double <parameter>offset</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_dash</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_fill_rule.xml
Normal file
33
doc/reference/xml/cairo_set_fill_rule.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_fill_rule">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_fill_rule</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_fill_rule</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_fill_rule</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>cairo_fill_rule_t <parameter>fill_rule</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_fill_rule</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_line_cap.xml
Normal file
33
doc/reference/xml/cairo_set_line_cap.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_line_cap">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_line_cap</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_line_cap</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_line_cap</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>cairo_line_cap_t <parameter>line_cap</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_line_cap</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_line_join.xml
Normal file
33
doc/reference/xml/cairo_set_line_join.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_line_join">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_line_join</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_line_join</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_line_join</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>cairo_line_join_t <parameter>line_join</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_line_join</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_line_width.xml
Normal file
33
doc/reference/xml/cairo_set_line_width.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_line_width">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_line_width</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_line_width</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_line_width</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>width</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_line_width</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_miter_limit.xml
Normal file
33
doc/reference/xml/cairo_set_miter_limit.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_miter_limit">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_miter_limit</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_miter_limit</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_miter_limit</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>limit</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_miter_limit</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_operator.xml
Normal file
33
doc/reference/xml/cairo_set_operator.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_operator">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_operator</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_operator</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_operator</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>cairo_operator_t <parameter>op</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_operator</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_pattern.xml
Normal file
33
doc/reference/xml/cairo_set_pattern.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_pattern">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_pattern</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_pattern</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_pattern</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>cairo_surface_t <parameter>*pattern</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_pattern</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
35
doc/reference/xml/cairo_set_rgb_color.xml
Normal file
35
doc/reference/xml/cairo_set_rgb_color.xml
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<refentry id="cairo_set_rgb_color">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_rgb_color</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_rgb_color</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_rgb_color</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>red</parameter></paramdef>
|
||||
<paramdef>double <parameter>green</parameter></paramdef>
|
||||
<paramdef>double <parameter>blue</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_rgb_color</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_target_surface.xml
Normal file
33
doc/reference/xml/cairo_set_target_surface.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_target_surface">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_target_surface</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_target_surface</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_target_surface</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>cairo_surface_t <parameter>*surface</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_target_surface</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_set_tolerance.xml
Normal file
33
doc/reference/xml/cairo_set_tolerance.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_set_tolerance">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_set_tolerance</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_set_tolerance</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_set_tolerance</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>tolerance</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_set_tolerance</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_show_text.xml
Normal file
33
doc/reference/xml/cairo_show_text.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_show_text">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_show_text</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_show_text</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_show_text</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef> const unsigned char *utf8</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_show_text</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_status.xml
Normal file
32
doc/reference/xml/cairo_status.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_status">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_status</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_status</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_status</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_status</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_status_string.xml
Normal file
32
doc/reference/xml/cairo_status_string.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_status_string">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_status_string</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_status_string</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>const char * <function>cairo_status_string</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_status_string</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_stroke.xml
Normal file
32
doc/reference/xml/cairo_stroke.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_stroke">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_stroke</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_stroke</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_stroke</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_stroke</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_stroke_path.xml
Normal file
32
doc/reference/xml/cairo_stroke_path.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_stroke_path">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_stroke_path</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_stroke_path</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_stroke_path</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_stroke_path</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_surface_clip_restore.xml
Normal file
32
doc/reference/xml/cairo_surface_clip_restore.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_surface_clip_restore">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_surface_clip_restore</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_surface_clip_restore</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_surface_clip_restore</function></funcdef><paramdef>cairo_surface_t <parameter>*surface</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_surface_clip_restore</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_surface_destroy.xml
Normal file
32
doc/reference/xml/cairo_surface_destroy.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_surface_destroy">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_surface_destroy</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_surface_destroy</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_surface_destroy</function></funcdef><paramdef>cairo_surface_t <parameter>*surface</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_surface_destroy</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_surface_get_matrix.xml
Normal file
33
doc/reference/xml/cairo_surface_get_matrix.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_surface_get_matrix">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_surface_get_matrix</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_surface_get_matrix</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_surface_get_matrix</function></funcdef><paramdef>cairo_surface_t <parameter>*surface</parameter></paramdef>
|
||||
<paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_surface_get_matrix</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
32
doc/reference/xml/cairo_surface_reference.xml
Normal file
32
doc/reference/xml/cairo_surface_reference.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<refentry id="cairo_surface_reference">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_surface_reference</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_surface_reference</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_surface_reference</function></funcdef><paramdef>cairo_surface_t <parameter>*surface</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_surface_reference</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_surface_set_filter.xml
Normal file
33
doc/reference/xml/cairo_surface_set_filter.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_surface_set_filter">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_surface_set_filter</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_surface_set_filter</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_surface_set_filter</function></funcdef><paramdef>cairo_surface_t <parameter>*surface</parameter></paramdef>
|
||||
<paramdef>cairo_filter_t <parameter>filter</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_surface_set_filter</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_surface_set_matrix.xml
Normal file
33
doc/reference/xml/cairo_surface_set_matrix.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_surface_set_matrix">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_surface_set_matrix</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_surface_set_matrix</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_surface_set_matrix</function></funcdef><paramdef>cairo_surface_t <parameter>*surface</parameter></paramdef>
|
||||
<paramdef>cairo_matrix_t <parameter>*matrix</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_surface_set_matrix</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
33
doc/reference/xml/cairo_surface_set_repeat.xml
Normal file
33
doc/reference/xml/cairo_surface_set_repeat.xml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<refentry id="cairo_surface_set_repeat">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_surface_set_repeat</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_surface_set_repeat</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_status_t <function>cairo_surface_set_repeat</function></funcdef><paramdef>cairo_surface_t <parameter>*surface</parameter></paramdef>
|
||||
<paramdef>int <parameter>repeat</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_surface_set_repeat</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_transform_distance.xml
Normal file
34
doc/reference/xml/cairo_transform_distance.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_transform_distance">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_transform_distance</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_transform_distance</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_transform_distance</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>*dx</parameter></paramdef>
|
||||
<paramdef>double <parameter>*dy</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_transform_distance</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_transform_point.xml
Normal file
34
doc/reference/xml/cairo_transform_point.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_transform_point">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_transform_point</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_transform_point</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_transform_point</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>*x</parameter></paramdef>
|
||||
<paramdef>double <parameter>*y</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_transform_point</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
34
doc/reference/xml/cairo_translate.xml
Normal file
34
doc/reference/xml/cairo_translate.xml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<refentry id="cairo_translate">
|
||||
<refmeta>
|
||||
<refentrytitle>cairo_translate</refentrytitle>
|
||||
<manvolnum>3</manvolnum>
|
||||
</refmeta>
|
||||
|
||||
<refnamediv>
|
||||
<refname>cairo_translate</refname>
|
||||
<refpurpose>some description</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>void <function>cairo_translate</function></funcdef><paramdef>cairo_t <parameter>*cr</parameter></paramdef>
|
||||
<paramdef>double <parameter>tx</parameter></paramdef>
|
||||
<paramdef>double <parameter>ty</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary>cairo_translate</secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
30
doc/reference/xml/skeleton.xml
Normal file
30
doc/reference/xml/skeleton.xml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<refentry id="##function##">
|
||||
|
||||
<refnamediv>
|
||||
<refname>##function##</refname>
|
||||
<refpurpose></refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsynopsisdiv>
|
||||
<funcsynopsis>
|
||||
<funcsynopsisinfo>
|
||||
#include <cairo.h>
|
||||
</funcsynopsisinfo>
|
||||
<funcprototype>
|
||||
<funcdef>cairo_t *<function>##function##</function></funcdef>
|
||||
<paramdef>
|
||||
</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1><title>Description</title>
|
||||
<para>
|
||||
<indexterm><primary>functions</primary>
|
||||
<secondary></secondary></indexterm>
|
||||
<indexterm><primary></primary></indexterm>
|
||||
|
||||
<function>##function##</function>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
Loading…
Add table
Reference in a new issue