Initialize Tizen 2.3
[apps/osp/Call.git] / src / CallAppUtility.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        PhnAppUtility.cpp
19  * @brief       Utility Class for Phone Application
20  */
21 #include <FApp.h>
22 #include <FSystem.h>
23 #include "CallAppUtility.h"
24
25 using namespace Tizen::App;
26 using namespace Tizen::Base;
27 using namespace Tizen::Graphics;
28 using namespace Tizen::System;
29
30 AppUtility::AppUtility(void)
31 {
32 }
33
34 AppUtility::~AppUtility(void)
35 {
36 }
37
38 String
39 AppUtility::GetResourceString(const String& stringId)
40 {
41         String resourceString(L"");
42         AppResource* pAppResource = AppResource::GetInstance();
43         if (pAppResource)
44         {
45                 pAppResource->GetString(stringId, resourceString);
46         }
47
48         return resourceString;
49 }
50
51 Bitmap*
52 AppUtility::GetBitmapFromResourcesN(const String& imagePath, int imgWidth, int imgHeight)
53 {
54         Bitmap* pBitmap = null;
55         AppResource* pAppResource = AppResource::GetInstance();
56         if (pAppResource)
57         {
58                 pBitmap = pAppResource->GetBitmapN(imagePath);
59                 if (pBitmap && imgWidth > 0 && imgHeight > 0)
60                 {
61                         //scale bitmap to predefined size
62                         pBitmap->SetScalingQuality(BITMAP_SCALING_QUALITY_MID);
63                         pBitmap->Scale(Dimension(imgWidth, imgHeight));
64                 }
65         }
66         return pBitmap;
67 }
68
69 long long
70 AppUtility::GetAvailableMemory(void)
71 {
72     result r = E_SUCCESS;
73
74     String key(L"http://tizen.org/runtime/storage.available.internal");
75     long long allocatedMemory = 0;
76
77     r = RuntimeInfo::GetValue(key, allocatedMemory);
78     TryCatch(r == E_SUCCESS, , "MyRuntimeInfo: Failed to get value");
79
80     return allocatedMemory;
81
82    CATCH:
83     return 0;
84 }