2020-03-29 13:01:55 -03:00
|
|
|
|
/*
|
2020-12-25 08:15:16 -03:00
|
|
|
|
* Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
|
2020-03-29 13:01:55 -03:00
|
|
|
|
* All rights reserved.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
*
|
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
|
|
*
|
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
|
*
|
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "MonitorWidget.h"
|
|
|
|
|
|
#include <LibGUI/Painter.h>
|
2020-12-29 22:44:03 -03:00
|
|
|
|
#include <LibGfx/Bitmap.h>
|
2021-01-15 21:02:17 -03:00
|
|
|
|
#include <LibGfx/Font.h>
|
2020-12-29 22:44:03 -03:00
|
|
|
|
|
|
|
|
|
|
namespace DisplaySettings {
|
2020-03-29 13:01:55 -03:00
|
|
|
|
|
|
|
|
|
|
MonitorWidget::MonitorWidget()
|
|
|
|
|
|
{
|
2020-08-24 07:03:30 -03:00
|
|
|
|
m_monitor_bitmap = Gfx::Bitmap::load_from_file("/res/graphics/monitor.png");
|
2020-03-29 13:01:55 -03:00
|
|
|
|
m_monitor_rect = { 8, 9, 320, 180 };
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-06-27 06:04:43 -03:00
|
|
|
|
bool MonitorWidget::set_wallpaper(String path)
|
2020-03-29 13:01:55 -03:00
|
|
|
|
{
|
2020-06-27 06:04:43 -03:00
|
|
|
|
auto bitmap_ptr = Gfx::Bitmap::load_from_file(path);
|
2020-12-13 07:10:37 -03:00
|
|
|
|
if (!bitmap_ptr && !path.is_empty())
|
2020-06-27 06:04:43 -03:00
|
|
|
|
return false;
|
2020-12-13 07:10:37 -03:00
|
|
|
|
m_desktop_wallpaper_path = path;
|
2020-06-27 06:04:43 -03:00
|
|
|
|
m_desktop_wallpaper_bitmap = bitmap_ptr;
|
|
|
|
|
|
return true;
|
2020-03-29 13:01:55 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
String MonitorWidget::wallpaper()
|
|
|
|
|
|
{
|
|
|
|
|
|
return m_desktop_wallpaper_path;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MonitorWidget::set_wallpaper_mode(String mode)
|
|
|
|
|
|
{
|
|
|
|
|
|
m_desktop_wallpaper_mode = mode;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
String MonitorWidget::wallpaper_mode()
|
|
|
|
|
|
{
|
|
|
|
|
|
return m_desktop_wallpaper_mode;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-06-10 05:57:59 -03:00
|
|
|
|
void MonitorWidget::set_desktop_resolution(Gfx::IntSize resolution)
|
2020-03-29 13:01:55 -03:00
|
|
|
|
{
|
|
|
|
|
|
m_desktop_resolution = resolution;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-06-10 05:57:59 -03:00
|
|
|
|
Gfx::IntSize MonitorWidget::desktop_resolution()
|
2020-03-29 13:01:55 -03:00
|
|
|
|
{
|
|
|
|
|
|
return m_desktop_resolution;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MonitorWidget::set_background_color(Gfx::Color color)
|
|
|
|
|
|
{
|
|
|
|
|
|
m_desktop_color = color;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Gfx::Color MonitorWidget::background_color()
|
|
|
|
|
|
{
|
|
|
|
|
|
return m_desktop_color;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MonitorWidget::paint_event(GUI::PaintEvent& event)
|
|
|
|
|
|
{
|
2021-01-22 13:12:00 -03:00
|
|
|
|
Gfx::IntRect screen_rect = { { 0, 0 }, m_desktop_resolution };
|
2020-04-15 11:40:46 -03:00
|
|
|
|
auto screen_bitmap = Gfx::Bitmap::create(m_monitor_bitmap->format(), m_desktop_resolution);
|
|
|
|
|
|
GUI::Painter screen_painter(*screen_bitmap);
|
|
|
|
|
|
screen_painter.fill_rect(screen_rect, m_desktop_color);
|
2020-03-29 13:01:55 -03:00
|
|
|
|
|
|
|
|
|
|
if (!m_desktop_wallpaper_bitmap.is_null()) {
|
|
|
|
|
|
if (m_desktop_wallpaper_mode == "simple") {
|
2020-04-15 11:40:46 -03:00
|
|
|
|
screen_painter.blit({ 0, 0 }, *m_desktop_wallpaper_bitmap, m_desktop_wallpaper_bitmap->rect());
|
2020-03-29 13:01:55 -03:00
|
|
|
|
} else if (m_desktop_wallpaper_mode == "center") {
|
2021-01-22 13:12:00 -03:00
|
|
|
|
Gfx::IntPoint offset { (screen_rect.width() - m_desktop_wallpaper_bitmap->width()) / 2, (screen_rect.height() - m_desktop_wallpaper_bitmap->height()) / 2 };
|
2020-04-15 11:40:46 -03:00
|
|
|
|
screen_painter.blit_offset(screen_rect.location(), *m_desktop_wallpaper_bitmap, screen_rect, offset);
|
2020-03-29 13:01:55 -03:00
|
|
|
|
} else if (m_desktop_wallpaper_mode == "tile") {
|
2020-04-15 11:40:46 -03:00
|
|
|
|
screen_painter.draw_tiled_bitmap(screen_bitmap->rect(), *m_desktop_wallpaper_bitmap);
|
2020-10-26 11:16:44 -03:00
|
|
|
|
} else if (m_desktop_wallpaper_mode == "stretch") {
|
2020-04-15 11:40:46 -03:00
|
|
|
|
screen_painter.draw_scaled_bitmap(screen_bitmap->rect(), *m_desktop_wallpaper_bitmap, m_desktop_wallpaper_bitmap->rect());
|
2020-03-29 13:01:55 -03:00
|
|
|
|
} else {
|
2021-02-23 16:42:32 -03:00
|
|
|
|
VERIFY_NOT_REACHED();
|
2020-03-29 13:01:55 -03:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-04-15 11:40:46 -03:00
|
|
|
|
GUI::Painter painter(*this);
|
|
|
|
|
|
painter.add_clip_rect(event.rect());
|
|
|
|
|
|
|
|
|
|
|
|
painter.blit({ 0, 0 }, *m_monitor_bitmap, m_monitor_bitmap->rect());
|
|
|
|
|
|
painter.draw_scaled_bitmap(m_monitor_rect, *screen_bitmap, screen_bitmap->rect());
|
|
|
|
|
|
|
2020-12-12 20:51:35 -03:00
|
|
|
|
if (!m_desktop_resolution.is_null()) {
|
2021-01-15 21:02:17 -03:00
|
|
|
|
auto displayed_resolution_string = Gfx::IntSize { m_desktop_resolution.width(), m_desktop_resolution.height() }.to_string();
|
|
|
|
|
|
|
|
|
|
|
|
// Render text label scaled with scale factor to hint at its effect.
|
|
|
|
|
|
// FIXME: Once bitmaps have intrinsic scale factors, we could create a bitmap with an intrinsic scale factor of m_desktop_scale_factor
|
|
|
|
|
|
// and that should give us the same effect with less code.
|
|
|
|
|
|
auto text_bitmap = Gfx::Bitmap::create(Gfx::BitmapFormat::RGBA32, Gfx::IntSize { painter.font().width(displayed_resolution_string) + 1, painter.font().glyph_height() + 1 });
|
|
|
|
|
|
GUI::Painter text_painter(*text_bitmap);
|
|
|
|
|
|
text_painter.set_font(painter.font());
|
|
|
|
|
|
|
|
|
|
|
|
text_painter.draw_text({}, displayed_resolution_string, Gfx::TextAlignment::BottomRight, Color::Black);
|
|
|
|
|
|
text_painter.draw_text({}, displayed_resolution_string, Gfx::TextAlignment::TopLeft, Color::White);
|
|
|
|
|
|
|
|
|
|
|
|
Gfx::IntRect text_rect = text_bitmap->rect();
|
|
|
|
|
|
text_rect.set_width(text_rect.width() * m_desktop_scale_factor);
|
|
|
|
|
|
text_rect.set_height(text_rect.height() * m_desktop_scale_factor);
|
|
|
|
|
|
text_rect.center_within(m_monitor_rect);
|
|
|
|
|
|
painter.draw_scaled_bitmap(text_rect, *text_bitmap, text_bitmap->rect());
|
2020-12-12 20:51:35 -03:00
|
|
|
|
}
|
2020-03-29 13:01:55 -03:00
|
|
|
|
}
|
2020-12-29 22:44:03 -03:00
|
|
|
|
|
|
|
|
|
|
}
|