Added Featured List Pages

This commit is contained in:
Digital Artifex
2026-08-13 08:12:45 -04:00
parent 69743883d7
commit 3d0655edd1
10 changed files with 172 additions and 3 deletions
+18
View File
@@ -205,6 +205,24 @@ auto FeaturedVideosModel::itemModel() const -> VideoItemModel*
return m_itemModel;
}
auto FeaturedVideosModel::windowSize() const -> qsizetype
{
if(m_paginator == nullptr)
{
return 0;
}
return m_paginator->windowSize();
}
auto FeaturedVideosModel::setWindowSize(qsizetype size) -> void
{
if(m_paginator != nullptr)
{
m_paginator->setWindowSize(size);
}
}
auto FeaturedVideosModel::roleNames() const -> QHash<int, QByteArray>
{
return m_dataRoles;