QGIS API Documentation
2.6.0-Brighton
|
A collection of overviews which are drawn above the map content in a QgsComposerMap. More...
#include <qgscomposermapoverview.h>
Public Member Functions | |
QgsComposerMapOverviewStack (QgsComposerMap *map) | |
Constructor for QgsComposerMapOverviewStack. | |
virtual | ~QgsComposerMapOverviewStack () |
void | addOverview (QgsComposerMapOverview *overview) |
Adds a new map overview to the stack and takes ownership of the overview. | |
void | removeOverview (const QString &overviewId) |
Removes an overview from the stack and deletes the corresponding QgsComposerMapOverview. | |
void | moveOverviewUp (const QString &overviewId) |
Moves an overview up the stack, causing it to be rendered above other overviews. | |
void | moveOverviewDown (const QString &overviewId) |
Moves an overview down the stack, causing it to be rendered below other overviews. | |
const QgsComposerMapOverview * | constOverview (const QString &overviewId) const |
Returns a const reference to an overview within the stack. | |
QgsComposerMapOverview * | overview (const QString &overviewId) const |
Returns a reference to an overview within the stack. | |
QgsComposerMapOverview * | overview (const int index) const |
Returns a reference to an overview within the stack. | |
QgsComposerMapOverview & | operator[] (int idx) |
Returns a reference to an overview within the stack. | |
QList< QgsComposerMapOverview * > | asList () const |
Returns a list of QgsComposerMapOverviews contained by the stack. | |
bool | readXML (const QDomElement &elem, const QDomDocument &doc) |
Sets the overview stack's state from a DOM document. | |
Public Member Functions inherited from QgsComposerMapItemStack | |
QgsComposerMapItemStack (QgsComposerMap *map) | |
Constructor for QgsComposerMapItemStack. | |
virtual | ~QgsComposerMapItemStack () |
int | size () const |
Returns the number of items in the stack. | |
virtual bool | writeXML (QDomElement &elem, QDomDocument &doc) const |
Stores the state of the item stack in a DOM node. | |
void | drawItems (QPainter *painter) |
Draws the items from the stack on a specified painter. | |
bool | containsAdvancedEffects () const |
Returns whether any items within the stack contain advanced effects, such as blending modes. |
Additional Inherited Members | |
Protected Member Functions inherited from QgsComposerMapItemStack | |
void | addItem (QgsComposerMapItem *item) |
Adds a new map item to the stack and takes ownership of the item. | |
void | removeItem (const QString &itemId) |
Removes an item from the stack and deletes the corresponding QgsComposerMapItem. | |
void | moveItemUp (const QString &itemId) |
Moves an item up the stack, causing it to be rendered above other items. | |
void | moveItemDown (const QString &itemId) |
Moves an item up the stack, causing it to be rendered above other items. | |
const QgsComposerMapItem * | constItem (const QString &itemId) const |
Returns a const reference to an item within the stack. | |
QgsComposerMapItem * | item (const QString &itemId) const |
Returns a reference to an item within the stack. | |
QgsComposerMapItem * | item (const int index) const |
Returns a reference to an item within the stack. | |
void | removeItems () |
Clears the item stack and deletes all QgsComposerMapItems contained by the stack. | |
Protected Attributes inherited from QgsComposerMapItemStack | |
QList< QgsComposerMapItem * > | mItems |
QgsComposerMap * | mComposerMap |
A collection of overviews which are drawn above the map content in a QgsComposerMap.
The overview stack controls which overviews are drawn and the order they are drawn in.
QgsComposerMapOverviewStack::QgsComposerMapOverviewStack | ( | QgsComposerMap * | map | ) |
Constructor for QgsComposerMapOverviewStack.
map | QgsComposerMap the overview stack is attached to |
|
virtual |
void QgsComposerMapOverviewStack::addOverview | ( | QgsComposerMapOverview * | overview | ) |
Adds a new map overview to the stack and takes ownership of the overview.
The overview will be added to the end of the stack, and rendered above any existing map overviews already present in the stack.
overview | QgsComposerMapOverview to add to the stack |
QList< QgsComposerMapOverview * > QgsComposerMapOverviewStack::asList | ( | ) | const |
Returns a list of QgsComposerMapOverviews contained by the stack.
Reimplemented from QgsComposerMapItemStack.
const QgsComposerMapOverview * QgsComposerMapOverviewStack::constOverview | ( | const QString & | overviewId | ) | const |
Returns a const reference to an overview within the stack.
overviewId | id for the QgsComposerMapOverview to find |
void QgsComposerMapOverviewStack::moveOverviewDown | ( | const QString & | overviewId | ) |
Moves an overview down the stack, causing it to be rendered below other overviews.
overviewId | id for the QgsComposerMapOverview to move down |
void QgsComposerMapOverviewStack::moveOverviewUp | ( | const QString & | overviewId | ) |
Moves an overview up the stack, causing it to be rendered above other overviews.
overviewId | id for the QgsComposerMapOverview to move up |
QgsComposerMapOverview & QgsComposerMapOverviewStack::operator[] | ( | int | idx | ) |
Returns a reference to an overview within the stack.
idx | overview position in the stack |
Reimplemented from QgsComposerMapItemStack.
QgsComposerMapOverview * QgsComposerMapOverviewStack::overview | ( | const QString & | overviewId | ) | const |
Returns a reference to an overview within the stack.
overviewId | id for the QgsComposerMapOverview to find |
QgsComposerMapOverview * QgsComposerMapOverviewStack::overview | ( | const int | index | ) | const |
Returns a reference to an overview within the stack.
index | overview position in the stack |
|
virtual |
Sets the overview stack's state from a DOM document.
elem | is DOM node corresponding to a 'ComposerMap' tag |
doc | DOM document |
Implements QgsComposerMapItemStack.
void QgsComposerMapOverviewStack::removeOverview | ( | const QString & | overviewId | ) |
Removes an overview from the stack and deletes the corresponding QgsComposerMapOverview.
overviewId | id for the QgsComposerMapOverview to remove |