QGIS API Documentation
2.6.0-Brighton
|
A collection of grids which is drawn above the map content in a QgsComposerMap. More...
#include <qgscomposermapgrid.h>
Public Member Functions | |
QgsComposerMapGridStack (QgsComposerMap *map) | |
Constructor for QgsComposerMapGridStack. | |
virtual | ~QgsComposerMapGridStack () |
void | addGrid (QgsComposerMapGrid *grid) |
Adds a new map grid to the stack and takes ownership of the grid. | |
void | removeGrid (const QString &gridId) |
Removes a grid from the stack and deletes the corresponding QgsComposerMapGrid. | |
void | moveGridUp (const QString &gridId) |
Moves a grid up the stack, causing it to be rendered above other grids. | |
void | moveGridDown (const QString &gridId) |
Moves a grid down the stack, causing it to be rendered below other grids. | |
const QgsComposerMapGrid * | constGrid (const QString &gridId) const |
Returns a const reference to a grid within the stack. | |
QgsComposerMapGrid * | grid (const QString &gridId) const |
Returns a reference to a grid within the stack. | |
QgsComposerMapGrid * | grid (const int index) const |
Returns a reference to a grid within the stack. | |
QgsComposerMapGrid & | operator[] (int idx) |
Returns a reference to a grid within the stack. | |
QList< QgsComposerMapGrid * > | asList () const |
Returns a list of QgsComposerMapGrids contained by the stack. | |
bool | readXML (const QDomElement &elem, const QDomDocument &doc) |
Sets the grid stack's state from a DOM document. | |
double | maxGridExtension () const |
Calculates the maximum distance grids within the stack extend beyond the QgsComposerMap's item rect. | |
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 grids which is drawn above the map content in a QgsComposerMap.
The grid stack controls which grids are drawn and the order they are drawn in.
QgsComposerMapGridStack::QgsComposerMapGridStack | ( | QgsComposerMap * | map | ) |
Constructor for QgsComposerMapGridStack.
map | QgsComposerMap the grid stack is attached to |
|
virtual |
void QgsComposerMapGridStack::addGrid | ( | QgsComposerMapGrid * | grid | ) |
Adds a new map grid to the stack and takes ownership of the grid.
The grid will be added to the end of the stack, and rendered above any existing map grids already present in the stack.
grid | QgsComposerMapGrid to add to the stack |
QList< QgsComposerMapGrid * > QgsComposerMapGridStack::asList | ( | ) | const |
Returns a list of QgsComposerMapGrids contained by the stack.
Reimplemented from QgsComposerMapItemStack.
const QgsComposerMapGrid * QgsComposerMapGridStack::constGrid | ( | const QString & | gridId | ) | const |
Returns a const reference to a grid within the stack.
gridId | id for the QgsComposerMapGrid to find |
QgsComposerMapGrid * QgsComposerMapGridStack::grid | ( | const QString & | gridId | ) | const |
Returns a reference to a grid within the stack.
gridId | id for the QgsComposerMapGrid to find |
QgsComposerMapGrid * QgsComposerMapGridStack::grid | ( | const int | index | ) | const |
Returns a reference to a grid within the stack.
index | grid position in the stack |
double QgsComposerMapGridStack::maxGridExtension | ( | ) | const |
Calculates the maximum distance grids within the stack extend beyond the QgsComposerMap's item rect.
void QgsComposerMapGridStack::moveGridDown | ( | const QString & | gridId | ) |
Moves a grid down the stack, causing it to be rendered below other grids.
gridId | id for the QgsComposerMapGrid to move down |
void QgsComposerMapGridStack::moveGridUp | ( | const QString & | gridId | ) |
Moves a grid up the stack, causing it to be rendered above other grids.
gridId | id for the QgsComposerMapGrid to move up |
QgsComposerMapGrid & QgsComposerMapGridStack::operator[] | ( | int | idx | ) |
Returns a reference to a grid within the stack.
idx | grid position in the stack |
Reimplemented from QgsComposerMapItemStack.
|
virtual |
Sets the grid stack's state from a DOM document.
elem | is DOM node corresponding to 'a ComposerMap' tag |
doc | DOM document |
Implements QgsComposerMapItemStack.
void QgsComposerMapGridStack::removeGrid | ( | const QString & | gridId | ) |
Removes a grid from the stack and deletes the corresponding QgsComposerMapGrid.
gridId | id for the QgsComposerMapGrid to remove |