mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 16:05:06 +00:00

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 :^)
76 lines
1.8 KiB
C++
76 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2022, Gregory Bertilson <zaggy1024@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FixedArray.h>
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibGUI/ActionGroup.h>
|
|
#include <LibGUI/Forward.h>
|
|
#include <LibGUI/Widget.h>
|
|
#include <LibGfx/Forward.h>
|
|
#include <LibVideo/DecoderError.h>
|
|
#include <LibVideo/PlaybackManager.h>
|
|
|
|
#include "VideoFrameWidget.h"
|
|
|
|
namespace VideoPlayer {
|
|
|
|
class VideoPlayerWidget final : public GUI::Widget {
|
|
C_OBJECT(VideoPlayerWidget)
|
|
|
|
public:
|
|
void close_file();
|
|
void open_file(StringView filename);
|
|
void resume_playback();
|
|
void pause_playback();
|
|
void toggle_pause();
|
|
|
|
void update_title();
|
|
|
|
Video::PlaybackManager::SeekMode seek_mode();
|
|
void set_seek_mode(Video::PlaybackManager::SeekMode seek_mode);
|
|
|
|
void initialize_menubar(GUI::Window&);
|
|
|
|
private:
|
|
VideoPlayerWidget(GUI::Window&);
|
|
|
|
void update_play_pause_icon();
|
|
void update_seek_slider_max();
|
|
void set_current_timestamp(Time);
|
|
void set_time_label(Time);
|
|
void on_decoding_error(Video::DecoderError const&);
|
|
void update_seek_mode();
|
|
void display_next_frame();
|
|
|
|
void cycle_sizing_modes();
|
|
|
|
void event(Core::Event&) override;
|
|
|
|
GUI::Window& m_window;
|
|
|
|
DeprecatedString m_path;
|
|
|
|
RefPtr<VideoFrameWidget> m_video_display;
|
|
RefPtr<GUI::HorizontalSlider> m_seek_slider;
|
|
|
|
RefPtr<GUI::Toolbar> m_toolbar;
|
|
|
|
RefPtr<Gfx::Bitmap> m_play_icon;
|
|
RefPtr<Gfx::Bitmap> m_pause_icon;
|
|
|
|
RefPtr<GUI::Action> m_play_pause_action;
|
|
RefPtr<GUI::Label> m_timestamp_label;
|
|
RefPtr<GUI::Action> m_cycle_sizing_modes_action;
|
|
RefPtr<GUI::HorizontalSlider> m_volume_slider;
|
|
|
|
RefPtr<GUI::Action> m_use_fast_seeking;
|
|
|
|
OwnPtr<Video::PlaybackManager> m_playback_manager;
|
|
};
|
|
|
|
}
|