ladybird/Userland/Applications/Magnifier/MagnifierWidget.h
Marcus Nilsson 401ea85655 Magnifier: Add 8x magnification and pausing
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.
2021-09-17 23:48:42 +02:00

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 };
};