-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport.h
26 lines (21 loc) · 831 Bytes
/
export.h
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
//-----------------------------------------------------------------------------------------------------------
// Emby Explorer (Qt) (w) 2024-2025 by Jan Buchholz
// Export to Excel file
// uses SimpleXlsx by Pavel Akimov <[email protected]> and Alexandr Belyak <[email protected]>
// https://sourceforge.net/projects/simplexlsx/
//-----------------------------------------------------------------------------------------------------------
#pragma once
#include <QObject>
#include <QWidget>
#include <QTableWidget>
#include "globals.h"
class Export : public QObject {
Q_OBJECT
public:
explicit Export(QTableWidget *parent = nullptr);
~Export();
int ExportCollection(QString fileName, QString sheetName, QVector<ColumnsType> colDef);
private:
QTableWidget *table;
signals:
};