mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-24 05:47:58 -05: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)
237 lines
6.8 KiB
C++
237 lines
6.8 KiB
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "AppWindow.hpp"
|
|
#include "Application.hpp"
|
|
#include "InputEvent.hpp"
|
|
#include <Style.hpp>
|
|
#include <application-desktop/ApplicationDesktop.hpp>
|
|
#include <i18n/i18n.hpp>
|
|
#include <service-appmgr/Controller.hpp>
|
|
#include <service-audio/AudioServiceAPI.hpp>
|
|
|
|
using namespace style::header;
|
|
|
|
namespace gui
|
|
{
|
|
|
|
AppWindow::AppWindow(app::Application *app, std::string name) : Window(name), application{app}
|
|
{
|
|
setSize(style::window_width, style::window_height);
|
|
}
|
|
|
|
void AppWindow::destroyInterface()
|
|
{
|
|
erase(bottomBar);
|
|
erase(topBar);
|
|
erase(title);
|
|
title = nullptr;
|
|
bottomBar = nullptr;
|
|
topBar = nullptr;
|
|
}
|
|
|
|
void AppWindow::rebuild()
|
|
{}
|
|
|
|
void AppWindow::buildInterface()
|
|
{
|
|
bottomBar = new gui::BottomBar(this, 0, 599 - 50, 480, 50);
|
|
bottomBar->setActive(BottomBar::Side::LEFT, false);
|
|
bottomBar->setActive(BottomBar::Side::CENTER, false);
|
|
bottomBar->setActive(BottomBar::Side::RIGHT, false);
|
|
|
|
title = new gui::Label(this, 0, 52, 480, 52);
|
|
title->setFilled(false);
|
|
title->setFont(font::title);
|
|
title->clear();
|
|
title->setAlignment(gui::Alignment(gui::Alignment::Horizontal::Center, gui::Alignment::Vertical::Top));
|
|
title->setEdges(RectangleEdge::Bottom);
|
|
title->setEllipsis(Ellipsis::Right);
|
|
title->visible = false;
|
|
|
|
auto config = configureTopBar(application->getTopBarConfiguration());
|
|
topBar = new gui::top_bar::TopBar(this, 0, 0, 480, 50);
|
|
topBar->configure(std::move(config));
|
|
}
|
|
|
|
top_bar::Configuration AppWindow::configureTopBar(top_bar::Configuration appConfiguration)
|
|
{
|
|
return appConfiguration;
|
|
}
|
|
|
|
void AppWindow::applyToTopBar(TopBarConfigurationChangeFunction configChange)
|
|
{
|
|
if (configChange) {
|
|
auto newConfiguration = configChange(topBar->getConfiguration());
|
|
topBar->configure(std::move(newConfiguration));
|
|
}
|
|
}
|
|
|
|
bool AppWindow::setSIM()
|
|
{
|
|
topBar->simSet();
|
|
return true;
|
|
}
|
|
|
|
bool AppWindow::updateBatteryStatus()
|
|
{
|
|
if (topBar != nullptr) {
|
|
return topBar->updateBattery();
|
|
}
|
|
return false;
|
|
}
|
|
// updates battery level in the window
|
|
bool AppWindow::updateSignalStrength()
|
|
{
|
|
return topBar->updateSignalStrength();
|
|
}
|
|
|
|
bool AppWindow::updateNetworkAccessTechnology()
|
|
{
|
|
return topBar->updateNetworkAccessTechnology();
|
|
}
|
|
|
|
void AppWindow::setTitle(const UTF8 &text)
|
|
{
|
|
if (title != nullptr) {
|
|
title->setText(text);
|
|
title->setVisible(text.length() != 0);
|
|
}
|
|
else {
|
|
LOG_ERROR("cant set title - it doesn't exist!");
|
|
}
|
|
}
|
|
|
|
bool AppWindow::onDatabaseMessage(sys::Message *msg)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool AppWindow::onInput(const InputEvent &inputEvent)
|
|
{
|
|
// check if any of the lower inheritance onInput methods catch the event
|
|
if (Window::onInput(inputEvent)) {
|
|
return true;
|
|
}
|
|
|
|
if (inputEvent.state == InputEvent::State::keyReleasedLong && inputEvent.keyCode == gui::KeyCode::KEY_RF) {
|
|
LOG_INFO("exit to main menu");
|
|
app::manager::Controller::sendAction(application, app::manager::actions::Home);
|
|
}
|
|
|
|
if ((inputEvent.isShortPress())) {
|
|
switch (inputEvent.keyCode) {
|
|
case KeyCode::KEY_VOLUP: {
|
|
application->increaseCurrentVolume();
|
|
return true;
|
|
}
|
|
case KeyCode::KEY_VOLDN: {
|
|
application->decreaseCurrentVolume();
|
|
return true;
|
|
}
|
|
case KeyCode::KEY_RF: {
|
|
application->returnToPreviousWindow();
|
|
return true;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (inputEvent.keyCode == KeyCode::KEY_TORCH) {
|
|
if (inputEvent.isLongPress()) {
|
|
application->toggleTorch(bsp::torch::ColourTemperature::warmest);
|
|
return true;
|
|
}
|
|
else if (inputEvent.isShortPress()) {
|
|
application->toggleTorch(bsp::torch::ColourTemperature::coldest);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void AppWindow::bottomBarTemporaryMode(const UTF8 &text, bool emptyOthers)
|
|
{
|
|
bottomBarTemporaryMode(text, BottomBar::Side::LEFT, emptyOthers);
|
|
}
|
|
|
|
void AppWindow::bottomBarTemporaryMode(const UTF8 &text, BottomBar::Side side, bool emptyOthers)
|
|
{
|
|
if (bottomBar == nullptr) {
|
|
return;
|
|
}
|
|
|
|
bottomBar->store();
|
|
|
|
if (emptyOthers) {
|
|
bottomBar->setText(BottomBar::Side::LEFT, "");
|
|
bottomBar->setText(BottomBar::Side::CENTER, "");
|
|
bottomBar->setText(BottomBar::Side::RIGHT, "");
|
|
}
|
|
|
|
switch (side) {
|
|
case BottomBar::Side::LEFT:
|
|
bottomBar->setText(BottomBar::Side::LEFT, text);
|
|
break;
|
|
case BottomBar::Side::CENTER:
|
|
bottomBar->setText(BottomBar::Side::CENTER, text);
|
|
break;
|
|
case BottomBar::Side::RIGHT:
|
|
bottomBar->setText(BottomBar::Side::RIGHT, text);
|
|
break;
|
|
}
|
|
application->refreshWindow(gui::RefreshModes::GUI_REFRESH_FAST);
|
|
}
|
|
|
|
void AppWindow::bottomBarRestoreFromTemporaryMode()
|
|
{
|
|
if (bottomBar == nullptr) {
|
|
return;
|
|
}
|
|
|
|
bottomBar->restore();
|
|
application->refreshWindow(gui::RefreshModes::GUI_REFRESH_FAST);
|
|
}
|
|
|
|
void AppWindow::setBottomBarText(const UTF8 &text, BottomBar::Side side)
|
|
{
|
|
bottomBar->setText(side, text);
|
|
}
|
|
|
|
void AppWindow::clearBottomBarText(BottomBar::Side side)
|
|
{
|
|
bottomBar->setText(side, "");
|
|
}
|
|
|
|
bool AppWindow::selectSpecialCharacter()
|
|
{
|
|
application->clearLongPressTimeout();
|
|
return app::manager::Controller::sendAction(
|
|
application,
|
|
app::manager::actions::ShowSpecialInput,
|
|
std::make_unique<gui::SwitchSpecialChar>(gui::SwitchSpecialChar::Type::Request, application->GetName()),
|
|
app::manager::OnSwitchBehaviour::RunInBackground);
|
|
}
|
|
|
|
BoundingBox AppWindow::bodySize()
|
|
{
|
|
return {0,
|
|
title->offset_h(),
|
|
this->getWidth(),
|
|
this->getHeight() - this->title->offset_h() - bottomBar->getHeight()};
|
|
}
|
|
|
|
void AppWindow::setBottomBarActive(BottomBar::Side side, bool value)
|
|
{
|
|
bottomBar->setActive(side, value);
|
|
}
|
|
|
|
void AppWindow::accept(GuiVisitor &visitor)
|
|
{
|
|
visitor.visit(*this);
|
|
}
|
|
|
|
} /* namespace gui */
|