Isis 3 Programmer Reference
|
Advanced Stretch Dialog. More...
#include <AdvancedStretchDialog.h>
Public Slots | |
void | updateStretch (CubeViewport *) |
This calls setStretch on all applicable advanced stretches. More... | |
Signals | |
void | stretchChanged () |
Emitted when an advanced stretch has changed. More... | |
void | visibilityChanged () |
Emitted when this dialog is shown or hidden. More... | |
Public Member Functions | |
AdvancedStretchDialog (QWidget *parent) | |
This constructs an advanced stretch. More... | |
~AdvancedStretchDialog () | |
This destroys the advanced stretch dialog. More... | |
void | enableRgbMode (Stretch &redStretch, Histogram &redHist, Stretch &grnStretch, Histogram &grnHist, Stretch &bluStretch, Histogram &bluHist) |
This displays RGB advanced stretches. More... | |
void | updateHistograms (const Histogram &redHist, const Histogram &grnHist, const Histogram &bluHist) |
This calls setHistogram on all of the advanced stretches. More... | |
void | updateForRGBMode (Stretch &redStretch, Histogram &redHist, Stretch &grnStretch, Histogram &grnHist, Stretch &bluStretch, Histogram &bluHist) |
Update the stretch and histogram for all the bands for All BandId option. More... | |
void | enableGrayMode (Stretch &grayStretch, Histogram &grayHist) |
This displays a gray advanced stretch. More... | |
void | updateHistogram (const Histogram &grayHist) |
This calls setHistogram on the gray advanced stretche. More... | |
bool | isRgbMode () const |
Returns true if the dialog is displaying the RGB advanced stretches. More... | |
Stretch | getGrayStretch () |
This returns the advanced stretch's stretch for gray. More... | |
Stretch | getRedStretch () |
This returns the advanced stretch's stretch for red. More... | |
Stretch | getGrnStretch () |
This returns the advanced stretch's stretch for green. More... | |
Stretch | getBluStretch () |
This returns the advanced stretch's stretch for blue. More... | |
bool | enabled () |
Returns true if the advanced stretch is enabled. More... | |
void | enable (bool enable) |
Sets the enabled state to enable. More... | |
Protected Slots | |
void | showEvent (QShowEvent *) |
This is implemented to send a signal when visibility changes. More... | |
void | hideEvent (QHideEvent *) |
This is implemented to send a signal when visibility changes. More... | |
Private Member Functions | |
void | destroyCurrentStretches () |
This cleans up memory from currently displayed advanced stretches. More... | |
Private Attributes | |
bool | p_enabled |
True if advanced stretch should be used. More... | |
AdvancedStretch * | p_grayStretch |
Gray stretch pane. More... | |
AdvancedStretch * | p_redStretch |
Red stretch pane. More... | |
AdvancedStretch * | p_grnStretch |
Green stretch pane. More... | |
AdvancedStretch * | p_bluStretch |
Blue stretch pane. More... | |
Advanced Stretch Dialog.
Definition at line 29 of file AdvancedStretchDialog.h.
Isis::AdvancedStretchDialog::AdvancedStretchDialog | ( | QWidget * | parent | ) |
This constructs an advanced stretch.
parent | the parent widget |
Definition at line 16 of file AdvancedStretchDialog.cpp.
References p_bluStretch, p_enabled, p_grayStretch, p_grnStretch, and p_redStretch.
Isis::AdvancedStretchDialog::~AdvancedStretchDialog | ( | ) |
This destroys the advanced stretch dialog.
Definition at line 32 of file AdvancedStretchDialog.cpp.
References destroyCurrentStretches().
|
private |
This cleans up memory from currently displayed advanced stretches.
No stretches are visible after this is called.
Definition at line 134 of file AdvancedStretchDialog.cpp.
References p_bluStretch, p_grayStretch, p_grnStretch, p_redStretch, and stretchChanged().
Referenced by enableGrayMode(), enableRgbMode(), and ~AdvancedStretchDialog().
|
inline |
Sets the enabled state to enable.
enable |
Definition at line 71 of file AdvancedStretchDialog.h.
References p_enabled.
Referenced by Isis::StretchTool::setCubeViewport().
|
inline |
Returns true if the advanced stretch is enabled.
Definition at line 62 of file AdvancedStretchDialog.h.
References p_enabled.
Referenced by Isis::StretchTool::updateTool().
This displays a gray advanced stretch.
grayStretch | |
grayHist |
Definition at line 116 of file AdvancedStretchDialog.cpp.
References destroyCurrentStretches(), p_grayStretch, and stretchChanged().
Referenced by Isis::StretchTool::setCubeViewport().
void Isis::AdvancedStretchDialog::enableRgbMode | ( | Stretch & | redStretch, |
Histogram & | redHist, | ||
Stretch & | grnStretch, | ||
Histogram & | grnHist, | ||
Stretch & | bluStretch, | ||
Histogram & | bluHist | ||
) |
This displays RGB advanced stretches.
redStretch | |
redHist | |
grnStretch | |
grnHist | |
bluStretch | |
bluHist |
Definition at line 47 of file AdvancedStretchDialog.cpp.
References destroyCurrentStretches(), p_bluStretch, p_grnStretch, p_redStretch, and stretchChanged().
Referenced by Isis::StretchTool::setCubeViewport().
Stretch Isis::AdvancedStretchDialog::getBluStretch | ( | ) |
This returns the advanced stretch's stretch for blue.
Definition at line 313 of file AdvancedStretchDialog.cpp.
References _FILEINFO_, Isis::AdvancedStretch::getStretch(), p_bluStretch, and Isis::IException::Programmer.
Referenced by Isis::StretchTool::advancedStretchChanged().
Stretch Isis::AdvancedStretchDialog::getGrayStretch | ( | ) |
This returns the advanced stretch's stretch for gray.
Definition at line 265 of file AdvancedStretchDialog.cpp.
References _FILEINFO_, Isis::AdvancedStretch::getStretch(), p_grayStretch, and Isis::IException::Programmer.
Referenced by Isis::StretchTool::advancedStretchChanged().
Stretch Isis::AdvancedStretchDialog::getGrnStretch | ( | ) |
This returns the advanced stretch's stretch for green.
Definition at line 297 of file AdvancedStretchDialog.cpp.
References _FILEINFO_, Isis::AdvancedStretch::getStretch(), p_grnStretch, and Isis::IException::Programmer.
Referenced by Isis::StretchTool::advancedStretchChanged().
Stretch Isis::AdvancedStretchDialog::getRedStretch | ( | ) |
This returns the advanced stretch's stretch for red.
Definition at line 281 of file AdvancedStretchDialog.cpp.
References _FILEINFO_, Isis::AdvancedStretch::getStretch(), p_redStretch, and Isis::IException::Programmer.
Referenced by Isis::StretchTool::advancedStretchChanged().
|
protectedslot |
This is implemented to send a signal when visibility changes.
event |
Definition at line 243 of file AdvancedStretchDialog.cpp.
References visibilityChanged().
bool Isis::AdvancedStretchDialog::isRgbMode | ( | ) | const |
Returns true if the dialog is displaying the RGB advanced stretches.
Definition at line 255 of file AdvancedStretchDialog.cpp.
References p_bluStretch, p_grnStretch, and p_redStretch.
Referenced by Isis::StretchTool::advancedStretchChanged(), Isis::StretchTool::updateHistograms(), and Isis::StretchTool::updateTool().
|
protectedslot |
This is implemented to send a signal when visibility changes.
event |
Definition at line 232 of file AdvancedStretchDialog.cpp.
References visibilityChanged().
|
signal |
Emitted when an advanced stretch has changed.
Referenced by destroyCurrentStretches(), enableGrayMode(), and enableRgbMode().
void Isis::AdvancedStretchDialog::updateForRGBMode | ( | Stretch & | redStretch, |
Histogram & | redHist, | ||
Stretch & | grnStretch, | ||
Histogram & | grnHist, | ||
Stretch & | bluStretch, | ||
Histogram & | bluHist | ||
) |
Update the stretch and histogram for all the bands for All BandId option.
redStretch | - Updated Red Stretch |
redHist | - Updated Red Histogram |
grnStretch | - Updated Green Stretch |
grnHist | - Updated Green Histogram |
bluStretch | - Updated Blue Stretch |
bluHist | - Updated Blue Histogram |
Definition at line 87 of file AdvancedStretchDialog.cpp.
References p_bluStretch, p_grnStretch, p_redStretch, Isis::AdvancedStretch::setHistogram(), and Isis::AdvancedStretch::setStretch().
Referenced by Isis::StretchTool::updateAdvStretchDialogforAll().
void Isis::AdvancedStretchDialog::updateHistogram | ( | const Histogram & | grayHist | ) |
This calls setHistogram on the gray advanced stretche.
This should be called every time the visible area changes.
grayHist | Histogram of visible area on gray band |
Definition at line 221 of file AdvancedStretchDialog.cpp.
References p_grayStretch, and Isis::AdvancedStretch::setHistogram().
Referenced by Isis::StretchTool::updateHistograms().
void Isis::AdvancedStretchDialog::updateHistograms | ( | const Histogram & | redHist, |
const Histogram & | grnHist, | ||
const Histogram & | bluHist | ||
) |
This calls setHistogram on all of the advanced stretches.
This should be called every time the visible area changes.
redHist | Histogram of visible area on red band |
grnHist | Histogram of visible area on green band |
bluHist | Histogram of visible area on blue band |
Definition at line 199 of file AdvancedStretchDialog.cpp.
References p_bluStretch, p_grnStretch, p_redStretch, and Isis::AdvancedStretch::setHistogram().
Referenced by Isis::StretchTool::updateHistograms().
|
slot |
This calls setStretch on all applicable advanced stretches.
This should be called any time the cube viewport changes.
cvp |
Definition at line 175 of file AdvancedStretchDialog.cpp.
References Isis::CubeViewport::blueStretch(), Isis::CubeViewport::grayStretch(), Isis::CubeViewport::greenStretch(), p_bluStretch, p_grayStretch, p_grnStretch, p_redStretch, Isis::CubeViewport::redStretch(), and Isis::AdvancedStretch::setStretch().
Referenced by Isis::StretchTool::showAdvancedDialog(), and Isis::StretchTool::stretchChanged().
|
signal |
Emitted when this dialog is shown or hidden.
Referenced by hideEvent(), and showEvent().
|
private |
Blue stretch pane.
Definition at line 96 of file AdvancedStretchDialog.h.
Referenced by AdvancedStretchDialog(), destroyCurrentStretches(), enableRgbMode(), getBluStretch(), isRgbMode(), updateForRGBMode(), updateHistograms(), and updateStretch().
|
private |
True if advanced stretch should be used.
Definition at line 92 of file AdvancedStretchDialog.h.
Referenced by AdvancedStretchDialog(), enable(), and enabled().
|
private |
Gray stretch pane.
Definition at line 93 of file AdvancedStretchDialog.h.
Referenced by AdvancedStretchDialog(), destroyCurrentStretches(), enableGrayMode(), getGrayStretch(), updateHistogram(), and updateStretch().
|
private |
Green stretch pane.
Definition at line 95 of file AdvancedStretchDialog.h.
Referenced by AdvancedStretchDialog(), destroyCurrentStretches(), enableRgbMode(), getGrnStretch(), isRgbMode(), updateForRGBMode(), updateHistograms(), and updateStretch().
|
private |
Red stretch pane.
Definition at line 94 of file AdvancedStretchDialog.h.
Referenced by AdvancedStretchDialog(), destroyCurrentStretches(), enableRgbMode(), getRedStretch(), isRgbMode(), updateForRGBMode(), updateHistograms(), and updateStretch().