mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-04 01:05:58 +03:00
44b67db7ab
This also further improves error propagation in cases where String demands it.
31 lines
615 B
C++
31 lines
615 B
C++
/*
|
|
* Copyright (c) 2022, MacDue <macdue@dueutil.tech>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <LibGUI/AbstractThemePreview.h>
|
|
#include <LibGUI/Widget.h>
|
|
#include <LibGfx/Bitmap.h>
|
|
#include <LibGfx/Palette.h>
|
|
#include <LibGfx/WindowTheme.h>
|
|
|
|
namespace DisplaySettings {
|
|
|
|
class ThemePreviewWidget final : public GUI::AbstractThemePreview {
|
|
C_OBJECT(ThemePreviewWidget);
|
|
|
|
public:
|
|
ErrorOr<void> set_theme(String path);
|
|
|
|
private:
|
|
explicit ThemePreviewWidget(Gfx::Palette const& palette);
|
|
|
|
void paint_preview(GUI::PaintEvent& event) override;
|
|
};
|
|
|
|
}
|