Re: [clutter] Clutter UI design tool

2008-10-14 Thread Emmanuele Bassi
k with the Glade maintainer. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Actor reference to its behaviors?

2008-10-14 Thread Emmanuele Bassi
ramework. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] pyclutter: Texture from pixbuf

2008-10-14 Thread Emmanuele Bassi
On Tue, 2008-10-14 at 18:10 +0200, Bastian Winkler wrote: > On Tue, Oct 14, 2008 at 04:03:58PM +0100, Emmanuele Bassi wrote: > > don't. if you really need, use the set_from_rgb_data() method with the > > various values from GdkPixbuf: there's a direct mapping from

Re: [clutter] Does pyclutter require GTK/X11?

2008-10-14 Thread Emmanuele Bassi
On Mon, 2008-10-06 at 09:30 -0400, Jason Tackaberry wrote: > On Fri, 2008-10-03 at 19:58 +0100, Emmanuele Bassi wrote: > > using python on embedded devices in my experiene isn't such a good idea, > > especially for long running tasks, given the tendency of python < 2.6 to &g

Re: [clutter] pyclutter: Texture from pixbuf

2008-10-14 Thread Emmanuele Bassi
a direct mapping from what's required from ClutterTexture (width, height, rowstride, alpha channel and pixel data) to what GdkPixbuf provides. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Status of the python bindings

2008-10-14 Thread Emmanuele Bassi
"Frédéric Van der Essen" > <[EMAIL PROTECTED]> wrote: > Hello, > It seems that the latest python bindings are for clutter 0.6.2 > only. > Is pyclutter still maintained ? When is the next release > planned ? > > Th

Re: [clutter] Status of the python bindings

2008-10-14 Thread Emmanuele Bassi
only interested in using a library and not contributing to it. [1] that much I already know. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Actor reference to its behaviors?

2008-10-15 Thread Emmanuele Bassi
ed, and you have access to the scenegraph) or your framework. I personally doubt how much useful would this be - unless you can present a use case where this information is impossible to retrieve with the current API. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

[clutter] [ANNOUNCE] Clutter-GTK 0.8.2 released (stable)

2008-10-15 Thread Emmanuele Bassi
te the layout of the stage when getting an allocation from GtkClutterEmbed. - Fix bug #1114 - Mouse wheel events ignored in GtkClutterEmbed [Pierre-Luc Beaudoin] - Add more API for extracting the style colors from a GtkWidget ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Tech

[clutter] [ANNOUNCE] PyClutter 0.8.0

2008-10-15 Thread Emmanuele Bassi
lable at: http://www.clutter-project.org/ ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Status of the python bindings

2008-10-18 Thread Emmanuele Bassi
x a pygobject based binding (like pyclutter) and a ctypes-based one. so your application would either be completely using ctypes or completely using pyclutter. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Re: clutter_stage_read_pixels using clutter-gtk

2008-10-31 Thread Emmanuele Bassi
*not* the default stage. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Getting started on OS X (fink)

2008-11-01 Thread Emmanuele Bassi
t; sudo fink install glibc2-dev pango1-xft2-ft219-dev > > It shouldn't take long that someone makes a clutter package to fink > itself. Then all that would be needed is: > > sudo gink install clutter Clutter already builds with jhbuild[0] and MacPorts. if yo

Re: [clutter] fps agnostic timeline

2008-11-02 Thread Emmanuele Bassi
line will drop frames to keep the length of the animation constant - be that animation set using the number of frames or the duration in milliseconds. frames will only be dropped because clearly adding frames at random is not going to do what you think it does. ciao, Emmanuele. -- Emmanuele Bas

Re: [clutter] zooming and panning in clutter

2008-11-04 Thread Emmanuele Bassi
On Tue, 2008-11-04 at 14:49 +0100, Leonard Ritter wrote: > On Tue, Nov 4, 2008 at 2:37 PM, Emmanuele Bassi > <[EMAIL PROTECTED]> wrote: > most of tidy is implementable in pure python. I removed the > tidy python > bindings because they were not co

Re: [clutter] zooming and panning in clutter

