123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- .TH "QwtPolarItemDict" 3 "Fri Sep 19 2014" "Version 1.1.1" "Qwt Polar User's Guide" \" -*- nroff -*-
- .ad l
- .nh
- .SH NAME
- QwtPolarItemDict \-
- .PP
- A dictionary for polar plot items\&.
- .SH SYNOPSIS
- .br
- .PP
- .PP
- \fC#include <qwt_polar_itemdict\&.h>\fP
- .PP
- Inherited by \fBQwtPolarPlot\fP\&.
- .SS "Public Member Functions"
- .in +1c
- .ti -1c
- .RI "\fBQwtPolarItemDict\fP ()"
- .br
- .ti -1c
- .RI "\fB~QwtPolarItemDict\fP ()"
- .br
- .ti -1c
- .RI "void \fBsetAutoDelete\fP (bool)"
- .br
- .ti -1c
- .RI "bool \fBautoDelete\fP () const "
- .br
- .ti -1c
- .RI "const QwtPolarItemList & \fBitemList\fP () const "
- .br
- .RI "\fIA QwtPolarItemList of all attached plot items\&. \fP"
- .ti -1c
- .RI "void \fBdetachItems\fP (int rtti=\fBQwtPolarItem::Rtti_PolarItem\fP, bool \fBautoDelete\fP=true)"
- .br
- .in -1c
- .SS "Protected Member Functions"
- .in +1c
- .ti -1c
- .RI "void \fBinsertItem\fP (\fBQwtPolarItem\fP *)"
- .br
- .ti -1c
- .RI "void \fBremoveItem\fP (\fBQwtPolarItem\fP *)"
- .br
- .in -1c
- .SH "Detailed Description"
- .PP
- A dictionary for polar plot items\&.
- \fBQwtPolarItemDict\fP organizes polar plot items in increasing z-order\&. If \fBautoDelete()\fP is enabled, all attached items will be deleted in the destructor of the dictionary\&.
- .PP
- \fBSee Also:\fP
- .RS 4
- \fBQwtPolarItem::attach()\fP, \fBQwtPolarItem::detach()\fP, \fBQwtPolarItem::z()\fP
- .RE
- .PP
- .SH "Constructor & Destructor Documentation"
- .PP
- .SS "QwtPolarItemDict::QwtPolarItemDict ()\fC [explicit]\fP"
- Constructor
- .PP
- Auto deletion is enabled\&.
- .PP
- \fBSee Also:\fP
- .RS 4
- \fBsetAutoDelete\fP, attachItem
- .RE
- .PP
- .SS "QwtPolarItemDict::~QwtPolarItemDict ()"
- Destructor
- .PP
- If autoDelete is on, all attached items will be deleted
- .PP
- \fBSee Also:\fP
- .RS 4
- \fBsetAutoDelete\fP, \fBautoDelete\fP, attachItem
- .RE
- .PP
- .SH "Member Function Documentation"
- .PP
- .SS "bool QwtPolarItemDict::autoDelete () const"
- .PP
- \fBReturns:\fP
- .RS 4
- true if auto deletion is enabled
- .RE
- .PP
- \fBSee Also:\fP
- .RS 4
- \fBsetAutoDelete\fP, attachItem
- .RE
- .PP
- .SS "void QwtPolarItemDict::detachItems (intrtti = \fC\fBQwtPolarItem::Rtti_PolarItem\fP\fP, boolautoDelete = \fCtrue\fP)"
- Detach items from the dictionary
- .PP
- \fBParameters:\fP
- .RS 4
- \fIrtti\fP In case of QwtPolarItem::Rtti_PlotItem detach all items otherwise only those items of the type rtti\&.
- .br
- \fIautoDelete\fP If true, delete all detached items
- .RE
- .PP
- .SS "void QwtPolarItemDict::insertItem (\fBQwtPolarItem\fP *item)\fC [protected]\fP"
- Insert a plot item
- .PP
- \fBParameters:\fP
- .RS 4
- \fIitem\fP PlotItem
- .RE
- .PP
- \fBSee Also:\fP
- .RS 4
- \fBremoveItem()\fP
- .RE
- .PP
- .SS "const QwtPolarItemList & QwtPolarItemDict::itemList () const"
- .PP
- A QwtPolarItemList of all attached plot items\&.
- .PP
- \fBReturns:\fP
- .RS 4
- List of all attached plot items\&.
- .RE
- .PP
- \fBNote:\fP
- .RS 4
- Use caution when iterating these lists, as removing/detaching an item will invalidate the iterator\&. Instead you can place pointers to objects to be removed in a removal list, and traverse that list later\&.
- .RE
- .PP
- .SS "void QwtPolarItemDict::removeItem (\fBQwtPolarItem\fP *item)\fC [protected]\fP"
- Remove a plot item
- .PP
- \fBParameters:\fP
- .RS 4
- \fIitem\fP PlotItem
- .RE
- .PP
- \fBSee Also:\fP
- .RS 4
- \fBinsertItem()\fP
- .RE
- .PP
- .SS "void QwtPolarItemDict::setAutoDelete (boolautoDelete)"
- En/Disable Auto deletion
- .PP
- If Auto deletion is on all attached plot items will be deleted in the destructor of \fBQwtPolarItemDict\fP\&. The default value is on\&.
- .PP
- \fBSee Also:\fP
- .RS 4
- \fBautoDelete\fP, attachItem
- .RE
- .PP
- .SH "Author"
- .PP
- Generated automatically by Doxygen for Qwt Polar User's Guide from the source code\&.
|