Isis 3 Developer Reference
|
General purpose Cube display widget. More...
#include <IndependentCubeViewport.h>
Public Slots | |
void | resetKnownGlobal () |
QSize | sizeHint () const |
Make viewports show up as 512 by 512. More... | |
void | setScale (double scale) |
Change the scale of the cube to the given parameter value. More... | |
void | setScale (double scale, double sample, double line) |
Change the scale of the cube after moving samp/line to the center. More... | |
void | setScale (double scale, int x, int y) |
Change the scale of the cube after moving x,y to the center. More... | |
void | center (int x, int y) |
Bring the cube pixel under viewport x/y to the center. More... | |
void | center (double sample, double line) |
Bring the cube sample/line the center. More... | |
virtual void | viewRGB (int redBand, int greenBand, int blueBand) |
View cube as color. More... | |
virtual void | viewGray (int band) |
View cube as gray. More... | |
void | stretchGray (const QString &string) |
Apply stretch pairs to gray band. More... | |
void | stretchGray (const Stretch &stretch) |
Sets the stretch for gray mode. More... | |
void | stretchRed (const QString &string) |
Apply stretch pairs to red bands. More... | |
void | stretchRed (const Stretch &stretch) |
Sets the stretch for red in rgb mode. More... | |
void | stretchGreen (const QString &string) |
Apply stretch pairs to green bands. More... | |
void | stretchGreen (const Stretch &stretch) |
Sets the stretch for green in rgb mode. More... | |
void | stretchBlue (const QString &string) |
Apply stretch pairs to blue bands. More... | |
void | stretchBlue (const Stretch &stretch) |
Sets the stretch for blue in rgb mode. More... | |
void | stretchKnownGlobal () |
List<Tool *> p This stretches to the global stretch. More... | |
void | cubeChanged (bool changed) |
This method is called when the cube has changed or changes have been finalized. More... | |
void | scrollBy (int dx, int dy) |
Move the scrollbars by dx/dy screen pixels. More... | |
void | changeCursor (QCursor cursor) |
Allows users to change the cursor type on the viewport. More... | |
void | onProgressTimer () |
This updates the progress bar visually. More... | |
void | enableProgress () |
This restarts the progress bar. More... | |
Signals | |
void | synchronize (IndependentCubeViewport *) |
void | trackingChanged (double sample, double line, double lat, double lon, double dn, IndependentCubeViewport *) |
void | trackingChanged (double samp, double line, double dn, IndependentCubeViewport *) |
void | cantTrack (QString, IndependentCubeViewport *) |
void | viewportUpdated () |
Emitted when viewport updated. More... | |
void | viewportClosed (CubeViewport *) |
Emitted when viewport is closed. More... | |
void | mouseEnter () |
Emitted when the mouse enters the viewport. More... | |
void | mouseMove (QPoint) |
Emitted when the mouse moves. More... | |
void | mouseMove (QPoint, Qt::MouseButton) |
Emitted when the mouse moves. More... | |
void | mouseLeave () |
Emitted when the mouse leaves the viewport. More... | |
void | mouseButtonPress (QPoint, Qt::MouseButton) |
Emitted when mouse button pressed. More... | |
void | mouseButtonRelease (QPoint, Qt::MouseButton) |
Emitted when mouse button released. More... | |
void | mouseDoubleClick (QPoint) |
Emitted when double click happens. More... | |
void | windowTitleChanged () |
Emitted when window title changes. More... | |
void | scaleChanged () |
Emitted when zoom factor changed just before the repaint event. More... | |
void | saveChanges (CubeViewport *) |
Emitted when changes should be saved. More... | |
void | discardChanges (CubeViewport *) |
Emitted when changes should be discarded. More... | |
void | screenPixelsChanged () |
Emitted when cube pixels that should be on the screen change. More... | |
void | progressChanged (int) |
Emitted with current progress (0 to 100) when working. More... | |
void | progressComplete () |
Emitted when the current progress is complete (100) More... | |
void | doneWithData (int, const Isis::Brick *) |
Emitted when a brick is no longer needed, should only be sent to cube data thread. More... | |
Public Member Functions | |
IndependentCubeViewport (Cube *cube, CubeDataThread *cdt=0, QWidget *parent=0) | |
~IndependentCubeViewport () | |
bool | eventFilter (QObject *o, QEvent *e) |
Event filter to watch for mouse events on viewport. More... | |
void | paintEvent (QPaintEvent *e) |
Repaint the viewport. More... | |
void | restretch (ViewportBuffer *) |
This is called by internal viewport buffers when a stretch action should be performed. More... | |
virtual void | showEvent (QShowEvent *e) |
void | setCube (Cube *cube) |
This method sets the viewports cube. More... | |
int | cubeSamples () const |
Return the number of samples in the cube. More... | |
int | cubeLines () const |
Return the number of lines in the cube. More... | |
int | cubeBands () const |
Return the number of bands in the cube. More... | |
bool | isColor () const |
bool | isGray () const |
int | grayBand () const |
int | redBand () const |
int | greenBand () const |
int | blueBand () const |
double | scale () const |
bool | cubeShown () const |
int | comboCount () const |
int | comboIndex () const |
void | cubeContentsChanged (QRect rect) |
Calle dhwen the contents of the cube changes. More... | |
double | fitScale () const |
Determine the scale that causes the full cube to fit in the viewport. More... | |
double | fitScaleWidth () const |
Determine the scale of cube in the width to fit in the viewport. More... | |
double | fitScaleHeight () const |
Determine the scale of cube in heighth to fit in the viewport. More... | |
void | viewportToCube (int x, int y, double &sample, double &line) const |
Turns a viewport into a cube. More... | |
void | cubeToViewport (double sample, double line, int &x, int &y) const |
Turns a cube into a viewport. More... | |
void | contentsToCube (int x, int y, double &sample, double &line) const |
Turns contents to a cube. More... | |
void | cubeToContents (double sample, double line, int &x, int &y) const |
Turns a cube into contents. More... | |
double | redPixel (int sample, int line) |
Gets the red pixel. More... | |
double | greenPixel (int sample, int line) |
Gets the green pixel. More... | |
double | bluePixel (int sample, int line) |
Gets the blue pixel. More... | |
double | grayPixel (int sample, int line) |
Gets the gray pixel. More... | |
Stretch | grayStretch () const |
Return the gray band stretch. More... | |
Stretch | redStretch () const |
Return the red band stretch. More... | |
Stretch | greenStretch () const |
Return the green band stretch. More... | |
Stretch | blueStretch () const |
Return the blue band stretch. More... | |
Cube * | cube () const |
Projection * | projection () const |
Camera * | camera () const |
UniversalGroundMap * | universalGroundMap () const |
Cube * | trackingCube () const |
void | moveCursor (int x, int y) |
Move the cursor by x,y if possible. More... | |
bool | cursorInside () const |
Is cursor inside viewport. More... | |
QPoint | cursorPosition () const |
Return the cursor position in the viewport. More... | |
void | setCursorPosition (int x, int y) |
Set the cursor position to x/y in the viewport. More... | |
void | setCaption () |
Change the caption on the viewport title bar. More... | |
void | setBackground (QColor color) |
Sets the background color. More... | |
void | setComboCount (int count) |
Sets the band bin combo box count. More... | |
void | setComboIndex (int index) |
Sets the band bin combo box index. More... | |
QPixmap | pixmap () |
Returns the pixmap. More... | |
ViewportBuffer * | grayBuffer () |
Returns the gray viewport buffer (Will be NULL if in RGB mode.) More... | |
ViewportBuffer * | redBuffer () |
Returns the red viewport buffer (Will be NULL if in Gray mode.) More... | |
ViewportBuffer * | greenBuffer () |
Returns the green viewport buffer (Will be NULL if in Gray mode.) More... | |
ViewportBuffer * | blueBuffer () |
Returns the blue viewport buffer (Will be NULL if in Gray mode.) More... | |
void | bufferUpdated (QRect rect) |
This method is called by ViewportBuffer upon successful completion of all operations and gives the appropriate rect to be repainted. More... | |
void | paintPixmap () |
Paint the whole pixmap. More... | |
void | forgetStretches () |
Resets all remembered stretches. More... | |
void | setAllBandStretches (Stretch stretch) |
Sets a stretch for all bands. More... | |
CubeDataThread * | cubeDataThread () |
int | cubeID () |
void | getAllWhatsThisInfo (Pvl &pWhatsThisPvl) |
Get All WhatsThis info - viewport, cube, area in PVL format. More... | |
void | getBandFilterName (PvlKeyword &pFilterNameKey) |
Get Band Filter name from the Isis cube label. More... | |
void | getCubeArea (double &pdStartSample, double &pdEndSample, double &pdStartLine, double &pdEndLine) |
Get Cube area corresponding to the viewport's dimension. More... | |
bool | confirmClose () |
This method should be called during a close event that would cause this viewport to close. More... | |
void | setTrackingCube () |
Finds the Tracking group from p_cube and stores the tracking cube name so that we can grab it in AdvancedTrackTool and get mosaic information. More... | |
Protected Slots | |
virtual void | cubeDataChanged (int cubeId, const Brick *) |
Protected Member Functions | |
void | scrollContentsBy (int dx, int dy) |
Scroll the viewport contents by dx/dy screen pixels. More... | |
virtual void | resizeEvent (QResizeEvent *e) |
The viewport is being resized. More... | |
virtual void | keyPressEvent (QKeyEvent *e) |
Process arrow keystrokes on cube. More... | |
Protected Attributes | |
QPixmap | p_pixmap |
The qpixmap. More... | |
QVector< Stretch *> * | p_knownStretches |
Stretches for each previously stretched band. More... | |
QVector< Stretch *> * | p_globalStretches |
Global stretches for each stretched band. More... | |
General purpose Cube display widget.
Isis::IndependentCubeViewport::IndependentCubeViewport | ( | Cube * | cube, |
CubeDataThread * | cdt = 0 , |
||
QWidget * | parent = 0 |
||
) |
Isis::IndependentCubeViewport::~IndependentCubeViewport | ( | ) |
|
inlineinherited |
References Isis::CubeViewport::BandInfo::band.
Referenced by Isis::StretchTool::stretchBand(), Isis::CubeViewport::stretchBlue(), Isis::CubeViewport::stretchKnownGlobal(), and Isis::BandTool::updateTool().
|
inlineinherited |
Returns the blue viewport buffer (Will be NULL if in Gray mode.)
Referenced by Isis::MdiCubeViewport::restretch(), Isis::StretchTool::setCubeViewport(), Isis::StretchTool::stretchRequested(), Isis::StretchTool::updateAdvStretchDialogforAll(), and Isis::StretchTool::updateHistograms().
|
inherited |
Gets the blue pixel.
Return the blue pixel value at a sample/line.
sample | The sample |
line | The line |
sample | |
line |
References Isis::CubeViewport::BandInfo::band, Isis::Cube::read(), and Isis::Brick::SetBasePosition().
|
inherited |
Return the blue band stretch.
References Isis::CubeViewport::BandInfo::getStretch().
Referenced by Isis::StretchTool::setCubeViewport(), Isis::StretchTool::stretchBand(), Isis::StretchTool::stretchRequested(), Isis::StretchTool::updateAdvStretchDialogforAll(), and Isis::AdvancedStretchDialog::updateStretch().
|
inherited |
This method is called by ViewportBuffer upon successful completion of all operations and gives the appropriate rect to be repainted.
This is intended to update the screen once all data is done and ready to be displayed.
rect | Area to update screen |
References Isis::CubeViewport::paintPixmap(), and Isis::ViewportBuffer::working().
|
inlineinherited |
Referenced by Isis::MeasureTool::rubberBandComplete(), and Isis::FindTool::updateTool().
|
signal |
|
slotinherited |
Bring the cube pixel under viewport x/y to the center.
x | |
y |
References Isis::CubeViewport::viewportToCube().
Referenced by Isis::PanTool::mouseButtonRelease(), and Isis::CubeViewport::setScale().
|
slotinherited |
Bring the cube sample/line the center.
sample | Value of the sample to center on. |
line | Value of the line to center on. |
References Isis::CubeViewport::cubeToContents(), Isis::ViewportBuffer::pan(), and Isis::CubeViewport::screenPixelsChanged().
|
slotinherited |
Allows users to change the cursor type on the viewport.
cursor |
|
inlineinherited |
|
inlineinherited |
|
inherited |
This method should be called during a close event that would cause this viewport to close.
If changes have been made to this viewport it opens an information dialog that asks the user if they want to save, discard changes, or cancel.
References Isis::CubeViewport::cube(), Isis::CubeViewport::discardChanges(), and Isis::CubeViewport::saveChanges().
|
inherited |
Turns contents to a cube.
Convert a contents x/y to a cube sample/line (may be outside the cube)
x | |
y | |
sample | |
line |
Referenced by Isis::CubeViewport::setScale(), and Isis::CubeViewport::viewportToCube().
|
inlineinherited |
Referenced by Isis::CubeViewport::confirmClose(), Isis::MatchTool::createPoint(), Isis::CubeViewport::cubeContentsChanged(), Isis::CubeViewport::cubeDataChanged(), Isis::Workspace::cubeToMdiWidget(), Isis::CubeViewport::CubeViewport(), Isis::FileTool::exportToList(), Isis::SunShadowTool::mouseButtonPress(), Isis::ControlNetTool::mouseButtonRelease(), Isis::EditTool::mouseButtonRelease(), Isis::MatchTool::mouseButtonRelease(), Isis::QnetTool::mouseButtonRelease(), Isis::CubePlotCurve::paint(), Isis::StereoTool::paintViewport(), Isis::HistogramTool::refreshPlot(), Isis::AbstractPlotTool::repaintViewports(), Isis::StereoTool::rubberBandComplete(), Isis::EditTool::rubberBandComplete(), Isis::FileTool::save(), Isis::CubeDnView::save(), Isis::FileTool::saveAsCubeByOption(), Isis::ScatterPlotConfigDialog::ScatterPlotConfigDialog(), Isis::CubeViewport::setCube(), Isis::StretchTool::stretchBand(), Isis::ChipViewport::stretchFromCubeViewport(), Isis::BandTool::updateTool(), Isis::SunShadowTool::updateTool(), Isis::SpectralPlotTool::updateTool(), Isis::CubeDnView::viewportContainsShape(), Isis::ScatterPlotConfigDialog::xAxisCubeViewport(), and Isis::ScatterPlotConfigDialog::yAxisCubeViewport().
|
inherited |
Return the number of bands in the cube.
References Isis::Cube::bandCount().
Referenced by resetKnownGlobal().
|
slotinherited |
This method is called when the cube has changed or changes have been finalized.
changed |
|
inherited |
Calle dhwen the contents of the cube changes.
Cube changed, repaint given area.
rect | The QRect |
rect | Rectangle containing portion of cube (sample/line) that changed. |
References Isis::CubeViewport::cube(), Isis::CubeViewport::cubeToViewport(), Isis::ViewportBuffer::fillBuffer(), Isis::Cube::lineCount(), and Isis::Cube::sampleCount().
|
protectedvirtualslot |
References Isis::Histogram::AddData(), Isis::Statistics::AddData(), Isis::Stretch::AddPair(), Isis::Buffer::Band(), Isis::Buffer::BandDimension(), Isis::Statistics::BestMaximum(), Isis::Statistics::BestMinimum(), Isis::Stretch::ClearPairs(), Isis::CubeViewport::cubeDataChanged(), Isis::CubeViewport::cubeID(), Isis::CubeViewport::cubeLines(), Isis::CubeViewport::cubeSamples(), Isis::Buffer::DoubleBuffer(), Isis::CubeViewport::grayBand(), Isis::CubeViewport::grayStretch(), Isis::Buffer::Line(), Isis::Buffer::LineDimension(), Isis::Statistics::Maximum(), Isis::Statistics::Minimum(), Isis::Stretch::Pairs(), Isis::Buffer::Sample(), Isis::Buffer::SampleDimension(), Isis::Buffer::size(), Isis::CubeViewport::stretchGray(), and Isis::Statistics::ValidPixels().
|
inlineinherited |
|
inlineinherited |
Referenced by cubeDataChanged().
|
inherited |
Return the number of lines in the cube.
References Isis::Cube::lineCount().
Referenced by cubeDataChanged(), Isis::CubeViewport::fitScale(), Isis::CubeViewport::fitScaleHeight(), Isis::CubeViewport::getCubeArea(), Isis::EditTool::mouseButtonRelease(), Isis::EditTool::rubberBandComplete(), Isis::CubeViewport::setScale(), and Isis::CubeViewport::showEvent().
|
inherited |
Return the number of samples in the cube.
References Isis::Cube::sampleCount().
Referenced by cubeDataChanged(), Isis::CubeViewport::fitScale(), Isis::CubeViewport::fitScaleWidth(), Isis::CubeViewport::getCubeArea(), Isis::EditTool::mouseButtonRelease(), Isis::EditTool::rubberBandComplete(), Isis::CubeViewport::setScale(), and Isis::CubeViewport::showEvent().
|
inlineinherited |
|
inherited |
Turns a cube into contents.
Convert a cube sample/line to a contents x/y (should not be outside)
x | |
y | |
sample | |
line | |
sample | |
line | |
x | |
y |
Referenced by Isis::CubeViewport::center(), Isis::CubeViewport::cubeToViewport(), and Isis::CubeViewport::setScale().
|
inherited |
Turns a cube into a viewport.
Convert a cube sample/line to a viewport x/y (may be outside the viewport)
x | |
y | |
sample | |
line | |
sample | |
line | |
x | |
y |
References Isis::CubeViewport::cubeToContents().
Referenced by Isis::CubeViewport::cubeContentsChanged(), Isis::CubeViewport::cubeDataChanged(), Isis::CubePlotCurve::paint(), Isis::SunShadowTool::paintViewport(), Isis::StereoTool::paintViewport(), Isis::FindTool::paintViewport(), and Isis::HistogramTool::refreshPlot().
|
inherited |
Is cursor inside viewport.
|
inherited |
Return the cursor position in the viewport.
|
signalinherited |
Emitted when changes should be discarded.
Referenced by Isis::CubeViewport::confirmClose().
|
signalinherited |
Emitted when a brick is no longer needed, should only be sent to cube data thread.
Referenced by Isis::CubeViewport::cubeDataChanged(), and Isis::CubeViewport::CubeViewport().
|
slotinherited |
This restarts the progress bar.
Does nothing if already loading.
References Isis::CubeViewport::progressChanged().
|
virtual |
Event filter to watch for mouse events on viewport.
o | |
e |
Reimplemented from Isis::CubeViewport.
References Isis::CubeViewport::mouseEnter(), Isis::CubeViewport::mouseLeave(), and synchronize().
|
inherited |
Determine the scale that causes the full cube to fit in the viewport.
References Isis::CubeViewport::cubeLines(), Isis::CubeViewport::cubeSamples(), and Isis::CubeViewport::scale().
Referenced by Isis::CubeViewport::showEvent().
|
inherited |
Determine the scale of cube in heighth to fit in the viewport.
References Isis::CubeViewport::cubeLines(), and Isis::CubeViewport::scale().
|
inherited |
Determine the scale of cube in the width to fit in the viewport.
References Isis::CubeViewport::cubeSamples(), and Isis::CubeViewport::scale().
|
inherited |
Resets all remembered stretches.
References Isis::CubeViewport::p_knownStretches.
Referenced by Isis::StretchTool::stretchGlobalAllBands().
|
inherited |
Get All WhatsThis info - viewport, cube, area in PVL format.
pWhatsThisPvl | - Pvl for all whatsthis info |
pWhatsThisPvl | - Pvl for all whatsthis info |
References Isis::Cube::bandCount(), Isis::Cube::fileName(), Isis::ViewportBuffer::getBand(), Isis::CubeViewport::getBandFilterName(), Isis::CubeViewport::getCubeArea(), Isis::Cube::lineCount(), Isis::Cube::physicalBand(), Isis::Cube::sampleCount(), Isis::PvlKeyword::size(), and Isis::toString().
Referenced by Isis::FileTool::saveInfo().
|
inherited |
Get Band Filter name from the Isis cube label.
pFilterNameKey | - FilterName keyword containing the corresponding keyword from the Isis Cube label |
pFilterNameKey | - FilterName keyword containing the corresponding keyword from the Isis Cube label |
References Isis::PvlObject::findGroup(), Isis::PvlContainer::findKeyword(), Isis::PvlObject::findObject(), Isis::PvlObject::hasGroup(), Isis::PvlContainer::hasKeyword(), and Isis::Cube::label().
Referenced by Isis::CubeViewport::getAllWhatsThisInfo().
|
inherited |
Get Cube area corresponding to the viewport's dimension.
pdStartSample | - Cube Start Sample |
pdEndSample | - Cube End Sample |
pdStartLine | - Cube Start Line |
pdEndLine | - Cube End Line |
References Isis::CubeViewport::cubeLines(), Isis::CubeViewport::cubeSamples(), and Isis::CubeViewport::viewportToCube().
Referenced by Isis::CubeViewport::getAllWhatsThisInfo().
|
inlineinherited |
References Isis::CubeViewport::BandInfo::band.
Referenced by cubeDataChanged(), Isis::EditTool::mouseButtonRelease(), Isis::HistogramTool::refreshPlot(), Isis::SpatialPlotTool::refreshPlot(), Isis::StretchTool::stretchBand(), Isis::CubeViewport::stretchGray(), Isis::CubeViewport::stretchKnownGlobal(), and Isis::BandTool::updateTool().
|
inlineinherited |
Returns the gray viewport buffer (Will be NULL if in RGB mode.)
Referenced by Isis::ScatterPlotWindow::paint(), resetKnownGlobal(), Isis::MdiCubeViewport::restretch(), Isis::StretchTool::setCubeViewport(), showEvent(), Isis::StretchTool::stretchRequested(), and Isis::StretchTool::updateHistograms().
|
inherited |
Gets the gray pixel.
Return the gray pixel value at a sample/line.
sample | The sample |
line | The line |
sample | |
line |
References Isis::CubeViewport::BandInfo::band, Isis::Cube::read(), and Isis::Brick::SetBasePosition().
|
inherited |
Return the gray band stretch.
References Isis::CubeViewport::BandInfo::getStretch().
Referenced by cubeDataChanged(), restretch(), Isis::StretchTool::setCubeViewport(), Isis::StretchTool::stretchBand(), Isis::StretchTool::stretchRequested(), and Isis::AdvancedStretchDialog::updateStretch().
|
inlineinherited |
References Isis::CubeViewport::BandInfo::band.
Referenced by Isis::StretchTool::stretchBand(), Isis::CubeViewport::stretchGreen(), Isis::CubeViewport::stretchKnownGlobal(), and Isis::BandTool::updateTool().
|
inlineinherited |
Returns the green viewport buffer (Will be NULL if in Gray mode.)
Referenced by Isis::MdiCubeViewport::restretch(), Isis::StretchTool::setCubeViewport(), Isis::StretchTool::stretchRequested(), Isis::StretchTool::updateAdvStretchDialogforAll(), and Isis::StretchTool::updateHistograms().
|
inherited |
Gets the green pixel.
Return the green pixel value at a sample/line.
sample | The sample |
line | The line |
sample | |
line |
References Isis::CubeViewport::BandInfo::band, Isis::Cube::read(), and Isis::Brick::SetBasePosition().
|
inherited |
Return the green band stretch.
References Isis::CubeViewport::BandInfo::getStretch().
Referenced by Isis::StretchTool::setCubeViewport(), Isis::StretchTool::stretchBand(), Isis::StretchTool::stretchRequested(), Isis::StretchTool::updateAdvStretchDialogforAll(), and Isis::AdvancedStretchDialog::updateStretch().
|
inlineinherited |
Referenced by Isis::EditTool::mouseButtonRelease(), and Isis::EditTool::rubberBandComplete().
|
inlineinherited |
Referenced by Isis::SpatialPlotTool::refreshPlot(), Isis::StretchTool::setCubeViewport(), Isis::CubeViewport::stretchKnownGlobal(), Isis::StretchTool::updateAdvStretchDialogforAll(), Isis::StretchTool::updateHistograms(), Isis::BandTool::updateTool(), and Isis::StretchTool::updateTool().
|
protectedvirtualinherited |
Process arrow keystrokes on cube.
e |
References Isis::Cube::fileName(), Isis::CubeViewport::moveCursor(), Isis::CubeViewport::scale(), and Isis::CubeViewport::setScale().
|
signalinherited |
Emitted when mouse button pressed.
Referenced by Isis::CubeViewport::eventFilter().
|
signalinherited |
Emitted when mouse button released.
Referenced by Isis::CubeViewport::eventFilter().
|
signalinherited |
Emitted when double click happens.
Referenced by Isis::CubeViewport::eventFilter().
|
signalinherited |
Emitted when the mouse enters the viewport.
Referenced by eventFilter(), and Isis::CubeViewport::eventFilter().
|
signalinherited |
Emitted when the mouse leaves the viewport.
Referenced by eventFilter(), and Isis::CubeViewport::eventFilter().
|
signalinherited |
Emitted when the mouse moves.
Referenced by Isis::CubeViewport::eventFilter().
|
signalinherited |
Emitted when the mouse moves.
|
inherited |
Move the cursor by x,y if possible.
x | |
y |
Referenced by Isis::CubeViewport::keyPressEvent().
|
slotinherited |
This updates the progress bar visually.
Conceptually it emits the progressChanged signal with the current progress.
References Isis::ViewportBuffer::currentProgress(), Isis::CubeViewport::progressChanged(), Isis::CubeViewport::progressComplete(), Isis::CubeViewport::screenPixelsChanged(), and Isis::ViewportBuffer::working().
Referenced by Isis::CubeViewport::CubeViewport().
|
virtual |
Repaint the viewport.
e | [in] (QPaintEvent *) event |
Reimplemented from Isis::CubeViewport.
References Isis::CubeViewport::p_pixmap, and Isis::CubeViewport::paintEvent().
|
inherited |
Paint the whole pixmap.
Referenced by Isis::CubeViewport::bufferUpdated(), Isis::CubeViewport::resizeEvent(), Isis::CubeViewport::scrollContentsBy(), Isis::CubeViewport::setScale(), Isis::CubeViewport::showEvent(), Isis::CubeViewport::stretchBlue(), Isis::CubeViewport::stretchGray(), Isis::CubeViewport::stretchGreen(), and Isis::CubeViewport::stretchRed().
|
inlineinherited |
Returns the pixmap.
References Isis::CubeViewport::p_pixmap.
Referenced by Isis::BlinkTool::eventFilter().
|
signalinherited |
Emitted with current progress (0 to 100) when working.
Referenced by Isis::CubeViewport::enableProgress(), and Isis::CubeViewport::onProgressTimer().
|
signalinherited |
Emitted when the current progress is complete (100)
Referenced by Isis::CubeViewport::onProgressTimer().
|
inlineinherited |
Referenced by Isis::MeasureTool::rubberBandComplete(), and Isis::FindTool::updateTool().
|
inlineinherited |
References Isis::CubeViewport::BandInfo::band.
Referenced by Isis::SpatialPlotTool::refreshPlot(), Isis::StretchTool::stretchBand(), Isis::CubeViewport::stretchKnownGlobal(), Isis::CubeViewport::stretchRed(), and Isis::BandTool::updateTool().
|
inlineinherited |
Returns the red viewport buffer (Will be NULL if in Gray mode.)
Referenced by Isis::MdiCubeViewport::restretch(), Isis::StretchTool::setCubeViewport(), Isis::StretchTool::stretchRequested(), Isis::StretchTool::updateAdvStretchDialogforAll(), and Isis::StretchTool::updateHistograms().
|
inherited |
Gets the red pixel.
Return the red pixel value at a sample/line.
sample | The sample |
line | The line |
sample | |
line |
References Isis::CubeViewport::BandInfo::band, Isis::Cube::read(), and Isis::Brick::SetBasePosition().
|
inherited |
Return the red band stretch.
References Isis::CubeViewport::BandInfo::getStretch().
Referenced by Isis::StretchTool::setCubeViewport(), Isis::StretchTool::stretchBand(), Isis::StretchTool::stretchRequested(), Isis::StretchTool::updateAdvStretchDialogforAll(), and Isis::AdvancedStretchDialog::updateStretch().
|
slot |
|
protectedvirtualinherited |
The viewport is being resized.
e |
References Isis::CubeViewport::p_pixmap, Isis::CubeViewport::paintPixmap(), Isis::ViewportBuffer::resizedViewport(), and Isis::CubeViewport::screenPixelsChanged().
|
virtual |
This is called by internal viewport buffers when a stretch action should be performed.
The buffer passes itself as the argument.
buffer |
Implements Isis::CubeViewport.
References Isis::Stretch::CopyPairs(), Isis::StretchTool::Gray, Isis::CubeViewport::grayStretch(), Isis::StretchTool::stretchBand(), and Isis::CubeViewport::stretchGray().
Referenced by showEvent().
|
signalinherited |
Emitted when changes should be saved.
Referenced by Isis::CubeViewport::confirmClose().
|
inlineinherited |
|
signalinherited |
Emitted when zoom factor changed just before the repaint event.
Referenced by Isis::CubeViewport::setScale().
|
signalinherited |
Emitted when cube pixels that should be on the screen change.
Referenced by Isis::CubeViewport::center(), Isis::CubeViewport::onProgressTimer(), Isis::CubeViewport::resizeEvent(), Isis::CubeViewport::scrollContentsBy(), and Isis::CubeViewport::setScale().
|
slotinherited |
Move the scrollbars by dx/dy screen pixels.
dx | |
dy |
References Isis::CubeViewport::scrollContentsBy().
|
protectedinherited |
Scroll the viewport contents by dx/dy screen pixels.
dx | |
dy |
References Isis::ViewportBuffer::bufferXYRect(), Isis::CubeViewport::paintPixmap(), Isis::ViewportBuffer::pan(), Isis::CubeViewport::screenPixelsChanged(), and Isis::ViewportBuffer::working().
Referenced by Isis::CubeViewport::scrollBy().
|
inherited |
|
inlineinherited |
Sets the background color.
color |
|
inherited |
Change the caption on the viewport title bar.
References Isis::CubeViewport::BandInfo::band, Isis::Cube::fileName(), and Isis::CubeViewport::windowTitleChanged().
Referenced by Isis::CubeViewport::CubeViewport(), Isis::CubeViewport::setCube(), Isis::CubeViewport::setScale(), Isis::CubeViewport::viewGray(), and Isis::CubeViewport::viewRGB().
|
inlineinherited |
Sets the band bin combo box count.
count |
|
inlineinherited |
Sets the band bin combo box index.
index |
|
inherited |
This method sets the viewports cube.
cube | The cube to set the CubeViewport window to |
cube |
References Isis::CubeViewport::cube(), and Isis::CubeViewport::setCaption().
|
inherited |
Set the cursor position to x/y in the viewport.
x | |
y |
|
slotinherited |
Change the scale of the cube to the given parameter value.
This method will reset the scale value if the value passed in is too large or too small.
scale | Value by which to scale the image. |
References Isis::CubeViewport::contentsToCube(), Isis::CubeViewport::cubeLines(), Isis::CubeViewport::cubeSamples(), Isis::CubeViewport::cubeToContents(), Isis::CubeViewport::paintPixmap(), Isis::CubeViewport::scale(), Isis::ViewportBuffer::scaleChanged(), Isis::CubeViewport::scaleChanged(), Isis::CubeViewport::screenPixelsChanged(), and Isis::CubeViewport::setCaption().
Referenced by Isis::CubeViewport::keyPressEvent(), Isis::CubeViewport::setScale(), and Isis::CubeViewport::showEvent().
|
slotinherited |
Change the scale of the cube after moving samp/line to the center.
scale | |
sample | |
line |
References Isis::CubeViewport::center(), Isis::ViewportBuffer::enable(), Isis::ViewportBuffer::enabled(), Isis::CubeViewport::paintPixmap(), Isis::CubeViewport::scale(), Isis::CubeViewport::screenPixelsChanged(), and Isis::CubeViewport::setScale().
|
slotinherited |
Change the scale of the cube after moving x,y to the center.
scale | |
x | |
y |
References Isis::CubeViewport::scale(), Isis::CubeViewport::setScale(), and Isis::CubeViewport::viewportToCube().
|
inherited |
Finds the Tracking group from p_cube and stores the tracking cube name so that we can grab it in AdvancedTrackTool and get mosaic information.
This way, we are not opening the tracking cube every time the cursor is moved.
References Isis::Cube::fileName(), Isis::PvlContainer::findKeyword(), Isis::Cube::group(), and Isis::CubeViewport::trackingCube().
Referenced by Isis::CubeViewport::CubeViewport().
|
virtual |
References Isis::CubeViewport::grayBuffer(), restretch(), and Isis::CubeViewport::showEvent().
|
slotinherited |
Make viewports show up as 512 by 512.
|
slotinherited |
Apply stretch pairs to blue bands.
string |
References Isis::Stretch::Parse().
Referenced by Isis::CubeViewport::stretchKnownGlobal(), and Isis::StretchTool::stretchRequested().
|
slotinherited |
Sets the stretch for blue in rgb mode.
stretch |
References Isis::CubeViewport::blueBand(), Isis::CubeViewport::BandInfo::getStretch(), Isis::CubeViewport::p_globalStretches, Isis::CubeViewport::paintPixmap(), Isis::Stretch::Pairs(), and Isis::CubeViewport::BandInfo::setStretch().
|
slotinherited |
Apply stretch pairs to gray band.
string |
References Isis::Stretch::Parse().
Referenced by cubeDataChanged(), restretch(), Isis::CubeViewport::stretchKnownGlobal(), Isis::StretchTool::stretchRequested(), and Isis::CubeViewport::viewGray().
|
slotinherited |
Sets the stretch for gray mode.
stretch |
References Isis::Stretch::CopyPairs(), Isis::CubeViewport::BandInfo::getStretch(), Isis::CubeViewport::grayBand(), Isis::CubeViewport::p_globalStretches, Isis::CubeViewport::paintPixmap(), Isis::Stretch::Pairs(), and Isis::CubeViewport::BandInfo::setStretch().
|
slotinherited |
Apply stretch pairs to green bands.
string | the stretch |
References Isis::Stretch::Parse().
Referenced by Isis::CubeViewport::stretchKnownGlobal(), and Isis::StretchTool::stretchRequested().
|
slotinherited |
Sets the stretch for green in rgb mode.
stretch |
References Isis::CubeViewport::BandInfo::getStretch(), Isis::CubeViewport::greenBand(), Isis::CubeViewport::p_globalStretches, Isis::CubeViewport::paintPixmap(), Isis::Stretch::Pairs(), and Isis::CubeViewport::BandInfo::setStretch().
|
slotinherited |
List<Tool *> p This stretches to the global stretch.
References Isis::CubeViewport::blueBand(), Isis::CubeViewport::grayBand(), Isis::CubeViewport::greenBand(), Isis::CubeViewport::isGray(), Isis::CubeViewport::p_globalStretches, Isis::CubeViewport::redBand(), Isis::CubeViewport::stretchBlue(), Isis::CubeViewport::stretchGray(), Isis::CubeViewport::stretchGreen(), and Isis::CubeViewport::stretchRed().
Referenced by Isis::StretchTool::stretchGlobal().
|
slotinherited |
Apply stretch pairs to red bands.
string | The stretch |
References Isis::Stretch::Parse().
Referenced by Isis::CubeViewport::stretchKnownGlobal(), and Isis::StretchTool::stretchRequested().
|
slotinherited |
Sets the stretch for red in rgb mode.
stretch |
References Isis::CubeViewport::BandInfo::getStretch(), Isis::CubeViewport::p_globalStretches, Isis::CubeViewport::paintPixmap(), Isis::Stretch::Pairs(), Isis::CubeViewport::redBand(), and Isis::CubeViewport::BandInfo::setStretch().
|
signal |
Referenced by eventFilter().
|
signal |
|
signal |
|
inlineinherited |
Referenced by Isis::CubeViewport::setTrackingCube().
|
inlineinherited |
Referenced by Isis::ControlNetTool::mouseButtonRelease(), Isis::FindTool::mouseButtonRelease(), Isis::QnetTool::mouseButtonRelease(), Isis::FindTool::paintViewport(), Isis::SpatialPlotTool::updateTool(), and Isis::FindTool::updateTool().
|
virtualslotinherited |
View cube as gray.
band |
References Isis::ViewportBuffer::addStretchAction(), Isis::CubeViewport::BandInfo::band, Isis::ViewportBuffer::getBand(), Isis::CubeViewport::BandInfo::getStretch(), Isis::CubeViewport::p_knownStretches, Isis::ViewportBuffer::setBand(), Isis::Camera::SetBand(), Isis::CubeViewport::setCaption(), and Isis::CubeViewport::stretchGray().
Referenced by Isis::MdiCubeViewport::viewGray().
|
signalinherited |
Emitted when viewport is closed.
|
inherited |
Turns a viewport into a cube.
Convert a viewport x/y to a cube sample/line (may be outside the cube)
x | |
y | |
sample | |
line |
References Isis::CubeViewport::contentsToCube().
Referenced by Isis::CubeViewport::center(), Isis::CubeViewport::getCubeArea(), Isis::SunShadowTool::mouseButtonPress(), Isis::PanTool::mouseButtonRelease(), Isis::ControlNetTool::mouseButtonRelease(), Isis::EditTool::mouseButtonRelease(), Isis::FindTool::mouseButtonRelease(), Isis::MatchTool::mouseButtonRelease(), Isis::QnetTool::mouseButtonRelease(), Isis::SunShadowTool::mouseMove(), Isis::ScatterPlotWindow::paint(), Isis::HistogramTool::refreshPlot(), Isis::StereoTool::rubberBandComplete(), Isis::EditTool::rubberBandComplete(), Isis::ScatterPlotWindow::setMousePosition(), Isis::CubeViewport::setScale(), and Isis::HistogramItem::setVertices().
|
signalinherited |
Emitted when viewport updated.
Referenced by Isis::MdiCubeViewport::paintEvent().
|
virtualslotinherited |
View cube as color.
rband | |
gband | |
bband |
References Isis::ViewportBuffer::addStretchAction(), Isis::CubeViewport::BandInfo::band, Isis::ViewportBuffer::getBand(), Isis::CubeViewport::BandInfo::getStretch(), Isis::CubeViewport::p_knownStretches, Isis::ViewportBuffer::setBand(), Isis::Camera::SetBand(), Isis::CubeViewport::setCaption(), and Isis::CubeViewport::BandInfo::setStretch().
Referenced by Isis::MdiCubeViewport::viewRGB().
|
signalinherited |
Emitted when window title changes.
Referenced by Isis::CubeViewport::setCaption().
Global stretches for each stretched band.
Referenced by Isis::CubeViewport::CubeViewport(), resetKnownGlobal(), Isis::CubeViewport::stretchBlue(), Isis::CubeViewport::stretchGray(), Isis::CubeViewport::stretchGreen(), Isis::CubeViewport::stretchKnownGlobal(), Isis::CubeViewport::stretchRed(), and Isis::CubeViewport::~CubeViewport().
Stretches for each previously stretched band.
Referenced by Isis::CubeViewport::CubeViewport(), Isis::CubeViewport::forgetStretches(), Isis::CubeViewport::setAllBandStretches(), Isis::CubeViewport::viewGray(), Isis::CubeViewport::viewRGB(), and Isis::CubeViewport::~CubeViewport().
|
protectedinherited |
The qpixmap.
Referenced by paintEvent(), Isis::MdiCubeViewport::paintEvent(), Isis::CubeViewport::pixmap(), and Isis::CubeViewport::resizeEvent().