2008-11-04 Thread Emmanuele Bassi
around the cogl_translate() function, which is wrapped in pyclutter as clutter.cogl.translate(x,y,z). I suggest you also have a look at GtkClutterViewport in clutter-gtk trunk on how to use GtkAdjustments with cogl_translate() and a ClutterActor. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] GtkClutterViewport

2008-11-04 Thread Emmanuele Bassi
e viewport will not automagically update its size: you'll have to check for window state/allocation changes and update the size of the viewport. remember: the stage is limitless and does not impose any size on its children. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] gnome-shell / mutter / ARB_texture_rectangle

2008-11-05 Thread Emmanuele Bassi
small features to the stable branch. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] actor cloning

2008-11-06 Thread Emmanuele Bassi
new (CLUTTER_TYPE_LABEL, "text", clutter_label_get_text (orig), "font-name", clutter_label_get_font_name (orig), NULL); ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] [patches] re-enable ARB_texture_rectangle

2008-11-06 Thread Emmanuele Bassi
> compat, you'd just want to change existing functions.) as a side note: it would be cool to update cogl_texture_new() and friends in COGL trunk to actually take a bitfield, so that 1.0 will hopefully be future-proof in terms of texture features exposed. ciao, Emmanuele. -- Emmanuele B

Re: [clutter] actor cloning

2008-11-06 Thread Emmanuele Bassi
c function for objects then you might as well write your own public function. if you don't, a g_object_clone() might as well be a g_object_new() invocation as I wrote. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Python Clutter newbie questions

2008-11-06 Thread Emmanuele Bassi
tor that tracks button press and release events, and emit a "clicked" signal using the same semantics as the GtkButton widget in GTK+. it's 130 lines long, but contains the actor class, the test and some boilerplate for gobject properties and signal definitions. -- Emmanuele Bassi

Re: [clutter] Combination Events

2008-11-08 Thread Emmanuele Bassi
; - a left click with the shift key held down ditto as above. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Dependency: clutter-box2d requires clutter version 0.8 but repo has clutter version 0.9

2008-11-11 Thread Emmanuele Bassi
et. clutter core trunk is still in flux, so you should use the clutter-0-8 branch instead. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

[clutter] clutter 1.0 roadmap - draft for the clutter mailing list

2008-11-12 Thread Emmanuele Bassi
t, but we expect the 1.x API series to continue for at least a couple of years. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] GtkClutterViewport

2008-11-13 Thread Emmanuele Bassi
. it's a "proof-of-concept turned useful" kind of actor. the logic it provides is easily re-implementable into your own containers. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center #include #include #include int main (int argc, char *argv[]) { ClutterAct

RE: [clutter] clutter 1.0 roadmap - draft for the clutter mailing list

2008-11-17 Thread Emmanuele Bassi
ing might be added - it all depends on how large the window before the 0.9 release is. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] ClutterMotionEvent and moving clutter actor

2008-11-17 Thread Emmanuele Bassi
motion events frequency setting will still be limited superiorly by the default frame rate setting, which is set by: clutter_set_default_frame_rate() the default frame rate controls the default setting for the timelines as well, so you should be careful when overriding this value. ciao, Emmanue

Re: [clutter] Python Clutter 3D Animation help

2008-11-17 Thread Emmanuele Bassi
+ [0] http://www.clutter-project.org/docs/clutter/stable/ClutterAlpha.html -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] does stage in GtkClutterEmbed support all actor signals?

2008-11-18 Thread Emmanuele Bassi
the ClutterEmbed widget should also emit the ::activate signal on the embedded stage, and focust-out-event should emit the ::deactivate signal, at least to maintain the invariant. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Trouble setting up clutter-vala with latest vala

2008-11-19 Thread Emmanuele Bassi
e project with a proper bug tracking system) to open a bug on bugzilla; the worst that can happen is that I, or somebody else, closes it as RESOLVED NOTABUG - usually with some comment on why. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Trouble setting up clutter-vala with latest vala

2008-11-19 Thread Emmanuele Bassi
lic Group (); public void remove_all (); } which should turn off the automatic invocation of a non-existing function _construct(). ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Trouble setting up clutter-vala with latest vala

