本文整理汇总了Python中PyQt5.QtWidgets.QGraphicsItem.setPos方法的典型用法代码示例。如果您正苦于以下问题:Python QGraphicsItem.setPos方法的具体用法?Python QGraphicsItem.setPos怎么用?Python QGraphicsItem.setPos使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyQt5.QtWidgets.QGraphicsItem
的用法示例。
在下文中一共展示了QGraphicsItem.setPos方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: append_item
# 需要导入模块: from PyQt5.QtWidgets import QGraphicsItem [as 别名]
# 或者: from PyQt5.QtWidgets.QGraphicsItem import setPos [as 别名]
def append_item(self, item: QGraphicsItem) -> None:
self.items.append(item)
col = self.next_col
row = self.next_row
x = col * (self.style.tile_width + self.style.spacing_x) + self.style.padding_x
y = row * (self.style.tile_height + self.style.spacing_y) + self.style.padding_y
item.setPos(self.x + x + self.center_x_off,
self.y + y)
bottom_y = y + self.style.tile_height + self.style.padding_y
# calculate next items position
if self.style.arrangement == TileStyle.Arrangement.ROWS:
col += 1
if col == self.columns:
col = 0
row += 1
else:
row += 1
if row == self.rows:
row = 0
col += 1
self.next_col = col
self.next_row = row
self.height = bottom_y