2020-06-14 11:04:58 +03:00
|
|
|
|
/*
|
|
|
|
|
|
* Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
|
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-14 11:04:58 +03:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#include <LibCore/Timer.h>
|
|
|
|
|
|
#include <LibGUI/Frame.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace GUI {
|
|
|
|
|
|
|
2020-07-22 15:29:51 +02:00
|
|
|
|
class ImageWidget : public Frame {
|
|
|
|
|
|
C_OBJECT(ImageWidget)
|
2020-06-14 11:04:58 +03:00
|
|
|
|
public:
|
2020-07-22 15:29:51 +02:00
|
|
|
|
virtual ~ImageWidget() override;
|
2020-06-14 11:04:58 +03:00
|
|
|
|
|
|
|
|
|
|
void set_bitmap(const Gfx::Bitmap*);
|
|
|
|
|
|
Gfx::Bitmap* bitmap() { return m_bitmap.ptr(); }
|
|
|
|
|
|
|
|
|
|
|
|
void set_should_stretch(bool value) { m_should_stretch = value; }
|
|
|
|
|
|
bool should_stretch() const { return m_should_stretch; }
|
|
|
|
|
|
|
|
|
|
|
|
void set_auto_resize(bool value);
|
|
|
|
|
|
bool auto_resize() const { return m_auto_resize; }
|
|
|
|
|
|
|
|
|
|
|
|
void animate();
|
2021-11-11 00:55:02 +01:00
|
|
|
|
void load_from_file(StringView);
|
2020-06-14 11:04:58 +03:00
|
|
|
|
|
2021-03-10 11:54:09 -05:00
|
|
|
|
int opacity_percent() const { return m_opacity_percent; }
|
|
|
|
|
|
void set_opacity_percent(int percent);
|
|
|
|
|
|
|
2020-06-14 11:04:58 +03:00
|
|
|
|
Function<void()> on_click;
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
2021-11-11 00:55:02 +01:00
|
|
|
|
explicit ImageWidget(StringView text = {});
|
2020-06-14 11:04:58 +03:00
|
|
|
|
|
|
|
|
|
|
virtual void mousedown_event(GUI::MouseEvent&) override;
|
|
|
|
|
|
virtual void paint_event(PaintEvent&) override;
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
RefPtr<Gfx::Bitmap> m_bitmap;
|
|
|
|
|
|
bool m_should_stretch { false };
|
|
|
|
|
|
bool m_auto_resize { false };
|
|
|
|
|
|
|
|
|
|
|
|
RefPtr<Gfx::ImageDecoder> m_image_decoder;
|
|
|
|
|
|
size_t m_current_frame_index { 0 };
|
|
|
|
|
|
size_t m_loops_completed { 0 };
|
|
|
|
|
|
NonnullRefPtr<Core::Timer> m_timer;
|
2021-03-10 11:54:09 -05:00
|
|
|
|
|
|
|
|
|
|
int m_opacity_percent { 100 };
|
2020-06-14 11:04:58 +03:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|