2021-05-09 18:15:35 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Valtteri Koskivuori <vkoskiv@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "MagnifierWidget.h"
|
2021-06-07 04:35:07 -03:00
|
|
|
#include <LibGUI/DisplayLink.h>
|
2021-05-09 18:15:35 -03:00
|
|
|
#include <LibGUI/Painter.h>
|
|
|
|
|
#include <LibGUI/Window.h>
|
|
|
|
|
#include <LibGUI/WindowServerConnection.h>
|
2021-05-11 09:02:46 -03:00
|
|
|
#include <LibGfx/Rect.h>
|
2021-05-09 18:15:35 -03:00
|
|
|
|
|
|
|
|
MagnifierWidget::MagnifierWidget()
|
|
|
|
|
{
|
2021-06-07 04:35:07 -03:00
|
|
|
GUI::DisplayLink::register_callback([this](auto) { sync(); });
|
2021-05-09 18:15:35 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MagnifierWidget::~MagnifierWidget()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MagnifierWidget::set_scale_factor(int scale_factor)
|
|
|
|
|
{
|
2021-09-17 17:29:35 -03:00
|
|
|
VERIFY(scale_factor == 2 || scale_factor == 4 || scale_factor == 8);
|
2021-05-09 18:15:35 -03:00
|
|
|
m_scale_factor = scale_factor;
|
|
|
|
|
update();
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-07 04:35:07 -03:00
|
|
|
void MagnifierWidget::sync()
|
2021-05-09 18:15:35 -03:00
|
|
|
{
|
2021-09-17 17:29:35 -03:00
|
|
|
if (m_pause_capture)
|
|
|
|
|
return;
|
|
|
|
|
|
2021-07-04 17:33:28 -03:00
|
|
|
auto size = frame_inner_rect().size();
|
|
|
|
|
Gfx::IntSize grab_size { size.width() / m_scale_factor, size.height() / m_scale_factor };
|
2021-06-07 05:20:50 -03:00
|
|
|
m_grabbed_bitmap = GUI::WindowServerConnection::the().get_screen_bitmap_around_cursor(grab_size).bitmap();
|
2021-05-09 18:15:35 -03:00
|
|
|
update();
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-04 17:33:28 -03:00
|
|
|
void MagnifierWidget::paint_event(GUI::PaintEvent& event)
|
2021-05-09 18:15:35 -03:00
|
|
|
{
|
2021-07-04 17:33:28 -03:00
|
|
|
GUI::Frame::paint_event(event);
|
|
|
|
|
|
2021-05-09 18:15:35 -03:00
|
|
|
GUI::Painter painter(*this);
|
|
|
|
|
|
2021-06-07 04:35:07 -03:00
|
|
|
if (m_grabbed_bitmap)
|
2021-07-04 17:33:28 -03:00
|
|
|
painter.draw_scaled_bitmap(frame_inner_rect(), *m_grabbed_bitmap, m_grabbed_bitmap->rect());
|
2021-05-09 18:15:35 -03:00
|
|
|
}
|