Exemplo n.º 1
0
 def get_font(self):
     font = self._font
     if not font:
         font = Font._from_pango_description(self._gtk_inner_widget.style.font_desc)
     return font
Exemplo n.º 2
0
 def get_font(self):
     font = self._font
     if not font:
         font = Font._from_pango_description(
             self._gtk_inner_widget.style.font_desc)
     return font
Exemplo n.º 3
0
#
#		Python GUI - Standard Fonts - Gtk
#

import gtk
from GUI import Font

system_font = Font._from_pango_description(gtk.Label().style.font_desc)
application_font = Font._from_pango_description(gtk.Entry().style.font_desc)