Large update. Added Video, Image and Live item views. Added Live search

This commit is contained in:
Digital Artifex
2026-08-05 19:58:24 -04:00
parent 5b2500c841
commit e5627742d2
46 changed files with 3416 additions and 578 deletions
@@ -96,7 +96,6 @@ public:
auto at(qsizetype index) const -> const T&
{
QMutexLocker cacheLocker(&m_cacheMutex);
T defaultValue;
if(!externalBoundaryCheck(index))
{
@@ -203,7 +202,7 @@ public:
return;
}
if(!externalBoundaryCheck(index + count))
if(externalBoundaryCheck(index + count))
{
slideWindow(index);
}
@@ -589,6 +588,8 @@ private:
* Override for window size
*/
qsizetype m_windowSize = nullsize;
T defaultValue;
};
#endif // SLIDINGCACHECONTROLLER_H