本文整理汇总了Python中PyKDE4.kdeui.KPushButton.setFixedSize方法的典型用法代码示例。如果您正苦于以下问题:Python KPushButton.setFixedSize方法的具体用法?Python KPushButton.setFixedSize怎么用?Python KPushButton.setFixedSize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyKDE4.kdeui.KPushButton
的用法示例。
在下文中一共展示了KPushButton.setFixedSize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: PointAndClick
# 需要导入模块: from PyKDE4.kdeui import KPushButton [as 别名]
# 或者: from PyKDE4.kdeui.KPushButton import setFixedSize [as 别名]
class PointAndClick(SettingsGroup):
def __init__(self, page):
super(PointAndClick, self).__init__(i18n("Point and Click"), page)
layout = QHBoxLayout(self)
self.button = KPushButton(i18n("Enable Point and Click"))
self.button.setFixedSize(self.button.sizeHint())
l = QLabel(
i18n(
"Click this button if Point and Click does not work. "
"See Shift+F1 (What's This) for more information."
)
)
l.setWordWrap(True)
l.setWhatsThis(
i18n(
"On its first run, Frescobaldi tries to auto-configure Okular "
"(which provides the PDF preview) to call Frescobaldi when a "
"clickable object is clicked."
"\n\n"
"But this setting can get lost when you move Frescobaldi to a "
"different location or when other applications reconfigure Okular."
"\n\n"
"Click this button to configure Frescobaldi as 'custom editor' "
"inside Okular. This works best when all instances of Okular are "
"closed and the PDF preview has not yet been opened."
)
)
self.button.setWhatsThis(l.whatsThis())
self.button.clicked.connect(self.installOkularPartRC)
layout.addWidget(self.button)
layout.addWidget(l)
def installOkularPartRC(self):
import frescobaldi_app.install
frescobaldi_app.install.installOkularPartRC()
config("").writeEntry("configure okularpart", True)
KMessageBox.information(
self,
i18n(
"The Okular PDF preview has been reconfigured.\n\n"
"If you already opened the PDF preview, "
"restart Frescobaldi for the new settings to take effect."
),
)
示例2: MainFrame
# 需要导入模块: from PyKDE4.kdeui import KPushButton [as 别名]
# 或者: from PyKDE4.kdeui.KPushButton import setFixedSize [as 别名]
class MainFrame(KVBox):
def __init__(self, parent):
KVBox.__init__(self, parent)
self.setSpacing (40)
self.help = QLabel (i18n (helpText), self)
self.layout ().setAlignment (self.help, Qt.AlignHCenter)
self.button = KPushButton(i18n("Show %s" % dialogName), self)
self.button.setFixedSize (200, 30)
self.layout ().setAlignment (self.button, Qt.AlignHCenter)
self.fontLabel = QLabel (quote, self)
self.layout ().setAlignment (self.fontLabel, Qt.AlignHCenter)
self.connect(self.button, SIGNAL('clicked()'), self.showDialog)
def showDialog(self):
font = QFont ()
result, checkState = KFontDialog.getFont (font)
if result == QDialog.Accepted:
self.fontLabel.setFont (font)