blob: 19f17db5a7289da7796c0e047828c18041cfd4c6 [file] [log] [blame]
#ifndef __PHONEGAP_H__
#define __PHONEGAP_H__
#include <FApp.h>
#include <FBase.h>
#include <FSystem.h>
#include <FUi.h>
/**
* [WebBasedApp] application must inherit from Application class
* which provides basic features necessary to define an application.
*/
class PhoneGap :
public Osp::App::Application,
public Osp::System::IScreenEventListener
{
public:
/**
* [PhoneGap] application must have a factory method that creates an instance of itself.
*/
static Osp::App::Application* CreateInstance(void);
public:
PhoneGap();
~PhoneGap();
public:
// Called when the application is initializing.
bool OnAppInitializing(Osp::App::AppRegistry& appRegistry);
// Called when the application is terminating.
bool OnAppTerminating(Osp::App::AppRegistry& appRegistry, bool forcedTermination = false);
// Called when the application's frame moves to the top of the screen.
void OnForeground(void);
// Called when this application's frame is moved from top of the screen to the background.
void OnBackground(void);
// Called when the system memory is not sufficient to run the application any further.
void OnLowMemory(void);
// Called when the battery level changes.
void OnBatteryLevelChanged(Osp::System::BatteryLevel batteryLevel);
// Called when the screen turns on.
void OnScreenOn (void);
// Called when the screen turns off.
void OnScreenOff (void);
};
#endif //__PHONEGAP_H__