Rogach
Rogach

Reputation: 27220

Writing Gnome 2 panel applets in Java

Is there a way to write gnome-panel gui applet (like hamster, for example) using JVM application?

If it is not possible to do it using java, what other languages are available?

(I'm using Gnome 2 on Ubuntu)

Upvotes: 0

Views: 416

Answers (1)

Joni
Joni

Reputation: 111329

While Java bindings for GTK+ exists (see http://www.gtk.org/language-bindings.php and http://java-gnome.sourceforge.net), I don't think it is enough for creating panel applets. I would expect you to have better success with C#/Mono (using Gtk#), Python, or C.

C: http://live.gnome.org/GnomeLove/PanelAppletTutorial
Python: http://www.pygtk.org/articles/applets_arturogf/

Upvotes: 1

Related Questions