51ed9ec971
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef CSVMODELWRITER_H
|
|
#define CSVMODELWRITER_H
|
|
|
|
#include <QList>
|
|
#include <QObject>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QAbstractItemModel;
|
|
QT_END_NAMESPACE
|
|
|
|
/** Export a Qt table model to a CSV file. This is useful for analyzing or post-processing the data in
|
|
a spreadsheet.
|
|
*/
|
|
class CSVModelWriter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CSVModelWriter(const QString &filename, QObject *parent = 0);
|
|
|
|
void setModel(const QAbstractItemModel *model);
|
|
void addColumn(const QString &title, int column, int role=Qt::EditRole);
|
|
|
|
/** Perform export of the model to CSV.
|
|
@returns true on success, false otherwise
|
|
*/
|
|
bool write();
|
|
|
|
private:
|
|
QString filename;
|
|
const QAbstractItemModel *model;
|
|
|
|
struct Column
|
|
{
|
|
QString title;
|
|
int column;
|
|
int role;
|
|
};
|
|
QList<Column> columns;
|
|
};
|
|
|
|
#endif // CSVMODELWRITER_H
|