mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
Upgrade to QWT 6.0.1, but still uses a locally patched copy since support for 8 axes has not been included, despite it being a relatively simple patch. Fixes #634. Fixes #567.
58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
#include <qapplication.h>
|
|
#include <qmainwindow.h>
|
|
#include <qcombobox.h>
|
|
#include <qlayout.h>
|
|
#include <qtextstream.h>
|
|
#include <qtoolbar.h>
|
|
#include <qtoolbutton.h>
|
|
#include "plot.h"
|
|
|
|
class MainWindow: public QMainWindow
|
|
{
|
|
public:
|
|
MainWindow( QWidget * = NULL );
|
|
|
|
private:
|
|
Plot *d_plot;
|
|
};
|
|
|
|
MainWindow::MainWindow( QWidget *parent ):
|
|
QMainWindow( parent )
|
|
{
|
|
d_plot = new Plot( this );
|
|
setCentralWidget( d_plot );
|
|
|
|
QToolBar *toolBar = new QToolBar( this );
|
|
|
|
QComboBox *typeBox = new QComboBox( toolBar );
|
|
typeBox->addItem( "Bars" );
|
|
typeBox->addItem( "Tube" );
|
|
typeBox->setCurrentIndex( 1 );
|
|
typeBox->setSizePolicy( QSizePolicy::Fixed, QSizePolicy::Fixed );
|
|
|
|
QToolButton *btnExport = new QToolButton( toolBar );
|
|
btnExport->setText( "Export" );
|
|
btnExport->setToolButtonStyle( Qt::ToolButtonTextUnderIcon );
|
|
connect( btnExport, SIGNAL( clicked() ), d_plot, SLOT( exportPlot() ) );
|
|
|
|
toolBar->addWidget( typeBox );
|
|
toolBar->addWidget( btnExport );
|
|
addToolBar( toolBar );
|
|
|
|
d_plot->setMode( typeBox->currentIndex() );
|
|
connect( typeBox, SIGNAL( currentIndexChanged( int ) ),
|
|
d_plot, SLOT( setMode( int ) ) );
|
|
}
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
QApplication a( argc, argv );
|
|
|
|
MainWindow w;
|
|
w.setObjectName( "MainWindow" );
|
|
w.resize( 600, 400 );
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|