本文整理汇总了C++中ImageItem::setOffset方法的典型用法代码示例。如果您正苦于以下问题:C++ ImageItem::setOffset方法的具体用法?C++ ImageItem::setOffset怎么用?C++ ImageItem::setOffset使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ImageItem
的用法示例。
在下文中一共展示了ImageItem::setOffset方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: init
void ImageViewer::init(const imagein::Image* img, int x, int y)
{
/* Get info about the image */
QImage qimg = getQImage(img);
QSize size = (qimg).size();
int height = size.height();
int width = size.width();
int sup = max(height, width);
/* Compute the numeric attributs of our object */
_scale = sup > WIDGET_S ? (double) WIDGET_S / (double) sup : 1.0;
_dx = (WIDGET_S - width * _scale) / 2;
_dy = (WIDGET_S - height * _scale) / 2;
_supx = width * _scale;
_supy = height * _scale;
/* Creats the scene */
QPixmap i;
i.convertFromImage(qimg);
i = i.scaled(width * _scale, height * _scale);
//QGraphicsPixmapItem* im = new QGraphicsPixmapItem(i);
ImageItem* im = new ImageItem(i);
im->setOffset(_dx, _dy);
QObject::connect(im, SIGNAL(clickListenned(int, int)), this, SLOT(slotPositionReception(int, int)));
addItem(im);
_rect = new QGraphicsRectItem(0, 0, _scale * RECT_W, _scale * RECT_H);
QPen b;
b.setColor(Qt::red);
_rect->setPen(b);
addItem(_rect);
_rect->setX(_dx);
_rect->setY(_dy);
updatePos(x * _scale, y * _scale);
}