##// END OF EJS Templates
Make scatterinteractions compile
Make scatterinteractions compile

File last commit:

r830:b345b831b8c1
r831:d1edc6bf68da
Show More
tablewidget.h
65 lines | 1.6 KiB | text/x-c | CLexer
Jani Honkonen
Add/modify license headers
r830 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
Marek Rosa
Table model data example
r519 #ifndef TABLEWIDGET_H
#define TABLEWIDGET_H
#include <QtGui/QWidget>
#include "qchartview.h"
Marek Rosa
Added support for adding and removing data with model. Updated the example
r545 #include "qxyseries.h"
Marek Rosa
Table model data example
r519
QTCOMMERCIALCHART_USE_NAMESPACE
Marek Rosa
Added support for adding and removing data with model. Updated the example
r545 class CustomTableModel;
class QTableView;
class QRadioButton;
Marek Rosa
Some more work on mapping with limits
r735 class QSpinBox;
Marek Rosa
Added support for adding and removing data with model. Updated the example
r545 //class QSeries;
Marek Rosa
Table model data example
r519 class TableWidget : public QWidget
{
Q_OBJECT
public:
TableWidget(QWidget *parent = 0);
~TableWidget();
Marek Rosa
Added support for adding and removing data with model. Updated the example
r545 public slots:
Marek Rosa
Model data example updated
r546 void addRowAbove();
void addRowBelow();
Marek Rosa
Added support for adding and removing data with model. Updated the example
r545 void removeRow();
void updateChartType();
Marek Rosa
Table model data example
r519
private:
QChartView* chartView;
Marek Rosa
Added support for adding and removing data with model. Updated the example
r545 QXYSeries* series;
CustomTableModel* m_model;
QTableView* tableView;
QRadioButton* lineRadioButton;
QRadioButton* splineRadioButton;
QRadioButton* scatterRadioButton;
Marek Rosa
Added data from model support to QPieSeries(modify, remove). Data from model example updated
r597 QRadioButton* pieRadioButton;
Marek Rosa
Added support for data from model to QBarSeries. Various fixes and small modifications to data from model support to other series
r630 QRadioButton* areaRadioButton;
QRadioButton* barRadioButton;
Marek Rosa
Some more work on mapping with limits
r735 QSpinBox* linesCountSpinBox;
Marek Rosa
Table model data example
r519 };
#endif // TABLEWIDGET_H