2008-11-19 Thread Emmanuele Bassi
On Wed, 2008-11-19 at 21:51 +, Emmanuele Bassi wrote: > public class Group : Actor, Scriptable, Container { > public int get_n_children (); > public weak Clutter.Actor get_nth_child (int index_); > [CCode (type = "ClutterActor*", has_construct_function

Re: [clutter] Trouble setting up clutter-vala with latest vala

2008-11-21 Thread Emmanuele Bassi
On Thu, 2008-11-20 at 00:12 +, Gordon Allott wrote: > Emmanuele Bassi wrote: > > On Wed, 2008-11-19 at 21:51 +, Emmanuele Bassi wrote: > > I fixed the stable branch[0] of clutter-vala, which was missing some > > annotations. I did not test it with latest vala,

Re: [clutter] [Perl] unicode, <..>, and deployment questions;

2008-11-24 Thread Emmanuele Bassi
X-inspired text justification and anti-aliasing engine > with a 5-6MB of constantly updating text-to-graphics cache being > provided via a kind of list proxy object. This involves sub-pixel > scrolling with a variable speed of 2 to 200 lines per second, > actually. Trying to write a te

Re: [clutter] Trouble setting up clutter-vala with latest vala

2008-11-25 Thread Emmanuele Bassi
On Tue, 2008-11-25 at 20:28 +, Gordon Allott wrote: > Emmanuele Bassi wrote: > > On Thu, 2008-11-20 at 00:12 +, Gordon Allott wrote: > > I've fixed the current vapi file for clutter-0.8 so it should be safe > > again. > > > > ciao, > > E

[clutter] [ANNOUNCE] Clutter 0.8.4 (core) - Stable release

2008-12-01 Thread Emmanuele Bassi
le Gwenole Beauchesne Have fun with Clutter! ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

[clutter] [report] the clutter weekly report - w49

2008-12-05 Thread Emmanuele Bassi
ble branch) + 15 bugs with 1.0 target milestone (bugs that should be fixed in trunk before 1.0.0 is released) ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Rounded rectangle with clutter-perl

2008-12-08 Thread Emmanuele Bassi
e. ideally, though, creating a class using Glib::Object::Subclass and overriding the PAINT method would be a better idea, since you can then install properties for the arc radius and eventual step, and control them programmatically or via Clutter::Script instead of hard-coding them. ciao, Emmanuel

Re: [clutter] Perl timeline questions

2008-12-08 Thread Emmanuele Bassi
ng a function usually prevents Alphas from working. :-) 'undef' is a valid value because you can provide an alpha function using the set_func() method. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] pyclutter revision 3576

2008-12-09 Thread Emmanuele Bassi
a beta release, now; 0.8.2 will be the first real stable release of pyclutter 0.8. > and also introduces some minor bugs. > A patch is on bugzilla #1337 thank you very much for the patch. it just landed in the pyclutter-0-8 branch and will be in pyclutter 0.8.2. ciao, Emmanuele. -- E

Re: [clutter] pyclutter revision 3576

2008-12-09 Thread Emmanuele Bassi
On Tue, 2008-12-09 at 12:38 +0100, Bastian Winkler wrote: > On Tue, Dec 09, 2008 at 10:26:05AM +0000, Emmanuele Bassi wrote: > > On Tue, 2008-12-09 at 09:12 +0100, Bastian Winkler wrote: > > > > > using floating point values for sub-pixel precision is IMHO a very goo

Re: [clutter] pyclutter revision 3576

2008-12-09 Thread Emmanuele Bassi
On Tue, 2008-12-09 at 12:19 +, Neil Roberts wrote: > On Tue, 2008-12-09 at 11:56 +0000, Emmanuele Bassi wrote: > > > I'll have to add specific, pyclutter-only boxed types for the various > > CoglHandle types. that should give me enough leverage to use pygobject's

[clutter] [ANNOUNCE] PyClutter 0.8.2 (stable)

2008-12-10 Thread Emmanuele Bassi
ontributors of PyClutter: * Thomas Steinacher * Gordon Allot Special thanks to Bastian Winkler, for the COGL bindings testing and solving the infamous linker issue on 64bit and nvidia GPUs. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

[clutter] Clutter repository migration to git

2008-12-10 Thread Emmanuele Bassi
fied with another email on the Clutter mailing list, but for now you can still access it. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

