Files
MuditaOS/module-apps/application-notes/ApplicationNotes.hpp
Mateusz e8babd16d5 WiP: Removed unneeded WakeUp/GoSleep handlers
WiP: Added new handler - > SwitchPowerMode
2019-08-29 11:40:31 +02:00

52 lines
1.6 KiB
C++

/*
* @file ApplicationNotes.hpp
* @author Robert Borzecki (robert.borzecki@mudita.com)
* @date 30 lip 2019
* @brief
* @copyright Copyright (C) 2019 mudita.com
* @details
*/
#ifndef MODULE_APPS_APPLICATION_NOTES_APPLICATIONNOTES_HPP_
#define MODULE_APPS_APPLICATION_NOTES_APPLICATIONNOTES_HPP_
#include "NotesModel.hpp"
#include "Application.hpp"
namespace app {
class ApplicationNotes: public Application {
protected:
public:
ApplicationNotes( std::string name="ApplicationNotes", std::string parent = "", bool startBackgound = false);
virtual ~ApplicationNotes();
sys::Message_t 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() ;
void destroyUserInterface();
};
class ApplicationNotesLauncher : public ApplicationLauncher {
public:
ApplicationNotesLauncher() : ApplicationLauncher("ApplicationNotes", true ) {};
bool run(sys::Service* caller = nullptr ) override {
parent = (caller==nullptr?"":caller->GetName());
return sys::SystemManager::CreateService( std::make_shared<ApplicationNotes>(name, parent), caller );
};
bool runBackground(sys::Service* caller ) override {
parent = (caller==nullptr?"":caller->GetName());
return sys::SystemManager::CreateService( std::make_shared<ApplicationNotes>(name, parent ),caller);
};
};
} /* namespace app */
#endif /* MODULE_APPS_APPLICATION_NOTES_APPLICATIONNOTES_HPP_ */