pribeiro
pribeiro

Reputation: 1251

Is there any Visual Library alternative to wxPython that supports CSS/Style Sheets?

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?

Upvotes: 1

Views: 1671

Answers (2)

skymt
skymt

Reputation: 3259

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.

Upvotes: 4

Eevee
Eevee

Reputation: 48536

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

Upvotes: 1

Related Questions