[Gtk-sharp-list] GConf Sharp question

Jeff Perrin jeffperrin@shaw.ca
Sat, 07 Dec 2002 13:52:52 -0700


On Sat, 2002-12-07 at 13:02, Rachel Hestilow wrote:
> I forgot to mention...the property editors don't use the schema
> information, so you can use the enum-handling property editors
> automatically. Just create the option menu property editor like in the
> GConf# tutorial (passing in the enum type), and it should just work.
> 
> -- Rachel

Thanks for your reply, Rachel.  I've worked around the issues so far by
just avoiding the EditorShell altogether, although I'll give it a try
once you get a chance to commit your fixes.

Oh, and while I'm at it, I've got a suggestion... Would it be possible
to have the gconfsharp-schemagen tool produce classes with the same name
as the specified output file?  eg:

gconfsharp-schemagen Test test.schema > UberTest.cs

would make a settings class like this:

namespace Test
{
	public class UberTestSettings
	{
		...
	}
	public class UberTestSettingsKeys
	{
		...
	}
}


Regards,

Jeff Perrin <jeffperrin@shaw.ca>