I want to create a little toolbar graphical widget for Gnome. Can you point me in the right direction ? My guess is that this will not be easily done in Java, so I am looking for the next best language that I can learn up on. Specifically:
Thanks for any pointers !
If you want to write something for Gnome 3, then the best way is to write a Gnome Shell Extension, in JavaScript, using the St graphical toolkit ("St" = "Shell toolkit"). Here are links to resources:
For LXDE, here is a guide to writing plugins for LXPanel. It looks like the only available method is using the GTK graphical toolkit in C. Note that this doesn't use Gnome libraries - as far as I can tell, LXDE libraries are in C and don't have bindings to other languages.
There is no standard for writing menu bar widgets across desktops. This is because the different desktop environments all have their own libraries and APIs. So, whether you can use SVG depends on which one you use. The RSVG library adds SVG capability to GTK, but you can use static SVG icons even without it.