mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 14:14:45 +03:00
401ea85655
This adds an option for even more magnification, when you really need to count pixels, as well as pausing the capture by pressing Space and switching between magnification levels with keys 2, 4 & 8.
30 lines
608 B
C++
30 lines
608 B
C++
/*
|
|
* Copyright (c) 2021, Valtteri Koskivuori <vkoskiv@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Frame.h>
|
|
|
|
class MagnifierWidget final : public GUI::Frame {
|
|
C_OBJECT(MagnifierWidget);
|
|
|
|
public:
|
|
virtual ~MagnifierWidget();
|
|
void set_scale_factor(int scale_factor);
|
|
void pause_capture(bool pause) { m_pause_capture = pause; }
|
|
|
|
private:
|
|
MagnifierWidget();
|
|
|
|
virtual void paint_event(GUI::PaintEvent&) override;
|
|
|
|
void sync();
|
|
|
|
int m_scale_factor { 2 };
|
|
RefPtr<Gfx::Bitmap> m_grabbed_bitmap;
|
|
bool m_pause_capture { false };
|
|
};
|