Modify Select all button in FileListForm
[apps/osp/Gallery.git] / src / GlCommonUtil.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                GlCommonUtil.cpp
19  * @brief               This is the implementation file for CommonUtil class.
20  */
21
22 #include <FApp.h>
23 #include <FUi.h>
24 #include <GlTypes.h>
25
26 #include "GlCommonUtil.h"
27
28 using namespace Tizen::App;
29 using namespace Tizen::Base;
30 using namespace Tizen::Base::Runtime;
31 using namespace Tizen::Graphics;
32
33 static const int W_DEFAULT_THUMBNAIL = 171;
34 static const int H_DEFAULT_THUMBNAIL = 127;
35 static const int BASE_STANDARD = 1000;
36 static const int FORMAT_TIME = 10;
37 static const String DATETIME_FORMAT = L"%02d:%02d";
38
39 Bitmap*
40 CommonUtil::GetEmptyThumbnailN(void)
41 {
42         Rectangle mainRect(0, 0, W_DEFAULT_THUMBNAIL, H_DEFAULT_THUMBNAIL);
43         Bitmap* pBitmap = new (std::nothrow) Bitmap();
44         pBitmap->Construct(mainRect);
45         BufferInfo bufferInfo;
46         pBitmap->Lock(bufferInfo, INFINITE);
47         pBitmap->Unlock();
48         Canvas mainCanvas;
49         mainCanvas.Construct(bufferInfo);
50         mainCanvas.FillRectangle(Color::GetColor(COLOR_ID_WHITE), mainCanvas.GetBounds());
51         mainCanvas.DrawBitmap(mainRect, *pBitmap);
52         return pBitmap;
53 }
54
55 String
56 CommonUtil::DurationToTimeString(long duration)
57 {
58         String strTime;
59         DateTime dateTime;
60         dateTime.AddSeconds(duration / BASE_STANDARD);
61         strTime.Format(FORMAT_TIME, DATETIME_FORMAT.GetPointer(), dateTime.GetMinute(), dateTime.GetSecond());
62         return strTime;
63 }