Re: [clutter] Problems with clutter sharp and threading

2008-12-11 Thread Emmanuele Bassi
#x27;ll be guaranteed to operate in the main thread. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to [EMAIL PROTECTED]

[clutter] [report] the clutter weekly report - w50

2008-12-13 Thread Emmanuele Bassi
, or may be fixed in trunk and backported to the current stable branch) + 17 bugs with 1.0 target milestone (bugs that should be fixed in trunk before 1.0.0 is released) ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Bindings status

2008-12-14 Thread Emmanuele Bassi
lists.o-hand.com/clutter/1420.html > > That is a 0.7 while clutter is on 0.8 version. > Looks like the most updated and supported bindings are the ones for > python, am I wrong? and perl, followed by the vala ones - which are usually broken by valac updates. ciao, Emmanuele. --

Re: [clutter] Python bindings

2008-12-17 Thread Emmanuele Bassi
it inside the bindings. you can use: def idle_func (data): clutter.threads_enter() # your code clutter.threads_leave() return ret_val gobject.idle_add(idle_func, data) instead, which is exactly what the C function does. ciao, Emmanuele. -- Emmanuele Bassi, Int

[clutter] [report] the clutter weekly report - w51

2008-12-19 Thread Emmanuele Bassi
bugs that should be fixed in trunk before 1.0.0 is released) ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Re: Disable Slicing

2008-12-22 Thread Emmanuele Bassi
actor (if at all needed). or maybe I'm simply on crack - I admit the Texture code feels like it's composed of heuristics that have been collected on the various GL implementations to shield the developer from actually care about all this mess. :-) in any case, fixing pyclutter is not a bi

Re: [clutter] Re: Disable Slicing

2008-12-22 Thread Emmanuele Bassi
On Mon, 2008-12-22 at 14:04 +, Emmanuele Bassi wrote: > in any case, fixing pyclutter is not a big deal. done, now clutter.Texture() has two optional arguments: disable_slicing max_waste which map to the corresponding contruct-only properties. ciao, Emmanuele. -- Emmanuele Ba

Re: [clutter] Regarding ClutterFixed

2008-12-24 Thread Emmanuele Bassi
ntly re-evaluating part of the decisions we made with regards to fixed points and units, but that is all 1.x material. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Repositioning children of a ClutterGroup

2008-12-25 Thread Emmanuele Bassi
self._layout_manager = manager [NOTE: all this code is untested and should be regarded as pseudo-code strikingly similar to Python] trying to force all of this on a ClutterGroup is never going to work. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Repositioning children of a ClutterGroup

2008-12-26 Thread Emmanuele Bassi
ou can do manual transitions and animations as a fixed layout and then return to a non-fixed layout when you're done by unsetting :fixed-position-set and queueing a relayout. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Is clutter project plan to add the accessibility support?

2009-01-05 Thread Emmanuele Bassi
; Any suggestion is appreciate! Clutter does not support accessibility technologies, at the moment. the correct way to add support would be having ClutterActor implement the ATK interfaces. at the moment, there are no plans to add this support for 1.0, but it's on the list for post-1.0. ciao, Emm

Re: [clutter] Patch: rename libtidy to libclutter-tidy.

2009-01-08 Thread Emmanuele Bassi
made *any* guarantee on *any* kind of stability -- ABI, or API-wise. we also never made a release. Tidy is a "toy" toolkit. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Patch: rename libtidy to libclutter-tidy.

2009-01-08 Thread Emmanuele Bassi
On Thu, 2009-01-08 at 11:23 -0500, Pat Suwalski wrote: > On Thu, 2009-01-08 at 15:58 +0000, Emmanuele Bassi wrote: > > no, it can't. the W3C tidy library shared object is called tidy.so; > > also, there's a reason for tidy to use pkg-config, and it's not just for

[clutter] [report] clutter weekly report - w2

