Deprecated (since gtk-3.0): Gtk.Widget.modify_font
This commit is contained in:
parent
cb8e726f2b
commit
8e8c206a8f
@ -444,7 +444,7 @@ class EditPerson(EditPrimary):
|
|||||||
obj.connect('changed', self._changed_name)
|
obj.connect('changed', self._changed_name)
|
||||||
|
|
||||||
self.preview_name = self.top.get_object("full_name")
|
self.preview_name = self.top.get_object("full_name")
|
||||||
self.preview_name.modify_font(Pango.FontDescription('sans bold 12'))
|
self.preview_name.override_font(Pango.FontDescription('sans bold 12'))
|
||||||
|
|
||||||
def get_start_date(self):
|
def get_start_date(self):
|
||||||
"""
|
"""
|
||||||
|
@ -221,7 +221,7 @@ class GenderLabel(Gtk.Label):
|
|||||||
self.set_alignment(0, 0.5)
|
self.set_alignment(0, 0.5)
|
||||||
if win():
|
if win():
|
||||||
pangoFont = Pango.FontDescription('Arial')
|
pangoFont = Pango.FontDescription('Arial')
|
||||||
self.modify_font(pangoFont)
|
self.override_font(pangoFont)
|
||||||
self.show()
|
self.show()
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
@ -308,7 +308,7 @@ class MaskedEntry(UndoableEntry):
|
|||||||
:param mask: the mask to set
|
:param mask: the mask to set
|
||||||
"""
|
"""
|
||||||
if not mask:
|
if not mask:
|
||||||
self.modify_font(Pango.FontDescription("sans"))
|
self.override_font(Pango.FontDescription("sans"))
|
||||||
self._mask = mask
|
self._mask = mask
|
||||||
return
|
return
|
||||||
|
|
||||||
@ -338,7 +338,7 @@ class MaskedEntry(UndoableEntry):
|
|||||||
pos += 1
|
pos += 1
|
||||||
|
|
||||||
self._mask_fields.append((field_begin, field_end))
|
self._mask_fields.append((field_begin, field_end))
|
||||||
self.modify_font(Pango.FontDescription("monospace"))
|
self.override_font(Pango.FontDescription("monospace"))
|
||||||
|
|
||||||
self._really_delete_text(0, -1)
|
self._really_delete_text(0, -1)
|
||||||
self._insert_mask(0, input_length)
|
self._insert_mask(0, input_length)
|
||||||
|
@ -50,7 +50,7 @@ class PersonDetails(Gramplet):
|
|||||||
self.photo.show()
|
self.photo.show()
|
||||||
self.name = Gtk.Label()
|
self.name = Gtk.Label()
|
||||||
self.name.set_alignment(0, 0)
|
self.name.set_alignment(0, 0)
|
||||||
self.name.modify_font(Pango.FontDescription('sans bold 12'))
|
self.name.override_font(Pango.FontDescription('sans bold 12'))
|
||||||
vbox.pack_start(self.name, fill=True, expand=False, padding=7)
|
vbox.pack_start(self.name, fill=True, expand=False, padding=7)
|
||||||
self.grid = Gtk.Grid(orientation=Gtk.Orientation.VERTICAL)
|
self.grid = Gtk.Grid(orientation=Gtk.Orientation.VERTICAL)
|
||||||
self.grid.set_column_spacing(10)
|
self.grid.set_column_spacing(10)
|
||||||
@ -141,7 +141,7 @@ class PersonDetails(Gramplet):
|
|||||||
Display an empty row to separate groupd of entries.
|
Display an empty row to separate groupd of entries.
|
||||||
"""
|
"""
|
||||||
label = Gtk.Label(label='')
|
label = Gtk.Label(label='')
|
||||||
label.modify_font(Pango.FontDescription('sans 4'))
|
label.override_font(Pango.FontDescription('sans 4'))
|
||||||
label.show()
|
label.show()
|
||||||
self.grid.add(label)
|
self.grid.add(label)
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ class PlaceDetails(Gramplet):
|
|||||||
self.photo = Photo(self.uistate.screen_height() < 1000)
|
self.photo = Photo(self.uistate.screen_height() < 1000)
|
||||||
self.title = Gtk.Label()
|
self.title = Gtk.Label()
|
||||||
self.title.set_alignment(0, 0)
|
self.title.set_alignment(0, 0)
|
||||||
self.title.modify_font(Pango.FontDescription('sans bold 12'))
|
self.title.override_font(Pango.FontDescription('sans bold 12'))
|
||||||
vbox.pack_start(self.title, False, True, 7)
|
vbox.pack_start(self.title, False, True, 7)
|
||||||
self.grid = Gtk.Grid(orientation=Gtk.Orientation.VERTICAL)
|
self.grid = Gtk.Grid(orientation=Gtk.Orientation.VERTICAL)
|
||||||
self.grid.set_column_spacing(10)
|
self.grid.set_column_spacing(10)
|
||||||
@ -145,7 +145,7 @@ class PlaceDetails(Gramplet):
|
|||||||
Display an empty row to separate groupd of entries.
|
Display an empty row to separate groupd of entries.
|
||||||
"""
|
"""
|
||||||
label = Gtk.Label(label='')
|
label = Gtk.Label(label='')
|
||||||
label.modify_font(Pango.FontDescription('sans 4'))
|
label.override_font(Pango.FontDescription('sans 4'))
|
||||||
label.show()
|
label.show()
|
||||||
self.grid.add(label)
|
self.grid.add(label)
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ class RepositoryDetails(Gramplet):
|
|||||||
vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
|
vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
|
||||||
self.name = Gtk.Label()
|
self.name = Gtk.Label()
|
||||||
self.name.set_alignment(0, 0)
|
self.name.set_alignment(0, 0)
|
||||||
self.name.modify_font(Pango.FontDescription('sans bold 12'))
|
self.name.override_font(Pango.FontDescription('sans bold 12'))
|
||||||
vbox.pack_start(self.name, fill=True, expand=False, padding=7)
|
vbox.pack_start(self.name, fill=True, expand=False, padding=7)
|
||||||
self.grid = Gtk.Grid(orientation=Gtk.Orientation.VERTICAL)
|
self.grid = Gtk.Grid(orientation=Gtk.Orientation.VERTICAL)
|
||||||
self.grid.set_column_spacing(10)
|
self.grid.set_column_spacing(10)
|
||||||
@ -143,6 +143,6 @@ class RepositoryDetails(Gramplet):
|
|||||||
Display an empty row to separate groupd of entries.
|
Display an empty row to separate groupd of entries.
|
||||||
"""
|
"""
|
||||||
label = Gtk.Label(label='')
|
label = Gtk.Label(label='')
|
||||||
label.modify_font(Pango.FontDescription('sans 4'))
|
label.override_font(Pango.FontDescription('sans 4'))
|
||||||
label.show()
|
label.show()
|
||||||
self.grid.add(label)
|
self.grid.add(label)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user