Re: [gtkmvc-users] Quickly templates feedback
Brought to you by:
cavada
From: Tobias W. <to...@ce...> - 2010-07-07 11:37:39
|
On 07.07.2010, at 06:53, Luke Morton wrote: > 1. Replace the Ubuntu icon. No idea what this means. > 2. Add a persistance example via SQLObject, GConf or GSettings From what I can see GSettings is just not ready yet. We discussed GConf a bit here last month. I wouldn't use SQLObject just for settings, unless you import it anyway to manage your data. There are samples for implicit storage in gtkmvc. I'm currently working on an application that can new/open/close files by passing an explicit connection on every call. Building pickle support into the framework won't really work. What I've been doing so far past was have the main Controller.__init__ call a method in its Model that cascades to the other models and decodes a JSON file. Same on quit. For this to get slower and use more memory than SQLObject you need several thousand records. |