Files
bar/include/widgets/notification/spotifyNotification.hpp
Arif Hasanic 817b9dd394
Some checks failed
ci / build (push) Failing after 0s
setup ci
2026-02-01 16:55:54 +01:00

18 lines
453 B
C++

#pragma once
#include <memory>
#include "services/dbus/messages.hpp"
#include "widgets/notification/baseNotification.hpp"
#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);
};