2010-02-12から1日間の記事一覧

正方形のPushButton

文字の左右の空白が邪魔だったので、sizeHintを変更。 ただし、当然はみ出た文字は見えなくなる。 from PyQt4.QtCore import * from PyQt4.QtGui import * class SquareButton(QPushButton): def __init__(self, *a, **kw): QPushButton.__init__(self, *a, …