RE: gtk cross compilation

2006-12-06 Thread Sergei Steshenko
--- "Shyjumon N." <[EMAIL PROTECTED]> wrote: > Hi Steve, > > Actually last week I cross compile gtk-directfb for ARM, you > won't get x11 lib in arm targets, they have only difectfb support, so > you need to cross compile gtk-directfb and also refer your root file > system and find o

RE: gtk cross compilation

2006-12-06 Thread Shyjumon N.
Hi Steve, Actually last week I cross compile gtk-directfb for ARM, you won't get x11 lib in arm targets, they have only difectfb support, so you need to cross compile gtk-directfb and also refer your root file system and find out whether there is support for gtk-directfb. And when you

Re: gtk cross compilation

2006-12-06 Thread Michael 'Mickey' Lauer
steve kirby wrote: > Has anybody gotten GTK+-2 to cross-compile for arm-linux? Yes, it works fine in OpenEmbedded (http://openembedded.org) -- I strongly recommend using that. Regards, :M: -- Michael 'Mickey' Lauer | IT-Freelancer | http://www.vanille-media.de ___

RE: gtk cross compilation

2006-12-06 Thread steve kirby
Hello, I am trying to do the exact same thing -- cross-compile GTK+-2.10.6 for arm-linux. "./configure --host=arm-linux" gets pretty far then stops with: checking for TIFFFlushData in -ltiff34... no configure: WARNING: *** TIFF loader will not be built (TIFF library not found

Re: Handling parent & child behaviour using tree view

2006-12-06 Thread Diego Zuccato
Saba Khan ha scritto: > HI, > Thank you for prompt reply. I am using this code so please check it out. > But when it reach to the method gtk_tree_model_iter_parent(), it shows > warning which is listed below. > if (gtk_tree_model_iter_parent(GTK_TREE_MODEL (TreeModel), &iter, > &cSessionIter)) As

Re: emulating a button click by software

2006-12-06 Thread Ricardo Cruz
Try sending an "activate" signal and see if that works. Otherwise, you may have to do a hack like: button->depressed = TRUE; gtk_widget_queue_draw (button); install a gtimeout for 250 ms or so and in timeout: button->depressed = FALSE; gtk_widget_queue_draw (button); Cheers, Ricardo Carlos

Re: Handling parent & child behaviour using tree view

2006-12-06 Thread Saba Khan
HI, Thank you for prompt reply. I am using this code so please check it out. But when it reach to the method gtk_tree_model_iter_parent(), it shows warning which is listed below. GtkTreeModel *pModel = gtk_tree_view_get_model (GTK_TREE_VIEW(m_pFileTreeView)); g_signal_connect((gpointer) m_pRen

Re: Handling parent & child behaviour using tree view

2006-12-06 Thread Yeti
On Wed, Dec 06, 2006 at 07:07:35AM +, Saba Khan wrote: > I used this method, gtk_tree_model_iter_parent() but i have problem like > this. > gtk_tree_store_iter_parent: assertion `child->stamp == GTK_TREE_STORE > (tree_model)->stamp' failed. > (:7868): Gtk-CRITICAL **: gtk_tree_store_set: asse