Hi in my hildon appl...

Minti Maemo

2007-11-23 13:05 UTC
Hi
in my hildon application window, I am using treeview and attaching "row-activated" signal to it
if my store is list_store then this signal is able to connect and calling respective callback function
but if store is tree_store it is not able to connect (not able to call callback function)

same code is running on linux without any bug!!!! (means tree_store is able to call its "row-activated"callback function)

How it is possible ?why it is happening? is there difference behavior of treeview (or treestore) on maemo ?
How can i connect this same signal to treeview for tree_store ?

Note: same code is working on linux

Thank you
sphurti







Get the freedom to save as many mails as you wish. To know how, go to http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html
  •  Reply

Re:

Markku Vire
Karma: 24
2007-11-23 14:02 UTC
Hi,

Maemo version of GtkTreeView doesn't send "row-activated" signal when
the model used is hierarchial :(

It looks like the upcoming Maemo 4.0 has fixed this (changed back to
normal gtk behaviour). If you need to get this working with older
versions of maemo, try using "force-list-kludge" ;)

-Markku-

Minti Maemo wrote:
> Hi
> in my hildon application window, I am using treeview and attaching "row-activated" signal to it
> if my store is list_store then this signal is able to connect and calling respective callback function
> but if store is tree_store it is not able to connect (not able to call callback function)
>
> same code is running on linux without any bug!!!! (means tree_store is able to call its "row-activated"callback function)
>
> How it is possible ?why it is happening? is there difference behavior of treeview (or treestore) on maemo ?
> How can i connect this same signal to treeview for tree_store ?
>
> Note: same code is working on linux
  •  Reply