clutter-gui

Introduction to the Python Clutter bindings?

I've had a search around but I haven't been able to find decent online tutorials for the recent clutter bindings. There are guides for 0.4 and 0.6 around but 0.8 is supposed to be very different making these guides kind of useless. Links or examples greatly appreciated! ...

Clutter does not update screen outside of breakpoints

Hi, I have some code: l1 = clutter.Label() l1.set_position(100,100) for i in range(0,10): l1.set_text(str(i)) time.sleep(1) That is designed to show a count from 1 to 10 seconds on the screen in clutter, but I'm getting a strange error. When I run the script normally the screen runs as it should do, but there is no text displayed u...

clutter UI library wrapper

I want to use Clutter library but not in C/C++ languages. I want a more high level, maybe dynamic language for easy & speed of development to prototype some UI ideas. Also, if posible, it must have stable & complete api coverage. ...