本文整理汇总了C++中CanvasItem::width方法的典型用法代码示例。如果您正苦于以下问题:C++ CanvasItem::width方法的具体用法?C++ CanvasItem::width怎么用?C++ CanvasItem::width使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CanvasItem
的用法示例。
在下文中一共展示了CanvasItem::width方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: reposition
void Handle::reposition(void)
{
double sw = 0, sh = 0;
double nxpos, nypos;
CanvasItem *parent = dynamic_cast<CanvasItem *> (parentItem());
if (parent == NULL)
{
return;
}
int hflags = handleFlags();
if (hflags & HAN_POINT)
{
#if 0
int index = get_identn(3);
Polygon *poly = dynamic_cast<Polygon *> (parentItem());
assert(poly != NULL);
poly->getPointPos(index, &nxpos, &nypos);
#endif
}
else if (hflags & HAN_SEPARA)
{
Separation *separation = dynamic_cast<Separation *> (parentItem());
nxpos = separation->handle_x;
nypos = separation->handle_y;
}
else
{
sw = parent->width();
sh = parent->height();
if (xrel == HPLACE_MIN)
{
nxpos = - (sw / 2) + xoff;
}
else if (xrel == HPLACE_ZERO)
{
nxpos = 0 + xoff;
}
else // if (xrel == HPLACE_MAX)
{
nxpos = + (sw / 2) + xoff;
}
if (yrel == HPLACE_MIN)
{
nypos = - (sh / 2) + yoff;
}
else if (yrel == HPLACE_ZERO)
{
nypos = 0 + yoff;
}
else // if (yrel == HPLACE_MAX)
{
nypos = + (sh / 2) + yoff;
}
}
if ((nxpos != x()) || (nypos != y()))
{
// If the handle has been moved.
QGraphicsItem::setPos(nxpos, nypos);
}
}