当前位置: 首页>>代码示例>>C++>>正文


C++ Widget::GetContainer方法代码示例

本文整理汇总了C++中Widget::GetContainer方法的典型用法代码示例。如果您正苦于以下问题:C++ Widget::GetContainer方法的具体用法?C++ Widget::GetContainer怎么用?C++ Widget::GetContainer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Widget的用法示例。


在下文中一共展示了Widget::GetContainer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: DispatchMouseOverOut

void EventDispatcher::DispatchMouseOverOut(Widget *target, const Point &mousePos)
{
	// do over/out handling for wherever the mouse is right now
	if (target != m_lastMouseOverTarget.Get() || target->IsDisabled()) {

		if (m_lastMouseOverTarget) {

			// if we're switching from float to non-float then we need to force the out event, even if the mouse is still over the last target.

			// only the base widget of a floating stack is marked floating, so walk up to find it
			// XXX this is doing too much work. should we flag this on the widget somewhere?
			Widget *targetBase = target;
			while (!targetBase->IsFloating() && targetBase->GetContainer()) targetBase = targetBase->GetContainer();
			Widget *lastTargetBase = m_lastMouseOverTarget.Get();
			while (!lastTargetBase->IsFloating() && lastTargetBase->GetContainer()) lastTargetBase = lastTargetBase->GetContainer();

			// if we're moving from float->non-float or non-float->float,
			// or the two targets don't have the same base (eg one just got
			// removed from the context in whole ui switch)
			// force the out event on the last target by reporting a position
			// that is by definition outside itself
			const Point outPos =
				(targetBase->IsFloating() != lastTargetBase->IsFloating() || targetBase != lastTargetBase) ? Point(-INT_MAX) : mousePos-m_lastMouseOverTarget->GetAbsolutePosition();
			m_lastMouseOverTarget->TriggerMouseOut(outPos);
		}

		if (target->IsDisabled())
			m_lastMouseOverTarget.Reset(0);
		else {
			m_lastMouseOverTarget.Reset(target);
			m_lastMouseOverTarget->TriggerMouseOver(mousePos-m_lastMouseOverTarget->GetAbsolutePosition());
		}
	}
}
开发者ID:jsnmtth,项目名称:pioneer,代码行数:34,代码来源:EventDispatcher.cpp

示例2: IsOnTopLayer

bool Widget::IsOnTopLayer() const
{
	const Layer *topLayer = GetContext()->GetTopLayer();
	Widget *scan = GetContainer();
	while (scan) {
		if (scan == topLayer)
			return true;
        scan = scan->GetContainer();
    }
	return false;
}
开发者ID:christiank,项目名称:pioneer,代码行数:11,代码来源:Widget.cpp


注:本文中的Widget::GetContainer方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。