Files
qwt/examples/stockchart/main.cpp
2023-10-31 09:22:42 +01:00

58 lines
1.7 KiB
C++

/*****************************************************************************
* Qwt Examples - Copyright (C) 2002 Uwe Rathmann
* This file may be used under the terms of the 3-clause BSD License
*****************************************************************************/
#include "Plot.h"
#include <QApplication>
#include <QMainWindow>
#include <QComboBox>
#include <QToolBar>
#include <QToolButton>
namespace
{
class MainWindow : public QMainWindow
{
public:
MainWindow( QWidget* parent = NULL )
: QMainWindow( parent )
{
Plot* plot = new Plot( this );
setCentralWidget( plot );
QComboBox* typeBox = new QComboBox();
typeBox->addItem( "Bars" );
typeBox->addItem( "CandleSticks" );
typeBox->setCurrentIndex( 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();
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();
}