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