Re: using gtk in non-gtk apps

2006-09-20 Thread Ed Catmur
On Wed, 2006-09-20 at 11:46 -0400, T wrote: > I haven't seen any documentation or discussion in whether gtk can work > with non-gtk widgets/windows in same application. Is this possible? You need to combine the event loops. Gtk+ uses the GLib event loop, while Motif uses the Xt event loop. The w

Re: Notebook + Iconview

2006-09-20 Thread Paul Pogonyshev
Madhusudan E wrote: > It works by disabling the CAN_FOCUS on iconview widget. Mmm, I suppose that brokes/disables keyboard navigation in the widget. If that is true, I guess users will not welcome this... Paul ___ gtk-app-devel-list mailing list gtk-app

Re: using gtk in non-gtk apps

2006-09-20 Thread Michael Ekstrand
On Sep 20, 2006, at 10:46 AM, T wrote: > I haven't seen any documentation or discussion in whether gtk can work > with non-gtk widgets/windows in same application. Is this possible? I'm 99.5% sure that it isn't, at least not in any clean or reliable manner. Basically, you'd create a situation

using gtk in non-gtk apps

2006-09-20 Thread T
Hello all, We are transitioning to a platform-independent UI (i.e. using gtk). So far, we only want to use gtk in new widgets (such as new dialogs) and not change the main applications yet. But I am having problems integrating my first dialog using GtkDialog. On linux (using motif), I have gott

Dragging multiple objects from a TreeView

2006-09-20 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sorry folks, I must be sitting on my brains. I have a GtkTreeView, from which I want to drag (possibly) multiple (selected) rows. This is a sketch of the code so far: | GtkTreeView *itlist; ... | itlist_fill(GTK_WIDGET(itlist), dbh); | /* Thi

Re: Image Format Recognition Failure!!

2006-09-20 Thread Tor Lillqvist
Madhusudan E writes: > All the other dependent libraries of GTK are also static library. You might need the patch in http://bugzilla.gnome.org/show_bug.cgi?id=354184 Are you going to leave out the input modules and pixbuf theme engine? There is no support (yet) in GTK+ to include them statically

Image Format Recognition Failure!!

2006-09-20 Thread Madhusudan E
Hi All, I am trying to build Gtk+-2.6.10 to static library, target for x11. All the other dependent libraries of GTK are also static library. The configure command is as follows: ./configure -prefix=. --disable-shared -enable-static -with-included-loaders=png This is the error info: GDK_PIXBUF

RE: Notebook + Iconview

2006-09-20 Thread Madhusudan E
Hi, Thanks for your inputs. It works by disabling the CAN_FOCUS on iconview widget. I suppose this is true for even including dialogs in notebook. Rgds, Madhu -Original Message- From: Paul Pogonyshev [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 19, 2006 1:08 AM To: gtk-app-deve