Revert "[4.0] Create Widget Application"
[platform/core/uifw/dali-adaptor.git] / adaptors / common / framework.h
index 7dcbdbc..6037d57 100644 (file)
@@ -20,7 +20,6 @@
 
 // EXTERNAL INCLUDES
 #include <string>
-#include <application-devel.h>
 #include <dali/public-api/signals/callback.h>
 #ifdef APPCORE_WATCH_AVAILABLE
 #include "wearable/watch/watch-application.h"
@@ -52,8 +51,7 @@ public:
   enum Type
   {
     NORMAL,       ///<  normal appFramework
-    WATCH,        ///<  watch appFramework
-    WIDGET        ///<  widget appFramework
+    WATCH     ///< watch appFramework
   };
 
   /**
@@ -114,22 +112,22 @@ public:
     /**
      * Invoked when the language of the device is changed.
      */
-    virtual void OnLanguageChanged( const std::string& language ) {}
+    virtual void OnLanguageChanged() {}
 
     /**
     * Invoked when the region is changed.
     */
-    virtual void OnRegionChanged( const std::string& region ) {}
+    virtual void OnRegionChanged() {}
 
     /**
     * Invoked when the battery level of the device is low.
     */
-    virtual void OnBatteryLow( Dali::DevelApplication::BatteryStatus::Type status ) {}
+    virtual void OnBatteryLow() {}
 
     /**
     * Invoked when the memory level of the device is low.
     */
-    virtual void OnMemoryLow( Dali::DevelApplication::MemoryStatus::Type status ) {}
+    virtual void OnMemoryLow() {}
   };
 
 public: