1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/**
* SPDX-FileCopyrightText: 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
*
* This file is part of the KD Chart library.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef TABLEMODEL_H
#define TABLEMODEL_H
#include <QVariant>
#include <QVector>
#include <QAbstractTableModel>
#include "testtools_export.h"
#include <QStringList>
/** TableModel uses a simple rectangular vector of vectors to represent a data
table that can be displayed in regular Qt Interview views.
Additionally, it provides a method to load CSV files exported by
OpenOffice Calc in the default configuration. This allows to prepare test
data using spreadsheet software.
It expects the CSV files in the subfolder ./modeldata. If the application
is started from another location, it will ask for the location of the
model data files.
*/
class TESTTOOLS_EXPORT TableModel : public QAbstractTableModel
{
Q_OBJECT
public:
TableModel( QObject* parent = nullptr );
~TableModel() override;
/** Return header data from the model.
The model will use the first data row and the first data column of the
physical data as source of column and row header data. This data is not
exposed as model data, that means, the first model row and column will
start at index (0, 0).
*/
QVariant headerData( int section, Qt::Orientation orientation,
int role = Qt::DisplayRole ) const override;
int rowCount( const QModelIndex& parent = QModelIndex() ) const override;
int columnCount( const QModelIndex& parent = QModelIndex() ) const override;
QVariant data( const QModelIndex& index, int role = Qt::DisplayRole ) const override;
bool setData( const QModelIndex& index, const QVariant& value, int role = Qt::EditRole ) override;
/** Load the table from a comma separated file.
*
* The files are supposed to be Unicode (UTF8), have commas (',') as
* delimiters, and quotes ('"') as text delimiters. All lines are expected
* to provide the same number of fields. HINT: This is the default way
* OO.o-Calc exports CSV files.
* The cell data is expected to be floating point values, except for the
* first row and the first column, where string values are expected (those
* will be used as axis descriptors). If values cannot be converted to
* qreals, their string representation will be used.
*
* @returns true if successful, false otherwise
*
* @sa titleText
*/
bool loadFromCSV( const QString& filename );
/**
* If both DataHasHorizontalHeaders and DataHasVerticalHeaders is
* set true (that's the default setting) then loadFromCSV will interpret
* the first field in the first row as title-text.
* If no such field is found the loadFromCSV will set the title text to
* an empty string.
*
* The text is stored and can be retrieved via titleText(), but the model
* itself does nothing else with it: The calling application may use this
* method and e.g. display the text as header or as title of the Legend
* or as caption of the window ...
*
* @sa loadFromCSV
*/
const QString titleText() const {
return m_titleText;
}
/**
* Setting the title text has no effect except that the text
* can then be retrieved via titleText.
*
* TableModel is just storing this data but it does nothing
* else with it, nor does Qt's IndeView model make use of it.
*/
void setTitleText( const QString& txt ) {
m_titleText = txt;
}
/** Make the model invalid, that is, provide no data. */
void clear();
/**
* Set to false if the data has no horizontal header
*/
void setDataHasHorizontalHeaders( bool value ) {
m_dataHasHorizontalHeaders = value;
}
/**
* Set to false if the data has no vertical header
*/
void setDataHasVerticalHeaders( bool value ) {
m_dataHasVerticalHeaders = value;
}
/**
* setSupplyHeaderData(false) allows to prevent the model from supplying header data,
* even if parsing found any
*/
void setSupplyHeaderData( bool value ) {
m_supplyHeaderData = value;
}
protected:
// the vector of rows:
QVector< QVector<QVariant> > m_rows;
private:
// the header data:
QStringList m_horizontalHeaderData;
QStringList m_verticalHeaderData;
QString m_titleText;
bool m_dataHasHorizontalHeaders;
bool m_dataHasVerticalHeaders;
bool m_supplyHeaderData;
};
#endif
|