Isis 3 Programmer Reference
|
This widget encompasses the entire mosaic scene. More...
#include <MosaicSceneWidget.h>
Public Slots | |
void | addImages (ImageList) |
void | removeImages (ImageList) |
void | refit () |
This method refits t:he items in the graphics view. | |
void | setCubesSelectable (bool) |
void | setProjection (Projection *) |
This method takes ownership of proj. | |
void | setOutlineRect (QRectF) |
Signals | |
void | mouseEnter () |
void | mouseMove (QPointF) |
void | mouseLeave () |
void | mouseDoubleClick (QPointF) |
void | mouseButtonPress (QPointF, Qt::MouseButton s) |
void | mouseButtonRelease (QPointF, Qt::MouseButton s) |
void | mouseWheel (QPointF, int delta) |
void | projectionChanged (Projection *) |
void | rubberBandComplete (QRectF r, Qt::MouseButton s) |
void | visibleRectChanged (QRectF) |
void | cubesChanged () |
void | queueSelectionChanged () |
void | modifyControlPoint (ControlPoint *controlPoint) |
void | deleteControlPoint (ControlPoint *controlPoint) |
void | createControlPoint (double latitude, double longitude) |
void | controlPointSelected (ControlPoint *) |
void | cnetModified () |
void | controlPointChanged (QString pointId) |
void | controlPointDeleted () |
void | mosCubeClosed (Image *) |
Public Member Functions | |
MosaicSceneWidget (QStatusBar *status, bool showTools, bool internalizeToolBarsAndProgress, Directory *directory, QWidget *parent=0) | |
Create a scene widget. | |
MosaicGraphicsView * | getView () const |
QGraphicsScene * | getScene () const |
Projection * | getProjection () const |
QList< MosaicSceneItem * > | allMosaicSceneItems () |
void | addTo (QMenu *menu) |
void | addTo (ToolPad *toolPad) |
void | addToPermanent (QToolBar *toolBar) |
void | addTo (QToolBar *toolBar) |
bool | contextMenuEvent (QGraphicsSceneContextMenuEvent *event) |
This is called by MosaicGraphicsScene::contextMenuEvent. | |
MosaicSceneItem * | cubeToMosaic (Image *) |
bool | cubesSelectable () const |
void | enableRubberBand (bool) |
bool | blockSelectionChange (bool) |
bool | userHasTools () const |
QProgressBar * | getProgress () |
PvlObject | toPvl () const |
void | fromPvl (const PvlObject &) |
Call this method after loading any cubes when loading a project. | |
void | save (QXmlStreamWriter &stream, Project *project, FileName newProjectRoot) const |
QRectF | cubesBoundingRect () const |
QStringList | cubeFileNames () |
Directory * | directory () const |
ImageList | images () |
ImageList | selectedImages () |
Returns a list of all the cubes selected in the scene. | |
QList< QAction * > | getExportActions () |
QList< QAction * > | getViewActions () |
QList< QAction * > | supportedActions (ImageList *) |
Get a list of actions this scene can perform given "images". | |
double | moveDownOne (MosaicSceneItem *) |
double | moveDownOne (Image *) |
QList< double > | moveDownOne (ImageList *) |
double | moveToBottom (MosaicSceneItem *) |
This doesn't compress the Z values - the original Z values of this scene item is guaranteed to be empty after this operation. | |
double | moveToBottom (Image *) |
This doesn't compress the Z values - the original Z value of this image is guaranteed to be empty after this operation. | |
QList< double > | moveToBottom (ImageList *) |
This doesn't compress the Z values - the original Z values of these images are guaranteed to be empty after this operation. | |
double | moveUpOne (MosaicSceneItem *) |
double | moveUpOne (Image *) |
QList< double > | moveUpOne (ImageList *) |
double | moveToTop (MosaicSceneItem *) |
This doesn't compress the Z values - the original Z values of this scene item is guaranteed to be empty after this operation. | |
double | moveToTop (Image *) |
This doesn't compress the Z values - the original Z value of this image is guaranteed to be empty after this operation. | |
QList< double > | moveToTop (ImageList *) |
This doesn't compress the Z values - the original Z values of these images are guaranteed to be empty after this operation. | |
double | moveZ (MosaicSceneItem *sceneItem, double newZ, bool newZValueMightExist=true) |
This method moves the given scene item to the given Z value. | |
double | moveZ (Image *image, double newZ, bool newZValueMightExist=true) |
template<typename DataType > | |
QList< QAction * > | supportedActions (DataType) |
Return an empty list of actions for unknown data types. | |
bool | isControlNetToolActive () |
Static Public Member Functions | |
static QWidget * | getControlNetHelp (QWidget *cnetToolContainer=NULL) |
static QWidget * | getGridHelp (QWidget *gridToolContainer=NULL) |
static QWidget * | getLongHelp (QWidget *mosaicSceneContainer=NULL) |
static QWidget * | getMapHelp (QWidget *mapContainer=NULL) |
static QWidget * | getPreviewHelp (QWidget *worldViewContainer=NULL) |
Protected Member Functions | |
virtual bool | eventFilter (QObject *obj, QEvent *ev) |
Private Slots | |
void | exportView () |
Saves the scene as a png, jpg, or tif file. | |
void | saveList () |
void | removeMosItem (QObject *) |
void | moveDownOne () |
void | moveToBottom () |
void | moveUpOne () |
void | moveToTop () |
void | fitInView () |
void | onSelectionChanged () |
void | onQueuedSelectionChanged () |
void | configProjectionParameters () |
This happens when the user clicks on the map action (the button that is named after the current projection). | |
void | quickConfigProjectionParameters () |
void | sendVisibleRectChanged () |
Private Member Functions | |
void | setProjection (const PvlGroup &mappingGroup, Pvl label=Pvl()) |
MosaicSceneItem * | addImage (Image *image) |
void | reprojectItems () |
Reprojects all the items in the view. | |
double | maximumZ () |
double | minimumZ () |
void | recalcSceneRect () |
MosaicSceneItem * | getNextItem (MosaicSceneItem *item, bool up) |
Implemented because we want invisible items too. | |
PvlGroup | createInitialProjection (Image *cube) |
MosaicSceneItem * | cubeToMosaic (DisplayProperties *props) |
Static Private Member Functions | |
static bool | zOrderGreaterThan (MosaicSceneItem *first, MosaicSceneItem *second) |
Private Attributes | |
Directory * | m_directory |
bool | m_cubesSelectable |
bool | m_customRubberBandEnabled |
QRubberBand * | m_customRubberBand |
QPoint * | m_rubberBandOrigin |
QGraphicsScene * | m_graphicsScene |
The graphics scene that makes up this widget. | |
MosaicGraphicsView * | m_graphicsView |
The graphics view. | |
Projection * | m_projection |
The current projection type. | |
QList< MosaicSceneItem * > * | m_mosaicSceneItems |
QMap< DisplayProperties *, MosaicSceneItem * > | m_displayPropsToMosaicSceneItemMap |
QGraphicsRectItem * | m_outlineRect |
QToolButton * | m_mapButton |
QAction * | m_quickMapAction |
QList< MosaicTool * > * | m_tools |
ToolPad * | m_toolpad |
QToolBar * | m_permToolbar |
QToolBar * | m_activeToolbar |
ProgressBar * | m_progress |
QHash< QString, double > * | m_projectImageZOrders |
bool | m_blockingSelectionChanged |
bool | m_userToolControl |
bool | m_ownProjection |
bool | m_queuedSelectionChanged |
bool | m_shouldRequeueSelectionChanged |
double | m_currentMinimumFootprintZ |
double | m_currentMaximumFootprintZ |
PvlObject * | m_projectViewTransform |
This widget encompasses the entire mosaic scene.
This widget is a self-contained 2D footprint view using Qt's graphics scene/view framework.
2010-05-10 Christopher Austin - Added cnet connectivity functionality and fixed a few design issues
2011-04-01 Steven Lambright - Separated this class from the MosaicWidget class.
2011-05-10 Steven Lambright - Reduced unnecessary code, fixed toolTips to work on everything (not just cubes).
2011-05-17 Steven Lambright - More robust createInitialProj
2011-05-17 Steven Lambright - Target radii recalculated when the user specifies a map file, if they are missing.
2011-05-20 Steven Lambright - Improved error handling when reprojecting.
2011-07-29 Steven Lambright - Z-ordering is now saved and restored in the project files. references #275
2011-08-12 Steven Lambright - Added export options, references #342
2011-08-29 Steven Lambright - Re-worded export file list option, references #342
2011-09-27 Steven Lambright - Improved user documentation
2011-11-04 Steven Lambright - Added the zoom factor and scroll bar position to the project file. References #542.
2011-11-04 Steven Lambright - The mouse wheel events no longer cause panning. The qt code for QAbstractGraphicsView was looking at the event's accepted state. This being fixed means the mouse wheel can be used for zooming! Also added getViewActions in order to allow the zooming key shortcuts from the zoom tool to take effect when the zoom tool wasn't active.
2012-06-20 Debbie A. Cook, Updated Spice members to be more compliant with Isis coding standards. References #972.
2012-07-26 Kimberly Oyama - Updated the help documentation for the grid tool to include tips for the options dialog and the new 'Auto Grid' functionality. References #604.
2012-08-27 Tracie Sucharski - This widget now handles the creation of its own tools to the toolbars. Because this widget is used by qmos to create both the world scene and mosaic scene, the bool showTools was added to the constructor so that toolbars are not shown in the world scene.
2012-09-12 Steven Lambright - Added xml save/load capabilities.
2012-09-17 Steven Lambright - Added very basic right-click on multiple images capabilities. Increased performance.
2012-10-02 Stuart Sides and Steven Lambright - Added supportedActions() and updated fitInView() to work when called by an action with an ImageList for data.
2012-10-03 Steven Lambright - Removed createReferenceFootprint() - this was dead code that the grid tool handles now.
2012-10-11 Debbie A. Cook, Updated to use new Target class. References Mantis tickets #775 and #1114.
2012-10-19 Steven Lambright and Stuart Sides - Added moveUpOne(), moveDownOne(), moveToTop(), and moveToBottom() methods with new, more abstracted arguments. Added moveZ(). Improved fitInView() capabilities. Added supportedActions().
2013-01-31 Steven Lambright - Fixed a problem caused by #1312 - when the minimum longitude wasn't defined in the map file, the one generated by qmos was invalid. Fixes #1406.
2012-12-21 Steven Lambright - Renamed askNewProjection() to configProjectionParameters() and upgraded it's functionality to view and edit the current projection. Fixes #1034.
2013-12-24 Tracie Sucharski - Initialized bool member variables, m_queuedSelectionChanged and m_shouldRequestSelectionChanged. Removed unused private member, m_projectionFootprint. The uninitialized values were causing the qmos selection tool to not work properly. Fixes #1742.
2014-07-18 Kimberly Oyama and Tracie Sucharski - Added selectedCubes() and other control net functionality for IPCE.
2016-04-22 Jeannie Backer - Added label parameter to setProjection(mapGroup, label). The default value for label is an empty Pvl. Also, modified addImage() to pass the label from the cube of the image to be added into setProjection(mapGroup, label). This was done to be able to call TProjection::TargetRadii(label,mapGroup), which will in turn will now call Target::radiiGroup(targetName), if needed. References #3892
2016-08-28 Kelvin Rodriguez - Added using QWidget::contextMenuEvent to avoid hidden virtual function warnings in clang. Part of porting to OS X 10.11.
2016-09-14 Ian Humphrey - Replaced deprecated QPixmap::grabWidget with QWidget::grab. Fixes #4304.
2016-04-22 Jeannie Backer - Added label parameter to setProjection(mapGroup, label). The default value for label is an empty Pvl. Also, modified addImage() to pass the label from the cube of the image to be added into setProjection(mapGroup, label). This was done to be able to call TProjection::TargetRadii(label,mapGroup), which will in turn will now call Target::radiiGroup(targetName), if needed. References #3892
2016-08-02 Tracie Sucharski - Added public method to remove an Image from scene.
2016-09-14 Tracie Sucharski - Added signals for mouse clicks for modifying, deleting and creating control points. These are passed on to Footprint2DView signals, then on to Directory slots.
2016-11-07 Ian Humphrey - Restored the startElement() functionality so footprints can be correctly loaded from an XML storing the MosaicScenWidget's state. Fixes #4486.
2017-07-27 Makayla Shepherd - Fixed a segfault that occurred when closing a cube footprint. Fixes #5050.
2017-08-02 Tracie Sucharski - Added cnetModified signal to indicate that the control point graphics items need to be rebuilt since either a control point was deleted or added to the control net. Renamed deleteControlPoint signal to controlPointDeleted. Removed some unneeded connections. Fixes #5007, #5008.
2018-05-14 Tracie Sucharski - Change the xml tag from footprint2DView to mosaicScene. Reference #5422.
2018-10-04 Tracie Sucharski - When serializing images for ipce project saving, check for shapes in project if image for given id cannot be found. References #5495.
Definition at line 153 of file MosaicSceneWidget.h.
Isis::MosaicSceneWidget::MosaicSceneWidget | ( | QStatusBar * | status, |
bool | showTools, | ||
bool | internalizeToolBarsAndProgress, | ||
Directory * | directory, | ||
QWidget * | parent = 0 ) |
Create a scene widget.
Definition at line 63 of file MosaicSceneWidget.cpp.
References m_graphicsScene, m_graphicsView, and m_projection.
|
virtual |
Definition at line 243 of file MosaicSceneWidget.cpp.
|
private |
Definition at line 1261 of file MosaicSceneWidget.cpp.
|
slot |
Definition at line 1348 of file MosaicSceneWidget.cpp.
void Isis::MosaicSceneWidget::addTo | ( | QMenu * | menu | ) |
Definition at line 418 of file MosaicSceneWidget.cpp.
void Isis::MosaicSceneWidget::addTo | ( | QToolBar * | toolBar | ) |
Definition at line 410 of file MosaicSceneWidget.cpp.
void Isis::MosaicSceneWidget::addTo | ( | ToolPad * | toolPad | ) |
Definition at line 426 of file MosaicSceneWidget.cpp.
void Isis::MosaicSceneWidget::addToPermanent | ( | QToolBar * | toolBar | ) |
Definition at line 376 of file MosaicSceneWidget.cpp.
|
inline |
Definition at line 174 of file MosaicSceneWidget.h.
bool Isis::MosaicSceneWidget::blockSelectionChange | ( | bool | block | ) |
Definition at line 508 of file MosaicSceneWidget.cpp.
|
privateslot |
This happens when the user clicks on the map action (the button that is named after the current projection).
This method pops up a modal configuration dialog for the map file.
Definition at line 1507 of file MosaicSceneWidget.cpp.
bool Isis::MosaicSceneWidget::contextMenuEvent | ( | QGraphicsSceneContextMenuEvent * | event | ) |
This is called by MosaicGraphicsScene::contextMenuEvent.
Return false if not handled, true if handled.
Definition at line 439 of file MosaicSceneWidget.cpp.
References Isis::ImageList::append(), Isis::Directory::project(), selectedImages(), Isis::Directory::supportedActions(), and Isis::ImageList::supportedActions().
Definition at line 331 of file MosaicSceneWidget.cpp.
QStringList Isis::MosaicSceneWidget::cubeFileNames | ( | ) |
Definition at line 698 of file MosaicSceneWidget.cpp.
QRectF Isis::MosaicSceneWidget::cubesBoundingRect | ( | ) | const |
Definition at line 670 of file MosaicSceneWidget.cpp.
|
inline |
Definition at line 188 of file MosaicSceneWidget.h.
|
private |
Definition at line 688 of file MosaicSceneWidget.cpp.
MosaicSceneItem * Isis::MosaicSceneWidget::cubeToMosaic | ( | Image * | image | ) |
Definition at line 498 of file MosaicSceneWidget.cpp.
Directory * Isis::MosaicSceneWidget::directory | ( | ) | const |
Definition at line 711 of file MosaicSceneWidget.cpp.
void Isis::MosaicSceneWidget::enableRubberBand | ( | bool | enable | ) |
Definition at line 493 of file MosaicSceneWidget.cpp.
|
protectedvirtual |
Definition at line 1531 of file MosaicSceneWidget.cpp.
|
privateslot |
Saves the scene as a png, jpg, or tif file.
Definition at line 1419 of file MosaicSceneWidget.cpp.
|
privateslot |
Definition at line 1997 of file MosaicSceneWidget.cpp.
void Isis::MosaicSceneWidget::fromPvl | ( | const PvlObject & | project | ) |
Call this method after loading any cubes when loading a project.
project | The project Pvl |
Definition at line 578 of file MosaicSceneWidget.cpp.
References Isis::PvlObject::findGroup(), Isis::PvlObject::findObject(), Isis::PvlObject::hasObject(), setProjection(), and Isis::toDouble().
Definition at line 856 of file MosaicSceneWidget.cpp.
Definition at line 771 of file MosaicSceneWidget.cpp.
Definition at line 930 of file MosaicSceneWidget.cpp.
Definition at line 1022 of file MosaicSceneWidget.cpp.
Definition at line 1072 of file MosaicSceneWidget.cpp.
|
private |
Implemented because we want invisible items too.
Definition at line 2065 of file MosaicSceneWidget.cpp.
Definition at line 1228 of file MosaicSceneWidget.cpp.
QProgressBar * Isis::MosaicSceneWidget::getProgress | ( | ) |
Definition at line 517 of file MosaicSceneWidget.cpp.
|
inline |
Definition at line 170 of file MosaicSceneWidget.h.
|
inline |
Definition at line 166 of file MosaicSceneWidget.h.
|
inline |
Definition at line 162 of file MosaicSceneWidget.h.
Definition at line 789 of file MosaicSceneWidget.cpp.
ImageList Isis::MosaicSceneWidget::images | ( | ) |
Definition at line 716 of file MosaicSceneWidget.cpp.
bool Isis::MosaicSceneWidget::isControlNetToolActive | ( | ) |
Definition at line 844 of file MosaicSceneWidget.cpp.
|
private |
Definition at line 1322 of file MosaicSceneWidget.cpp.
|
private |
Definition at line 1327 of file MosaicSceneWidget.cpp.
|
privateslot |
Definition at line 1725 of file MosaicSceneWidget.cpp.
double Isis::MosaicSceneWidget::moveDownOne | ( | Image * | image | ) |
Definition at line 1751 of file MosaicSceneWidget.cpp.
Definition at line 1758 of file MosaicSceneWidget.cpp.
double Isis::MosaicSceneWidget::moveDownOne | ( | MosaicSceneItem * | item | ) |
Definition at line 1736 of file MosaicSceneWidget.cpp.
|
privateslot |
Definition at line 1769 of file MosaicSceneWidget.cpp.
double Isis::MosaicSceneWidget::moveToBottom | ( | Image * | image | ) |
This doesn't compress the Z values - the original Z value of this image is guaranteed to be empty after this operation.
Definition at line 1802 of file MosaicSceneWidget.cpp.
References moveToBottom().
This doesn't compress the Z values - the original Z values of these images are guaranteed to be empty after this operation.
Definition at line 1811 of file MosaicSceneWidget.cpp.
References moveToBottom().
double Isis::MosaicSceneWidget::moveToBottom | ( | MosaicSceneItem * | item | ) |
This doesn't compress the Z values - the original Z values of this scene item is guaranteed to be empty after this operation.
Definition at line 1781 of file MosaicSceneWidget.cpp.
Referenced by moveToBottom(), and moveToBottom().
|
privateslot |
Definition at line 1866 of file MosaicSceneWidget.cpp.
double Isis::MosaicSceneWidget::moveToTop | ( | Image * | image | ) |
This doesn't compress the Z values - the original Z value of this image is guaranteed to be empty after this operation.
Definition at line 1910 of file MosaicSceneWidget.cpp.
References moveToTop().
This doesn't compress the Z values - the original Z values of these images are guaranteed to be empty after this operation.
Definition at line 1919 of file MosaicSceneWidget.cpp.
References moveToTop().
double Isis::MosaicSceneWidget::moveToTop | ( | MosaicSceneItem * | item | ) |
This doesn't compress the Z values - the original Z values of this scene item is guaranteed to be empty after this operation.
Definition at line 1879 of file MosaicSceneWidget.cpp.
Referenced by moveToTop(), and moveToTop().
|
privateslot |
Definition at line 1822 of file MosaicSceneWidget.cpp.
double Isis::MosaicSceneWidget::moveUpOne | ( | Image * | image | ) |
Definition at line 1848 of file MosaicSceneWidget.cpp.
Definition at line 1855 of file MosaicSceneWidget.cpp.
double Isis::MosaicSceneWidget::moveUpOne | ( | MosaicSceneItem * | item | ) |
Definition at line 1833 of file MosaicSceneWidget.cpp.
double Isis::MosaicSceneWidget::moveZ | ( | Image * | image, |
double | newZ, | ||
bool | newZValueMightExist = true ) |
Definition at line 1991 of file MosaicSceneWidget.cpp.
double Isis::MosaicSceneWidget::moveZ | ( | MosaicSceneItem * | sceneItem, |
double | newZ, | ||
bool | newZValueMightExist = true ) |
This method moves the given scene item to the given Z value.
By default, this does not create gaps in the Z-values and makes the necessary room/adjustments for the new item to go to it's spot. If the last operation was moveToTop or moveToBottom, because those methods don't compress/adjust the surrounding Z values, we can avoid any and all adjustments here (significant performance boost) by using newZValueMightExist=false.
N = # items in the scene The time complexity of this method is N if newZValueMightExist. The time complexity of this method is constant if !newZValueMightExist.
sceneItem | The item in this scene to change the Z value |
newZ | The new Z value for the item |
newZValueMightExist | True if an item in the scene might occupy the new Z value |
Definition at line 1947 of file MosaicSceneWidget.cpp.
Referenced by Isis::MosaicSceneWorkOrder::restoreZPositions().
|
privateslot |
Definition at line 2049 of file MosaicSceneWidget.cpp.
|
privateslot |
Definition at line 2036 of file MosaicSceneWidget.cpp.
|
privateslot |
Definition at line 1513 of file MosaicSceneWidget.cpp.
|
private |
Definition at line 1331 of file MosaicSceneWidget.cpp.
|
slot |
This method refits t:he items in the graphics view.
Definition at line 1477 of file MosaicSceneWidget.cpp.
Referenced by reprojectItems(), and Isis::MosaicZoomTool::zoomFit().
|
slot |
Definition at line 1400 of file MosaicSceneWidget.cpp.
|
privateslot |
Definition at line 1463 of file MosaicSceneWidget.cpp.
|
private |
Reprojects all the items in the view.
Also makes sure to resize the view rectangle to fit the newly projected footprints.
Definition at line 1672 of file MosaicSceneWidget.cpp.
References Isis::IException::Programmer, refit(), Isis::MosaicSceneItem::reproject(), and Isis::ProgressBar::setText().
Referenced by setProjection().
void Isis::MosaicSceneWidget::save | ( | QXmlStreamWriter & | stream, |
Project * | project, | ||
FileName | newProjectRoot ) const |
Definition at line 619 of file MosaicSceneWidget.cpp.
|
privateslot |
Definition at line 1443 of file MosaicSceneWidget.cpp.
ImageList Isis::MosaicSceneWidget::selectedImages | ( | ) |
Returns a list of all the cubes selected in the scene.
Definition at line 734 of file MosaicSceneWidget.cpp.
References Isis::ImageList::append(), and selectedImages().
Referenced by contextMenuEvent(), Isis::Footprint2DView::onQueueSelectionChanged(), and selectedImages().
|
privateslot |
Definition at line 1520 of file MosaicSceneWidget.cpp.
|
slot |
Definition at line 1491 of file MosaicSceneWidget.cpp.
|
slot |
Definition at line 312 of file MosaicSceneWidget.cpp.
|
private |
Definition at line 269 of file MosaicSceneWidget.cpp.
|
slot |
This method takes ownership of proj.
Definition at line 287 of file MosaicSceneWidget.cpp.
References m_projection, and reprojectItems().
Referenced by fromPvl().
|
inline |
Return an empty list of actions for unknown data types.
Definition at line 239 of file MosaicSceneWidget.h.
Get a list of actions this scene can perform given "images".
Definition at line 804 of file MosaicSceneWidget.cpp.
References Isis::Directory::project().
PvlObject Isis::MosaicSceneWidget::toPvl | ( | ) | const |
Definition at line 522 of file MosaicSceneWidget.cpp.
|
inline |
Definition at line 195 of file MosaicSceneWidget.h.
|
staticprivate |
Definition at line 2096 of file MosaicSceneWidget.cpp.
|
private |
Definition at line 348 of file MosaicSceneWidget.h.
|
private |
Definition at line 354 of file MosaicSceneWidget.h.
|
private |
Definition at line 329 of file MosaicSceneWidget.h.
|
private |
Definition at line 361 of file MosaicSceneWidget.h.
|
private |
Definition at line 360 of file MosaicSceneWidget.h.
|
private |
Definition at line 331 of file MosaicSceneWidget.h.
|
private |
Definition at line 330 of file MosaicSceneWidget.h.
|
private |
Definition at line 327 of file MosaicSceneWidget.h.
|
private |
Definition at line 337 of file MosaicSceneWidget.h.
|
private |
The graphics scene that makes up this widget.
Definition at line 333 of file MosaicSceneWidget.h.
Referenced by MosaicSceneWidget().
|
private |
The graphics view.
Definition at line 334 of file MosaicSceneWidget.h.
Referenced by MosaicSceneWidget().
|
private |
Definition at line 340 of file MosaicSceneWidget.h.
|
private |
Definition at line 336 of file MosaicSceneWidget.h.
|
private |
Definition at line 338 of file MosaicSceneWidget.h.
|
private |
Definition at line 356 of file MosaicSceneWidget.h.
|
private |
Definition at line 347 of file MosaicSceneWidget.h.
|
private |
Definition at line 350 of file MosaicSceneWidget.h.
|
private |
Definition at line 352 of file MosaicSceneWidget.h.
|
private |
The current projection type.
Definition at line 335 of file MosaicSceneWidget.h.
Referenced by MosaicSceneWidget(), and setProjection().
|
private |
Definition at line 363 of file MosaicSceneWidget.h.
|
private |
Definition at line 357 of file MosaicSceneWidget.h.
|
private |
Definition at line 341 of file MosaicSceneWidget.h.
|
private |
Definition at line 332 of file MosaicSceneWidget.h.
|
private |
Definition at line 358 of file MosaicSceneWidget.h.
|
private |
Definition at line 345 of file MosaicSceneWidget.h.
|
private |
Definition at line 343 of file MosaicSceneWidget.h.
|
private |
Definition at line 355 of file MosaicSceneWidget.h.