2009-01-12 Thread Emmanuele Bassi
e 1.0.0-rc1 - Clutter 1.0.0 is scheduled for 2009-02-27 = bugzilla = + 118 bugs opened against Clutter core + 10 bugs with 0.8 target milestone (bugs that can, or may be fixed in 'master' and backported to the current stable branch) + 16 bugs with 1.0 target milestone (bugs that sh

[clutter] [ANNOUNCE] Clutter 0.8.6 (core) - Stable release

2009-01-14 Thread Emmanuele Bassi
4 and 0.8.6 --- Emmanuele Bassi (15): 2008-12-05 Emmanuele Bassi [backport] Do not modify parameters in place [backport] Remove a double semi-colon typo Merge branch 'clutter-0-8' of ssh://gitser...@git.clutter-project.org/clu

Re: [clutter] cogl_texture_new_from_bitmap

2009-01-16 Thread Emmanuele Bassi
nd today wanted to try the > latest, no luck. can you try bisecting and finding the commit that broke gles 1.1? we routinely test on the simulator, but if you have a real platform then you can help us help you. :-) ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center

[clutter] [report] clutter weekly report - w3

2009-01-16 Thread Emmanuele Bassi
t Clutter core + 10 bugs with 0.8 target milestone (bugs that can, or may be fixed in 'master' and backported to the current stable branch) + 16 bugs with 1.0 target milestone (bugs that should be fixed in 'master' before 1.0.0 is released) ciao, Emmanuele. -- Emmanuele Ba

Re: [clutter] cogl_texture_new_from_bitmap

2009-01-16 Thread Emmanuele Bassi
nding it are related to an x11 race, instead -- so, if you are using eglx there might be issues with the GL viewport update. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] cogl_texture_new_from_bitmap

2009-01-16 Thread Emmanuele Bassi
he native EGL backend on a framebuffer or the EGLX backend? if you are using the latter, are you also using a window manager or not? thanks, Emmanuele. > Emmanuele Bassi wrote: > > On Fri, 2009-01-16 at 12:59 -0500, Vlad Seryakov wrote: > >> This is the last commit when test-actor

Re: [clutter] cogl_texture_new_from_bitmap

2009-01-16 Thread Emmanuele Bassi
to ripercussions in other places. the quartz and win32 backends will probably be affected as well, so we'll have to check next week. in the meantime, could you please check that the fix is correct? thanks in advance! ciao, Emmanuele. > Emmanuele Bassi wrote: > > On Fri, 2009-01-

Re: [clutter] Need a ClutterBackend 'redraw' signal

2009-01-18 Thread Emmanuele Bassi
(which is invoked when something queues a redraw on a ClutterStage), block it, queue a redraw on your redraw cycle and then let that cycle call clutter_redraw(). this won't be backported to the current stable cycle, though. otherwise, I need to understand what are you trying to achieve. cia

Re: [clutter] Need a ClutterBackend 'redraw' signal

2009-01-19 Thread Emmanuele Bassi
ne really; this is desirable anytime Clutter is not the only thing drawing to a toplevel window). To override the default, you would connect to ::queue-redraw and then stop the signal emission. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To un

Re: [clutter] Text size

2009-01-20 Thread Emmanuele Bassi
go > beyond it? set the :ellipsize property to TRUE; this will ellipsize the text if it goes beyond the allocated width. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Text size

2009-01-21 Thread Emmanuele Bassi
On Tue, 2009-01-20 at 16:39 -0500, Jason Tackaberry wrote: > On Tue, 2009-01-20 at 20:39 +0000, Emmanuele Bassi wrote: > > set the :ellipsize property to TRUE; this will ellipsize the text if it > > goes beyond the allocated width. > > A nice feature (which we implement ou

Re: [clutter] box2d and python

2009-01-22 Thread Emmanuele Bassi
, but probably will have to wait until clutter-1.0 is out, and after clutter-box2d has been updated to use the new API. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] cogl texture and cairo surface

2009-01-23 Thread Emmanuele Bassi
On Fri, 2009-01-23 at 08:37 +0100, Vincent Lauria wrote: > First sorry for my bad English. I drow with Cairo un a texture Cogl, you should use clutter-cairo, then: it handles the upload of the cairo image surface to a COGL texture for you. ciao, Emmanuele. -- Emmanuele Bassi, Intel O

[clutter] [report] clutter weekly report - w4

