bool HierarchyTreePlatformNode::IsAggregatorOrScreenNamePresent(const QString& candidatName) { for (HIERARCHYTREENODESLIST::iterator iter = childNodes.begin(); iter != childNodes.end(); ++iter) { HierarchyTreeNode* node = (*iter); HierarchyTreeAggregatorNode* aggregator = dynamic_cast<HierarchyTreeAggregatorNode*>(node); HierarchyTreeScreenNode* screen = dynamic_cast<HierarchyTreeScreenNode*>(node); if (NULL == aggregator && NULL == screen) { continue; } if(node->GetName().compare(candidatName) == 0) { return true; } } return false; }
bool HierarchyTreeScreenNode::IsNameExist(const QString &name, const HierarchyTreeNode *parent) const { if (!parent) return false; const HIERARCHYTREENODESLIST& items = parent->GetChildNodes(); for (HIERARCHYTREENODESLIST::const_iterator iter = items.begin(); iter != items.end(); ++iter) { HierarchyTreeNode* node = (*iter); if (node->GetName().compare(name) == 0) return true; if (IsNameExist(name, node)) return true; } return false; }
HierarchyTreeControlNode* LibraryController::CreateNewControl(HierarchyTreeNode* parentNode, const QString& strType, const QString& name, const Vector2& position) { String type = strType.toStdString(); HierarchyTreeControlNode* controlNode = NULL; UIControl* control = NULL; CONTROLS::iterator iter; for (iter = controls.begin(); iter != controls.end(); ++iter) { HierarchyTreeNode* node = iter->first; if (strType == node->GetName()) break; } if (iter == controls.end() || dynamic_cast<HierarchyTreeControlNode*>(iter->first)) { //create standart control BaseObject* object = ObjectFactory::Instance()->New(type); control = dynamic_cast<UIControl*>(object); if (!control) { SafeRelease(object); return NULL; } controlNode = new HierarchyTreeControlNode(parentNode, control, name); } else { //create aggregator HierarchyTreeAggregatorNode* aggregator = dynamic_cast<HierarchyTreeAggregatorNode*>(iter->first); if (aggregator) { controlNode = aggregator->CreateChild(parentNode, name); control = controlNode->GetUIObject(); } } parentNode->AddTreeNode(controlNode); // In case the control has subcontrols - they should be added to the control node too. if (control && !control->GetSubcontrols().empty()) { List<UIControl*> subControls = control->GetSubcontrols(); for (List<UIControl*>::iterator iter = subControls.begin(); iter != subControls.end(); iter ++) { UIControl* subControl = (*iter); if (!subControl) { continue; } HierarchyTreeControlNode* subControlNode = new HierarchyTreeControlNode(controlNode, subControl, QString::fromStdString(subControl->GetName())); controlNode->AddTreeNode(subControlNode); } } // Initialize a control through its metadata. BaseMetadata* newControlMetadata = MetadataFactory::Instance()->GetMetadataForUIControl(control); METADATAPARAMSVECT params; params.push_back(BaseMetadataParams(controlNode->GetId(), control)); newControlMetadata->SetupParams(params); // Ready to do initialization! newControlMetadata->InitializeControl(name.toStdString(), position); SAFE_DELETE(newControlMetadata); SafeRelease(control); return controlNode; }