Lines Matching refs:size
729 """Retrieve a font from configuration (font, font-size, font-bold)
736 Return a tuple (family, size, weight) suitable for passing
740 size = self.GetOption(configType, section, 'font-size', type='int',
748 size = actualFont['size']
749 if size <= 0:
750 size = 10 # if font in pixels, ignore actual size
752 return (family, size, 'bold' if bold else 'normal')