Initialize Tizen 2.3
[apps/osp/Internet.git] / src / IntDefaultCustomItem.cpp
1 //
2
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.1 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://floralicense.org/license/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 // !Internet
19 /*@file:    IntDefaultCustomItem
20  *@brief:
21  *
22  */
23
24 #include <FUiControls.h>
25 #include "IntCommonLib.h"
26 #include "IntDefaultCustomItem.h"
27 #include "IntTypes.h"
28
29 using namespace Tizen::Base;
30 using namespace Tizen::Graphics;
31 using namespace Tizen::Ui::Controls;
32
33 const int DefaultCustomItem::IDA_FORMAT_STRING = 101;
34
35 DefaultCustomItem::DefaultCustomItem(void)
36 {
37         __width = 0;
38         __height = 0;
39         __text = L"";
40 }
41
42 DefaultCustomItem::~DefaultCustomItem(void)
43 {
44
45 }
46
47 result
48 DefaultCustomItem::Construct(int width, int height)
49 {
50         result r = E_FAILURE;
51         __fontSize = CommonUtil::GetFontSize();
52         __width = width;
53         __height = height;
54         const Dimension dim(width, height);
55         r = CustomItem::Construct(dim, LIST_ANNEX_STYLE_NORMAL);
56         return r;
57
58 }
59
60 void
61 DefaultCustomItem::SetText(String& text)
62 {
63         __text = text;
64 }
65
66 String
67 DefaultCustomItem::GetText(void)
68 {
69         return __text;
70 }
71
72
73 result
74 DefaultCustomItem::Make(void)
75 {
76         result r = E_SUCCESS;
77         const Color pressedTextColor = Color(249, 249, 249);
78         const int textSize = 40;
79         const int x_Margin_Element = 26;
80         const int y_Margin_Element = 26;
81         const int width_Element = __width - 60;
82
83         r = AddElement(Rectangle(x_Margin_Element, y_Margin_Element, width_Element,60 + (__fontSize - 44)), IDA_FORMAT_STRING, __text, __fontSize , CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,true);
84         TryCatch( !IsFailed(r),,"DefaultCustomItem::Make %s",GetErrorMessage(r));
85
86 //      SetElementSelectionEnabled(IDA_FORMAT_STRING, true);
87
88         CATCH:return r;
89 }