[maemo-developers] hildonmm (was How to handle packaging for debian-native packages?)

2006-07-25 Thread Murray Cumming
 On a completely different subject, I know Murray is working on
 gtkmm bindings, but is anyone actively working on hildonmm bindings, or
 do they come (nearly) free with gtkmm? I'm looking forward to getting
 granule (flash card program) up and running natively on IT06.

They are in maemo's contrib svn. I'll get packages done after I've done
the gtkmm packages for maemo.


Murray Cumming
[EMAIL PROTECTED]
www.murrayc.com
www.openismus.com

___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


Re: [maemo-developers] libxv status?

2006-07-25 Thread Daniel Stone
On Tue, Jul 11, 2006 at 01:53:13PM +0300, ext Siarhei Siamashka wrote:
 When trying to compile mplayer, I have noticed that there is libxv
 packaged in maemo sdk and also it can also be installed using apt-get on
 the real device. It is useless at least for mplayer though:
   It seems there is no Xvideo support for your video card available.
   Run 'xvinfo' to verify its Xv support and read
   DOCS/HTML/en/video.html#xv!
   See 'mplayer -vo help' for other (non-xv) video out drivers.
   Try -vo x11
 
 http://www.internettablettalk.com/forums/showthread.php?t=2405
 
 Actually mplayer works surprisingly fast and has performance not much
 inferior to default video player on Nokia 770 that is using DSP. And
 that all is even without hardware colorspace conversion support!
 
 So is it possible to have an accelerated version of libxv on Nokia 770
 that would support colorspace conversion and scaling (no matter whether
 using video controller capabilities or relay this task to DSP)? So that
 a more universal and well supported ARM core could deal only with video
 stream decoding.

Hi,
We don't have any plans to do this for the 770.

Cheers,
Daniel


signature.asc
Description: Digital signature
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


Re: [maemo-developers] where can I find the kernel source of 770 ?

2006-07-25 Thread Frantisek Dufka

falls huang wrote:

Hello!

I have searched http://repository.maemo.org/pool , but I couldn't find
770's kerenl source . Where can I find it ?

Thanks in advance !



For IT2006
http://repository.maemo.org/pool/maemo2.0/non-free/k/
For IT2005
http://repository.maemo.org/pool/maemo1.1/free/k/kernel-source-2.6.12.3/

I wonder what makes the IT2006 sources non-free.

Frantisek
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


[maemo-developers] Re: [maemo-users] Using osso_iap_cb example

2006-07-25 Thread Jari Tenhunen
On Mon, Jul 24, 2006 at 11:24:24PM -0700, Brad Burleson wrote:
 I'm trying to capture the events generated when the 770 goes on and
 off-line, and I've written a simple test program just to mess around.  The
 callback gets registered, but I never see any output from the callback.  I
 suspect it's something simple.
 
 Anyone got any ideas?

(I think maemo-developers is a better forum for this)

It seems that the callback isn't actually registered (on D-BUS) until
you call some osso-ic function that does something on D-BUS. So, after
calling osso_iap_connect() you might have a better chance.

Of course there's then the side effect that you have requested a
connection and the system will try to keep it on indefinitely. If that's
a problem (you only want to monitor), you should be able to use the ICD
D-BUS API directly and listen for the status_changed signal:

http://www.maemo.org/platform/docs/howtos/howto_connectivity_guide.html#DBUSInterfaceICD



Cheers,
Jari

-- 
Jari Tenhunen, stardate [-29]6121.15
:wq
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


[maemo-developers] libebook

2006-07-25 Thread Pinghang.Koon
Dear all,

I am trying to use the EDS in my program.

ESourceList *slist;

if (! e_book_get_addressbooks (slist, NULL) ) {
  printf(Fail to get address book\n);
}

The program compiles but quit itself running the e_book_get_addressbooks().
The error message is:
GLIB CRITICAL ** GLib-GObject - gtype.c : initialization assertion failed, use 
IA__g_type_init() prior to this function
GLIB CRITICAL ** GLib-GObject - g_object_new: assertion `G_TYPE_IS_OBJECT 
(object_type)' failed
GLIB CRITICAL ** Glib-GObject - g_object_ref: assertion `G_IS_OBJECT (object)' 
failed

Please help, and thanks in advance.

Alvis Koon
Software Engineer
 
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


RE: [maemo-developers] libebook

2006-07-25 Thread Pinghang.Koon
Sorry disturbing, I found out the answer myself.

g_type_init() has to be done.

Yours faithfully,

Alvis Koon

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]
Sent: Tuesday, July 25, 2006 4:23 PM
To: maemo-developers@maemo.org
Subject: [maemo-developers] libebook

Dear all,

I am trying to use the EDS in my program.

ESourceList *slist;

if (! e_book_get_addressbooks (slist, NULL) ) {
  printf(Fail to get address book\n);
}

The program compiles but quit itself running the e_book_get_addressbooks().
The error message is:
GLIB CRITICAL ** GLib-GObject - gtype.c : initialization assertion failed, use 
IA__g_type_init() prior to this function
GLIB CRITICAL ** GLib-GObject - g_object_new: assertion `G_TYPE_IS_OBJECT 
(object_type)' failed
GLIB CRITICAL ** Glib-GObject - g_object_ref: assertion `G_IS_OBJECT (object)' 
failed

Please help, and thanks in advance.

Alvis Koon
Software Engineer
 
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


[maemo-developers] Re: libebook

2006-07-25 Thread Ross Burton
On Tue, 2006-07-25 at 11:22 +0300, [EMAIL PROTECTED] wrote:
 I am trying to use the EDS in my program.
 
 ESourceList *slist;
 
 if (! e_book_get_addressbooks (slist, NULL) ) {
   printf(Fail to get address book\n);
 }

