FooSoft / mangle

Manga processor for the Kindle e-book reader.
https://foosoft.net/projects/mangle
Other
124 stars 24 forks source link

Convert to dynamically generated UI #3

Closed Leonidas-from-XIV closed 12 years ago

Leonidas-from-XIV commented 12 years ago

Hi,

PyQt can load UI files directly, it would be cool if you could switch to it. Then you wouldn't need to have pre-compiled not-to-be-modified source code (and a makefile, which is totally unnecessary then) in the repository and it would make development easier.

FooSoft commented 12 years ago

Woah, I had no idea that it was possible to do that. I shall have to look through the PyQt API for how this is done :D

Leonidas-from-XIV commented 12 years ago

Look for uic.loadUi(), there are a number of examples floating around the internet.

FooSoft commented 12 years ago

Oh, right on, thanks!