mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-02 21:04:35 -04:00
81 lines
2.8 KiB
C++
81 lines
2.8 KiB
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include "Application.hpp"
|
|
#include "Service/Message.hpp"
|
|
#include "Service/Timer.hpp"
|
|
#include "SystemManager/SystemManager.hpp"
|
|
#include <service-cellular/CellularMessage.hpp>
|
|
#include <time/time_conversion.hpp>
|
|
|
|
namespace app
|
|
{
|
|
inline constexpr auto name_call = "ApplicationCall";
|
|
inline constexpr auto call_stack_size = 8192U;
|
|
|
|
namespace window
|
|
{
|
|
inline constexpr auto name_call = "CallWindow";
|
|
inline constexpr auto name_enterNumber = "EnterNumberWindow";
|
|
inline constexpr auto name_emergencyCall = "EmergencyCallWindow";
|
|
inline constexpr auto name_duplicatedContact = "DuplicatedContactWindow";
|
|
inline constexpr auto name_dialogConfirm = "DialogConfirm";
|
|
} // namespace window
|
|
|
|
inline constexpr auto ringtone_path = "assets/audio/Ringtone-drum2.mp3"; // Should bo moved to database
|
|
|
|
class ApplicationCall : public Application
|
|
{
|
|
private:
|
|
void CallAbortHandler();
|
|
void CallActiveHandler();
|
|
void IncomingCallHandler(const CellularCallMessage *const msg);
|
|
void RingingHandler(const CellularCallMessage *const msg);
|
|
|
|
protected:
|
|
sys::ms callDelayedStopTime = 3000;
|
|
|
|
public:
|
|
ApplicationCall(std::string name = name_call,
|
|
std::string parent = {},
|
|
StartInBackground startInBackground = {false});
|
|
sys::MessagePointer DataReceivedHandler(sys::DataMessage *msgl, sys::ResponseMessage *resp) override;
|
|
sys::ReturnCodes InitHandler() override;
|
|
sys::ReturnCodes DeinitHandler() override;
|
|
|
|
sys::ReturnCodes SwitchPowerModeHandler(const sys::ServicePowerMode mode) override final
|
|
{
|
|
return sys::ReturnCodes::Success;
|
|
}
|
|
|
|
void createUserInterface() override;
|
|
void destroyUserInterface() override;
|
|
void setDisplayedNumber(std::string num);
|
|
const std::string &getDisplayedNumber();
|
|
|
|
void handleCallEvent(const std::string &number);
|
|
void handleAddContactEvent(const std::string &number);
|
|
|
|
bool showNotification(std::function<bool()> action);
|
|
void transmitDtmfTone(uint32_t digit);
|
|
auto getDelayedStopTime() const
|
|
{
|
|
return callDelayedStopTime;
|
|
}
|
|
|
|
void stopAudio();
|
|
void startRinging();
|
|
void startRouting();
|
|
};
|
|
|
|
template <> struct ManifestTraits<ApplicationCall>
|
|
{
|
|
static auto GetManifest() -> manager::ApplicationManifest
|
|
{
|
|
return {{manager::actions::Launch, manager::actions::Call, manager::actions::Dial}};
|
|
}
|
|
};
|
|
} /* namespace app */
|