Re: Emphasizing a gtk.Label

2006-09-25 Thread ravenheart
Very useful. Thanks a lot -- http://mail.python.org/mailman/listinfo/python-list

Re: Emphasizing a gtk.Label

2006-09-25 Thread skip
>> I want to give some emphasis to a Label from gtk, without breaking >> gnome theme... What would be the best solution? Maybe: mylabel.set_markup("""My Label""") ? For more details, check out the PyGTK docs for the Label widget: http://www.moeraki.com/pygtkreference/pygtk2ref

Re: Emphasizing a gtk.Label

2006-09-25 Thread MonkeeSage
ravenheart wrote: > What would be the best solution? How to do it? I have found how to > change colors and underscoring but nothing else. I don't know about the best, but I would use: label = gtk.Label() # Pango markup should be on by default, if not use this line #label.set_use_markup(True) labe

Re: Emphasizing a gtk.Label

2006-09-25 Thread Maciej Dziardziel
ravenheart wrote: > I want to give some emphasis to a Label from gtk, without breaking gnome > theme (i.e. not changing colors, etc) > I think bolding it would be a good option (could be also underscoring > but don't like it at all). > What would be the best solution? How to do it? I have found ho

Emphasizing a gtk.Label

2006-09-25 Thread ravenheart
I want to give some emphasis to a Label from gtk, without breaking gnome theme (i.e. not changing colors, etc) I think bolding it would be a good option (could be also underscoring but don't like it at all). What would be the best solution? How to do it? I have found how to change colors and und