add notifications

This commit is contained in:
2026-01-31 22:46:19 +01:00
parent 8283531748
commit 13278d518a
10 changed files with 226 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
#include <giomm.h>
#include <gtkmm.h>
#include <memory>
#include "gdkmm/monitor.h"
class NotificationWidget {
public:
NotificationWidget(std::shared_ptr<Gdk::Monitor> monitor, const Glib::ustring &title, const Glib::ustring &message);
};