I see you fixed the problem, but instead of iterating over the
addressbooks, just use e_book_new_system_addressbook().  There is only
one addressbook on the 770, and that function will return it (unless you
are creating other addressbooks, but I advise against that).

Ross 
-- 
Ross Burton mail: [EMAIL PROTECTED]
  jabber: [EMAIL PROTECTED]
 www: http://www.burtonini.com./
 PGP Fingerprint: 1A21 F5B0 D8D0 CFE3 81D4 E25A 2D09 E447 D0B4 33DF



___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


Re: [maemo-developers] How to handle packaging for debian-native packages?

2006-07-25 Thread Ed Bartosh
On Mon, 2006-07-24 at 23:00 -0400, ext Peter Kahle wrote:
 How are people handling packaging when the upstream already includes a 
 debian directory?
 
 On http://wiki.debian.org/Emdebian_Nokia there's mention of using a 
 DEBIAN_DIR environment variable to specify an alternate directory, but 
 it doesn't seem to work for me in scratchbox. Is there anything special 
 I have to do besides setting the variable?
You should use patched debian utilities, which understand DEBIAN_DIR
directory. Unfortunately they're not included into Maemo development
environment.
If you're interested I can put experimental emdebian devkit for
scratchbox somewhere for downloading. It contains patched
apt,dpkg,debhelper,cdbs and some other packaging tools.

Here is draft of emdebian packaging rules:
http://wiki.debian.org/Embedded_Debian_packaging_rules?highlight=%
28CategoryEmdebian%29
And there is also example of making Emdebian package out of Debian one.
If someone is interested in the approach I can put this example in
emdebian wiki.

 Alternately, would it work to 
 have more than one control file or other necessary files, and have the 
 first action in the rules set up the symlinks needed to set the 
 environment right?
 
It might work, but from my point of view it's difficult to maintain.

-- 
Ed Bartosh [EMAIL PROTECTED]
Nokia-M/Helsinki
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


Re: [maemo-developers] How to handle packaging for debian-native packages?

2006-07-25 Thread Peter Kahle

Ed Bartosh wrote:

On Mon, 2006-07-24 at 23:00 -0400, ext Peter Kahle wrote:
  
How are people handling packaging when the upstream already includes a 
debian directory?


On http://wiki.debian.org/Emdebian_Nokia there's mention of using a 
DEBIAN_DIR environment variable to specify an alternate directory, but 
it doesn't seem to work for me in scratchbox. Is there anything special 
I have to do besides setting the variable?


You should use patched debian utilities, which understand DEBIAN_DIR
directory. Unfortunately they're not included into Maemo development
environment.
If you're interested I can put experimental emdebian devkit for
scratchbox somewhere for downloading. It contains patched
apt,dpkg,debhelper,cdbs and some other packaging tools.
  
I don't really need that yet. For my purposes, knowing the package is 
using the preferred method is good enough. I'm not building debian and 
maemo packages from the same working directory, so shuffling directories 
a little once is acceptable.

Here is draft of emdebian packaging rules:
http://wiki.debian.org/Embedded_Debian_packaging_rules?highlight=%
28CategoryEmdebian%29
And there is also example of making Emdebian package out of Debian one.
If someone is interested in the approach I can put this example in
emdebian wiki.
  

Thanks for that, some more reading for me to do.

Peter
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


[maemo-developers] sounds through pygtk?

2006-07-25 Thread Thanos Panousis
Hello list,I am searching for a way to produce sounds in a pygtk application running on maemo. Like, a callback to a function that produces a dialog box, with a bell sound.Found no way to do it in python though. Any suggestions?

___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


Re: [maemo-developers] sounds through pygtk?

2006-07-25 Thread Gustavo Sverzut Barbieri

On 7/25/06, Thanos Panousis [EMAIL PROTECTED] wrote:

Hello list,

I am searching for a way to produce sounds in a pygtk application running on
maemo. Like, a callback to a function that produces a dialog box, with a
bell sound.

Found no way to do it in python though. Any suggestions?


I'm not aware of any GTK way to do it, but you can use GStreamer and
play anything with it.

Basically you use parse_launch() and give it a pipeline as a string...
you can test it using gst-launch (installable using apt-get from
terminal). For an python example for 770, see:
http://code.gustavobarbieri.com.br/eagle/examples/player-maemo.py

GStreamer bindings are provided with python2.4 runtime for Maemo2.0 (ITOS2006).

--
Gustavo Sverzut Barbieri
--
Jabber: [EMAIL PROTECTED]
  MSN: [EMAIL PROTECTED]
 ICQ#: 17249123
Skype: gsbarbieri
Mobile: +55 (81) 9927 0010
Phone:  +1 (347) 624 6296; [EMAIL PROTECTED]
  GPG: 0xB640E1A2 @ wwwkeys.pgp.net
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


Re: [maemo-developers] sounds through pygtk?

2006-07-25 Thread Simon Budig
Gustavo Sverzut Barbieri ([EMAIL PROTECTED]) wrote:
 On 7/25/06, Thanos Panousis [EMAIL PROTECTED] wrote:
  I am searching for a way to produce sounds in a pygtk application
  running on maemo. Like, a callback to a function that produces a
  dialog box, with a bell sound.
 
  Found no way to do it in python though. Any suggestions?
 
 I'm not aware of any GTK way to do it[...]

does gdk_beep() work?

Bye,
Simon

-- 
  [EMAIL PROTECTED]  http://simon.budig.de/
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


[maemo-developers] Add new language of input

2006-07-25 Thread Sergey Smirnov
Whether probably to add language of input for the virtual keyboard? I need Ukrainian language.
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers