Com base na documentação de GtkTextTags , que é usada em GTkTextBuffers , deve haver uma maneira de esticar ou condensar texto, como sublinhar texto ou torná-lo em negrito.
Eu tentei isso (veja o exemplo abaixo), mas não está funcionando para a parte de alongamento. Eu li em algum lugar, no entanto, que a fonte tem que suportar o trecho. Então, talvez, isso é um problema da fonte usada.
Não é realmente um exemplo de como a documentação nos diz como isso funciona:
#!/usr/bin/python
from gi.repository import Gtk
import pango
class TextViewWindow:
def __init__(self):
self.window = Gtk.Window()
self.window.set_default_size(400, 400)
self.textview = Gtk.TextView()
self.textbuffer = self.textview.get_buffer()
tag_table = self.textbuffer.get_tag_table()
stretched_tag = self.textbuffer.create_tag("str", stretch=pango.STRETCH_EXPANDED)
tag_table.add(stretched_tag)
bold_tag = self.textbuffer.create_tag("bld", weight=pango.WEIGHT_BOLD)
tag_table.add(bold_tag)
underline_tag = self.textbuffer.create_tag("und", underline=pango.UNDERLINE_SINGLE)
tag_table.add(underline_tag)
self.textbuffer.set_text("Here is some text: normal.\n")
sob, eob = self.textbuffer.get_bounds()
self.textbuffer.insert_with_tags_by_name(eob, "Here is some text: expanded.\n", "str")
sob, eob = self.textbuffer.get_bounds()
self.textbuffer.insert_with_tags_by_name(eob, "Here is some text: bold.\n", "bld")
sob, eob = self.textbuffer.get_bounds()
self.textbuffer.insert_with_tags_by_name(eob, "Here is some text: underlined.\n", "und")
self.window.add(self.textview)
self.window.show_all()
self.window.connect('destroy', lambda w: Gtk.main_quit())
def main():
app = TextViewWindow()
Gtk.main()
if __name__ == "__main__":
main()