config moved to c++ plugin, removed old qml + fileview implementation

This commit is contained in:
2026-08-13 02:25:26 +02:00
parent c29b91cd26
commit 3cd3209b28
341 changed files with 4851 additions and 3502 deletions
+22
View File
@@ -0,0 +1,22 @@
#include "Notifs.hpp"
NotifsSizes::NotifsSizes(QObject *parent) : ConfigSection(parent) {
m_badge = 20;
m_image = 41;
m_width = 400;
wireSignals();
}
Notifs::Notifs(QObject *parent) : ConfigSection(parent) {
m_actionOnClick = false;
m_appNotifCooldown = 0;
m_clearThreshold = 0.3;
m_defaultExpireTimeout = 5000;
m_expandThreshold = 20;
m_expire = true;
m_groupPreviewNum = 5;
m_openExpanded = false;
m_showInFullscreen = false;
m_sizes = new NotifsSizes(this);
wireSignals();
}