2019-02-03 18:26:27 +00:00
|
|
|
#ifndef CUSTOMATTRIBUTESTABLE_H
|
|
|
|
#define CUSTOMATTRIBUTESTABLE_H
|
|
|
|
|
2022-07-19 22:56:12 +01:00
|
|
|
#include "events.h"
|
2019-02-03 18:26:27 +00:00
|
|
|
#include <QObject>
|
|
|
|
#include <QFrame>
|
|
|
|
#include <QTableWidget>
|
|
|
|
|
|
|
|
class CustomAttributesTable : public QFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit CustomAttributesTable(Event *event, QWidget *parent = nullptr);
|
|
|
|
~CustomAttributesTable();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Event *event;
|
|
|
|
QTableWidget *table;
|
|
|
|
void resizeVertically();
|
|
|
|
QMap<QString, QString> getTableFields();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CUSTOMATTRIBUTESTABLE_H
|