##// END OF EJS Templates
Fix cop path issue for gdbexample
Fix cop path issue for gdbexample

File last commit:

r517:ff848436837e
r712:0837d0a1b161
Show More
mainwidget.h
57 lines | 1.5 KiB | text/x-c | CLexer
Tero Ahola
New features like chart type to the test app
r5 #ifndef MAINWIDGET_H
#define MAINWIDGET_H
Tero Ahola
Renamed to QtCommercialChart
r30 #include <qchartglobal.h>
Michal Klocek
Removes QChartWidget...
r136 #include <qchartview.h>
Tero Ahola
New features like chart type to the test app
r5 #include <QWidget>
Tero Ahola
Added auto scaling option to test app
r6 class QSpinBox;
Tero Ahola
Drafting scatter type plotting...
r8 class QCheckBox;
Tero Ahola
Added size factor property to pie
r60 class QGridLayout;
Tero Ahola
New features like chart type to the test app
r5
Tero Ahola
Renamed to QtCommercialChart
r30 QTCOMMERCIALCHART_USE_NAMESPACE
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19
Tero Ahola
Refactored chartwidgettest test data impl
r278 #define RealList QList<qreal>
Tero Ahola
Add dialog of chartwidgettest now remembers selections
r376 class DataSerieDialog;
Tero Ahola
Refactored chartwidgettest test data impl
r278
Tero Ahola
New features like chart type to the test app
r5 class MainWidget : public QWidget
{
Q_OBJECT
public:
explicit MainWidget(QWidget *parent = 0);
signals:
Tero Ahola
Refactored the test app
r110 private:
void initBackroundCombo(QGridLayout *grid);
void initScaleControls(QGridLayout *grid);
void initThemeCombo(QGridLayout *grid);
Tero Ahola
Checkbox for anti-alias to chartwidgettest
r379 void initCheckboxes(QGridLayout *grid);
Tero Ahola
Refactored the test app
r110
Tero Ahola
New features like chart type to the test app
r5 private slots:
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 void addSeries();
Tero Ahola
Refactored chartwidgettest test data impl
r278 void addSeries(QString series, int columnCount, int rowCount, QString dataCharacteristics, bool labelsEnabled);
Tero Ahola
New features like chart type to the test app
r5 void backgroundChanged(int itemIndex);
Tero Ahola
Added auto scaling option to test app
r6 void autoScaleChanged(int value);
Tero Ahola
New features like chart type to the test app
r5 void xMinChanged(int value);
void xMaxChanged(int value);
void yMinChanged(int value);
void yMaxChanged(int value);
Tero Ahola
Checkbox for anti-alias to chartwidgettest
r379 void antiAliasToggled(bool enabled);
Tero Ahola
Draft implementation for setting color themes for a chart
r64 void changeChartTheme(int themeIndex);
Tero Ahola
Refactored chartwidgettest test data impl
r278 QList<RealList> generateTestData(int columnCount, int rowCount, QString dataCharacteristics);
QStringList generateLabels(int count);
Tero Ahola
New features like chart type to the test app
r5
private:
Tero Ahola
Add dialog of chartwidgettest now remembers selections
r376 DataSerieDialog *m_addSerieDialog;
Tero Ahola
Checkbox for anti-alias to chartwidgettest
r379 QChartView *m_chartView;
Tero Ahola
Drafting scatter type plotting...
r8 QCheckBox *m_autoScaleCheck;
Tero Ahola
Added auto scaling option to test app
r6 QSpinBox *m_xMinSpin;
QSpinBox *m_xMaxSpin;
QSpinBox *m_yMinSpin;
QSpinBox *m_yMaxSpin;
Tero Ahola
Added size factor property to pie
r60 QString m_defaultSeriesName;
QGridLayout *m_scatterLayout;
Tero Ahola
New features like chart type to the test app
r5 };
#endif // MAINWIDGET_H