mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:28:11 +00:00
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "SettingsDialog.h"
|
|
#include <AK/IntegralMath.h>
|
|
#include <AK/QuickSort.h>
|
|
#include <Games/Flood/SettingsDialogGML.h>
|
|
#include <LibCore/DirIterator.h>
|
|
#include <LibGUI/BoxLayout.h>
|
|
#include <LibGUI/Button.h>
|
|
#include <LibGUI/CheckBox.h>
|
|
#include <LibGUI/ComboBox.h>
|
|
#include <LibGUI/ItemListModel.h>
|
|
#include <LibGUI/Label.h>
|
|
#include <LibGUI/SpinBox.h>
|
|
|
|
SettingsDialog::SettingsDialog(GUI::Window* parent, size_t board_rows, size_t board_columns)
|
|
: GUI::Dialog(parent)
|
|
, m_board_rows(board_rows)
|
|
, m_board_columns(board_columns)
|
|
{
|
|
set_rect({ 0, 0, 250, 150 });
|
|
set_title("New Game");
|
|
set_icon(parent->icon());
|
|
set_resizable(false);
|
|
|
|
auto& main_widget = set_main_widget<GUI::Widget>();
|
|
if (!main_widget.load_from_gml(settings_dialog_gml))
|
|
VERIFY_NOT_REACHED();
|
|
|
|
auto board_rows_spinbox = main_widget.find_descendant_of_type_named<GUI::SpinBox>("board_rows_spinbox");
|
|
board_rows_spinbox->set_value(m_board_rows);
|
|
|
|
board_rows_spinbox->on_change = [&](auto value) {
|
|
m_board_rows = value;
|
|
};
|
|
|
|
auto board_columns_spinbox = main_widget.find_descendant_of_type_named<GUI::SpinBox>("board_columns_spinbox");
|
|
board_columns_spinbox->set_value(m_board_columns);
|
|
|
|
board_columns_spinbox->on_change = [&](auto value) {
|
|
m_board_columns = value;
|
|
};
|
|
|
|
auto cancel_button = main_widget.find_descendant_of_type_named<GUI::Button>("cancel_button");
|
|
cancel_button->on_click = [this](auto) {
|
|
done(ExecResult::Cancel);
|
|
};
|
|
|
|
auto ok_button = main_widget.find_descendant_of_type_named<GUI::Button>("ok_button");
|
|
ok_button->on_click = [this](auto) {
|
|
done(ExecResult::OK);
|
|
};
|
|
}
|