本文整理汇总了Python中AppKit.NSFont.userFontOfSize_方法的典型用法代码示例。如果您正苦于以下问题:Python NSFont.userFontOfSize_方法的具体用法?Python NSFont.userFontOfSize_怎么用?Python NSFont.userFontOfSize_使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AppKit.NSFont
的用法示例。
在下文中一共展示了NSFont.userFontOfSize_方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: initWithFrame_andText_
# 需要导入模块: from AppKit import NSFont [as 别名]
# 或者: from AppKit.NSFont import userFontOfSize_ [as 别名]
def initWithFrame_andText_(self, frame, text):
self = super(TextPane, self).initWithFrame_(frame)
if not self:
return
self.tx = NSTextView.alloc().initWithFrame_(NSRect((0, 0), frame.size))
self.tx.setDrawsBackground_(NO)
self.tx.setEditable_(NO)
self.tx.setSelectable_(NO)
self.tx.textStorage().mutableString().setString_(text)
self.tx.setAlignment_range_(NSCenterTextAlignment, NSMakeRange(0, self.tx.string().length()))
self.tx.setFont_(NSFont.userFontOfSize_(self.SIZE))
self.tx.layoutManager().glyphRangeForTextContainer_(self.tx.textContainer())
textSize2 = self.tx.layoutManager().usedRectForTextContainer_(self.tx.textContainer()).size
self.tx.setFrame_(NSRect(((frame.size[0] - textSize2[0]) / 2.0, (frame.size[1] - textSize2[1]) / 2.0), textSize2))
self.addSubview_(self.tx)
return self
示例2:
# 需要导入模块: from AppKit import NSFont [as 别名]
# 或者: from AppKit.NSFont import userFontOfSize_ [as 别名]
#
# Python GUI - Standard Fonts - PyObjC
#
from AppKit import NSFont
from GUI import Font
system_font = Font._from_ns_font(NSFont.systemFontOfSize_(0))
application_font = Font._from_ns_font(NSFont.userFontOfSize_(0))