![]() |
Isis 3 Programmer Reference
|
#include <GuiParameter.h>


Public Types | |
| enum | ParameterType { IntegerWidget, DoubleWidget, StringWidget, ListWidget, FileNameWidget, CubeWidget, BooleanWidget, ComboWidget } |
Signals | |
| void | ValueChanged () |
| void | HelperTrigger (const QString &) |
Public Member Functions | |
| GuiParameter (QGridLayout *grid, UserInterface &ui, int group, int param) | |
| Constructor. More... | |
| virtual | ~GuiParameter () |
| Destructor. More... | |
| QString | Name () const |
| Return the name of the parameter. More... | |
| void | SetToDefault () |
| Change the parameter to the default value. More... | |
| void | SetToCurrent () |
| Change the parameter to the current user interface value. More... | |
| virtual QString | Value ()=0 |
| virtual void | Set (QString newValue)=0 |
| void | SetEnabled (bool enabled, bool isParentCombo=false) |
| Enable or disable the parameter. More... | |
| bool | IsEnabled () const |
| Is the parameter enabled. More... | |
| virtual bool | IsModified () |
| Return if the parameter value is different from the default value. More... | |
| void | Update () |
| Update the value on the GUI with the value in the UI. More... | |
| void | RememberWidget (QWidget *w) |
| Add widgets to a list for enabling/disabling. More... | |
| QWidget * | AddHelpers (QObject *lo) |
| Sets up helper button. More... | |
| virtual std::vector< QString > | Exclusions () |
| Return list of current exclusions. More... | |
| ParameterType | Type () |
Protected Attributes | |
| QToolButton * | p_fileButton |
| QLineEdit * | p_lineEdit |
| int | p_group |
| int | p_param |
| QString | p_name |
| UserInterface * | p_ui |
| QLabel * | p_label |
| QList< QWidget * > | p_widgetList |
| ParameterType | p_type |
Private Attributes | |
| QMenu * | p_helperMenu |
2009-11-10 Mackenzie Boyd - Refactored to reduce code duplication in children GuiCubeParameter and GuiFileNameParameter, specifically, SelectFile method.
2009-12-15 Travis Addair - Moved the SelectFile method back to children.
Definition at line 50 of file GuiParameter.h.
| Isis::GuiParameter::GuiParameter | ( | QGridLayout * | grid, |
| UserInterface & | ui, | ||
| int | group, | ||
| int | param | ||
| ) |
Constructor.
Definition at line 42 of file GuiParameter.cpp.
References IsisAml::ParamBrief(), IsisAml::ParamDefault(), IsisAml::ParamExclude(), IsisAml::ParamExcludeSize(), IsisAml::ParamGreaterThan(), IsisAml::ParamGreaterThanOrEqual(), IsisAml::ParamGreaterThanOrEqualSize(), IsisAml::ParamGreaterThanSize(), IsisAml::ParamInclude(), IsisAml::ParamIncludeSize(), IsisAml::ParamInternalDefault(), IsisAml::ParamLessThan(), IsisAml::ParamLessThanOrEqual(), IsisAml::ParamLessThanOrEqualSize(), IsisAml::ParamLessThanSize(), IsisAml::ParamMaximum(), IsisAml::ParamMaximumInclusive(), IsisAml::ParamMinimum(), IsisAml::ParamMinimumInclusive(), IsisAml::ParamName(), IsisAml::ParamNotEqual(), IsisAml::ParamNotEqualSize(), IsisAml::ParamOdd(), IsisAml::ParamType(), and IsisAml::PixelType().
|
virtual |
Destructor.
Definition at line 164 of file GuiParameter.cpp.
Sets up helper button.
Definition at line 261 of file GuiParameter.cpp.
References _FILEINFO_, IsisAml::HelperBrief(), IsisAml::HelperButtonName(), IsisAml::HelperDescription(), IsisAml::HelperFunction(), IsisAml::HelperIcon(), IsisAml::HelpersSize(), Isis::IException::Programmer, and RememberWidget().
Referenced by Isis::GuiFileNameParameter::GuiFileNameParameter().
|
virtual |
Return list of current exclusions.
Reimplemented in Isis::GuiComboBoxParameter, Isis::GuiListParameter, and Isis::GuiBooleanParameter.
Definition at line 255 of file GuiParameter.cpp.
Referenced by Isis::Gui::UpdateExclusions().
|
inline |
Is the parameter enabled.
Definition at line 75 of file GuiParameter.h.
Referenced by Isis::Gui::InvokeHelper(), Isis::GuiBooleanParameter::IsModified(), IsModified(), Isis::Gui::StartProcess(), and Isis::Gui::UpdateCommandLine().
|
virtual |
Return if the parameter value is different from the default value.
Reimplemented in Isis::GuiBooleanParameter.
Definition at line 197 of file GuiParameter.cpp.
References IsEnabled(), IsisAml::ParamDefault(), and IsisAml::ParamInternalDefault().
Referenced by Isis::Gui::InvokeHelper(), Isis::Gui::StartProcess(), Isis::Gui::UpdateCommandLine(), Isis::GuiCubeParameter::ViewCube(), and Isis::GuiCubeParameter::ViewLabel().
|
inline |
Return the name of the parameter.
Definition at line 60 of file GuiParameter.h.
Referenced by Isis::Gui::InvokeHelper(), Isis::Gui::ResetParameters(), Isis::Gui::StartProcess(), Isis::Gui::UpdateCommandLine(), and Isis::Gui::UpdateExclusions().
| void Isis::GuiParameter::RememberWidget | ( | QWidget * | w | ) |
Add widgets to a list for enabling/disabling.
Definition at line 228 of file GuiParameter.cpp.
Referenced by AddHelpers(), and Isis::GuiFileNameParameter::GuiFileNameParameter().
| void Isis::GuiParameter::SetEnabled | ( | bool | enabled, |
| bool | isParentCombo = false |
||
| ) |
Enable or disable the parameter.
Definition at line 233 of file GuiParameter.cpp.
Referenced by Isis::Gui::UpdateExclusions().
| void Isis::GuiParameter::SetToCurrent | ( | ) |
Change the parameter to the current user interface value.
Definition at line 187 of file GuiParameter.cpp.
References IsisAml::GetAsString(), SetToDefault(), and IsisAml::WasEntered().
| void Isis::GuiParameter::SetToDefault | ( | ) |
Change the parameter to the default value.
Definition at line 174 of file GuiParameter.cpp.
References IsisAml::ParamDefault(), and IsisAml::ParamInternalDefault().
Referenced by SetToCurrent().
| void Isis::GuiParameter::Update | ( | ) |
Update the value on the GUI with the value in the UI.
Definition at line 212 of file GuiParameter.cpp.
References IsisAml::GetAsString(), IsisAml::ParamDefault(), IsisAml::ParamInternalDefault(), and IsisAml::WasEntered().
Referenced by Isis::Gui::Gui(), Isis::Gui::ResetParameters(), Isis::Gui::StartProcess(), Isis::Gui::UpdateHistory(), and Isis::Gui::UpdateParameters().