Back event changes
[apps/osp/Gallery.git] / src / GlGalleryApp.cpp
index e1ff0ee..398d3d8 100644 (file)
@@ -1,7 +1,7 @@
 //
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
-// Licensed under the Flora License, Version 1.0 (the License);
+// Licensed under the Flora License, Version 1.1 (the License);
 // you may not use this file except in compliance with the License.
 // You may obtain a copy of the License at
 //
@@ -19,9 +19,9 @@
  * @brief              This is the implementation file for GalleryApp class.
  */
 
+#include <FUi.h>
 #include "GlAlbumListPresentationModel.h"
-#include "GlBaseForm.h"
-#include "GlBasePanel.h"
+#include "GlContentUpdateEventListener.h"\r
 #include "GlFileListPresentationModel.h"
 #include "GlGalleryApp.h"
 #include "GlMainFrame.h"
@@ -38,13 +38,11 @@ using namespace Tizen::Ui;
 using namespace Tizen::Ui::Controls;
 using namespace Tizen::Ui::Scenes;
 
-static const wchar_t* PARAM_LANGUAGE = L"http://tizen.org/setting/locale.language";
-static const wchar_t* PARAM_LOCALE = L"http://tizen.org/setting/locale.country";
-
 GalleryApp::GalleryApp(void)
        : __requestId(0)
        , __pArguments(null)
        , __appControlResult(APP_CTRL_RESULT_SUCCEEDED)
+       , __frameActivated(false)
 {
        AppLogDebug("ENTER");
        AppLogDebug("EXIT(%s)", GetErrorMessage(GetLastResult()));
@@ -76,14 +74,6 @@ GalleryApp::GetAppControlOperationId(void) const
 }
 
 String
-GalleryApp::GetUriData(void) const
-{
-       AppLogDebug("ENTER");
-       AppLogDebug("EXIT(%s)", GetErrorMessage(GetLastResult()));
-       return __uriData;
-}
-
-String
 GalleryApp::GetMimeType(void) const
 {
        AppLogDebug("ENTER");
@@ -101,11 +91,21 @@ GalleryApp::GetAppControlArguments(void) const
 }
 
 void
-GalleryApp::SendAppControlResult(AppCtrlResult appControlResult, IMap* pExtraData)
+GalleryApp::SendAppControlResult(const AppCtrlResult appControlResult, const IMap* pExtraData)
 {
        AppLogDebug("ENTER");
        AppControlProviderManager* pAppManager = AppControlProviderManager::GetInstance();
-       pAppManager->SendAppControlResult(__requestId, appControlResult, pExtraData);
+       result r = pAppManager->SendAppControlResult(__requestId, appControlResult, pExtraData);
+       if (r == E_MAX_EXCEEDED)
+       {
+               MessageBox messageBox;
+               messageBox.Construct(L"", ResourceManager::GetString(L"IDS_RCS_BODY_MAXIMUM_NUMBER_OF_FILES_EXCEEDED"),
+                               MSGBOX_STYLE_NONE, 3000);
+               int modalResult;
+               messageBox.ShowAndWait(modalResult);
+       }
+
+       AppLogDebug("appControlResult is %d", appControlResult);
        AppLogDebug("EXIT(%s)", GetErrorMessage(GetLastResult()));
 }
 
@@ -136,7 +136,12 @@ GalleryApp::OnAppInitialized(void)
 bool
 GalleryApp::OnAppTerminating(AppRegistry& appRegistry, bool forcedTermination)
 {
-       AppLogDebug("ENTER");
+       AppLogDebug("ENTER");\r
+       ContentUpdateEventListener* pContentListener = ContentUpdateEventListener::GetInstance();\r
+       if (pContentListener)\r
+       {\r
+               pContentListener->RemoveContentListener();\r
+       }\r
        AlbumListPresentationModel* pAlbumListPresentationModel = AlbumListPresentationModel::GetInstance();
        if (pAlbumListPresentationModel != null)
        {
@@ -148,8 +153,6 @@ GalleryApp::OnAppTerminating(AppRegistry& appRegistry, bool forcedTermination)
                pFileListPresentationModel->ClearThumbnailRequests(true);
        }
 
-       Thread::Sleep(1000);
-
        delete __pArguments;
        __pArguments = null;
 
@@ -170,9 +173,17 @@ GalleryApp::OnForeground(void)
        }
 
        MainFrame* pMainFrame = dynamic_cast<MainFrame*>(GetFrameAt(0));
