23 lines
540 B
C++
23 lines
540 B
C++
#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();
|
|
}
|