Questions tagged [clutter-gui]
8 questions
4
votes
1 answer
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…

Elliot Hughes
- 967
- 1
- 9
- 19
2
votes
1 answer
Clutter - high scene composition, performance and suggested practices
I am absolutely new to Clutter and Cogl and am supposed to work on an application, which will display rather large amounts of data (lists, endless menus, highly nested elements and more).
I have been working with many frameworks, especially on…

Martin Macak
- 3,507
- 2
- 30
- 54
1
vote
2 answers
Get current width and height of an Embed Clutter Stage
I'm using Clutter to compose an interactive/animate UI.
I'm using two box containers (ClutterBox) with an integrated FixedLayout, and I want to be able to rearrange those boxes onto screen using an hard-coded layout during (gtk-)window resizing.…

Archedius
- 2,887
- 3
- 20
- 24
1
vote
1 answer
Clutter on OSX -- "Unable to find suitable GL visual" error
I am looking to try out clutter (http://www.clutter-project.org) on an OSX machine (10.6). I installed the toolkit first by setting up required dependencies via macports and then installing clutter from source (with needed osx flags).
When I try to…

bibhas
- 77
- 1
- 7
0
votes
1 answer
Setting a ClutterImage using a GdkPixbuf
I'm trying to do what I would have thought would be trivial, but no matter what I try with a ClutterImage I get the error message Unable to load image data. The language I'm using is Vala, so there's a possibility that the Vapi file for Clutter is…

geoffjay
- 413
- 4
- 13
0
votes
1 answer
Clutter AttributeError: module object has no attribute Stage
I am absolute beginner for both Python and Clutter. I copied the following from from a website
import clutter
stage = clutter.Stage()
stage.set_size(400, 400)
label = clutter.Label()
label.set_text("Clutter Label Text")
# If no position is given…

Dinesh
- 1,825
- 5
- 31
- 40
0
votes
1 answer
Embed mozilla into clutter application
I want to embed mozilla inside my clutter application. One way is to use gtkmozembed and clutter-gtk; As mozilla has stopped supporting gtkmozembed, I am not able to use it. I couldn't use webkit because the page I'm going to render is written…

Bala
- 3
- 3
0
votes
2 answers
Clutter does not update screen outside of breakpoints
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…

Elliot Hughes
- 967
- 1
- 9
- 19