#ifndef CUSTOMATTRIBUTESTABLE_H #define CUSTOMATTRIBUTESTABLE_H #include "event.h" #include #include #include class CustomAttributesTable : public QFrame { public: explicit CustomAttributesTable(Event* event, QWidget* parent = nullptr); ~CustomAttributesTable(); private: Event* event; QTableWidget* table; void resizeVertically(); QMap getTableFields(); }; #endif // CUSTOMATTRIBUTESTABLE_H