예제 #1
0
 def _get_fonts(self):
     self.all_fonts = AllFonts()
     self.all_fonts_names = []
     for font in self.all_fonts:
         self.all_fonts_names.append(get_full_name(font))
예제 #2
0
 def test_install_callback(self, sender):
     all_fonts = AllFonts()
     if len(all_fonts) > 0:
         for font in all_fonts:
             font.testInstall()
예제 #3
0
 def get_fonts(self):
     self.all_fonts = {}
     all_fonts = AllFonts()
     if len(all_fonts) > 0:
         for font in all_fonts:
             self.all_fonts[(get_full_name(font))] = font