#pragma once #include #include #include namespace chatterino { class IntItem : public QListWidgetItem { public: static constexpr int TYPE_ID = QListWidgetItem::UserType + 101; IntItem(int v = 0, QListWidget *parent = nullptr); /// setText should not be used, we only store int values in this item /// /// use setValue instead. void setText(const QString &) = delete; bool operator<(const QListWidgetItem &other) const override; void setValue(int v); int getValue() const; private: int value; }; /// Iterate through all items in the given list and return the item /// matching the given value IntItem *findIntItemInList(QListWidget *list, int value); } // namespace chatterino