// 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 #include namespace gui { class SimContactImportSelectWidget : public ListItem { private: gui::CheckBoxWithLabel *checkBoxWithLabel = nullptr; public: SimContactImportSelectWidget(const std::string &contactName, const std::function &navBarTemporaryMode = nullptr, const std::function &navBarRestoreFromTemporaryMode = nullptr); bool isChecked(); }; } /* namespace gui */