mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-24 00:49:28 -04:00
- add ChangeDateAndTimeWindow, - extract EventTimeItem to common widgets folder and rename it to TimeWidget, - extract EventDateItem to common widgets folder and rename it to DateWidget, - replace timeWidget with common TimeWidget in NightshiftWindow, - refactor time setting in DesktopMainWindow and TopBar, - Remove dead code from EventManager (GetNextAlarmTimestamp and HandleAlarmTrigger)
28 lines
924 B
C++
28 lines
924 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 "CalendarListItem.hpp"
|
|
#include <Label.hpp>
|
|
#include <Text.hpp>
|
|
#include <BoxLayout.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
class TextWithLabelItem : public CalendarListItem
|
|
{
|
|
gui::VBox *vBox = nullptr;
|
|
gui::Label *descriptionLabel = nullptr;
|
|
gui::Text *textInput = nullptr;
|
|
|
|
public:
|
|
TextWithLabelItem(const std::string &description,
|
|
std::function<void(const UTF8 &text)> bottomBarTemporaryMode = nullptr,
|
|
std::function<void()> bottomBarRestoreFromTemporaryMode = nullptr,
|
|
std::function<void()> selectSpecialCharacter = nullptr);
|
|
virtual ~TextWithLabelItem() override = default;
|
|
};
|
|
|
|
} /* namespace gui */
|