當前位置: 首頁>>代碼示例>>Python>>正文


Python QFontMetrics.lineSpacing方法代碼示例

本文整理匯總了Python中AnyQt.QtGui.QFontMetrics.lineSpacing方法的典型用法代碼示例。如果您正苦於以下問題:Python QFontMetrics.lineSpacing方法的具體用法?Python QFontMetrics.lineSpacing怎麽用?Python QFontMetrics.lineSpacing使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在AnyQt.QtGui.QFontMetrics的用法示例。


在下文中一共展示了QFontMetrics.lineSpacing方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: update_contents

# 需要導入模塊: from AnyQt.QtGui import QFontMetrics [as 別名]
# 或者: from AnyQt.QtGui.QFontMetrics import lineSpacing [as 別名]
 def update_contents(self):
     self.prepareGeometryChange()
     self.setTextWidth(-1)
     self.setTextWidth(self.document().idealWidth())
     self.droplet.setPos(self.rect().center().x(), self.rect().height())
     self.droplet.setVisible(bool(self.branches))
     fm = QFontMetrics(self.document().defaultFont())
     attr = self.node_inst.attr
     self.attr_text_w = fm.width(attr.name if attr else "")
     self.attr_text_h = fm.lineSpacing()
     self.line_descent = fm.descent()
     if self.pie is not None:
         self.pie.setPos(self.rect().right(), self.rect().center().y())
開發者ID:RachitKansal,項目名稱:orange3,代碼行數:15,代碼來源:owtreeviewer.py

示例2: defaultTextGeometry

# 需要導入模塊: from AnyQt.QtGui import QFontMetrics [as 別名]
# 或者: from AnyQt.QtGui.QFontMetrics import lineSpacing [as 別名]
    def defaultTextGeometry(self, point):
        """
        Return the default text geometry. Used in case the user single
        clicked in the scene.

        """
        font = self.annotation_item.font()
        metrics = QFontMetrics(font)
        spacing = metrics.lineSpacing()
        margin = self.annotation_item.document().documentMargin()

        rect = QRectF(QPointF(point.x(), point.y() - spacing - margin),
                      QSizeF(150, spacing + 2 * margin))
        return rect
開發者ID:RachitKansal,項目名稱:orange3,代碼行數:16,代碼來源:interactions.py

示例3: __init__

# 需要導入模塊: from AnyQt.QtGui import QFontMetrics [as 別名]
# 或者: from AnyQt.QtGui.QFontMetrics import lineSpacing [as 別名]
    def __init__(self, model, node_inst, parent=None):
        super().__init__(parent)
        self.model = model
        self.node_inst = node_inst

        fm = QFontMetrics(self.document().defaultFont())
        attr = node_inst.attr
        self.attr_text_w = fm.width(attr.name if attr else "")
        self.attr_text_h = fm.lineSpacing()
        self.line_descent = fm.descent()
        self._rect = None

        if model.domain.class_var.is_discrete:
            self.pie = PieChart(node_inst.value, 8, self)
        else:
            self.pie = None
開發者ID:RachitKansal,項目名稱:orange3,代碼行數:18,代碼來源:owtreeviewer.py

示例4: __init__

# 需要導入模塊: from AnyQt.QtGui import QFontMetrics [as 別名]
# 或者: from AnyQt.QtGui.QFontMetrics import lineSpacing [as 別名]
    def __init__(self, tree_adapter, node_inst, parent=None):
        super().__init__(parent)
        self.tree_adapter = tree_adapter
        self.model = self.tree_adapter.model
        self.node_inst = node_inst

        fm = QFontMetrics(self.document().defaultFont())
        attr = self.tree_adapter.attribute(node_inst)
        self.attr_text_w = fm.width(attr.name if attr else "")
        self.attr_text_h = fm.lineSpacing()
        self.line_descent = fm.descent()
        self._rect = None

        if self.model.domain.class_var.is_discrete:
            self.pie = PieChart(self.tree_adapter.get_distribution(node_inst)[0], 8, self)
        else:
            self.pie = None
開發者ID:astaric,項目名稱:orange3,代碼行數:19,代碼來源:owtreeviewer.py


注:本文中的AnyQt.QtGui.QFontMetrics.lineSpacing方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。