コード例 #1
0
ファイル: font.py プロジェクト: vavilon/pygame_cffi
 def set_italic(self, italic):
     """Font.set_italic(bool): return None
        enable fake rendering of italic text"""
     style = sdl.TTF_GetFontStyle(self._sdl_font)
     if italic:
         style = style | sdl.TTF_STYLE_ITALIC
     elif style & sdl.TTF_STYLE_ITALIC:
         style = style ^ sdl.TTF_STYLE_ITALIC
     sdl.TTF_SetFontStyle(self._sdl_font, style)
コード例 #2
0
ファイル: font.py プロジェクト: vavilon/pygame_cffi
 def set_underline(self, underline):
     """Font.set_underline(bool): return None
        control if text is rendered with an underline"""
     style = sdl.TTF_GetFontStyle(self._sdl_font)
     if underline:
         style = style | sdl.TTF_STYLE_UNDERLINE
     elif style & sdl.TTF_STYLE_UNDERLINE:
         style = style ^ sdl.TTF_STYLE_UNDERLINE
     sdl.TTF_SetFontStyle(self._sdl_font, style)
コード例 #3
0
ファイル: font.py プロジェクト: vavilon/pygame_cffi
 def set_bold(self, bold):
     """Font.set_bold(bool): return None
        enable fake rendering of bold text"""
     style = sdl.TTF_GetFontStyle(self._sdl_font)
     if bold:
         style = style | sdl.TTF_STYLE_BOLD
     elif style & sdl.TTF_STYLE_BOLD:
         style = style ^ sdl.TTF_STYLE_BOLD
     sdl.TTF_SetFontStyle(self._sdl_font, style)
コード例 #4
0
ファイル: font.py プロジェクト: vavilon/pygame_cffi
 def get_italic(self):
     """Font.get_italic(): return bool
        check if text will be rendered italic"""
     style = sdl.TTF_GetFontStyle(self._sdl_font)
     return style & sdl.TTF_STYLE_ITALIC != 0
コード例 #5
0
ファイル: font.py プロジェクト: vavilon/pygame_cffi
 def get_underline(self):
     """Font.get_underline(): return bool
        check if text will be rendered with an underline"""
     style = sdl.TTF_GetFontStyle(self._sdl_font)
     return style & sdl.TTF_STYLE_UNDERLINE != 0
コード例 #6
0
ファイル: font.py プロジェクト: vavilon/pygame_cffi
 def get_bold(self):
     """Font.get_bold(): return bool
        check if text will be rendered bold"""
     style = sdl.TTF_GetFontStyle(self._sdl_font)
     return style & sdl.TTF_STYLE_BOLD != 0