1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 11:25:09 +00:00
serenity/Userland/Applications/SoundPlayer/PlaylistWidget.h
Linus Groh 6e19ab2bbc AK+Everywhere: Rename String to DeprecatedString
We have a new, improved string type coming up in AK (OOM aware, no null
state), and while it's going to use UTF-8, the name UTF8String is a
mouthful - so let's free up the String name by renaming the existing
class.
Making the old one have an annoying name will hopefully also help with
quick adoption :^)
2022-12-06 08:54:33 +01:00

61 lines
1.5 KiB
C++

/*
* Copyright (c) 2021, Cesar Torres <shortanemoia@protonmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "M3UParser.h"
#include <LibGUI/Model.h>
#include <LibGUI/TableView.h>
#include <LibGUI/Variant.h>
#include <LibGUI/Widget.h>
enum class PlaylistModelCustomRole {
_DONOTUSE = (int)GUI::ModelRole::Custom,
FilePath
};
class PlaylistModel : public GUI::Model {
public:
~PlaylistModel() override = default;
int row_count(const GUI::ModelIndex&) const override { return m_playlist_items.size(); }
int column_count(const GUI::ModelIndex&) const override { return 6; }
GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
DeprecatedString column_name(int column) const override;
Vector<M3UEntry>& items() { return m_playlist_items; }
private:
Vector<M3UEntry> m_playlist_items;
static DeprecatedString format_filesize(u64 size_in_bytes);
static DeprecatedString format_duration(u32 duration_in_seconds);
};
class PlaylistTableView : public GUI::TableView {
C_OBJECT(PlaylistTableView)
public:
void doubleclick_event(GUI::MouseEvent& event) override;
Function<void(Gfx::Point<int> const&)> on_doubleclick;
private:
PlaylistTableView();
};
class PlaylistWidget : public GUI::Widget {
C_OBJECT(PlaylistWidget)
public:
void set_data_model(RefPtr<PlaylistModel> model)
{
m_table_view->set_model(model);
m_table_view->update();
}
private:
PlaylistWidget();
RefPtr<PlaylistTableView> m_table_view;
};