Tagged Questions

2
votes
1answer
61 views

Pango Markup on Expander Label

I have a project in Python 2.7 and PyGTK 2.24. I have the following code in my project: expTSet = gtk.Expander() expTSet.set_use_markup(True) expTSet.set_label('<span ...
1
vote
2answers
661 views

Are there any examples of a Python PyGTK Pango editor toolbar?

I am looking for an example application written in Python and PyGTK. There should be an editor out there somewhere that already does this. Some app with a text editor row of buttons: - Font - ...
0
votes
2answers
365 views

How should I display a constantly updating timer using PyGTK?

I am writing a timer program in Python using PyGTK. It is precise to the hundredths place. Right now, I am using a constantly updated label. This is a problem, because if I resize the window while the ...
0
votes
2answers
747 views

How to escape characters in Pango markup?

My program has a gtk.TreeView which displays a gtk.ListStore. The gtk.ListStore contains strings like this: "<span size='medium'><b>"+site_title+"</b></span>"+"\n"+URL ...