本文整理汇总了Python中AnyQt.QtGui.QFont.setPointSize方法的典型用法代码示例。如果您正苦于以下问题:Python QFont.setPointSize方法的具体用法?Python QFont.setPointSize怎么用?Python QFont.setPointSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AnyQt.QtGui.QFont
的用法示例。
在下文中一共展示了QFont.setPointSize方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: createButton
# 需要导入模块: from AnyQt.QtGui import QFont [as 别名]
# 或者: from AnyQt.QtGui.QFont import setPointSize [as 别名]
def createButton(self, action, background="light-orange"):
"""Create a tool button for action.
"""
button = WelcomeActionButton(self)
button.setDefaultAction(action)
button.setText(action.iconText())
button.setIcon(decorate_welcome_icon(action.icon(), background))
button.setToolTip(action.toolTip())
button.setFixedSize(100, 100)
button.setToolButtonStyle(Qt.ToolButtonTextUnderIcon)
font = QFont(button.font())
font.setPointSize(13)
button.setFont(font)
return button
示例2: update_font
# 需要导入模块: from AnyQt.QtGui import QFont [as 别名]
# 或者: from AnyQt.QtGui.QFont import setPointSize [as 别名]
def update_font(basefont, weight=None, italic=None, underline=None,
pixelSize=None, pointSize=None):
"""
Return a copy of `basefont` :class:`QFont` with updated properties.
"""
font = QFont(basefont)
if weight is not None:
font.setWeight(weight)
if italic is not None:
font.setItalic(italic)
if underline is not None:
font.setUnderline(underline)
if pixelSize is not None:
font.setPixelSize(pixelSize)
if pointSize is not None:
font.setPointSize(pointSize)
return font
示例3: Legend
# 需要导入模块: from AnyQt.QtGui import QFont [as 别名]
# 或者: from AnyQt.QtGui.QFont import setPointSize [as 别名]
class Legend(Anchorable):
"""Base legend class.
This class provides common attributes for any legend subclasses:
- Behaviour on `QGraphicsScene`
- Appearance of legend
Parameters
----------
parent : QGraphicsItem, optional
orientation : Qt.Orientation, optional
The default orientation is vertical
domain : Orange.data.domain.Domain, optional
This field is left optional as in some cases, we may want to simply
pass in a list that represents the legend.
items : Iterable[QColor, str]
bg_color : QColor, optional
font : QFont, optional
color_indicator_cls : ColorIndicator
The color indicator class that will be used to render the indicators.
See Also
--------
OWDiscreteLegend
OWContinuousLegend
OWContinuousLegend
Notes
-----
.. warning:: If the domain parameter is supplied, the items parameter will
be ignored.
"""
def __init__(self, parent=None, orientation=Qt.Vertical, domain=None,
items=None, bg_color=QColor(232, 232, 232, 196),
font=None, color_indicator_cls=LegendItemSquare, **kwargs):
super().__init__(parent, **kwargs)
self._layout = None
self.orientation = orientation
self.bg_color = QBrush(bg_color)
self.color_indicator_cls = color_indicator_cls
# Set default font if none is given
if font is None:
self.font = QFont()
self.font.setPointSize(10)
else:
self.font = font
self.setFlags(QGraphicsWidget.ItemIsMovable |
QGraphicsItem.ItemIgnoresTransformations)
self._setup_layout()
if domain is not None:
self.set_domain(domain)
elif items is not None:
self.set_items(items)
def _clear_layout(self):
self._layout = None
for child in self.children():
child.setParent(None)
def _setup_layout(self):
self._clear_layout()
self._layout = QGraphicsLinearLayout(self.orientation)
self._layout.setContentsMargins(10, 5, 10, 5)
# If horizontal, there needs to be horizontal space between the items
if self.orientation == Qt.Horizontal:
self._layout.setSpacing(10)
# If vertical spacing, vertical space is provided by child layouts
else:
self._layout.setSpacing(0)
self.setLayout(self._layout)
def set_domain(self, domain):
"""Handle receiving the domain object.
Parameters
----------
domain : Orange.data.domain.Domain
Returns
-------
Raises
------
AttributeError
If the domain does not contain the correct type of class variable.
"""
raise NotImplementedError()
def set_items(self, values):
"""Handle receiving an array of items.
Parameters
#.........这里部分代码省略.........