Re: Images in PHP GTK /

2003-08-27 Thread Chad A Daelhousen
At Tue, Aug 26, 2003 at 02:10:58PM -0300, decio.osiris wrote: > 3. Lastly, in web designing, we use transparent images > to lock the size of boxes and tables so we can create > our deisng acordingly. Tn PHP GTK, is there any way to > do anything like that? Locking the tables or spaces so > the

Re: From GTK+-1.2 to GTK+-2.2 questions

2003-08-27 Thread Michael L Torrie
On Tue, 2003-08-26 at 07:16, Mirko wrote: > I was updating my old GTK version, 1.2, to the newest one 2.2, but the > dubts rises after I 've installed all dependencies and GTK itself. The > old one version was installed in /usr, the 2.2 version in /usr/local. It > 's ok or I must change installa

Re: How to change the text on a menu?

2003-08-27 Thread Vadim Berezniker
J. Davison de St. Germain wrote: Hi, Can someone please tell me how to change the text on a menu? For example, if I created the menu with "Turn On Light" and someone selects it, I wish to change the text to "Turn Off Light". I would have expected to call gtk_menu_item_set_label() or some such, b

How to change the text on a menu?

2003-08-27 Thread J. Davison de St. Germain
Hi, Can someone please tell me how to change the text on a menu? For example, if I created the menu with "Turn On Light" and someone selects it, I wish to change the text to "Turn Off Light". I would have expected to call gtk_menu_item_set_label() or some such, but I can't find such a function.

From GTK+-1.2 to GTK+-2.2 questions

2003-08-27 Thread Mirko
I was updating my old GTK version, 1.2, to the newest one 2.2, but the dubts rises after I 've installed all dependencies and GTK itself. The old one version was installed in /usr, the 2.2 version in /usr/local. It 's ok or I must change installation path? The old version must be deleted? What

Pango-1.2.5 released

2003-08-27 Thread Owen Taylor
Pango-1.2.5 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.2/ pango-1.2.5.tar.bz2md5sum: df00fe3e71cd297010f24f439b6c8ee6 pango-1.2.5.tar.gz md5sum: 4fd82bf5ee365c81968801e77bd50fd1 Pango-1.2.5 is a quick fix release for a a problem where the indic-xft shaper didn't g

GdkPixbuf and alpha threshold

2003-08-27 Thread Peter Krueger
Hello, I've read the API documentation for gdk_pixbuf_render_*_alpha() and want to know what values should be supplied for alpha_threshold. This is not documented, but I'm guessing that it could be something like 256 -> all pixels will be transparent 128 -> pixels with opacity < 0.5 will be tra

GtkLabel Text Color

2003-08-27 Thread Luiz Rafael Culik Guimaes
Hi friends How to change the color of an text of an GTK_LABEL widget i've tryed the bellow with out sucess GdkColor color; gdk_color_parse ("#FF3341", &color); GtkWidget *label; label = gtk_label_new("Test"); gtk_widget_show( label ); gtk_widget_

GtkLabel wrapping (or lack thereof)

2003-08-27 Thread Vadim Berezniker
Even after enabling wrapping on a label, it only wraps once and to a boundary I don't even understand. (Some labels wrap at one width, and some at another width.) Also the label does not rewrap when the parent container is resized. I also tried modifying the underlying PangoLayout with no avail.