// 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 #include namespace gui { class SettingsSoundItem : public ListItem { public: SettingsSoundItem(const std::string &soundName, bool selected); private: HBox *mMainBox = nullptr; TextFixedSize *mSoundTitle = nullptr; Image *mIsSelected = nullptr; }; } /* namespace gui */