2009-01-23 Thread Emmanuele Bassi
;master' and backported to the current stable branch) (-10% since last week) + 13 bugs with 1.0 target milestone (bugs that should be fixed in 'master' before 1.0.0 is released) (-18% since last week) ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

[clutter] [ANNOUNCE] Clutter 0.9.0 (core) - developers snapshot

2009-01-30 Thread Emmanuele Bassi
o #1409 - Use G_SIGNAL_RUN_LAST with ::queue-redraw signal o #1410 - [patch] Implements a generic ClutterActorClone class without fbos o #1414 - avoid relayout of ClutterTexture if not syncing size o #1415 - short-circuit setting same clip again see the attached shortlog for a list of contr

[clutter] [report] clutter weekly report - w5

2009-01-30 Thread Emmanuele Bassi
hat should be fixed in 'master' before 1.0.0 is released) ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

[clutter] Re: [report] clutter weekly report - w5

2009-01-30 Thread Emmanuele Bassi
On Fri, 2009-01-30 at 15:26 +, Emmanuele Bassi wrote: > hi everyone; > > clutter 1.0 is now really near. clutter 0.9.0 is going to be released > very soon, still one branch left to be merged. clutter 0.9.0 is going to > be "API slushy" -- which means that dev

Re: [clutter] Using Clutter for OSD graphics / transparent window

2009-01-31 Thread Emmanuele Bassi
reign() inside the realize() virtual function -- after you chained up to the parent implementation. then write the Perl bindings using the perl-Glib machinery that clutter-perl uses, and use the custom class inside your Perl code. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Using Clutter for OSD graphics / transparent window

2009-02-10 Thread Emmanuele Bassi
a bug in Bugzilla? ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Using Clutter for OSD graphics / transparent window

2009-02-10 Thread Emmanuele Bassi
orrectly. > I borrowed the idea from QT example called ARGB. it's probably a blending issue. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] What hardware has Clutter been known to run on?

2009-02-19 Thread Emmanuele Bassi
anyway, since you have to set up your own pipeline (something that Clutter does for you). unless you're using GL-specific API calls, Clutter applications are portable across GL, GLES 1.1 and GLES 2.0. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

[clutter] [ANNOUNCE] Clutter 0.8.8 (core) - Stable release

2009-02-21 Thread Emmanuele Bassi
6 and 0.8.8 --- Emmanuele Bassi (7): Pots-release bump to 0.8.7 Bug 1365 - ClutterEntry doesn't get the cursor when it should [behaviour-path] Bail out if we don't have knots [behaviour] Do not notify empty behaviours [backport] Upd

[clutter] [ANNOUNCE] Clutter-GTK 0.8.3 released - Stable release

2009-02-21 Thread Emmanuele Bassi
colors from any GtkWidget directly into ClutterColor structures and for using GdkPixbuf instances, stock icons and named icons with any ClutterTexture. Requirements: - clutter >= 0.8.7 - gtk+ >= 2.12 List of changes between 0.8.2 and 0.8.3 --- Emmanuele

[clutter] [report] clutter weekly report - w6 to w8

2009-02-21 Thread Emmanuele Bassi
stone (bugs that should be fixed in 'master' before 1.0.0 is released) ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] how to implement the Container interface in python

2009-02-23 Thread Emmanuele Bassi
. If I don't call clutter.Container's > methods, what's the use of inheriting from clutter.Container? I was > thinking I could leverage the existing implementation of > clutter.Container's method. they don't have any implementation. :-) ciao, Emmanuele. -- Emmanuele

Re: [clutter] API inconsistency

2009-02-25 Thread Emmanuele Bassi
nst gchar *color) > > it would really help to make other languages bindings automatically. > So would it be possible for any future version of clutter to use "self" > objects as a first parameter? -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Dependencies

2009-02-26 Thread Emmanuele Bassi
you will need pangocairo if you want to use Clutter. if you don't want to use gdk-pixbuf because you don't have gtk+ ported, you can use: --with-imagebackend=internal when configuring Clutter -- but beware that the internal image loader only supports JPEG and PNG, and it's not officia

Re: [clutter] API inconsistency

