mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-27 01:36:59 -04:00
23 lines
533 B
C++
23 lines
533 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 "SignalStrengthWidgetBase.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
class Label;
|
|
class SignalStrengthWidgetText : public SignalStrengthWidgetBase
|
|
{
|
|
private:
|
|
Label *label = nullptr;
|
|
|
|
protected:
|
|
void update() override;
|
|
|
|
public:
|
|
SignalStrengthWidgetText(Item *parent, uint32_t x, uint32_t y, uint32_t w, uint32_t h);
|
|
};
|
|
} // namespace gui
|