本文整理汇总了C++中URect::get_x方法的典型用法代码示例。如果您正苦于以下问题:C++ URect::get_x方法的具体用法?C++ URect::get_x怎么用?C++ URect::get_x使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类URect
的用法示例。
在下文中一共展示了URect::get_x方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: select_objects_in_rectangle
//---------------------------------------------------------------------------------------
void GmoBoxDocPage::select_objects_in_rectangle(SelectionSet* selection,
const URect& selRect,
unsigned UNUSED(flags))
{
bool fSomethingSelected = false;
std::list<GmoShape*>::reverse_iterator it;
for (it = m_allShapes.rbegin(); it != m_allShapes.rend(); ++it)
{
URect bbox = (*it)->get_bounds();
if (selRect.contains(bbox))
{
selection->add(*it);
fSomethingSelected = true;
}
}
//if no objects in rectangle try to select clicked object
if (!fSomethingSelected)
{
GmoShape* pShape = find_shape_at(selRect.get_x(), selRect.get_y());
if (pShape)
selection->add(pShape);
}
}