-       pMainFrame->SetEnabled(true);
-       pMainFrame->Invalidate(true);
+       if (pMainFrame)
+       {
+               pMainFrame->SetEnabled(true);
+               pMainFrame->Invalidate(true);
+       }
 
+       ContentUpdateEventListener* pContentListener = ContentUpdateEventListener::GetInstance();
+       if (pContentListener->GetChangeNotificationStatus() == true)
+       {
+               pContentListener->ResumeOperation();
+       }
        AppLogDebug("EXIT(%s)", GetErrorMessage(GetLastResult()));
 }
 
@@ -184,10 +195,6 @@ GalleryApp::OnAppControlRequestReceived(RequestId reqId, const String& operation
        __requestId = reqId;
        __operationId = operationId;
 
-       if (pUriData != null)
-       {
-               __uriData = *pUriData;
-       }
        if (pMimeType != null)
        {
                __mimeType = *pMimeType;
@@ -207,10 +214,7 @@ GalleryApp::OnAppControlRequestReceived(RequestId reqId, const String& operation
                        pKey = static_cast<const String*>(pKeyList->GetAt(i));
                        pValue = static_cast<const String*>(pExtraData->GetValue(*pKey));
 
-                       if (pValue != null && pKey->CompareTo(APPCONTROL_RESULT_KEY_LEGACY_RESULT) != 0)
-                       {
-                               pArguments->Add(new (std::nothrow) String(*pKey), new (std::nothrow) String(*pValue));
-                       }
+                       pArguments->Add(new (std::nothrow) String(*pKey), new (std::nothrow) String(*pValue));
                }
                __pArguments = pArguments;
                delete pKeyList;
@@ -221,8 +225,8 @@ GalleryApp::OnAppControlRequestReceived(RequestId reqId, const String& operation
 void
 GalleryApp::OnSettingChanged(String& key)
 {
-       AppLogDebug("ENTER");
-       if (key.CompareTo(PARAM_LANGUAGE) == 0 || key.CompareTo(PARAM_LOCALE) == 0)
+       AppLogDebug("ENTER key(%ls)", key.GetPointer());
+       if (key.CompareTo(SETTING_KEY_LANGUAGE) == 0 || key.CompareTo(SETTING_KEY_FONT_SIZE) == 0)
        {
                UiApp::GetInstance()->Terminate();
        }
@@ -230,8 +234,36 @@ GalleryApp::OnSettingChanged(String& key)
 }
 
 void
-GalleryApp::SetFrameEnabled(bool enabled)
+GalleryApp::SetFrameEnabled(const bool enabled)
 {
        MainFrame* pMainFrame = dynamic_cast<MainFrame*>(GetFrameAt(0));
-       pMainFrame->SetEnabled(enabled);
+       if (pMainFrame)
+       {
+               pMainFrame->SetEnabled(enabled);
+       }
+}
+
+void
+GalleryApp::SetFrameActivated(bool frameActivated)
+{
+       __frameActivated = frameActivated;
+}
+
+bool
+GalleryApp::GetFrameActivated(void) const
+{
+       return __frameActivated;
+}
+
+bool
+GalleryApp::IsHwKeySupported(void)
+{
+       AppLogDebug("ENTER");
+
+       bool isHwKeyExist = false;
+       Tizen::System::SystemInfo::GetValue(L"http://tizen.org/feature/input.keys.back", isHwKeyExist);
+
+       AppLogDebug("EXIT(%s)", GetErrorMessage(GetLastResult()));
+
+       return isHwKeyExist;
 }