本文整理匯總了Python中PyQt4.QtGui.QGraphicsPolygonItem.flags方法的典型用法代碼示例。如果您正苦於以下問題:Python QGraphicsPolygonItem.flags方法的具體用法?Python QGraphicsPolygonItem.flags怎麽用?Python QGraphicsPolygonItem.flags使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PyQt4.QtGui.QGraphicsPolygonItem
的用法示例。
在下文中一共展示了QGraphicsPolygonItem.flags方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _finish_add_area
# 需要導入模塊: from PyQt4.QtGui import QGraphicsPolygonItem [as 別名]
# 或者: from PyQt4.QtGui.QGraphicsPolygonItem import flags [as 別名]
def _finish_add_area(self):
poligon = QPolygonF( self.current_op_stat['points'])
pol = QGraphicsPolygonItem(poligon)
pol.setToolTip(self.current_op_stat['name'])
pol.setPen(QPen(Qt.black, 1, Qt.SolidLine, Qt.RoundCap, Qt.RoundJoin))
HMItem.type(pol,HMItem.MAP_AREA)
HMItem.select(pol,False)
HMItem.name(pol,self.current_op_stat['name'])
HMItem.level(pol, self.home_map_scene.current_level)
pol.setVisible(True)
pol.setZValue(1)
self.home_map_scene.addItem(pol)
print "flags %x" % pol.flags()
it_remove = QGraphicsPolygonItem()
HMItem.module( it_remove, self.__class__.__name__)
HMItem.type(it_remove,HMItem.OUTLINE_POINT)
self.home_map_scene.remove_by_item(it_remove)
self.current_op = ''
self.current_op_stat = None