ladybird/Userland/Applications/DisplaySettings/DesktopSettingsWidget.cpp

60 lines
2.0 KiB
C++

/*
* Copyright (c) 2020, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "DesktopSettingsWidget.h"
#include <Applications/DisplaySettings/DesktopSettingsGML.h>
#include <LibGUI/BoxLayout.h>
#include <LibGUI/Desktop.h>
#include <LibGUI/Label.h>
#include <LibGUI/MessageBox.h>
#include <LibGUI/SpinBox.h>
#include <LibGUI/WindowServerConnection.h>
namespace DisplaySettings {
DesktopSettingsWidget::DesktopSettingsWidget()
{
create_frame();
load_current_settings();
}
DesktopSettingsWidget::~DesktopSettingsWidget()
{
}
void DesktopSettingsWidget::create_frame()
{
load_from_gml(desktop_settings_gml);
auto& light_bulb_label = *find_descendant_of_type_named<GUI::Label>("light_bulb_label");
light_bulb_label.set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/32x32/app-welcome.png").release_value_but_fixme_should_propagate_errors());
m_workspace_rows_spinbox = *find_descendant_of_type_named<GUI::SpinBox>("workspace_rows_spinbox");
m_workspace_columns_spinbox = *find_descendant_of_type_named<GUI::SpinBox>("workspace_columns_spinbox");
}
void DesktopSettingsWidget::load_current_settings()
{
auto& desktop = GUI::Desktop::the();
m_workspace_rows_spinbox->set_value(desktop.workspace_rows());
m_workspace_columns_spinbox->set_value(desktop.workspace_columns());
}
void DesktopSettingsWidget::apply_settings()
{
auto workspace_rows = (unsigned)m_workspace_rows_spinbox->value();
auto workspace_columns = (unsigned)m_workspace_columns_spinbox->value();
auto& desktop = GUI::Desktop::the();
if (workspace_rows != desktop.workspace_rows() || workspace_columns != desktop.workspace_columns()) {
if (!GUI::WindowServerConnection::the().apply_workspace_settings(workspace_rows, workspace_columns, true)) {
GUI::MessageBox::show(window(), String::formatted("Error applying workspace settings"),
"Workspace settings", GUI::MessageBox::Type::Error);
}
}
}
}