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 ...
2
votes
1answer
595 views
How do I do text wrapping in pyCairo + Pango?
What I need pyCairo to do is :
generate an image of size 100x100 containing some text and an image from filesystem as background
the text should be within a box which has text wrapping of size 20x20 ...
1
vote
0answers
44 views
pango attributes with pygobject
I have the following code, that uses pygtk:
attr = pango.AttrList()
attr.change(pango.AttrSize((
50 * window_height / 100) * 1000, 0, -1))
attr.change(pango.AttrFamily("Sans", 0, -1))
...
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
...