Tizen 2.0 Release
[apps/osp/Phone.git] / src / PhnAppUtility.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.0 (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 "PhnAppUtility.h"
23
24 using namespace Tizen::App;
25 using namespace Tizen::Base;
26 using namespace Tizen::Graphics;
27
28 AppUtility::AppUtility(void)
29 {
30 }
31
32 AppUtility::~AppUtility(void)
33 {
34 }
35
36 String
37 AppUtility::GetResourceString(const String& stringId)
38 {
39         String resourceString(L"");
40         AppResource* pAppResource = AppResource::GetInstance();
41         if (pAppResource)
42         {
43                 pAppResource->GetString(stringId, resourceString);
44         }
45
46         return resourceString;
47 }
48
49 Bitmap*
50 AppUtility::GetBitmapFromResourcesN(const String& imagePath, int imgWidth, int imgHeight)
51 {
52         Bitmap* pBitmap = null;
53         AppResource* pAppResource = AppResource::GetInstance();
54         if (pAppResource)
55         {
56                 pBitmap = pAppResource->GetBitmapN(imagePath);
57                 if (pBitmap && imgWidth > 0 && imgHeight > 0)
58                 {
59                         //scale bitmap to predefined size
60                         pBitmap->SetScalingQuality(BITMAP_SCALING_QUALITY_MID);
61                         pBitmap->Scale(Dimension(imgWidth, imgHeight));
62                 }
63         }
64         return pBitmap;
65 }