Re: How to hidden the Tree View Title bar

2006-09-18 Thread Enrico Tröger
On Mon, 18 Sep 2006 11:44:40 +0800, stny stny [EMAIL PROTECTED] wrote: Hi I'm using the Gtk Tree View with Gtk List Store to present list of data(gchar). But the size of Tree view can't display all details. So i want to hidden the title bar, get more area to present the data. I tried to

Notebook + Iconview

2006-09-18 Thread Madhusudan E
Hello All, I have inserted iconview inside a notebook page. Initially the focus is on the Notebook Tab. When I press down key, Notebook Tab loses the focus but the iconview item dosent get the focus. When I again press the Down key, the iconview item gets the focus. Effectively to pass the focus

getting symbols from dynamic modules

2006-09-18 Thread Felix Kater
Hi, g_module_* is a great thing -- I just wonder if there is a way to not create function pointers for each single function I need but just import all of them at once? Felix ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

documentation: g_slist_remove*, g_slist_delete*

2006-09-18 Thread Felix Kater
Hi, here some remarks about the documentation of some g_slist* functions: g_slist_remove(): It is not explicitly said if the data which the element points to is freed as well. If you read g_slist_remove_link() below then you might understand that, however, indirectly only.

getting symbols from dynamic modules

2006-09-18 Thread Tor Lillqvist
Felix Kater writes: g_module_* is a great thing -- I just wonder if there is a way to not create function pointers for each single function I need but just import all of them at once? Define a suite struct containing all the function pointers for your module, and then export just one

Re: getting symbols from dynamic modules

2006-09-18 Thread Tor Lillqvist
(Keeping discussion on the list) Felix Kater writes: Wow! That's cool. I'll keep that in mind for my next own modules -- however, in my case, I've got some DLLs given, and I can't modify them. These DLLs provide some hundreds of functions... Ah ok. Since the function's declarations are

flat-files (comma separated or delimited files)

2006-09-18 Thread rachit goel
is there any kit or util available with gtk+2.6 that allows to use flat-files as database and fire the queries on them like we have drivers for flat files in windows.. - All new Yahoo! Mail The new Interface is stunning in its simplicity and

Re: Database connection et al

2006-09-18 Thread Sucheta Ghosh
Thanks a lot, I have connected gtk+ and mysql successfully. Sucheta Ghosh ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Notebook + Iconview

2006-09-18 Thread Paul Pogonyshev
Madhusudan E wrote: Hello All, I have inserted iconview inside a notebook page. Initially the focus is on the Notebook Tab. When I press down key, Notebook Tab loses the focus but the iconview item dosent get the focus. When I again press the Down key, the iconview item gets the focus.