View Single Post
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.