File indexing completed on 2025-03-09 04:22:49
0001 #ifndef HISTORYMODEL_H 0002 #define HISTORYMODEL_H 0003 0004 #include <MauiKit3/Core/mauilist.h> 0005 0006 class HistoryModel : public MauiList 0007 { 0008 Q_OBJECT 0009 0010 public: 0011 HistoryModel(); 0012 0013 const FMH::MODEL_LIST &items() const override final; 0014 0015 private: 0016 FMH::MODEL_LIST m_list; 0017 0018 void setList(); 0019 0020 public slots: 0021 void appendUrl(const QUrl &url, const QString &title); 0022 void updateIcon(const QUrl &url, const QString &icon); 0023 0024 signals: 0025 0026 }; 0027 0028 #endif // HISTORYMODEL_H