summaryrefslogtreecommitdiff
path: root/Userland/Applications/NetworkSettings/NetworkSettingsWidget.h
blob: 6f7f94931321ea471661563911207c713bfd6a4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Copyright (c) 2022, Maciej <sppmacd@pm.me>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibGUI/SettingsWindow.h>

#include <AK/HashMap.h>

namespace NetworkSettings {

class NetworkSettingsWidget : public GUI::SettingsWindow::Tab {
    C_OBJECT(NetworkSettingsWidget)

public:
    virtual void apply_settings() override;
    void switch_adapter(String const& adapter);

private:
    NetworkSettingsWidget();

    struct NetworkAdapterData {
        bool enabled = false;
        bool dhcp = false;
        String ip_address;
        int cidr = 0;
        String default_gateway;
    };

    void on_switch_adapter(String const& adapter);
    void on_switch_enabled_or_dhcp();

    HashMap<String, NetworkAdapterData> m_network_adapters;
    Vector<String> m_adapter_names;
    NetworkAdapterData* m_current_adapter_data = nullptr;

    RefPtr<GUI::CheckBox> m_enabled_checkbox;
    RefPtr<GUI::CheckBox> m_dhcp_checkbox;
    RefPtr<GUI::ComboBox> m_adapters_combobox;
    RefPtr<GUI::TextBox> m_ip_address_textbox;
    RefPtr<GUI::SpinBox> m_cidr_spinbox;
    RefPtr<GUI::TextBox> m_default_gateway_textbox;
};

}