1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:27:35 +00:00

FileManager: Add "Audio" tab to File Properties window

This commit is contained in:
Sam Atkins 2023-07-19 10:44:32 +01:00 committed by Sam Atkins
parent 0a9fa85e86
commit 91b677c81e
4 changed files with 293 additions and 1 deletions

View file

@ -29,6 +29,8 @@ private:
PropertiesWindow(DeprecatedString const& path, Window* parent = nullptr);
ErrorOr<void> create_widgets(bool disable_rename);
ErrorOr<void> create_general_tab(GUI::TabWidget&, bool disable_rename);
ErrorOr<void> create_file_type_specific_tabs(GUI::TabWidget&);
ErrorOr<void> create_audio_tab(GUI::TabWidget&, NonnullRefPtr<Core::MappedFile>);
struct PermissionMasks {
mode_t read;