#ifndef TABLEVALUE_H #define TABLEVALUE_H #include #include #include #include #include #include class TableValue : public QLabel { Q_OBJECT public: explicit TableValue(); void setText(const QString &text); private: QTime time; QTimer timer; QTimer animationTimer; private slots: void updateColor(); }; #endif // TABLEVALUE_H