Files
GoldenCheetah/qwt/examples/friedberg/main.cpp
Joachim Kohlhammer 2681536c68 Updated qwt to 6.3 (qwt-multiaxes branch) (#4497)
Using qwt from https://sourceforge.net/p/qwt/git/ci/qwt-multiaxes/tree/

Applied the following changes to qwt 6.3:
* Added QwtZone to qwt_plot_curve.cpp
* Disabled the emitting of Layout Requests on geometry changes of
  QwtScaleWidget - without this, CPU utilization was up to 100% on
  one core

Fixes #4495
2024-05-30 15:32:43 -03:00

70 lines
2.0 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();
setCentralWidget( plot );
QComboBox* typeBox = new QComboBox();
typeBox->addItem( "Bars" );
typeBox->addItem( "Tube" );
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 );
#if 0
QToolButton* btnLines = new QToolButton();
btnLines->setText( "Lines" );
btnLines->setToolButtonStyle( Qt::ToolButtonTextUnderIcon );
connect( btnLines, SIGNAL(clicked()), plot, SLOT(setUseLines()) );
toolBar->addWidget( btnLines );
#endif
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.setObjectName( "MainWindow" );
window.resize( 600, 400 );
window.show();
return app.exec();
}