libprolooks
libprolooks is a custom widget library for Gtk+ designed for audio applications.
It includes the custom widgets from the Calf plugin project.
As there has been no release yet, the source code can be accessed here:
http://repo.or.cz/w/libprolooks.git
If you want to clone the repository, use:
git clone git://repo.or.cz/libprolooks.git
07. Mar. 2009: first release: libprolooks-0.0.0.tar.bz2
04. 05. 2009: Release 1.0.0: Sources / Ubuntu packages
03. 07. 2009: Release 1.1.0: Release tarball
25. 01. 2010: Release 1.2.0: Release tarball
If you have any issues using libprolooks, report them here.

hi there,
i’ve made a tiny change to the vumeterDemo here it is :
diff –git a/prolooks/VUMeterDemo.vala b/prolooks/VUMeterDemo.vala
index 4dc6b85..d6f5818 100644
— a/prolooks/VUMeterDemo.vala
b/prolooks/VUMeterDemo.vala
@@ -1,12 1,22 @@
using GLib;
using Gtk;
namespace Prolooks {
private VUMeter widget;
bool animate(){
double val = GLib.Random.next_double();
widget.value = val;
return true;
}
static int main (string[] args) {
Gtk.init (ref args);
var window = new Window (WindowType.TOPLEVEL);
- var widget = new VUMeter ();
- widget.value = 0.75;
widget = new VUMeter ();
GLib.Timeout.add(100,animate);
window.add (widget);
window.destroy = Gtk.main_quit;
window.show_all ();
applied:
http://repo.or.cz/w/libprolooks.git?a=commit;h=96568bd563b22945d372170a9f2b0024a0126b18