// 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 "BellBaseLayout.hpp" #include namespace style::bell_sidelist_item { inline constexpr auto title_font = style::window::font::largelight; inline constexpr auto description_font = style::window::font::verybiglight; } // namespace style::bell_sidelist_item namespace gui { class TextFixedSize; class BellSideListItem : public ListItemWithDescription { public: BellBaseLayout *body = nullptr; explicit BellSideListItem(const std::string &description); void setupBottomDescription(const std::string &description); void setBottomDescribtionText(const std::string &description); protected: TextFixedSize *bottomText = nullptr; }; } /* namespace gui */