/* * Copyright (c) 2020, Andreas Kling * Copyright (c) 2021, Sam Atkins * Copyright (c) 2021, Antonio Di Stefano * * SPDX-License-Identifier: BSD-2-Clause */ #include "PreviewWidget.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace ThemeEditor { class MiniWidgetGallery final : public GUI::Widget { C_OBJECT(MiniWidgetGallery); public: void set_preview_palette(const Gfx::Palette& palette) { set_palette(palette); Function recurse = [&](GUI::Widget& parent_widget) { parent_widget.for_each_child_widget([&](auto& widget) { widget.set_palette(palette); recurse(widget); return IterationDecision::Continue; }); }; recurse(*this); } private: MiniWidgetGallery() { m_button = add(); m_button->set_text("Button"); m_checkbox = add(); m_checkbox->set_text("Check box"); m_radio = add(); m_radio->set_text("Radio button"); m_statusbar = add(); m_statusbar->set_text("Status bar"); m_editor = add(); m_editor->set_text("Text editor\nwith multiple\nlines."); for_each_child_widget([](auto& child) { child.set_focus_policy(GUI::FocusPolicy::NoFocus); return IterationDecision::Continue; }); } virtual void resize_event(GUI::ResizeEvent&) override { m_editor->set_relative_rect(10, 70, 200, 140); m_button->set_relative_rect(10, 10, 200, 20); m_checkbox->set_relative_rect(10, 30, 200, 20); m_radio->set_relative_rect(10, 50, 200, 20); m_statusbar->set_relative_rect(0, height() - 16, width(), 16); } RefPtr m_editor; RefPtr m_button; RefPtr m_checkbox; RefPtr m_radio; RefPtr m_statusbar; }; PreviewWidget::PreviewWidget(const Gfx::Palette& preview_palette) : m_preview_palette(preview_palette) { m_active_window_icon = Gfx::Bitmap::try_load_from_file("/res/icons/16x16/window.png").release_value_but_fixme_should_propagate_errors(); m_inactive_window_icon = Gfx::Bitmap::try_load_from_file("/res/icons/16x16/window.png").release_value_but_fixme_should_propagate_errors(); m_default_close_bitmap = Gfx::Bitmap::try_load_from_file("/res/icons/16x16/window-close.png").release_value_but_fixme_should_propagate_errors(); m_default_maximize_bitmap = Gfx::Bitmap::try_load_from_file("/res/icons/16x16/upward-triangle.png").release_value_but_fixme_should_propagate_errors(); m_default_minimize_bitmap = Gfx::Bitmap::try_load_from_file("/res/icons/16x16/downward-triangle.png").release_value_but_fixme_should_propagate_errors(); VERIFY(m_active_window_icon); VERIFY(m_inactive_window_icon); VERIFY(m_default_close_bitmap); VERIFY(m_default_maximize_bitmap); VERIFY(m_default_minimize_bitmap); load_theme_bitmaps(); m_gallery = add(); set_greedy_for_hits(true); } PreviewWidget::~PreviewWidget() { } void PreviewWidget::load_theme_bitmaps() { auto load_bitmap = [](String const& path, String& last_path, RefPtr& bitmap) { bitmap = nullptr; if (path.is_empty()) { last_path = String::empty(); } else if (last_path != path) { auto bitmap_or_error = Gfx::Bitmap::try_load_from_file(path); if (bitmap_or_error.is_error()) { last_path = String::empty(); } else { last_path = path; bitmap = bitmap_or_error.release_value(); } } }; auto buttons_path = m_preview_palette.title_button_icons_path(); load_bitmap(LexicalPath::absolute_path(buttons_path, "window-close.png"), m_last_close_path, m_close_bitmap); load_bitmap(LexicalPath::absolute_path(buttons_path, "window-maximize.png"), m_last_maximize_path, m_maximize_bitmap); load_bitmap(LexicalPath::absolute_path(buttons_path, "window-minimize.png"), m_last_minimize_path, m_minimize_bitmap); load_bitmap(m_preview_palette.active_window_shadow_path(), m_last_active_window_shadow_path, m_active_window_shadow); load_bitmap(m_preview_palette.inactive_window_shadow_path(), m_last_inactive_window_shadow_path, m_inactive_window_shadow); load_bitmap(m_preview_palette.menu_shadow_path(), m_last_menu_shadow_path, m_menu_shadow); load_bitmap(m_preview_palette.taskbar_shadow_path(), m_last_taskbar_shadow_path, m_taskbar_shadow); load_bitmap(m_preview_palette.tooltip_shadow_path(), m_last_tooltip_shadow_path, m_tooltip_shadow); } void PreviewWidget::set_preview_palette(const Gfx::Palette& palette) { m_preview_palette = palette; m_gallery->set_preview_palette(palette); load_theme_bitmaps(); update(); } void PreviewWidget::set_theme_from_file(String const& path, int fd) { auto file = Core::ConfigFile::open(path, fd); auto theme = Gfx::load_system_theme(file); VERIFY(theme.is_valid()); m_preview_palette = Gfx::Palette(Gfx::PaletteImpl::create_with_anonymous_buffer(theme)); set_preview_palette(m_preview_palette); if (on_theme_load_from_file) on_theme_load_from_file(path); } void PreviewWidget::set_color_filter(OwnPtr color_filter) { m_color_filter = move(color_filter); repaint(); } void PreviewWidget::paint_event(GUI::PaintEvent& event) { GUI::Frame::paint_event(event); GUI::Painter painter(*this); painter.add_clip_rect(event.rect()); painter.add_clip_rect(frame_inner_rect()); painter.fill_rect(frame_inner_rect(), m_preview_palette.desktop_background()); struct Button { Gfx::IntRect rect; RefPtr bitmap; }; auto paint_window = [&](auto& title, const Gfx::IntRect& rect, auto state, const Gfx::Bitmap& icon) { int window_button_width = m_preview_palette.window_title_button_width(); int window_button_height = m_preview_palette.window_title_button_height(); auto titlebar_text_rect = Gfx::WindowTheme::current().titlebar_text_rect(Gfx::WindowTheme::WindowType::Normal, rect, m_preview_palette); int pos = titlebar_text_rect.right() + 1; Vector