Python

2008-01-22 Thread Sergio Galán
Hi I'm new in the list and new in maemo programming. Nowadays i'm writing python code related with widgets (hildon desktop plugins) and e-learning cms. But I have a problem. Following the example code that i found here:

undefined symbol: _Py_TrueStruct

2008-02-12 Thread Sergio Galán
Hi, After some busy weeks, I've back to maemo plugin programming with python. I used these packages (Thanks Benoit !) but doesn't work for me in my N800. Nothing happens and I don't know how to see error messages. In scratchbox, I compiled the python desktop plugin loader following this tutorial

Re: undefined symbol: _Py_TrueStruct

2008-02-14 Thread Sergio Galán
Thanks, The code works, but only inside scratchbox, not in the N800. In Scratchbox I see all the error messages so I can try to solve the problems, but, ¿Does someone know how to see error messages from graphical applications which are running on the N800? It's a home desktop plugin, so I can't

Re: undefined symbol: _Py_TrueStruct

2008-02-19 Thread Sergio Galán
: On 2/14/08, Sergio Galán [EMAIL PROTECTED] wrote: Thanks, The code works, but only inside scratchbox, not in the N800. In Scratchbox I see all the error messages so I can try to solve the problems, but, ¿Does someone know how to see error messages from graphical applications which

Fwd: Control panel applet in maemo with python

2008-03-07 Thread Sergio Galán
I was reading the tutorial for writing Control panel desktop in maemo ( http://maemo.org/development/documentation/tutorials/maemo_4-0_tutorial.html#cpa ) But only mentions c, and looking for python bindings in google couldn't find anything. ¿Does Someone know if its possible to program these

Get xid from hildon desktop home plugin using pygtk

2008-04-20 Thread Sergio Galán
Hi, I'm working in a home Widget which can play video using an embedded mplayer, so I need to get the xid. Using usual (py)GTK window I don't have any problem. ... class videoPlugin(): def __init__(self): self.mwindow=gtk.Window(gtk.WINDOW_TOPLEVEL) MplayerWidget=gtk.DrawingArea()