本文整理汇总了C++中SmartPointer::GetCommand方法的典型用法代码示例。如果您正苦于以下问题:C++ SmartPointer::GetCommand方法的具体用法?C++ SmartPointer::GetCommand怎么用?C++ SmartPointer::GetCommand使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SmartPointer
的用法示例。
在下文中一共展示了SmartPointer::GetCommand方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: NotDefinedException
SmartPointer<IElementReference> CommandService::RegisterElementForCommand(
const SmartPointer<ParameterizedCommand>& command,
const SmartPointer<UIElement>& element)
{
if (!command->GetCommand()->IsDefined())
{
throw NotDefinedException(
"Cannot define a callback for undefined command "
+ command->GetCommand()->GetId());
}
if (element.IsNull())
{
throw NotDefinedException("No callback defined for command "
+ command->GetCommand()->GetId());
}
QHash<QString, QString> paramMap = command->GetParameterMap();
QHash<QString, Object::Pointer> parms;
for (QHash<QString, QString>::const_iterator i = paramMap.begin();
i != paramMap.end(); ++i)
{
Object::Pointer value(new ObjectString(i.value()));
parms.insert(i.key(), value);
}
IElementReference::Pointer ref(new ElementReference(command->GetId(),
element, parms));
RegisterElement(ref);
return ref;
}
示例2: event
SmartPointer<const ExecutionEvent> HandlerService::CreateExecutionEvent(
const SmartPointer<const ParameterizedCommand>& command,
const SmartPointer<const UIElement>& trigger)
{
ExecutionEvent::Pointer event(
new ExecutionEvent(command->GetCommand(), command->GetParameterMap(), trigger,
Object::Pointer(GetCurrentState())));
return event;
}
示例3: event
void CommandManager::CommandListener::CommandChanged(const SmartPointer<const CommandEvent> commandEvent) {
if (commandEvent->IsDefinedChanged()) {
const Command::Pointer command(commandEvent->GetCommand());
const std::string commandId = command->GetId();
const bool commandIdAdded = command->IsDefined();
if (commandIdAdded) {
commandManager->definedHandleObjects.insert(command);
} else {
commandManager->definedHandleObjects.erase(command);
}
CommandManagerEvent::Pointer event(new CommandManagerEvent(*commandManager,
commandId, commandIdAdded, true, "", false, false));
commandManager->FireCommandManagerChanged(event);
}
}
示例4: UpdateCommandPropertiesInUI
void CommandContributionItem::UpdateCommandPropertiesInUI(const SmartPointer<
const CommandEvent>& commandEvent)
{
if (commandEvent->GetCommand()->IsDefined())
{
this->Update();
}
if (commandEvent->IsEnabledChanged()
|| commandEvent->IsHandledChanged())
{
if (visibleEnabled)
{
IContributionManager* parent = this->GetParent();
if (parent)
{
parent->Update(true);
}
}
}
}