RE: different data types between clist and mysql.

2010-04-22 Thread Murray Cumming
On Wed, 2010-04-21 at 10:19 -0400, Shawn Bakhtiar wrote: FYI for OSX users I had to install the GNU Readline for Libgda for this to compile. without GNU Readline it popes the following error: /bin/sh ../libtool --tag=CC --mode=link gcc -arch i386

Re: Setting a Tree View Cell to insensitive and uneditable

2010-04-22 Thread Freddie Unpenstein
From: dhk, Date: 20/04/2010 09:46: On 04/19/2010 01:34 PM, Nicolas Soubeiran wrote: When creating your model set a specific column with a boolean property. gtk_list_store_new(N_COLUMN, G_TYPE_STRING, G_TYPE_BOOLEAN); Then in the treeview create a column using

Re: Setting a Tree View Cell to insensitive and uneditable

2010-04-22 Thread dhk
On 04/22/2010 02:55 AM, Freddie Unpenstein wrote: From: dhk, Date: 20/04/2010 09:46: On 04/19/2010 01:34 PM, Nicolas Soubeiran wrote: When creating your model set a specific column with a boolean property. gtk_list_store_new(N_COLUMN, G_TYPE_STRING, G_TYPE_BOOLEAN); Then in the treeview

Callbacks when glade file is loaded using a dynamic library

2010-04-22 Thread dfg dfg
Hi everyone, Currently, I have built my main application using glade. This file is then loaded by a C application. I then created another interface using Glade. When my main application loads, it loads a .so library which contains code for this subsection (kind of like a plugin). The .so

Re: Callbacks when glade file is loaded using a dynamic library

2010-04-22 Thread Tristan Van Berkom
On Thu, Apr 22, 2010 at 7:21 PM, dfg dfg abx...@msn.com wrote: Hi everyone, Currently, I have built my main application using glade. This file is then loaded by a C application. I then created another interface using Glade. When my main application loads, it loads a .so library which

RE: Callbacks when glade file is loaded using a dynamic library

2010-04-22 Thread dfg dfg
Thank you Tristan. I actually tried the --export-dynamic flag before posting, but could not get it to work. I feel that it is most likely a problem in my makefile.am (I am using automake and libtool to generate the makefiles). Here is the make file for the compilation of the dynamic

Re: Callbacks when glade file is loaded using a dynamic library

2010-04-22 Thread Tristan Van Berkom
If you have symbols that need to be visible in 'myapp', they need to be exported to in order to by found by a g_module_lookup(); did you also export the symbols of you app ? Cheers, -Tristan On Thu, Apr 22, 2010 at 9:53 PM, dfg dfg abx...@msn.com wrote: Thank you Tristan. I actually