##// END OF EJS Templates
Adds converage to gitignore
Adds converage to gitignore

File last commit:

r1081:85cf7da340c6
r1098:4986f3f3d7c9
Show More
tablewidget.h
71 lines | 1.8 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>
Marek Rosa
PieSeries: model now supports custom mapping.
r1056 //#include <QChartGlobal>
Marek Rosa
Table model data example
r519 #include "qchartview.h"
Marek Rosa
PieSeries: model now supports custom mapping.
r1056 //#include "qxyseries.h"
//#include <QPieSeries>
Marek Rosa
Table model data example
r519
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
Marek Rosa
PieSeries: model now supports custom mapping.
r1056 QTCOMMERCIALCHART_USE_NAMESPACE
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();
Marek Rosa
PieSeries model support - further refactoring
r1081 void addColumnRight();
void removeColumn();
Marek Rosa
tablemodelchart: axes re-enabled on toggle (pie disables them)
r878 void updateChartType(bool toggle);
Marek Rosa
PieSeries: model now supports custom mapping.
r1056 void testPie();
Marek Rosa
Table model data example
r519
private:
Marek Rosa
XYSeries model with limits working.
r833 QChartView* m_chartView;
QChart* m_chart;
QXYSeries* m_series;
Marek Rosa
Added support for adding and removing data with model. Updated the example
r545 CustomTableModel* m_model;
Marek Rosa
XYSeries model with limits working.
r833 QTableView* m_tableView;
QRadioButton* m_lineRadioButton;
QRadioButton* m_splineRadioButton;
QRadioButton* m_scatterRadioButton;
QRadioButton* m_pieRadioButton;
QRadioButton* m_areaRadioButton;
QRadioButton* m_barRadioButton;
QSpinBox* m_linesCountSpinBox;
Marek Rosa
Refactored model related methods in PieSeries
r1063 // QPieSeries* specialPie;
Marek Rosa
Table model data example
r519 };
#endif // TABLEWIDGET_H