views:

232

answers:

3

Hi. I've developed a program that extensively uses wxPython - the wxWindow port for python.

Even though it is as mature library it is still very primitive and very programming oriented. Which is time consuming and not flexible at all.

I would love to see if there is something like Flex/Action Script where all the visual dimensions are configured by style sheets.

Any thoughts?

Thanks

+1  A: 

You could try XUL, the language the Firefox GUI uses. It's XML styled with CSS and scripted with Javascript.

http://www.mozilla.org/projects/xul/
http://en.wikipedia.org/wiki/XUL
http://developer.mozilla.org/en/XUL

Eevee
+4  A: 

PyQt with Qt style sheets might be a good fit. Naturally, you'd need to re-write quite a bit of your GUI layer for the toolkit change.

skymt
A: 

Thank You. It seems a very interesting library. I know I will have to re-do a lot of work, but the app is well structured in different layers, and won't be that hard. I will take a look on that with more details to see if covers all app needs in matter of components.

Thanks

pribeiro