本文整理汇总了C++中GenericChatroomWidget::mapTo方法的典型用法代码示例。如果您正苦于以下问题:C++ GenericChatroomWidget::mapTo方法的具体用法?C++ GenericChatroomWidget::mapTo怎么用?C++ GenericChatroomWidget::mapTo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GenericChatroomWidget
的用法示例。
在下文中一共展示了GenericChatroomWidget::mapTo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: findPreviousWidget
void NotificationScrollArea::findPreviousWidget()
{
int value = 0;
GenericChatroomWidget* next = nullptr;
QHash<GenericChatroomWidget*, Visibility>::iterator i = trackedWidgets.begin();
// Find the first next, to avoid nullptr.
for (; i != trackedWidgets.end(); ++i)
{
if (i.value() == Above)
{
next = i.key();
value = next->mapTo(viewport(), QPoint()).y();
break;
}
}
// Try finding a closer one.
for (; i != trackedWidgets.end(); ++i)
{
if (i.value() == Above)
{
int y = i.key()->mapTo(viewport(), QPoint()).y();
if (y > value)
{
next = i.key();
value = y;
}
}
}
if (next != nullptr)
ensureWidgetVisible(next, 0, referencesAbove != 1 ? topEdge->height() : 0);
}