Re: write a media player using gtk+

2007-11-30 Thread Kenneth Østby
of the problems for you ? That way you could just build a GUI around gstreamer. In any case, this sounds like a much more unifying way of doing it. However, if the point of the exercise is to learn by doing everything yourself, you're on your own :) -- Kenneth Østby [EMAIL PROTECTED] http

Re: Keybindings?!

2006-06-19 Thread Kenneth Østby
Hi. On 6/19/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Does anyone know of a tutorial (or even documentation with comments) that explains how to connect key presses to functions? Check this out: http://www.gtk.org/tutorial/x201.html, connect the right signal and you're on your way.

Transparent Windows

2005-07-22 Thread Kenneth Østby
Hey there, I'm looking for a way to make my GTK windows transparent, does anyone have any good example C source code for this out there? The effect I'm looking for is something like the one in gdesklets, but since gdesklets are written in Python, it wont help me all that much. in advance

Re: Is it possible to use int in labels?

2005-07-20 Thread Kenneth Østby
On 7/20/05, Søren Juul [EMAIL PROTECTED] wrote: Is it possible to use a int in labels? or is it only chars? Søren J take a look at the g_sprintf() function to convert it into a char*, or the g_string_sprintf to convert it into GString ___