/***************************************************************************** * Qwt Examples - Copyright (C) 2002 Uwe Rathmann * This file may be used under the terms of the 3-clause BSD License *****************************************************************************/ #include "TVPlot.h" #include #include #include #include #include namespace { class MainWindow : public QMainWindow { public: MainWindow() { TVPlot* plot = new TVPlot(); setCentralWidget( plot ); QComboBox* typeBox = new QComboBox(); typeBox->addItem( "Outline" ); typeBox->addItem( "Columns" ); typeBox->addItem( "Lines" ); typeBox->addItem( "Column Symbol" ); typeBox->setCurrentIndex( typeBox->count() - 1 ); typeBox->setSizePolicy( QSizePolicy::Fixed, QSizePolicy::Fixed ); QToolButton* btnExport = new QToolButton(); btnExport->setText( "Export" ); btnExport->setToolButtonStyle( Qt::ToolButtonTextUnderIcon ); connect( btnExport, SIGNAL(clicked()), plot, SLOT(exportPlot()) ); QToolBar* toolBar = new QToolBar( this ); toolBar->addWidget( typeBox ); toolBar->addWidget( btnExport ); addToolBar( toolBar ); plot->setMode( typeBox->currentIndex() ); connect( typeBox, SIGNAL(currentIndexChanged(int)), plot, SLOT(setMode(int)) ); } }; } int main( int argc, char* argv[] ) { QApplication app( argc, argv ); MainWindow window; window.resize( 600, 400 ); window.show(); return app.exec(); }