setup ci
Some checks failed
ci / build (push) Failing after 0s

This commit is contained in:
2026-02-01 16:55:54 +01:00
parent 178a4451d4
commit 817b9dd394
10 changed files with 83 additions and 21 deletions

View File

@@ -1,16 +1,17 @@
#pragma once
#pragma once
#include <memory>
#include <type_traits>
#include "services/dbus/messages.hpp"
#include "widgets/notification/baseNotification.hpp"
#include "gtkmm/box.h"
#include "gtkmm/centerbox.h"
class SpotifyNotification : public BaseNotification {
public:
SpotifyNotification(std::shared_ptr<Gdk::Monitor> monitor, MprisPlayer2Message message);
virtual ~SpotifyNotification() = default;
private:
std::unique_ptr<Gtk::CenterBox> createButtonBox(MprisPlayer2Message mpris);
private:
std::unique_ptr<Gtk::CenterBox> createButtonBox(MprisPlayer2Message mpris);
};