A class that represents a style of a layer in a LayerTreeModel. More...
#include <StyleItem.h>
Public Member Functions | |
| void | addChild (TreeItem *item) |
| Adds a child to the item. The child is added to the end of the list. More... | |
| TreeItem * | getChild (const size_t &pos) const throw (te::common::Exception) |
| Returns the child located at pos. More... | |
| void | getChildren (std::vector< TreeItem * > &items, const std::string &type) const |
| Returns all children of a certain type. More... | |
| size_t | getChildrenCount (const std::string &type) const |
| Returns the number of children. More... | |
| TreeItem * | getParent () const |
| Returns the item parent. More... | |
| int | getPosition () |
| Returns the position of item in its parent's list of children. More... | |
| std::string | getType () const |
| Returns the type of the item. More... | |
| bool | hasChildren () const |
| Tells us if the item has children or not. More... | |
| virtual void | insertChild (TreeItem *item, const size_t &pos) throw (te::common::Exception) |
| Inserts a child item at the desired position. More... | |
| virtual VISIBLE | isVisible () const |
| Returns the visibilty state of the item. More... | |
| void | removeAllChilds () |
| Removes all children. More... | |
| TreeItem * | removeChild (const size_t &pos) throw (te::common::Exception) |
| Removes the child located at pos from the children list. More... | |
| void | setParent (TreeItem *item) |
| Updates the item parent. More... | |
| virtual void | setVisible (const VISIBLE &visible, const bool &updateAncestors=false, const bool &updateDescendents=false) |
| Updates the visibilty state of the item. More... | |
| void | updateStyle (const te::se::Style *style) |
| updateStyle More... | |
Instantiation Methods | |
Methods related to creation and destruction of the object. | |
| StyleItem (te::se::Style *style) | |
| Constructor. More... | |
| ~StyleItem () | |
| Destructor. More... | |
Reimplementation of TreeItem | |
Methods reimplemented of the TreeItem class. | |
| std::string | getAsString () const |
| Returns the label of the item to be presented in a Qt view. More... | |
| Qt::ItemFlags | flags () |
| Returns the flags to be used by the model. More... | |
| std::string | getToolTip () const |
| Returns the item tooltip (for information purposes). More... | |
Protected Attributes | |
| std::unique_ptr< Queue > | m_children |
| Queue of items (children). More... | |
| std::string | m_label |
| Label to be presented on the Qt view. More... | |
| TreeItem * | m_parent |
| Pointer to the parent. More... | |
| te::se::Style * | m_style |
| Grouping being used. More... | |
| std::string | m_type |
| Item type. More... | |
A class that represents a style of a layer in a LayerTreeModel.
Definition at line 50 of file StyleItem.h.
| te::qt::widgets::StyleItem::StyleItem | ( | te::se::Style * | style | ) |
Constructor.
| g | The grouping to be used. |
Definition at line 51 of file StyleItem.cpp.
References AddRuleItems(), te::se::Style::getName(), m_label, m_style, and ~StyleItem().
|
default |
Destructor.
Referenced by StyleItem().
|
inherited |
Adds a child to the item. The child is added to the end of the list.
| item | The child to be inserted. |
Definition at line 44 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_children, and te::qt::widgets::TreeItem::setParent().
Referenced by AddRuleItems(), AddSliceItems(), GetFolder(), GetRootFolder(), te::qt::widgets::LayerItem::LayerItem(), te::qt::widgets::RuleItem::RuleItem(), and te::qt::widgets::LayerItem::updateLegend().
|
virtual |
Returns the flags to be used by the model.
Reimplemented from te::qt::widgets::TreeItem.
Definition at line 72 of file StyleItem.cpp.
References te::qt::widgets::TreeItem::flags().
|
virtual |
Returns the label of the item to be presented in a Qt view.
Implements te::qt::widgets::TreeItem.
Definition at line 67 of file StyleItem.cpp.
References m_label.
|
inherited | ||||||||||||||
Returns the child located at pos.
| pos | The position of the desired child at the children list. |
| If | pos is greater or equal than the children list size, a te::common::Exception will be raised. |
Definition at line 61 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_children.
Referenced by GetAllLayers(), GetVisibility(), GetVisibleLayers(), te::qt::widgets::LayerItemModel::index(), and te::qt::widgets::FolderItem::setVisible().
|
inherited |
Returns all children of a certain type.
| [out] | items | The set of items founded. |
| type | The type of items that we are searching for. |
Definition at line 94 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_children, te::common::NodeT< T >::m_next, and te::common::NodeT< T >::m_value.
Referenced by te::qt::widgets::TreeItem::getChildrenCount(), te::qt::widgets::LayerItem::updateChart(), te::qt::widgets::LayerItemView::updateChart(), te::qt::widgets::LayerItemView::updateLegend(), and te::qt::widgets::LayerItem::~LayerItem().
|
inherited |
Returns the number of children.
The type, defines the type of children we want to considere in the operation. If an empty string is given as argument, all kinds of children will be considered.
| type | The type of children we want to calculate the number. |
Definition at line 82 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::getChildren(), and te::qt::widgets::TreeItem::m_children.
Referenced by te::qt::widgets::LayerItemModel::addItems(), GetAllLayers(), GetVisibility(), GetVisibleLayers(), te::qt::widgets::TreeItem::hasChildren(), te::qt::widgets::LayerItemModel::index(), te::qt::widgets::LayerItemModel::rowCount(), and te::qt::widgets::FolderItem::setVisible().
|
inherited |
Returns the item parent.
Definition at line 69 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_parent.
Referenced by te::qt::widgets::LayerItemModel::addItems(), GetAllLayers(), te::qt::widgets::LayerItemView::mouseDoubleClickEvent(), te::qt::af::BaseApplication::onLayerRemoveTriggered(), te::qt::widgets::LayerItemModel::parent(), and te::qt::widgets::LayerItemModel::setData().
|
inherited |
Returns the position of item in its parent's list of children.
Definition at line 115 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_children, and te::qt::widgets::TreeItem::m_parent.
Referenced by te::qt::widgets::LayerItemModel::addItems(), te::qt::widgets::LayerItemModel::parent(), te::qt::widgets::LayerItemView::updateChart(), te::qt::widgets::LayerItem::updateLegend(), and te::qt::widgets::LayerItemView::updateLegend().
|
virtual |
Returns the item tooltip (for information purposes).
Reimplemented from te::qt::widgets::TreeItem.
Definition at line 77 of file StyleItem.cpp.
References te::se::Style::getDescription(), te::se::Description::getTitle(), and m_style.
|
inherited |
Returns the type of the item.
Definition at line 129 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_type.
Referenced by te::qt::widgets::LayerViewMenuManager::eventFilter(), Expand(), FindInsertInformation(), te::qt::widgets::LayerItemView::findLayerIndex(), GetAllLayers(), GetAllSTLayers(), GetAllWFSLayers(), GetAllWMSLayers(), GetAvailableLayers(), te::qt::widgets::GetChangedAndVisibleLayers(), te::qt::widgets::LayerViewDelegate::getIcon(), GetParent(), GetSelectedLayer(), GetSelectedLayers(), te::qt::widgets::GetValidLayers(), GetVisibleLayers(), te::qt::widgets::LayerItemView::mouseDoubleClickEvent(), te::qt::af::LayerExplorer::onApplicationTriggered(), TerraView::onLayerDuplicateLayerTriggered(), te::qt::af::BaseApplication::onLayerRenameTriggered(), te::qt::plugins::wms::WMSItemDelegate::paint(), te::qt::plugins::wfs::WFSItemDelegate::paint(), EditDelegate::paint(), te::qt::plugins::st::STItemDelegate::paint(), te::qt::widgets::RasterLayerDelegate::paint(), te::qt::widgets::ThemeViewDelegate::paint(), te::ws::ogc::wms::qt::WMSItemDelegate::paint(), te::qt::widgets::LayerViewDelegate::paint(), and te::qt::widgets::LayerItemModel::setData().
|
inherited |
Tells us if the item has children or not.
Definition at line 110 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::getChildrenCount().
Referenced by te::qt::widgets::LayerItemModel::addLayers().
|
virtualinherited | ||||||||||||||||||||
Inserts a child item at the desired position.
| item | The child to be inserted. |
| pos | The position of the child in the children list. |
| If | pos is greater than the children list size, a te::common::Exception will be raised. |
Reimplemented in te::qt::widgets::FolderItem.
Definition at line 51 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_children.
Referenced by te::qt::widgets::LayerItemModel::addFolder(), te::qt::widgets::LayerItemModel::addItems(), te::qt::widgets::LayerItemModel::addLayer(), te::qt::widgets::LayerItemModel::addLayers(), te::qt::widgets::FolderItem::insertChild(), and te::qt::widgets::LayerItem::updateChart().
|
virtualinherited |
Returns the visibilty state of the item.
Reimplemented in te::qt::widgets::RuleItem, te::qt::widgets::LayerItem, te::qt::widgets::ChartItem, and te::qt::widgets::FolderItem.
Definition at line 120 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::NONE.
Referenced by te::qt::widgets::LayerItemModel::data(), te::qt::widgets::GetChangedAndVisibleLayers(), GetVisibility(), and GetVisibleLayers().
|
inherited |
Removes all children.
Definition at line 139 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_children.
Referenced by updateStyle().
|
inherited | ||||||||||||||
Removes the child located at pos from the children list.
| pos | The position of the desired child at the children list. |
| If | pos is greater or equal than the children list size, a te::common::Exception will be raised. |
Definition at line 74 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_children.
Referenced by te::qt::widgets::LayerItemModel::addItems(), and te::qt::widgets::LayerItemModel::removeRows().
|
inherited |
Updates the item parent.
| item | The new parent. |
Definition at line 39 of file qt/widgets/layer/explorer/TreeItem.cpp.
References te::qt::widgets::TreeItem::m_parent.
Referenced by te::qt::widgets::TreeItem::addChild(), and te::qt::widgets::LayerItem::~LayerItem().
|
virtualinherited |
Updates the visibilty state of the item.
| visible | The new visibility state. |
| updateAncestors | Updates also ancestors states. |
| updateDescendents | Updates also descendents states. |
Reimplemented in te::qt::widgets::RuleItem, te::qt::widgets::LayerItem, te::qt::widgets::ChartItem, and te::qt::widgets::FolderItem.
Definition at line 125 of file qt/widgets/layer/explorer/TreeItem.cpp.
Referenced by te::qt::af::BaseApplication::onCheckSelectedLayerTriggered(), te::qt::af::BaseApplication::onClearSelectedLayerTriggered(), te::qt::widgets::LayerItemModel::setData(), te::qt::widgets::FolderItem::setVisible(), and te::qt::widgets::LayerItem::setVisible().
| void te::qt::widgets::StyleItem::updateStyle | ( | const te::se::Style * | style | ) |
updateStyle
| style |
Definition at line 87 of file StyleItem.cpp.
References AddRuleItems(), m_style, and te::qt::widgets::TreeItem::removeAllChilds().
|
protectedinherited |
Queue of items (children).
Definition at line 237 of file qt/widgets/layer/explorer/TreeItem.h.
Referenced by te::qt::widgets::TreeItem::addChild(), te::qt::widgets::TreeItem::getChild(), te::qt::widgets::TreeItem::getChildren(), te::qt::widgets::TreeItem::getChildrenCount(), te::qt::widgets::TreeItem::getPosition(), te::qt::widgets::TreeItem::insertChild(), te::qt::widgets::TreeItem::removeAllChilds(), te::qt::widgets::TreeItem::removeChild(), te::qt::widgets::TreeItem::TreeItem(), and te::qt::widgets::TreeItem::~TreeItem().
|
protected |
Label to be presented on the Qt view.
Definition at line 94 of file StyleItem.h.
Referenced by getAsString(), and StyleItem().
|
protectedinherited |
Pointer to the parent.
Definition at line 238 of file qt/widgets/layer/explorer/TreeItem.h.
Referenced by te::qt::widgets::TreeItem::getParent(), te::qt::widgets::TreeItem::getPosition(), te::qt::widgets::TreeItem::setParent(), te::qt::widgets::FolderItem::setVisible(), te::qt::widgets::LayerItem::setVisible(), te::qt::widgets::TreeItem::TreeItem(), and te::qt::widgets::ChartItem::~ChartItem().
|
protected |
Grouping being used.
Definition at line 95 of file StyleItem.h.
Referenced by getToolTip(), StyleItem(), and updateStyle().
|
protectedinherited |
Item type.
Definition at line 236 of file qt/widgets/layer/explorer/TreeItem.h.
Referenced by te::qt::widgets::TreeItem::getType().