diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-09-28 10:43:48 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-09-28 10:43:48 +1000 |
| commit | 6a47edcd35884095946f761fa3aa2367c7c26442 (patch) | |
| tree | 5b34e1bf14759dcc78b6611b1b6538dc03119860 /src/ui/include/screen_playing.hpp | |
| parent | f09ba5ffd53bf7d28e0dc516c00a8f69ca7efae9 (diff) | |
| download | tangara-fw-6a47edcd35884095946f761fa3aa2367c7c26442.tar.gz | |
Use databinding for the top bar. It's so nice now!
Diffstat (limited to 'src/ui/include/screen_playing.hpp')
| -rw-r--r-- | src/ui/include/screen_playing.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/include/screen_playing.hpp b/src/ui/include/screen_playing.hpp index fff9cc35..185c55cc 100644 --- a/src/ui/include/screen_playing.hpp +++ b/src/ui/include/screen_playing.hpp @@ -18,6 +18,7 @@ #include "database.hpp" #include "future_fetcher.hpp" #include "model_playback.hpp" +#include "model_top_bar.hpp" #include "screen.hpp" #include "track.hpp" #include "track_queue.hpp" @@ -31,7 +32,8 @@ namespace screens { */ class Playing : public Screen { public: - explicit Playing(models::Playback& playback_model, + explicit Playing(models::TopBar&, + models::Playback& playback_model, std::weak_ptr<database::Database> db, audio::TrackQueue& queue); ~Playing(); |
