I have a clutter texture as my background . I need to put some clutter actors over it. is it possible to do it . Since i get the following error:

"invalid cast from `ClutterTexture' to `ClutterContainer' " 

Can any one help me ?

link|improve this question

48% accept rate
feedback

2 Answers

up vote 2 down vote accepted

ClutterTexture is not a container, i.e. it cannot contain other actors.

ClutterBox and ClutterGroup are containers available in Clutter; ClutterBox allows using different layout managers - like ClutterBinLayout:

http://developer.gnome.org/clutter/stable/ClutterBinLayout.html

or ClutterFixedLayout:

http://developer.gnome.org/clutter/stable/ClutterFixedLayout.html

you can also use ClutterGroup, and use constraints to maintain a layout:

http://developer.gnome.org/clutter/stable/ClutterConstraint.html

link|improve this answer
thanks for the reply. – northlondoner Oct 19 '11 at 11:14
feedback

It has been a while since I have used clutter but I will try to provide some insights. As the error says you cannot cast ClutterTexture to ClutterContainer. You can add actors only to container actors. If you want to setup background one of the options could be stacking of actors. You can stack other actors on top of the actor with background texture using layout managers. This link provides some details which I think can be useful in your case.
Hope this helps!

link|improve this answer
but the layout managers does not allow child to be fixed in a particular position. – northlondoner Oct 18 '11 at 16:33
1  
Can't ClutterFixedLayout or ClutterConstraint help you with that? – another.anon.coward Oct 18 '11 at 17:43
ok sure . i will check that . thanks for the reply. – northlondoner Oct 19 '11 at 6:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.