Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members   Examples  

test_fixedshelfeq.cpp

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();
}

Generated at Sun Jan 18 20:51:22 2004 for Jezabel by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001