def __init__(self, parent=None):
# call widget init
QWidget.__init__(self, parent)
# link app
self._app = QApplication.instance()
# dictionary for pixel information widgets
self._pixel_information_widgets = {}
self._current_widget = None
# set fixed size
self.setFixedWidth(320)
self.setFixedHeight(240)
# set window title
self.setWindowTitle("Pixel Information")
pixelInformationWindow.py 文件源码
python
阅读 23
收藏 0
点赞 0
评论 0
评论列表
文章目录