This is a simple Jezabel application using a JezabelVariableShelfEq widget.
#include <jezabelapplication.h> #include <jezabelgraphicfilter.h> #include <jezabelpanel.h> #include <jezabelvariableshelfeq.h> int main( int argc, char **argv ) { JezabelApplication a( argc, argv ); /* Make a control panel with presets */ JezabelPanel *panel = new JezabelPanel("test_variableshelfeq","current"); /* Make a JezabelGraphicfilter widget -- a variable shelving */ JezabelGraphicFilter *graphic = new JezabelGraphicFilter(panel->mainArea()); (void) new JezabelVariableShelfEQ(3,"filt1",graphic); /* Show the main window */ a.setMainWidget( panel ); a.setTool( graphic->getTool() ); panel->show(); /* Run the GUI until exit */ return a.exec(); }