[maemo-developers] Gesture recognition

2006-06-07 Thread Jack Jansen
We want to do some simple gesture recognition on the 770, but either we're looking in the wrong places for more information or the whole gesture stuff is only available in the virtual keyboard popup. Does anyone have any pointers to where we should be looking? Initially we don't need anythi

Re: [maemo-developers] [vkb] gtk_context_im_show|hide

2006-06-07 Thread Antonio Gomes
On 6/7/06, Antti Ijäs <[EMAIL PROTECTED]> wrote: In case you just want show and hide the inputmethod once in a while, you can access the wannabe private imcontext member of GtkEntry (entry->im_context) as well. You don't necessarily have to create your own entries to do that ;) Actually I am s

Re: [maemo-developers] maemo/debian packaging tutorial (Helsinki, June 16. or 19.)

2006-06-07 Thread Marius Vollmer
Jussi Kukkonen <[EMAIL PROTECTED]> writes: > (any Nokia packaging people reading this may also volunteer now ;) Ok! :) I could spent some time for this, but I wouldn't really know what I can contribute... I could attend Lars' tutorial, to correct my own cowboy approach to Debian packaging and ju

Re: [maemo-developers] Too much sensibilities in my application

2006-06-07 Thread Markku Vire
Hi, Sorry about bit misleading information. "notify::value" is not working on maemo 1.x series, since value is not a property! (as you can see from af svn repository). This issue is fixed in later versions... -Markku- ___ maemo-developers mailing l

RE: [maemo-developers] Too much sensibilities in my application

2006-06-07 Thread Pinghang.Koon
So, do anyone knows from which Widget is the hildon_number_editor derived from. If it is derived from gtk entry then it is possible to use the "changed" signal. >From the maemo API, I think it would be better that they document the signals >that we can use. Yours faithfully, Alvis Koon ===

Re: [maemo-developers] Too much sensibilities in my application

2006-06-07 Thread Donars Guillaume
Hi, me again...On 6/7/06, Markku Vire <[EMAIL PROTECTED]> wrote: Hi,"notify::value" is just a signal like "changed". The difference is justthat it sends you an additional parameter, so you need to change yourcallback signature a bit:g_signal_connect(spin_button, "notify::value",    G_CALLBACK(on_va

Re: [maemo-developers] Too much sensibilities in my application

2006-06-07 Thread Markku Vire
Hi, "notify::value" is just a signal like "changed". The difference is just that it sends you an additional parameter, so you need to change your callback signature a bit: g_signal_connect(spin_button, "notify::value", G_CALLBACK(on_value_changed), NULL); ... void on_value_changed(GtkWidg

Re: [maemo-developers] Too much sensibilities in my application

2006-06-07 Thread Donars Guillaume
Hi,On 6/6/06, Gustavo Sverzut Barbieri <[EMAIL PROTECTED]> wrote: On Tuesday 06 June 2006 02:58, ext Donars Guillaume wrote:> Hi,> I'm using a gtkSpinButton widget.> In maemo sdk everything work well, but in the Nokia when I want to increase> or decrease with buttons, the step is 2 instead of 1, my