Initialize Tizen 2.3
[apps/osp/Contacts.git] / src / CtCommonUtil.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.1 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://floralicense.org/license/
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file        CtCommonUtil.cpp
19  * @brief       This is the implementation file for the CtCommonUtil.cpp class.
20  */
21
22 #include <FSysRuntimeInfo.h>
23 #include <FUi.h>
24 #include "CtCommonUtil.h"
25 #include "CtResourceManager.h"
26 #include "CtTypes.h"
27
28 using namespace Tizen::Base;
29 using namespace Tizen::Ui::Controls;
30 using namespace Tizen::System;
31
32 bool CommonUtil::isMemoryAvailable()
33 {
34         long long avialableMemory = 0;
35         result r = E_SUCCESS;
36
37         String key(RUNTIMEINFO_INTERNAL_MEMORY_KEY);
38
39         r  = RuntimeInfo::GetValue(key, avialableMemory);
40         if (avialableMemory <= 1024)
41         {
42                 return false;
43         }
44
45         return true;
46 }
47
48 void CommonUtil::showMemoryFullMessageBox()
49 {
50         int modalResult = 0;
51         MessageBox memoryFullMessageBox;
52         memoryFullMessageBox.Construct(L"", ResourceManager::GetString(L"IDS_EMAIL_POP_DEVICE_STORAGE_FULL"), MSGBOX_STYLE_NONE, 1000);
53         memoryFullMessageBox.ShowAndWait(modalResult);
54 }
55
56