Terminal Widget

2002-05-31 Thread Johannes Hager
Hallo Knows someone a widget like the terminal emulator in the kate editor? Johannes ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Re: Still no fonts with gtkfb

2002-05-31 Thread Sven Neumann
Hi, Vince Busam [EMAIL PROTECTED] writes: After much fighting, I found the culprit was freetype. A downgrade from 2.1.0 to 2.0.9 fixed the problem. an update to Pango-1.0.2 should have done the trick too. Salut, Sven ___ gtk-list mailing list

can i do this with gtk.

2002-05-31 Thread simith nambiar
hi everybody, iam a newbie here, and doing a VOIP project on Linux. So i need to do some display for the frames grabbed out of the webcam. Can i do this with gtk or should i use Xlib. Please give me some hints to get started and how i could get this done. i'am running out of

can i do this with gtk.

2002-05-31 Thread simith nambiar
hi everybody, iam a newbie here, and doing a VOIP project on Linux. So i need to do some display for the frames grabbed out of the webcam. Can i do this with gtk or should i use Xlib. Please give me some hints to get started and how i could get this done. i'am running out of

[Fwd: Could someone help with my CellRenderer, plz?]

2002-05-31 Thread Andrew E. Makeev
just confused with this gtk.org... ---BeginMessage--- Here I have zip-package with code I've written to try to implement my own CellRenderer. I've completelly found all compilation and run-time errors, but still have no button displayed (look code for details). My guessing - I used wrong

Re: can i do this with gtk.

2002-05-31 Thread John . Cupitt
Hi, you can just use gdk_draw_rgb_image(), testrgb.c in the gtk+-1.2.x/gtk directory has example code. If you're using gtk2, the pixbuf library will render images for you, see the API reference. John simith nambiar wrote: hi everybody, iam a newbie here, and doing a VOIP

Shading and Deactivating a Sub-Menu

2002-05-31 Thread David J. Singer
I've searched through the archives, but the last time someone asked a similar question they were told to go and look at the gimp sourcecode, which I thought was a rather unhelpful response... ;-) I have a menu created with the Item Factory, and I would like to deactivate parts of it

Re: Still no fonts with gtkfb

2002-05-31 Thread Vince Busam
Actually, pango 1.0.2 with freetype 2.1.0 didn't work. It didn't work until I re-built it with freetype 2.0.9. Originally I tried pango 1.0.1 with freetype 2.1.0. I had to put in the same #defines that were in CVS at the time to get it to build. Then with 1.0.2 (which came out as I was

can we change the text of a tree item ?

2002-05-31 Thread Sijin M. Stephen
hi group,, i have created a gtktree item using a item = gtk_tree_item_new_with_label (item ) call.. ( gtk 1.2) now , i don't see any entry points in the api to change the label of the item.. I went through the source code and find that.. item is a container.. struct _GtkContainer

Re: Newbie: Getting the associated tags of a text

2002-05-31 Thread Havoc Pennington
Markus Reitz [EMAIL PROTECTED] writes: is there an easy way of getting the information where tags in a GtkTextBuffer start and end? There are GtkTextIter functions to move to the next tag or the next tag of a given type. Check the API docs on GtkTextIter. Havoc