Files
MuditaOS/module-apps/application-settings/widgets/network/SimContactImportSelectWidget.hpp
Przemyslaw Brudny 7597d38852 [EGD-7857] Renamed BottomBar to NavBar
Renamed BottomBar to NavBar.
2021-10-26 13:51:06 +02:00

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