12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
- * QwtPolar Widget Library
- * Copyright (C) 2008 Uwe Rathmann
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the Qwt License, Version 1.0
- *****************************************************************************/
- #ifndef QWT_POLAR_ITEMDICT_H
- #define QWT_POLAR_ITEMDICT_H
- /*! \file !*/
- #include "qwt_polar_global.h"
- #include "qwt_polar_item.h"
- #include <qlist.h>
- typedef QList<QwtPolarItem *>::ConstIterator QwtPolarItemIterator;
- /// \var typedef QList< QwtPolarItem *> QwtPolarItemList
- /// \brief See QT 4.x assistant documentation for QList
- typedef QList<QwtPolarItem *> QwtPolarItemList;
- /*!
- \brief A dictionary for polar plot items
- QwtPolarItemDict organizes polar plot items in increasing z-order.
- If autoDelete() is enabled, all attached items will be deleted
- in the destructor of the dictionary.
- \sa QwtPolarItem::attach(), QwtPolarItem::detach(), QwtPolarItem::z()
- */
- class QWT_POLAR_EXPORT QwtPolarItemDict
- {
- public:
- explicit QwtPolarItemDict();
- ~QwtPolarItemDict();
- void setAutoDelete( bool );
- bool autoDelete() const;
- const QwtPolarItemList& itemList() const;
- void detachItems( int rtti = QwtPolarItem::Rtti_PolarItem,
- bool autoDelete = true );
- protected:
- void insertItem( QwtPolarItem * );
- void removeItem( QwtPolarItem * );
- private:
- class PrivateData;
- PrivateData *d_data;
- };
- #endif
|