mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-24 00:49:28 -04:00
Status bar SIM widget refactor Status bar time widget recfactor Status bar lock widget refactor Separation of status bar time widget and desktop main window time widget Fixed issue with wrong calculation of timezone based time
21 lines
667 B
C++
21 lines
667 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 "StatusBarWidgetBase.hpp"
|
|
#include <Label.hpp>
|
|
#include <common_data/EventStore.hpp>
|
|
|
|
namespace gui::top_bar
|
|
{
|
|
class NetworkAccessTechnology : public StatusBarWidgetBase<Label>
|
|
{
|
|
Store::Network::AccessTechnology _accessTechnology = Store::Network::AccessTechnology::Unknown;
|
|
|
|
public:
|
|
NetworkAccessTechnology(Item *parent, uint32_t x, uint32_t y, uint32_t w, uint32_t h);
|
|
void update(Store::Network::AccessTechnology accessTechnology);
|
|
};
|
|
} // namespace gui::top_bar
|