本文整理汇总了C++中TBLinkListOf::IterateForward方法的典型用法代码示例。如果您正苦于以下问题:C++ TBLinkListOf::IterateForward方法的具体用法?C++ TBLinkListOf::IterateForward怎么用?C++ TBLinkListOf::IterateForward使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TBLinkListOf
的用法示例。
在下文中一共展示了TBLinkListOf::IterateForward方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: InvokeWidgetFocusChanged
void TBWidgetListener::InvokeWidgetFocusChanged(TBWidget *widget, bool focused)
{
TBLinkListOf<TBWidgetListenerGlobalLink>::Iterator global_i = g_listeners.IterateForward();
TBLinkListOf<TBWidgetListener>::Iterator local_i = widget->m_listeners.IterateForward();
while (TBWidgetListener *listener = local_i.GetAndStep())
listener->OnWidgetFocusChanged(widget, focused);
while (TBWidgetListenerGlobalLink *link = global_i.GetAndStep())
static_cast<TBWidgetListener*>(link)->OnWidgetFocusChanged(widget, focused);
}
示例2: InvokeWidgetRemove
void TBWidgetListener::InvokeWidgetRemove(TBWidget *parent, TBWidget *child)
{
TBLinkListOf<TBWidgetListenerGlobalLink>::Iterator global_i = g_listeners.IterateForward();
TBLinkListOf<TBWidgetListener>::Iterator local_i = parent->m_listeners.IterateForward();
while (TBWidgetListener *listener = local_i.GetAndStep())
listener->OnWidgetRemove(parent, child);
while (TBWidgetListenerGlobalLink *link = global_i.GetAndStep())
static_cast<TBWidgetListener*>(link)->OnWidgetRemove(parent, child);
}
示例3: InvokeWidgetInvokeEvent
bool TBWidgetListener::InvokeWidgetInvokeEvent(TBWidget *widget, const TBWidgetEvent &ev)
{
bool handled = false;
TBLinkListOf<TBWidgetListenerGlobalLink>::Iterator global_i = g_listeners.IterateForward();
TBLinkListOf<TBWidgetListener>::Iterator local_i = widget->m_listeners.IterateForward();
while (TBWidgetListener *listener = local_i.GetAndStep())
handled |= listener->OnWidgetInvokeEvent(widget, ev);
while (TBWidgetListenerGlobalLink *link = global_i.GetAndStep())
handled |= static_cast<TBWidgetListener*>(link)->OnWidgetInvokeEvent(widget, ev);
return handled;
}
示例4: AbortAnimations
void TBWidgetsAnimationManager::AbortAnimations(TBWidget *widget, TB_TYPE_ID type_id)
{
TBLinkListOf<TBWidgetAnimationObject>::Iterator iter = widget_animations.IterateForward();
while (TBWidgetAnimationObject *wao = iter.GetAndStep())
{
if (wao->m_widget == widget)
{
// Skip this animation if we asked for a specific (and
// different) animation type.
if (type_id != nullptr && !wao->IsOfTypeId(type_id))
continue;
// Abort the animation. This will both autoremove itself
// and delete it, so no need to do it here.
TBAnimationManager::AbortAnimation(wao, true);
}
}
}