feat: add reminder scheduling and sound controls

This commit is contained in:
2026-06-01 21:01:11 +08:00
parent 4a7b739eea
commit c794e32023
36 changed files with 2494 additions and 35 deletions
+13
View File
@@ -0,0 +1,13 @@
#pragma once
#include <QSoundEffect>
#include <QString>
class ReminderSoundPlayer
{
public:
void play(const QString &soundId, double volume);
private:
QSoundEffect m_soundEffect;
};