mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-21 05:24:22 -04:00
29 lines
778 B
C++
29 lines
778 B
C++
// 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>
|
|
|
|
namespace gui
|
|
{
|
|
class Image;
|
|
class Label;
|
|
class Text;
|
|
class BluetoothCheckPasskeyWindow : public AppWindow
|
|
{
|
|
public:
|
|
explicit BluetoothCheckPasskeyWindow(app::Application *app);
|
|
|
|
private:
|
|
void buildInterface() override;
|
|
auto onInput(const InputEvent &inputEvent) -> bool override;
|
|
|
|
Image *image = nullptr;
|
|
Label *label = nullptr;
|
|
Text *text = nullptr;
|
|
std::unique_ptr<BluetoothSettingsModel> bluetoothSettingsModel;
|
|
};
|
|
} // namespace gui
|