~ubuntu-branches/ubuntu/oneiric/qwt/oneiric-proposed

« back to all changes in this revision

Viewing changes to qwt/doc/man/man3/QwtCPointerData.3

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2011-06-10 11:22:47 UTC
  • mfrom: (1.1.6 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110610112247-0i1019vvmzaq6p86
Tags: 6.0.0-1
* New upstream release (Closes: #624107):
  - drop Qt3 support. (Closes: #604379, #626868)
* Register documentation with doc-base. (Closes: #626567)
* Drop patches:
  - 01_makefiles.diff
  - 02_add_missing_warnings.diff
  - 03_qwt_branch_pull_r544.diff
* Add qwt_install_paths.patch to fix the hardcoded installation paths.
* Update debian/control:
  - drop libqt3-mt-dev build dependency.
  - bump Standards-Version to 3.9.2 (no changes).
  - drop Qt3 related packages.
  - due to bump soname (and as we dropper Qt3 support):
    - libqwt5-qt4-dev -> libqwt-dev
    - libqwt5-qt4 -> libqwt6
    - libqwt5-doc -> libqwt-doc
* Update debian/copyright file.
* Update debian/rules: drop Qt3 packages support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH "QwtCPointerData" 3 "22 Mar 2009" "Qwt User's Guide" \" -*- nroff -*-
2
 
.ad l
3
 
.nh
4
 
.SH NAME
5
 
QwtCPointerData \- Data class containing two pointers to memory blocks of doubles.  
6
 
 
7
 
.PP
8
 
.SH SYNOPSIS
9
 
.br
10
 
.PP
11
 
\fC#include <qwt_data.h>\fP
12
 
.PP
13
 
Inherits \fBQwtData\fP.
14
 
.PP
15
 
.SS "Public Member Functions"
16
 
 
17
 
.in +1c
18
 
.ti -1c
19
 
.RI "\fBQwtCPointerData\fP (const double *x, const double *y, size_t size)"
20
 
.br
21
 
.ti -1c
22
 
.RI "\fBQwtCPointerData\fP & \fBoperator=\fP (const \fBQwtCPointerData\fP &)"
23
 
.br
24
 
.ti -1c
25
 
.RI "virtual \fBQwtData\fP * \fBcopy\fP () const "
26
 
.br
27
 
.ti -1c
28
 
.RI "virtual size_t \fBsize\fP () const "
29
 
.br
30
 
.ti -1c
31
 
.RI "virtual double \fBx\fP (size_t i) const "
32
 
.br
33
 
.ti -1c
34
 
.RI "virtual double \fBy\fP (size_t i) const "
35
 
.br
36
 
.ti -1c
37
 
.RI "const double * \fBxData\fP () const "
38
 
.br
39
 
.ti -1c
40
 
.RI "const double * \fByData\fP () const "
41
 
.br
42
 
.ti -1c
43
 
.RI "virtual QwtDoubleRect \fBboundingRect\fP () const "
44
 
.br
45
 
.in -1c
46
 
.SH "Detailed Description"
47
 
.PP 
48
 
Data class containing two pointers to memory blocks of doubles. 
49
 
.SH "Constructor & Destructor Documentation"
50
 
.PP 
51
 
.SS "QwtCPointerData::QwtCPointerData (const double * x, const double * y, size_t size)"
52
 
.PP
53
 
Constructor
54
 
.PP
55
 
\fBParameters:\fP
56
 
.RS 4
57
 
\fIx\fP Array of x values 
58
 
.br
59
 
\fIy\fP Array of y values 
60
 
.br
61
 
\fIsize\fP Size of the x and y arrays
62
 
.RE
63
 
.PP
64
 
\fBWarning:\fP
65
 
.RS 4
66
 
The programmer must assure that the memory blocks referenced by the pointers remain valid during the lifetime of the QwtPlotCPointer object.
67
 
.RE
68
 
.PP
69
 
\fBSee also:\fP
70
 
.RS 4
71
 
\fBQwtPlotCurve::setData()\fP, \fBQwtPlotCurve::setRawData()\fP 
72
 
.RE
73
 
.PP
74
 
 
75
 
.SH "Member Function Documentation"
76
 
.PP 
77
 
.SS "QwtDoubleRect QwtCPointerData::boundingRect () const\fC [virtual]\fP"
78
 
.PP
79
 
Returns the bounding rectangle of the data. If there is no bounding rect, like for empty data the rectangle is invalid: QwtDoubleRect::isValid() == false 
80
 
.PP
81
 
Reimplemented from \fBQwtData\fP.
82
 
.SS "\fBQwtData\fP * QwtCPointerData::copy () const\fC [virtual]\fP"
83
 
.PP
84
 
\fBReturns:\fP
85
 
.RS 4
86
 
Pointer to a copy (virtual copy constructor) 
87
 
.RE
88
 
.PP
89
 
 
90
 
.PP
91
 
Implements \fBQwtData\fP.
92
 
.SS "\fBQwtCPointerData\fP & QwtCPointerData::operator= (const \fBQwtCPointerData\fP & data)"
93
 
.PP
94
 
Assignment. 
95
 
.PP
96
 
.SS "size_t QwtCPointerData::size () const\fC [virtual]\fP"
97
 
.PP
98
 
\fBReturns:\fP
99
 
.RS 4
100
 
Size of the data set 
101
 
.RE
102
 
.PP
103
 
 
104
 
.PP
105
 
Implements \fBQwtData\fP.
106
 
.SS "double QwtCPointerData::x (size_t i) const\fC [virtual]\fP"
107
 
.PP
108
 
Return the x value of data point i
109
 
.PP
110
 
\fBParameters:\fP
111
 
.RS 4
112
 
\fIi\fP Index 
113
 
.RE
114
 
.PP
115
 
\fBReturns:\fP
116
 
.RS 4
117
 
x X value of data point i 
118
 
.RE
119
 
.PP
120
 
 
121
 
.PP
122
 
Implements \fBQwtData\fP.
123
 
.SS "const double * QwtCPointerData::xData () const"
124
 
.PP
125
 
\fBReturns:\fP
126
 
.RS 4
127
 
Array of the x-values 
128
 
.RE
129
 
.PP
130
 
 
131
 
.SS "double QwtCPointerData::y (size_t i) const\fC [virtual]\fP"
132
 
.PP
133
 
Return the y value of data point i
134
 
.PP
135
 
\fBParameters:\fP
136
 
.RS 4
137
 
\fIi\fP Index 
138
 
.RE
139
 
.PP
140
 
\fBReturns:\fP
141
 
.RS 4
142
 
y Y value of data point i 
143
 
.RE
144
 
.PP
145
 
 
146
 
.PP
147
 
Implements \fBQwtData\fP.
148
 
.SS "const double * QwtCPointerData::yData () const"
149
 
.PP
150
 
\fBReturns:\fP
151
 
.RS 4
152
 
Array of the y-values 
153
 
.RE
154
 
.PP
155
 
 
156
 
 
157
 
.SH "Author"
158
 
.PP 
159
 
Generated automatically by Doxygen for Qwt User's Guide from the source code.