Tagged Questions

2
votes
0answers
181 views

Will GTK's pango and cairo work well in Cocoa and MFC applications

I'm writing a GUI program and decided to go native on all platforms. But for all the stuff i need to draw myself i would like to use the same drawing routines because font and unicode handling is so ...
2
votes
1answer
304 views

How to tell whether a font is monospace using GTK and Pango?

I have a PangoFontDescription and I want to know whether it describes a monospace font. I have seen the function pango_font_family_is_monospace() in the Pango API documentation but after several ...
1
vote
0answers
106 views

using gtktextbuffer and Pango

I have some text in GtkTextBuffer with certain attribute properties like bold, italic. I want to extract those text having those properties using Pango.
1
vote
2answers
339 views

Using GTK/GDK to get Pango-rendered pixels

I'm trying to get a bitmap rendered by Pango with a given character, in this case the letter "T". I thought this should work, but it just prints out garbage.. In this code, gtk_window is already ...
0
votes
1answer
121 views

Rendering text inside gtkglext widget - from glut to pango

I'm in the process of constructing a user interface for my C/C++ simulation application using gtk+, and moving away from command-line control. I've used gtkglext to embed my OpenGL rendering of the ...
0
votes
1answer
95 views

rendering multiattributed textview

problem: I have a Textview with different Texttags in different selected text areas. At the end of editing, i would like to render this multi tagged textbuffer/textview into drawingarea.But I am not ...
0
votes
2answers
395 views

Drawing text on GTK's DrawingArea in Haskell

I have a DrawingArea onto which I can draw using primitives such as drawRectangle and drawLine. How do I draw text onto that area? I'm most interested in something that quickly outputs a single line ...
0
votes
1answer
69 views

Getting text bounds in GTK+

How can I get bounds of a text, provided string with attributes say, font size, font style, and font family in GTK+?
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
745 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 ...