mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:37:45 +00:00
SoundPlayer: Fix inconsistencies and code duplication
This is a first pass at refactoring SoundPlayer so that the View widget is decoupled from the player itself. In doing so, this fixed a couple of issues, including possibly inconsistent states (e.g. player could be paused and stopped at the same time). With the change, Player actually controls the show, and calls methods overriden by its subclasses to perform actions, such as update the Seek bar; the hard work of massaging the raw data is done by the Player class, so subclasses don't need to reimplement any of these things. This also removes some copies of playlist management code that happened to be copied+pasted inside callbacks of buttons -- it now lives inside a neatly packaged Playlist class, and the Player only asks for the next song to play. In addition, the menu bar has been slightly rearranged.
This commit is contained in:
parent
73924f9416
commit
3126b78903
14 changed files with 447 additions and 304 deletions
|
@ -24,6 +24,7 @@ public:
|
|||
void loop(bool);
|
||||
bool toggle_pause();
|
||||
void set_loader(NonnullRefPtr<Audio::Loader>&&);
|
||||
RefPtr<Audio::Loader> loader() const { return m_loader; }
|
||||
size_t device_sample_rate() const { return m_device_sample_rate; }
|
||||
|
||||
int last_seek() const { return m_last_seek; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue