~ubuntu-branches/ubuntu/jaunty/goffice/jaunty-updates

« back to all changes in this revision

Viewing changes to docs/reference/xml/go-path-impl.xml

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2008-11-09 18:10:54 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20081109181054-uazweo6uci8h7bc5
Tags: 0.6.5-1ubuntu1
* Merge from debian unstable, remaining changes:
  - call intltool-update -p in debian/rules
  - libgoffice-gtk-0-6 is a transitional package
  - libgoffice-0-6 conflicts with libgoffice-gtk-0-6 (<< 0.6.3-1ubuntu2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" 
 
3
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
 
4
<!ENTITY version SYSTEM "version.xml">
 
5
]
 
6
>
 
7
<refentry id="goffice-06-go-path-impl">
 
8
<refmeta>
 
9
<refentrytitle role="top_of_page" id="goffice-06-go-path-impl.top_of_page">go-path-impl</refentrytitle>
 
10
<manvolnum>3</manvolnum>
 
11
<refmiscinfo>GOFFICE-0.6 Library</refmiscinfo>
 
12
</refmeta>
 
13
 
 
14
<refnamediv>
 
15
<refname>go-path-impl</refname>
 
16
<refpurpose></refpurpose>
 
17
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
 
18
</refnamediv>
 
19
 
 
20
<refsynopsisdiv id="goffice-06-go-path-impl.synopsis" role="synopsis">
 
21
<title role="synopsis.title">Synopsis</title>
 
22
 
 
23
<synopsis>
 
24
enum                <link linkend="GOPathAction">GOPathAction</link>;
 
25
                    <link linkend="GOPathData">GOPathData</link>;
 
26
                    <link linkend="GOPathDataBuffer">GOPathDataBuffer</link>;
 
27
                    <link linkend="GOPath">GOPath</link>;
 
28
</synopsis>
 
29
</refsynopsisdiv>
 
30
 
 
31
 
 
32
 
 
33
 
 
34
 
 
35
 
 
36
 
 
37
 
 
38
 
 
39
<refsect1 id="goffice-06-go-path-impl.description" role="desc">
 
40
<title role="desc.title">Description</title>
 
41
<para>
 
42
 
 
43
</para>
 
44
</refsect1>
 
45
 
 
46
<refsect1 id="goffice-06-go-path-impl.details" role="details">
 
47
<title role="details.title">Details</title>
 
48
<refsect2 id="GOPathAction" role="enum">
 
49
<title>enum GOPathAction</title>
 
50
<indexterm zone="GOPathAction"><primary>GOPathAction</primary></indexterm><programlisting>typedef enum _GOPathAction {
 
51
        GO_PATH_ACTION_MOVE_TO          = 0,
 
52
        GO_PATH_ACTION_LINE_TO          = 1,
 
53
        GO_PATH_ACTION_CURVE_TO         = 2,
 
54
        GO_PATH_ACTION_CLOSE_PATH       = 3
 
55
} GOPathAction; 
 
56
</programlisting>
 
57
<para>
 
58
 
 
59
</para></refsect2>
 
60
<refsect2 id="GOPathData" role="struct">
 
61
<title>GOPathData</title>
 
62
<indexterm zone="GOPathData"><primary>GOPathData</primary></indexterm><programlisting>typedef struct {
 
63
        GOPathAction action;
 
64
        GOPoint point;
 
65
} GOPathData;
 
66
</programlisting>
 
67
<para>
 
68
 
 
69
</para></refsect2>
 
70
<refsect2 id="GOPathDataBuffer" role="struct">
 
71
<title>GOPathDataBuffer</title>
 
72
<indexterm zone="GOPathDataBuffer"><primary>GOPathDataBuffer</primary></indexterm><programlisting>typedef struct {
 
73
        int max_data;
 
74
        int num_data;
 
75
 
 
76
        GOPathData *data;
 
77
 
 
78
        struct _GOPathDataBuffer *next;
 
79
} GOPathDataBuffer;
 
80
</programlisting>
 
81
<para>
 
82
 
 
83
</para></refsect2>
 
84
<refsect2 id="GOPath" role="struct">
 
85
<title>GOPath</title>
 
86
<indexterm zone="GOPath"><primary>GOPath</primary></indexterm><programlisting>typedef struct {
 
87
        GOPathDataBuffer *data_buffer_head;
 
88
        GOPathDataBuffer *data_buffer_tail;
 
89
 
 
90
        gboolean sharp;
 
91
} GOPath;
 
92
</programlisting>
 
93
<para>
 
94
 
 
95
</para></refsect2>
 
96
 
 
97
</refsect1>
 
98
 
 
99
 
 
100
 
 
101
 
 
102
</refentry>