Files
MuditaOS/module-apps/application-desktop/windows/Names.hpp
Adam Dobrowolski e4de2a2410 SIM hot swap fixes and system abort on not enabled hot swap feature
* SIM hot swap should now properly show |x| in sim place when there is
  no SIM inserted in selected sim slot
* ServiceCellular now can inform on Fatal state desktop which will
  trigger window `Reboot` with no point of exit
* All windows in Desktop now have name in one place
* Access to cmux channels via enum class instead of String (which is errorprone)
2020-03-19 14:53:03 +01:00

13 lines
467 B
C++

#pragma once
#include "AppWindow.hpp"
#include <string>
namespace app::window::name
{
inline const std::string desktop_main_window = gui::name::window::main_window;
inline const std::string desktop_menu = "MenuWindow";
inline const std::string desktop_reboot = "Reboot";
inline const std::string desktop_poweroff = "PowerOffWindow";
inline const std::string desktop_pin_lock = "PinLockWindow";
}; // namespace app::window::name