Re: Very slow gdk_draw_pixbuf

2005-09-01 Thread Barry Demchak
Hi, John -- The Linux guy and I investigated this somewhat thoroughly. It doesn't happen on any machine but mine. And if I SSH to another server, it doesn't happen either. So, there's something peculiar to my machine ... running Win2K, Radeon 7800, IBM Thinkpad, 1700MHz. And it's even strang

Re: Query- Gtk on Framebuffer

2005-09-01 Thread Attilio Fiandrotti
yes, this is how to compile gtkdfb on intel machines; mike emmel, gdk dfb developer, said he's going to port gdk library to match gtk 2.8.x libraries API, so i hope we'll have soon a newer version to test ciao attilio Albert Veli wrote: Hi Hazzy. I wrote down the steps when I compiled GTK+

Re: TreeView expander questions (again)

2005-09-01 Thread Tristan Van Berkom
Wallace Owen wrote: I'd like all the data I put in a treeview visible all the time (fully expanded). Is there a way to make new child rows in my treeview expended when the model tells the view that the row has been added, or must I call gtk_tree_view_expand_all()? Is there a way to make the exp

Re: TreeView expander questions (again)

2005-09-01 Thread Bill Medland
Since no-one appears to have replied here is my meagre help. (Sorry, but I'm new to it all too) On September 1, 2005 09:17 am, Wallace Owen wrote: > I'd like all the data I put in a treeview visible all the time > (fully expanded). Is there a way to make new child rows in my > treeview expended

RE: Query- Gtk on Framebuffer

2005-09-01 Thread Albert Veli
Hi Hazzy. I wrote down the steps when I compiled GTK+ for DirectFB. This was on intel, maybe it will work on ARM too. If any GTK+ gurus read this, comments on the compilation procedure are welcome. First I compiled the Linux kernel with support for framebuffer. In my case it was the latest kerne

Local on GTK windows

2005-09-01 Thread Tor Lillqvist
Deekshit Mantampady writes: > I wanted to know what all Locales are supported on GTK-Win32. To > to be specific Indian languages. Locales in what sense? The same GTK+ message catalogs are available (in a full installation) on Windows as on Unix. Taking a quick glance, I recognize at least hi (Hi

Local on GTK windows

2005-09-01 Thread Deekshit Mantampady
Hi all, I wanted to know what all Locales are supported on GTK-Win32. To to be specific Indian languages. I see some threads in this list. But not useful for me. Thanks Deekshit M ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org h

Re: GTKImage displays after long latency

2005-09-01 Thread Owen Taylor
On Wed, 2005-08-31 at 11:37 -0700, Barry Demchak wrote: > Hi, Owen -- > > No luck ... the thing reports 400x400 (pixels) ... > > ... and when I render it in Internet Explorer, the rendering is instant. > > Any other ideas?? Well, if something is really slow, running it under a debugger interru

Re: Combobox Focus Challenge!!!

2005-09-01 Thread Jan-Marek Glogowski
Hi Maybe someone should extend the API docs or add a FAQ: gtk_widget_grab_focus( GTK_BIN(combo)->child ); Jan-Marek ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

TreeView expander questions (again)

2005-09-01 Thread Wallace Owen
I'd like all the data I put in a treeview visible all the time (fully expanded). Is there a way to make new child rows in my treeview expended when the model tells the view that the row has been added, or must I call gtk_tree_view_expand_all()? Is there a way to make the expanders not show up? A

Re: Very slow gdk_draw_pixbuf

2005-09-01 Thread John Cupitt
Hi Barry, I think there must be something rather broken with your GTK install. I changed your example like this: #ifdef DRAW_PIXBUF if (pixbuf == NULL) pixbuf = gdk_pixbuf_new_from_file((gchar *) "mapserv.png", NULL); if (pixbuf) { GTimer *timer; timer = g_timer_new(); gdk_d

Very slow gdk_draw_pixbuf

2005-09-01 Thread Barry Demchak
Hi -- I am trying to use gdk_draw_pixbuf to render a .PNG into a window via a pixmap. (Actually, this is a much simplified case of trying to use librsvg to render into a window.) To make it as simple as possible, I grafted a gdk_draw_pixbuf call into scribble. When the rendering occurs, it t

Re: Yelp compilation problem

2005-09-01 Thread David Necas (Yeti)
On Thu, Sep 01, 2005 at 04:46:26PM +0530, harshavardhanreddy mandeepala wrote: > I am using FC3 > Now I want to install yelp-2.6.3 in to my linux syatem. > But when run ./configure command it is giving error message as fallows > > ... > > ... Package libgtkhtml-2.0 was not found in the pkg-config

Yelp compilation problem

2005-09-01 Thread harshavardhanreddy mandeepala
HI all I am using FC3 Now I want to install yelp-2.6.3 in to my linux syatem. But when run ./configure command it is giving error message as fallows /*** checking for gconf-2.0 gnome-vfs-2.0 >= 1.1 gtk+-2.0 >= 2.3.1 libbonobo-2.0 >= 1.108.0 libglade-2.0 >= 2.0.0 libg

RE: Query- Gtk on Framebuffer

2005-09-01 Thread Albert Veli
Maybe you can try GTK+ for DirectFB. http://www.directfb.org/index.php?path=Development%2FProjects%2FGTK%2B I succefully tried GTK+ with DirectFB on an intel-compatible processor card about a year ago. /Albert -Original Message- From: [EMAIL PROTECTED] on behalf of Attilio Fiandrotti

Re: Query- Gtk on Framebuffer

2005-09-01 Thread Attilio Fiandrotti
as far i know framebuffer support is broken and if you want to access the fb without using vesafb X drivers you've got to use the directframebuffer gdk backend.. or i am wrong? did someone succeded in compiling gtk+ with fb gdk backend? ciao attilio Hazzy wrote: Hi Everybody I want to dis