当前位置: 首页>>代码示例>>Python>>正文


Python NSFont.userFixedPitchFontOfSize_方法代码示例

本文整理汇总了Python中AppKit.NSFont.userFixedPitchFontOfSize_方法的典型用法代码示例。如果您正苦于以下问题:Python NSFont.userFixedPitchFontOfSize_方法的具体用法?Python NSFont.userFixedPitchFontOfSize_怎么用?Python NSFont.userFixedPitchFontOfSize_使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在AppKit.NSFont的用法示例。


在下文中一共展示了NSFont.userFixedPitchFontOfSize_方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: init

# 需要导入模块: from AppKit import NSFont [as 别名]
# 或者: from AppKit.NSFont import userFixedPitchFontOfSize_ [as 别名]
 def init(self):
     self = super(PyInterpreter, self).init()
     if self is None:
         return None
     self._font = NSFont.userFixedPitchFontOfSize_(10)
     self._historyLength = 50
     self._history = [u""]
     self._historyView = 0
     self._characterIndexForInput = 0
     self._stdin = PseudoUTF8Input(self._nestedRunLoopReaderUntilEOLchars_)
     self._stderr = PseudoUTF8Output(self.writeStderr_)
     self._stdout = PseudoUTF8Output(self.writeStdout_)
     self._isInteracting = False
     self._console = AsyncInteractiveConsole()
     self._interp = self._console.asyncinteract(write=self.writeCode_).next
     self._autoscroll = True
     return self
开发者ID:shikil,项目名称:PyInterpreter,代码行数:19,代码来源:main2.py

示例2: init

# 需要导入模块: from AppKit import NSFont [as 别名]
# 或者: from AppKit.NSFont import userFixedPitchFontOfSize_ [as 别名]
 def init(self):
     self = super().init()
     if self is None:
         return None
     self._font = NSFont.userFixedPitchFontOfSize_(10)
     self._historyLength = 50
     self._history = ['']
     self._historyView = 0
     self._characterIndexForInput = 0
     self._stdin = PseudoUTF8Input(self._nestedRunLoopReaderUntilEOLchars_)
     self._stderr = PseudoUTF8Output(self.writeStderr_)
     self._stdout = PseudoUTF8Output(self.writeStdout_)
     self._isInteracting = False
     self._console = AsyncInteractiveConsole()
     self._interp = self._console.asyncinteract(
         write=self.writeCode_,
         banner="Python %s in %s\n%s\n" % (
             sys.version,
             NSBundle.mainBundle().objectForInfoDictionaryKey_('CFBundleName'),
             'Type "help", "copyright", "credits" or "license" for more information.'
         )
     ).__next__
     self._autoscroll = True
     return self
开发者ID:shikil,项目名称:PyInterpreter,代码行数:26,代码来源:main3.py


注:本文中的AppKit.NSFont.userFixedPitchFontOfSize_方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。