// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#pragma once
#include "application-settings-new/models/BluetoothSettingsModel.hpp"
#include "AppWindow.hpp"
#include <Text.hpp>
namespace gui
{
class PhoneNameWindow : public AppWindow
{
public:
explicit PhoneNameWindow(app::Application *app);
private:
void buildInterface() override;
void destroyInterface() override;
void onBeforeShow(ShowMode mode, SwitchData *data) override;
auto onInput(const InputEvent &inputEvent) -> bool override;
Text *inputField = nullptr;
std::unique_ptr<BluetoothSettingsModel> bluetoothSettingsModel;
};
} /* namespace gui */