mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:52:45 +00:00 
			
		
		
		
	 cf4a43e4c0
			
		
	
	
		cf4a43e4c0
		
	
	
	
	
		
			
			When either king is in check, its square is now highlighted with a red background. This behavior can be toggled in GameSettings.
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			1,005 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			1,005 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Array.h>
 | |
| #include <AK/StringView.h>
 | |
| #include <LibGUI/SettingsWindow.h>
 | |
| #include <LibGfx/Color.h>
 | |
| 
 | |
| namespace GamesSettings {
 | |
| 
 | |
| class ChessGamePreview;
 | |
| 
 | |
| class ChessSettingsWidget final : public GUI::SettingsWindow::Tab {
 | |
|     C_OBJECT_ABSTRACT(ChessSettingsWidget)
 | |
| public:
 | |
|     static ErrorOr<NonnullRefPtr<ChessSettingsWidget>> try_create();
 | |
|     virtual ~ChessSettingsWidget() override = default;
 | |
| 
 | |
|     virtual void apply_settings() override;
 | |
|     virtual void reset_default_values() override;
 | |
| 
 | |
| private:
 | |
|     ChessSettingsWidget() = default;
 | |
|     ErrorOr<void> initialize();
 | |
| 
 | |
|     Vector<DeprecatedString> m_piece_sets;
 | |
| 
 | |
|     RefPtr<ChessGamePreview> m_preview;
 | |
|     RefPtr<GUI::ComboBox> m_piece_set_combobox;
 | |
|     RefPtr<GUI::ComboBox> m_board_theme_combobox;
 | |
|     RefPtr<GUI::CheckBox> m_show_coordinates_checkbox;
 | |
|     RefPtr<GUI::CheckBox> m_highlight_checks_checkbox;
 | |
| };
 | |
| 
 | |
| }
 |