mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2022-2023, Sam Atkins <atkinssj@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/ColorInput.h>
|
|
#include <LibGUI/Frame.h>
|
|
#include <LibGUI/IconView.h>
|
|
#include <LibGUI/ImageWidget.h>
|
|
#include <LibGUI/ModelIndex.h>
|
|
#include <LibGUI/SettingsWindow.h>
|
|
|
|
namespace GamesSettings {
|
|
|
|
class CardGamePreview;
|
|
|
|
class CardSettingsWidget final : public GUI::SettingsWindow::Tab {
|
|
C_OBJECT_ABSTRACT(CardSettingsWidget)
|
|
public:
|
|
static ErrorOr<NonnullRefPtr<CardSettingsWidget>> try_create();
|
|
virtual ~CardSettingsWidget() override = default;
|
|
|
|
virtual void apply_settings() override;
|
|
virtual void reset_default_values() override;
|
|
|
|
private:
|
|
CardSettingsWidget() = default;
|
|
ErrorOr<void> initialize();
|
|
|
|
bool set_card_back_image_path(DeprecatedString const&);
|
|
DeprecatedString card_back_image_path() const;
|
|
|
|
RefPtr<CardGamePreview> m_preview_frame;
|
|
RefPtr<GUI::ColorInput> m_background_color_input;
|
|
RefPtr<GUI::IconView> m_card_back_image_view;
|
|
|
|
GUI::ModelIndex m_last_selected_card_back;
|
|
};
|
|
|
|
}
|