![]() |
Eclipse SUMO - Simulation of Urban MObility
|
#include <GNEMatchAttribute.h>
Data Structures | |
| class | CurrentEditedProperties |
| container with current edited properties More... | |
Public Types | |
| enum | Options { NOTHING = 1 << 0 , COLLAPSIBLE = 1 << 1 , EXTENSIBLE = 1 << 2 , SAVE = 1 << 3 , LOAD = 1 << 4 } |
| GroupBoxModule options. More... | |
Public Member Functions | |
| void | disableMatchAttribute () |
| disable match attributes | |
| void | enableMatchAttribute () |
| enable match attributes | |
| FXVerticalFrame * | getCollapsableFrame () |
| get collapsable frame (used by all elements that will be collapsed if button is toggled) | |
| GNEMatchAttribute (GNESelectorFrame *selectorFrameParent) | |
| FOX-declaration. | |
| void | hideMatchAttribute () |
| hide match attributes | |
| long | onCmdCollapseButton (FXObject *, FXSelector, void *) |
| collapse GroupBoxModule | |
| long | onCmdExtendButton (FXObject *, FXSelector, void *) |
| extends GroupBoxModule | |
| long | onCmdLoadButton (FXObject *, FXSelector, void *) |
| load contents | |
| long | onCmdResetButton (FXObject *, FXSelector, void *) |
| reset GroupBoxModule | |
| long | onCmdSaveButton (FXObject *, FXSelector, void *) |
| save contents | |
| long | onPaint (FXObject *, FXSelector, void *) |
| draw MFXGroupBoxModule | |
| long | onUpdResetButton (FXObject *, FXSelector, void *) |
| update reset GroupBoxModule | |
| void | refreshMatchAttribute () |
| refresh match attribute | |
| void | setText (const std::string &text) |
| set text | |
| void | showMatchAttribute () |
| show match attributes | |
| ~GNEMatchAttribute () | |
| destructor | |
FOX-callbacks | |
| long | onCmdTagSelected (FXObject *obj, FXSelector, void *) |
| Called when the user selects a tag in the match box. | |
| long | onCmdAttributeSelected (FXObject *, FXSelector, void *) |
| Called when the user selects an attribute in the match box. | |
| long | onCmdToogleOnlyCommon (FXObject *, FXSelector, void *) |
| Called when the user toogle the only common checkbox. | |
| long | onCmdProcessString (FXObject *, FXSelector, void *) |
| Called when the user enters a new selection expression. | |
| long | onCmdHelp (FXObject *, FXSelector, void *) |
| Called when the user clicks the help button. | |
Protected Member Functions | |
| std::vector< GNEAttributeCarrier * > | getGenericMatches (const std::vector< GNEGenericData * > &genericDatas, const std::string &attr, const char compOp, const double val, const std::string &expr) |
| return GenericDatas of the given type with matching attrs | |
| std::vector< GNEAttributeCarrier * > | getMatches (const char compOp, const double val, const std::string &expr) |
| FOX need this. | |
| virtual bool | loadContents () const |
| load contents (can be reimplemented in children) | |
| virtual bool | saveContents () const |
| save contents (can be reimplemented in children) | |
| void | toggleSaveButton (const bool value) |
| enable or disable save buttons | |
Private Member Functions | |
| GNEMatchAttribute (const GNEMatchAttribute &)=delete | |
| Invalidated copy constructor. | |
| GNEMatchAttribute & | operator= (const GNEMatchAttribute &)=delete |
| Invalidated assignment operator. | |
Private Attributes | |
| MFXComboBoxAttrProperty * | myAttributeComboBox = nullptr |
| attribute property comboBox | |
| FXVerticalFrame * | myCollapsableFrame = nullptr |
| vertical collapsable frame | |
| FXButton * | myCollapseButton = nullptr |
| button for collapse elements | |
| bool | myCollapsed |
| flag to check if this groupbox is collapsed | |
| CurrentEditedProperties * | myCurrentEditedProperties |
| current edited properties | |
| MFXButtonTooltip * | myExtendButton = nullptr |
| button for extend elements | |
| GNEFrame * | myFrameParent = nullptr |
| GNEFrame in which this GroupBox is placed. | |
| FXLabel * | myLabel = nullptr |
| label used in non collapsable MFXGroupBoxModule | |
| FXButton * | myLoadButton = nullptr |
| button for load elements | |
| FXTextField * | myMatchString = nullptr |
| string of the match | |
| FXButton * | myMatchStringButton = nullptr |
| match string button | |
| const int | myOptions |
| GroupBoxModule options. | |
| FXButton * | myResetWidthButton = nullptr |
| button for reset frame width | |
| FXButton * | mySaveButton = nullptr |
| button for save elements | |
| GNESelectorFrame * | mySelectorFrameParent = nullptr |
| pointer to selector frame parent | |
| FXCheckButton * | myShowOnlyCommonAttributes = nullptr |
| checkbox for enable/disable show only common attributes | |
| std::vector< MFXComboBoxTagProperty * > | myTagComboBoxVector |
| vector with tag property comboBoxes | |
Definition at line 41 of file GNEMatchAttribute.h.
|
inherited |
GroupBoxModule options.
| Enumerator | |
|---|---|
| NOTHING | |
| COLLAPSIBLE | |
| EXTENSIBLE | |
| SAVE | |
| LOAD | |
Definition at line 38 of file MFXGroupBoxModule.h.
| GNEMatchAttribute::GNEMatchAttribute | ( | GNESelectorFrame * | selectorFrameParent | ) |
FOX-declaration.
constructor
Definition at line 63 of file GNEMatchAttribute.cpp.
References GUIDesigns::buildFXButton(), MFXGroupBoxModule::getCollapsableFrame(), GNEViewParent::getGNEAppWindows(), GUIMainWindow::getStaticTooltipMenu(), GNEFrame::getViewNet(), GNEViewNet::getViewParent(), GUIDesignButton, GUIDesignButtonRectangular, GUIDesignCheckButton, GUIDesignComboBox, GUIDesignComboBoxVisibleItems, GUIDesignTextField, GUIDesignTextFieldNCol, MID_GNE_SELECTORFRAME_PROCESSSTRING, MID_GNE_SELECTORFRAME_SELECTATTRIBUTE, MID_GNE_SELECTORFRAME_SELECTTAG, MID_GNE_SELECTORFRAME_TOGGLECOMMON, MID_HELP, myAttributeComboBox, myMatchString, myMatchStringButton, myShowOnlyCommonAttributes, myTagComboBoxVector, refreshMatchAttribute(), and TL.
| GNEMatchAttribute::~GNEMatchAttribute | ( | ) |
destructor
Definition at line 92 of file GNEMatchAttribute.cpp.
References myCurrentEditedProperties.
|
privatedelete |
Invalidated copy constructor.
| void GNEMatchAttribute::disableMatchAttribute | ( | ) |
disable match attributes
Definition at line 109 of file GNEMatchAttribute.cpp.
References MFXComboBoxIcon::disable(), GUIDesignTextColorBlack, myAttributeComboBox, myMatchString, myMatchStringButton, myTagComboBoxVector, and MFXComboBoxIcon::setTextColor().
| void GNEMatchAttribute::enableMatchAttribute | ( | ) |
enable match attributes
Definition at line 98 of file GNEMatchAttribute.cpp.
References MFXComboBoxIcon::enable(), myAttributeComboBox, myMatchString, myMatchStringButton, and myTagComboBoxVector.
|
inherited |
get collapsable frame (used by all elements that will be collapsed if button is toggled)
Definition at line 126 of file MFXGroupBoxModule.cpp.
References MFXGroupBoxModule::myCollapsableFrame.
Referenced by GNEGenericDataFrame::AttributeSelector::AttributeSelector(), GNEMoveFrame::ChangeZInSelection::ChangeZInSelection(), GNEConnectorFrame::ConnectionModifications::ConnectionModifications(), GNEConnectorFrame::ConnectionOperations::ConnectionOperations(), GNEConnectorFrame::ConnectionSelection::ConnectionSelection(), GNECrossingFrame::CreateCrossing::CreateCrossing(), GNECrossingFrame::CrossingParameters::CrossingParameters(), GNETAZFrame::CurrentTAZ::CurrentTAZ(), GNEMoveFrame::DemandMoveOptions::DemandMoveOptions(), GNEDistributionFrame::DistributionSelector::DistributionSelector(), GNEDistributionFrame::DistributionValuesEditor::DistributionValuesEditor(), GNEAdditionalFrame::E2MultilaneLegendModule::E2MultilaneLegendModule(), GNECrossingFrame::EdgesSelector::EdgesSelector(), GNEFixElementsDialog< T >::FixOptions::FixOptions(), GNEDemandElementSelector::GNEDemandElementSelector(), GNEMatchAttribute(), GNEOptionsEditor::GNEOptionsEditor(), GNEPathCreator::GNEPathCreator(), GNEPathLegendModule::GNEPathLegendModule(), GNEPlanCreator::GNEPlanCreator(), GNEPlanCreatorLegend::GNEPlanCreatorLegend(), GNESelectorParent::GNESelectorParent(), GNEStopFrame::HelpCreation::HelpCreation(), GNEVehicleFrame::HelpCreation::HelpCreation(), GNEAdditionalFrame::HelpCreationModule::HelpCreationModule(), GNECrossingFrame::Information::Information(), GNEMoveFrame::Information::Information(), GNESelectorFrame::Information::Information(), GNEGenericDataFrame::IntervalSelector::IntervalSelector(), GNECreateEdgeFrame::LaneTypeSelector::LaneTypeSelector(), GNEConnectorFrame::Legend::Legend(), GNECreateEdgeFrame::Legend::Legend(), GNEProhibitionFrame::Legend::Legend(), GNETAZRelDataFrame::Legend::Legend(), GNEMeanDataFrame::MeanDataEditor::MeanDataEditor(), GNEMeanDataFrame::MeanDataSelector::MeanDataSelector(), GNESelectorFrame::ModificationMode::ModificationMode(), GNEMoveFrame::NetworkMoveOptions::NetworkMoveOptions(), GNEDeleteFrame::ProtectElements::ProtectElements(), GNEProhibitionFrame::Selection::Selection(), GNESelectorFrame::SelectionHierarchy::SelectionHierarchy(), GNESelectorFrame::SelectionOperation::SelectionOperation(), GNEMoveFrame::ShiftEdgeSelectedGeometry::ShiftEdgeSelectedGeometry(), GNEMoveFrame::ShiftShapeGeometry::ShiftShapeGeometry(), GNEAttributesEditorRow::showAttributeRow(), GNETAZFrame::TAZChildDefaultParameters::TAZChildDefaultParameters(), GNETAZFrame::TAZCommonStatistics::TAZCommonStatistics(), GNETAZFrame::TAZEdgesGraphic::TAZEdgesGraphic(), GNETAZFrame::TAZSaveChanges::TAZSaveChanges(), GNETAZFrame::TAZSelectionStatistics::TAZSelectionStatistics(), GNETLSEditorFrame::TLSAttributes::TLSAttributes(), GNETLSEditorFrame::TLSFile::TLSFile(), GNETLSEditorFrame::TLSJunction::TLSJunction(), GNETLSEditorFrame::TLSPhases::TLSPhases(), GNETLSEditorFrame::TLSPrograms::TLSPrograms(), GNETypeFrame::TypeEditor::TypeEditor(), and GNESelectorFrame::VisualScaling::VisualScaling().
|
protected |
return GenericDatas of the given type with matching attrs
| [in] | genericDatas | list of filter generic datas |
| [in] | attr | XML Attribute used to filter |
| [in] | compOp | One of {<,>,=} for matching against val or '@' for matching against expr |
Definition at line 411 of file GNEMatchAttribute.cpp.
References GNE_ATTR_PARENT, and toString().
|
protected |
FOX need this.
return ACs of the given type with matching attrs
| [in] | compOp | One of {<,>,=} for matching against val or '@' for matching against expr |
Definition at line 347 of file GNEMatchAttribute.cpp.
References GNEAttributeProperties::getAttr(), GNENet::getAttributeCarriers(), GNEMatchAttribute::CurrentEditedProperties::getAttributeProperties(), GNEViewNet::getNet(), GNETagProperties::getTag(), GNEMatchAttribute::CurrentEditedProperties::getTagProperties(), GNEFrame::getViewNet(), GNEAttributeProperties::isNumerical(), myCurrentEditedProperties, mySelectorFrameParent, and GNENetHelper::AttributeCarriers::retrieveAttributeCarriers().
Referenced by onCmdProcessString().
| void GNEMatchAttribute::hideMatchAttribute | ( | ) |
hide match attributes
Definition at line 133 of file GNEMatchAttribute.cpp.
|
protectedvirtualinherited |
load contents (can be reimplemented in children)
Definition at line 234 of file MFXGroupBoxModule.cpp.
Referenced by MFXGroupBoxModule::onCmdLoadButton().
| long GNEMatchAttribute::onCmdAttributeSelected | ( | FXObject * | , |
| FXSelector | , | ||
| void * | |||
| ) |
Called when the user selects an attribute in the match box.
Definition at line 245 of file GNEMatchAttribute.cpp.
References MFXComboBoxAttrProperty::getCurrentAttrProperty(), myAttributeComboBox, myCurrentEditedProperties, refreshMatchAttribute(), and GNEMatchAttribute::CurrentEditedProperties::setAttributeProperties().
Referenced by FXDEFMAP().
|
inherited |
collapse GroupBoxModule
Definition at line 145 of file MFXGroupBoxModule.cpp.
References COLLAPSE, GUIIconSubSys::getIcon(), MFXGroupBoxModule::myCollapsableFrame, MFXGroupBoxModule::myCollapseButton, MFXGroupBoxModule::myCollapsed, and UNCOLLAPSE.
Referenced by FXDEFMAP().
|
inherited |
extends GroupBoxModule
Definition at line 161 of file MFXGroupBoxModule.cpp.
References GNEFrame::getScrollBarWidth(), GNETLSEditorFrame::TLSPhases::getTLSEditorParent(), GNETLSTable::getTLSPhasesParent(), GNEFrame::getViewNet(), GNEViewNet::getViewParent(), MFXGroupBoxModule::myCollapsableFrame, MFXGroupBoxModule::myFrameParent, and GNEViewParent::setFrameAreaWidth().
Referenced by FXDEFMAP().
| long GNEMatchAttribute::onCmdHelp | ( | FXObject * | , |
| FXSelector | , | ||
| void * | |||
| ) |
Called when the user clicks the help button.
Definition at line 315 of file GNEMatchAttribute.cpp.
References GNEViewParent::getGNEAppWindows(), GNEFrame::getViewNet(), GNEViewNet::getViewParent(), mySelectorFrameParent, and TL.
Referenced by FXDEFMAP().
|
inherited |
load contents
Definition at line 215 of file MFXGroupBoxModule.cpp.
References MFXGroupBoxModule::loadContents().
Referenced by FXDEFMAP().
| long GNEMatchAttribute::onCmdProcessString | ( | FXObject * | , |
| FXSelector | , | ||
| void * | |||
| ) |
Called when the user enters a new selection expression.
Definition at line 261 of file GNEMatchAttribute.cpp.
References GNEMatchAttribute::CurrentEditedProperties::getAttributeProperties(), getMatches(), GUIDesignTextColorBlack, GUIDesignTextColorRed, GNESelectorFrame::handleIDs(), GNEAttributeProperties::isNumerical(), myCurrentEditedProperties, myMatchString, and mySelectorFrameParent.
Referenced by FXDEFMAP().
|
inherited |
reset GroupBoxModule
Definition at line 187 of file MFXGroupBoxModule.cpp.
References GNEFrame::getViewNet(), GNEViewNet::getViewParent(), MFXGroupBoxModule::myFrameParent, and GNEViewParent::setFrameAreaWidth().
Referenced by FXDEFMAP().
|
inherited |
save contents
Definition at line 209 of file MFXGroupBoxModule.cpp.
References MFXGroupBoxModule::saveContents().
Referenced by FXDEFMAP().
| long GNEMatchAttribute::onCmdTagSelected | ( | FXObject * | obj, |
| FXSelector | , | ||
| void * | |||
| ) |
Called when the user selects a tag in the match box.
Definition at line 221 of file GNEMatchAttribute.cpp.
References GNEMatchAttribute::CurrentEditedProperties::getTagPropertiesAll(), myCurrentEditedProperties, myTagComboBoxVector, refreshMatchAttribute(), and GNEMatchAttribute::CurrentEditedProperties::setTagProperties().
Referenced by FXDEFMAP().
| long GNEMatchAttribute::onCmdToogleOnlyCommon | ( | FXObject * | , |
| FXSelector | , | ||
| void * | |||
| ) |
Called when the user toogle the only common checkbox.
Definition at line 253 of file GNEMatchAttribute.cpp.
References refreshMatchAttribute().
Referenced by FXDEFMAP().
|
inherited |
draw MFXGroupBoxModule
Definition at line 132 of file MFXGroupBoxModule.cpp.
Referenced by FXDEFMAP().
|
inherited |
update reset GroupBoxModule
Definition at line 196 of file MFXGroupBoxModule.cpp.
References GNEViewParent::getFrameAreaWidth(), GNEFrame::getViewNet(), GNEViewNet::getViewParent(), and MFXGroupBoxModule::myFrameParent.
Referenced by FXDEFMAP().
|
privatedelete |
Invalidated assignment operator.
| void GNEMatchAttribute::refreshMatchAttribute | ( | ) |
refresh match attribute
Definition at line 140 of file GNEMatchAttribute.cpp.
References MFXComboBoxAttrProperty::appendAttrItem(), MFXComboBoxAttrProperty::clearItems(), MFXComboBoxIcon::disable(), MFXComboBoxIcon::enable(), GNEMatchAttribute::CurrentEditedProperties::getAttributeProperties(), GNEMatchAttribute::CurrentEditedProperties::getAttributePropertiesNoCommon(), MFXComboBoxAttrProperty::getCurrentAttrProperty(), GNETagProperties::getHierarchicalChildrenAttributesRecursively(), GNETagProperties::getHierarchicalParentsRecuersively(), GNEMatchAttribute::CurrentEditedProperties::getMatchValue(), MFXComboBoxIcon::getNumItems(), GNEMatchAttribute::CurrentEditedProperties::getTagProperties(), GNEMatchAttribute::CurrentEditedProperties::getTagPropertiesAll(), MFXComboBoxAttrProperty::hasAttrProperty(), myAttributeComboBox, myCurrentEditedProperties, myMatchString, myShowOnlyCommonAttributes, myTagComboBoxVector, GNEMatchAttribute::CurrentEditedProperties::setAttributeProperties(), and MFXComboBoxAttrProperty::setCurrentItem().
Referenced by GNEMatchAttribute(), onCmdAttributeSelected(), onCmdTagSelected(), onCmdToogleOnlyCommon(), and showMatchAttribute().
|
protectedvirtualinherited |
save contents (can be reimplemented in children)
Reimplemented in GNEFixElementsDialog< T >::FixOptions.
Definition at line 227 of file MFXGroupBoxModule.cpp.
Referenced by MFXGroupBoxModule::onCmdSaveButton().
|
inherited |
set text
Definition at line 120 of file MFXGroupBoxModule.cpp.
References MFXGroupBoxModule::myLabel.
Referenced by GNETLSEditorFrame::TLSPrograms::onCmdDefSwitchTLSProgram(), GNEViewObjectSelector::showNetworkElementsSelector(), GNESelectorFrame::SelectionInformation::updateInformationLabel(), and GNETagSelector::updateTagTypes().
| void GNEMatchAttribute::showMatchAttribute | ( | ) |
show match attributes
Definition at line 124 of file GNEMatchAttribute.cpp.
References refreshMatchAttribute().
Referenced by GNESelectorFrame::show().
|
protectedinherited |
enable or disable save buttons
Definition at line 241 of file MFXGroupBoxModule.cpp.
References MFXGroupBoxModule::mySaveButton.
|
private |
attribute property comboBox
Definition at line 196 of file GNEMatchAttribute.h.
Referenced by disableMatchAttribute(), enableMatchAttribute(), GNEMatchAttribute(), onCmdAttributeSelected(), and refreshMatchAttribute().
|
privateinherited |
vertical collapsable frame
Definition at line 103 of file MFXGroupBoxModule.h.
Referenced by MFXGroupBoxModule::getCollapsableFrame(), MFXGroupBoxModule::MFXGroupBoxModule(), MFXGroupBoxModule::onCmdCollapseButton(), and MFXGroupBoxModule::onCmdExtendButton().
|
privateinherited |
button for collapse elements
Definition at line 109 of file MFXGroupBoxModule.h.
Referenced by MFXGroupBoxModule::MFXGroupBoxModule(), and MFXGroupBoxModule::onCmdCollapseButton().
|
privateinherited |
flag to check if this groupbox is collapsed
Definition at line 124 of file MFXGroupBoxModule.h.
Referenced by MFXGroupBoxModule::onCmdCollapseButton().
|
private |
current edited properties
Definition at line 205 of file GNEMatchAttribute.h.
Referenced by getMatches(), onCmdAttributeSelected(), onCmdProcessString(), onCmdTagSelected(), refreshMatchAttribute(), and ~GNEMatchAttribute().
|
privateinherited |
button for extend elements
Definition at line 112 of file MFXGroupBoxModule.h.
|
privateinherited |
GNEFrame in which this GroupBox is placed.
Definition at line 100 of file MFXGroupBoxModule.h.
Referenced by MFXGroupBoxModule::onCmdExtendButton(), MFXGroupBoxModule::onCmdResetButton(), and MFXGroupBoxModule::onUpdResetButton().
|
privateinherited |
label used in non collapsable MFXGroupBoxModule
Definition at line 106 of file MFXGroupBoxModule.h.
Referenced by MFXGroupBoxModule::MFXGroupBoxModule(), and MFXGroupBoxModule::setText().
|
privateinherited |
button for load elements
Definition at line 121 of file MFXGroupBoxModule.h.
Referenced by MFXGroupBoxModule::MFXGroupBoxModule().
|
private |
string of the match
Definition at line 199 of file GNEMatchAttribute.h.
Referenced by disableMatchAttribute(), enableMatchAttribute(), GNEMatchAttribute(), onCmdProcessString(), and refreshMatchAttribute().
|
private |
match string button
Definition at line 202 of file GNEMatchAttribute.h.
Referenced by disableMatchAttribute(), enableMatchAttribute(), and GNEMatchAttribute().
|
privateinherited |
GroupBoxModule options.
Definition at line 97 of file MFXGroupBoxModule.h.
Referenced by MFXGroupBoxModule::MFXGroupBoxModule().
|
privateinherited |
button for reset frame width
Definition at line 115 of file MFXGroupBoxModule.h.
|
privateinherited |
button for save elements
Definition at line 118 of file MFXGroupBoxModule.h.
Referenced by MFXGroupBoxModule::MFXGroupBoxModule(), and MFXGroupBoxModule::toggleSaveButton().
|
private |
pointer to selector frame parent
Definition at line 187 of file GNEMatchAttribute.h.
Referenced by GNEMatchAttribute::CurrentEditedProperties::CurrentEditedProperties(), getMatches(), onCmdHelp(), and onCmdProcessString().
|
private |
checkbox for enable/disable show only common attributes
Definition at line 193 of file GNEMatchAttribute.h.
Referenced by GNEMatchAttribute(), and refreshMatchAttribute().
|
private |
vector with tag property comboBoxes
Definition at line 190 of file GNEMatchAttribute.h.
Referenced by disableMatchAttribute(), enableMatchAttribute(), GNEMatchAttribute(), onCmdTagSelected(), and refreshMatchAttribute().