Re: GtkUIManager help

2005-11-24 Thread Adam
On Thursday 24 November 2005 21:46, John Cupitt wrote: > On 11/24/05, Adam <[EMAIL PROTECTED]> wrote: > > the string is a filepath i.e /home/adam/denemo/test.denemo. Is there > > anything that I should know about in converting from xmlChar * inserting > > into a GList and the extracting and conve

Re: GtkUIManager help

2005-11-24 Thread John Cupitt
On 11/24/05, Adam <[EMAIL PROTECTED]> wrote: > the string is a filepath i.e /home/adam/denemo/test.denemo. Is there > anything that I should know about in converting from xmlChar * inserting into > a GList and the extracting and converting to a gchar * ?? GTK+ is UTF-8 (almost) throughout. You n

Re: GtkUIManager help

2005-11-24 Thread Adam
On Thursday 24 November 2005 13:12, you wrote: [snip] > Probably not the best way :-( but it seems to work. > > Thanks for that it seems to work quite well. I'm now encountering a different issue. As the data I'm using to populate the menu is coming from an XML file I'm encountering the follow

Re: GtkUIManager help

2005-11-24 Thread John Cupitt
On 11/24/05, Adam <[EMAIL PROTECTED]> wrote: > In my application I want to be able to dynamically add items to a menu after a > configuration file has loaded and after a file has been opened. The menu's > use gtk_ui_manager to initialise but I am unsure how to go about implementing > to dynamic a

GtkUIManager help

2005-11-24 Thread Adam
Hi all, In my application I want to be able to dynamically add items to a menu after a configuration file has loaded and after a file has been opened. The menu's use gtk_ui_manager to initialise but I am unsure how to go about implementing to dynamic addition of menu items. Thanks in adva