2009-02-26 Thread Emmanuele Bassi
On Thu, 2009-02-26 at 16:27 +0100, Michal Kolodziejczyk wrote: > Emmanuele Bassi wrote: > > On Wed, 2009-02-25 at 17:30 +0100, Michal Kolodziejczyk wrote: > >> Hello, > >> would it be possible to make API more consistent? > > > > it depends on how you defin

Re: [clutter] Clutter on underpowered graphic cards?

2009-02-27 Thread Emmanuele Bassi
nd by tiling textures if the original is too big. Clutter already does slicing by default for every texture that does not fit the texture memory. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Clutter on underpowered graphic cards?

2009-02-27 Thread Emmanuele Bassi
the strongest indication that it's a bug in the mipmapping implementation of the openchrome driver. writing a simple GL application that enables mipmapping should definitely prove the theory, and allow you to open a bug against the openchrome drivers. ciao, Emmanuele. -- Emmanuele Bassi, In

Re: [clutter] RefCount "safety" (Was: API inconsistency)

2009-02-27 Thread Emmanuele Bassi
On Fri, 2009-02-27 at 11:56 +0100, Michal Kolodziejczyk wrote: > Emmanuele Bassi wrote: > > > the window for changing this, though, is closing fast. I'll wait until > > next week to do the change. > > So I have another question regarding the reference counting in

Re: [clutter] Transparent ClutterStage

2009-03-07 Thread Emmanuele Bassi
ply cleanly against that: please, don't use SVN to submit patches. the subversion repository is read-only, and Clutter moved to git in December 2008. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Threads with pyclutter

2009-03-07 Thread Emmanuele Bassi
ut_* family of functions are not directly bindable in Python because the handler must also release the python interpreter lock before acquiring the Clutter main lock. in short, they require to be reimplemented in C/Python. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -

Re: [clutter] About clutter_actor_set_parent and reference counting

2009-03-07 Thread Emmanuele Bassi
n you set the parent of an actor you are effectively saying that the parent now owns the child; in GObject-land this means that the parent takes a reference on the child, and releases is when unparent() is called on the child itself. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Techn

Re: [clutter] Vala bindings - keysyms

2009-03-08 Thread Emmanuele Bassi
ug is solved for GDK, Clutter will follow. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] Leaking memory

2009-03-08 Thread Emmanuele Bassi
s found using a proper Valgrind session are bugs, and for those we have: http://bugzilla.openedhand.com/enter_bug.cgi?product=Clutter so if you find any leak, file a bug attaching the log from Valgrind. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] clutter-cairo extension

2009-03-08 Thread Emmanuele Bassi
e, either explicitly using: del(cr) or letting the garbage collector do its job when the cr symbol goes out of scope (I prefer explicit deletion). ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] smoothstep_inc

2009-03-10 Thread Emmanuele Bassi
iao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

Re: [clutter] smoothstep_inc

2009-03-10 Thread Emmanuele Bassi
iar with them, and if you look for sample animations it's far easier to find something using an easing, in-out cubic mode than a smoothstep one. ciao, Emmanuele. > Emmanuele Bassi wrote: > > On Mon, 2009-03-09 at 22:50 -0400, Vlad Seryakov wrote: > > > >> What

Re: [clutter] Leaking memory

2009-03-13 Thread Emmanuele Bassi
ons. the memory usage is stable. please, read: http://library.gnome.org/devel/glib/stable/glib-Memory-Slices.html and: http://library.gnome.org/devel/gtk-faq/stable/x702.html if you use valgrind following the instructions of the wiki page I linked in my first reply you'll see that the

Re: [clutter] use pango context ?

2009-03-16 Thread Emmanuele Bassi
not going to be backported. ciao, Emmanuele. -- Emmanuele Bassi, Intel Open Source Technology Center -- To unsubscribe send a mail to clutter+unsubscr...@o-hand.com

[clutter] [ANNOUNCE] Clutter 0.9.2 (core) - developers snapshot

2009-03-16 Thread Emmanuele Bassi
nhance the bind API Damien Lespiau (6): [gitignore] update gitignore files for tests/ [build] Beautify autotools' output [build] Add dolt [build] Fix interaction between shave, gtk-doc and libtool 1.x [build] Fix dist for the newly introduced m4 macro directory

<    1   2   3   4   5   6   >