// 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 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; }; } // namespace gui