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 wrote: > Thank you Tristan. > > I actually tried the --e

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 libr

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 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 contains c

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: 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 i

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 >> gtk_tree_view_colum