Active Topics

 


Reply
Thread Tools
zeez's Avatar
Posts: 341 | Thanked: 68 times | Joined on Aug 2007
#31
Are there any examples for the official bindings available ?
 
Posts: 25 | Thanked: 8 times | Joined on Feb 2008
#32
Originally Posted by TA-t3 View Post
Whatever it did, it didn't brick twice.. it can't. After the first bricking you would have had to send it back to the vendor to fix it.
Sorry, my terminology may not be very precise just yet. I meant that it would no longer boot and I had to re-flash the rootfs to restore it.
 
seiichiro0185's Avatar
Posts: 270 | Thanked: 610 times | Joined on Nov 2007 @ Leipzig/Germany
#33
Originally Posted by zeez View Post
Are there any examples for the official bindings available ?
I would be interested in this as well!
 
Posts: 25 | Thanked: 8 times | Joined on Feb 2008
#34
Here's a sample; a desktop button to launch X Terminal:

/usr/share/applications/hildon-home/desktop-applet.desktop
Code:
[Desktop Entry]
Name=Demo Desktop Applet
Type=python
X-Path=desktop-applet
/usr/lib/hildon-desktop/desktop-applet.py
Code:
import gtk
import hildondesktop
import os

class DesktopApplet(hildondesktop.HomeItem):

	def Button_clicked(self, Widget, Data = None):

		os.spawnlp(os.P_NOWAIT, "maemo-invoker", "maemo-invoker", "osso-xterm.launch")

	def __init__(self):

		hildondesktop.HomeItem.__init__(self)

		Button = gtk.Button()
		Image = gtk.image_new_from_file("/usr/share/icons/hicolor/64x64/apps/terminal.png")
		Button.set_image(Image)
		Button.connect("clicked", self.Button_clicked)
		Button.show()

		self.add(Button)


def hd_plugin_get_objects():
	plugin = DesktopApplet()
	return [plugin]
Make sure you have the required libraries installed:
hildon-desktop-python-loader_0.0.2-1_armel.deb
python2.5-hildondesktop_0.0.2-1_armel.deb
(For some reason those wouldn't install for me just by clicking. I had to download them locally and install with dpgk -i.)

I also posted a similar sample task navigator panel, if you're interested.

Happy coding!

Last edited by SpiritGeek; 2008-02-18 at 21:51.
 
Posts: 308 | Thanked: 62 times | Joined on Jun 2009 @ Turkiye
#35
it says incompatible application package for those libraries
 
Reply


 
Forum Jump


All times are GMT. The time now is 20:12.