62a905fa8111ed3deb1ee33338e64eb044861fe6
[apps/osp/Internet.git] / src / IntSettingForm.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 //!Internet SettingForm class
18 /*@file:        IntSettingForm.cpp
19  *@brief:       The SettingForm
20  */
21
22 #include <FApp.h>
23 #include <FGraphics.h>
24 #include <FUi.h>
25
26 #include "IntCommonLib.h"
27 #include "IntConfirmationPopup.h"
28 #include "IntDefaultCustomItem.h"
29 #include "IntDropDownCustomItem.h"
30 #include "IntHistoryPresentationModel.h"
31 #include "IntInternetApp.h"
32 #include "IntMultipleWindowPresentationModel.h"
33 #include "IntNotificationPanel.h"
34 #include "IntRadioCustomItem.h"
35 #include "IntSceneRegister.h"
36 #include "IntSettingForm.h"
37 #include "IntSettingPresentationModel.h"
38 #include "IntSettingToggleCustomItem.h"
39
40
41 using namespace Tizen::App;
42 using namespace Tizen::Base;
43 using namespace Tizen::Base::Collection;
44 using namespace Tizen::Graphics;
45 using namespace Tizen::System;
46 using namespace Tizen::Ui;
47 using namespace Tizen::Ui::Controls;
48 using namespace Tizen::Ui::Scenes;
49
50
51
52 SettingForm::SettingForm(void)
53 : __fontValue(0),__pResetPopup(null),__pWindowInfo(null) , __pConfirmationPopup(null),__pNotification(null)
54 {
55         __currentURL = L"";
56         __pList = null;
57         InitializeSettingValues();
58         __fontSize = 44;
59 }
60
61 SettingForm::~SettingForm(void)
62 {
63         if (pGroupItemCount)
64         {
65                 delete[] pGroupItemCount;
66                 pGroupItemCount = null;
67         }
68 }
69
70 void
71 SettingForm::InitializeSettingValues(void)
72 {
73         AppLog("SettingForm::InitializeSettingValues homepage %ls",SettingPresentationModel::GetInstance()->GetHomepage().GetPointer());
74         groupCount = 5;
75         pGroupItemCount = new(std::nothrow) int[5];
76         pGroupItemCount[0] = 5;  //Homepage
77         pGroupItemCount[1] = 6;  //Page content settings
78         pGroupItemCount[2] = 9;  //Private and Security
79         pGroupItemCount[3] = 4;  //Search
80         pGroupItemCount[4] = 1;  //Website settings and Reset
81
82         for (int iter = (int) SETTING_INVALID + 1; iter < (int) SETTING_MAX; iter++)
83         {
84                 settingInfo[iter].isSelected = false;
85         }
86
87         AppLogDebug("image display %d", (int) SettingPresentationModel::GetInstance()->IsDisplayImagesEnabled());
88         settingInfo[SETTING_HOMEPAGE_TITLE].titleText = CommonUtil::GetString(L"IDS_BR_BODY_HOMEPAGE");
89         settingInfo[SETTING_HOMEPAGE_TITLE].subText = SettingPresentationModel::GetInstance()->GetHomepage();
90         settingInfo[SETTING_HOMEPAGE_TITLE].itemType = ITEM_TYPE_DROPDOWN;
91
92         settingInfo[SETTING_CURRENT_PAGE].titleText = CommonUtil::GetString(L"IDS_BR_BODY_CURRENT_PAGE");
93         settingInfo[SETTING_CURRENT_PAGE].subText = L"";
94         settingInfo[SETTING_CURRENT_PAGE].itemType = ITEM_TYPE_RADIO;
95
96         settingInfo[SETTING_BLANK_PAGE].titleText = CommonUtil::GetString(L"IDS_BR_BODY_BLANK_PAGE");
97         settingInfo[SETTING_BLANK_PAGE].subText = L"";
98         settingInfo[SETTING_BLANK_PAGE].itemType = ITEM_TYPE_RADIO;
99         if (SettingPresentationModel::GetInstance()->GetHomepage().CompareTo((L"IDS_BR_BODY_BLANK_PAGE")) == 0)
100         {
101                 settingInfo[SETTING_BLANK_PAGE].isSelected = true;
102         }
103
104         settingInfo[SETTING_MOST_VISITED_SITE].titleText = CommonUtil::GetString(L"IDS_BR_BODY_MOST_VISITED_SITES");
105         settingInfo[SETTING_MOST_VISITED_SITE].subText = L"";
106         settingInfo[SETTING_MOST_VISITED_SITE].itemType = ITEM_TYPE_RADIO;
107         if (SettingPresentationModel::GetInstance()->GetHomepage().CompareTo((L"IDS_BR_BODY_MOST_VISITED_SITES")) == 0)
108         {
109                 settingInfo[SETTING_MOST_VISITED_SITE].isSelected = true;
110         }
111         WindowInfo* pWindowInfo = null;
112         String curUrl = SettingPresentationModel::GetInstance()->GetFavoriteUrl();
113         AppLog("SettingForm::OnSceneActivatedN check1");
114
115         settingInfo[SETTING_FAVORITE_URL].titleText = L"http://www.tizen.org";
116         if (SettingPresentationModel::GetInstance()->GetFavoriteUrl().CompareTo(L"") == 0)
117         {
118                 SettingPresentationModel::GetInstance()->SetFavoriteValue(L"http://www.tizen.org");
119         }
120         settingInfo[SETTING_FAVORITE_URL].subText = L"";
121         settingInfo[SETTING_FAVORITE_URL].itemType = ITEM_TYPE_RADIO;
122
123         String homePage = SettingPresentationModel::GetInstance()->GetHomepage();
124         if (homePage.CompareTo((L"IDS_BR_BODY_MOST_VISITED_SITES")) == 0)
125         {
126                 settingInfo[SETTING_MOST_VISITED_SITE].isSelected = true;
127                 settingInfo[SETTING_BLANK_PAGE].isSelected = false;
128                 settingInfo[SETTING_CURRENT_PAGE].isSelected = false;
129                 settingInfo[SETTING_FAVORITE_URL].isSelected = false;
130                 SettingPresentationModel::GetInstance()->SetHomepage(L"IDS_BR_BODY_MOST_VISITED_SITES");
131         }
132         else if (homePage.CompareTo((L"IDS_BR_BODY_BLANK_PAGE")) == 0)
133         {
134                 settingInfo[SETTING_MOST_VISITED_SITE].isSelected = false;
135                 settingInfo[SETTING_BLANK_PAGE].isSelected = true;
136                 settingInfo[SETTING_CURRENT_PAGE].isSelected = false;
137                 settingInfo[SETTING_FAVORITE_URL].isSelected = false;
138                 SettingPresentationModel::GetInstance()->SetHomepage(L"IDS_BR_BODY_BLANK_PAGE");
139         }
140         else
141         {
142                 settingInfo[SETTING_MOST_VISITED_SITE].isSelected = false;
143                 settingInfo[SETTING_BLANK_PAGE].isSelected = false;
144                 settingInfo[SETTING_CURRENT_PAGE].isSelected = false;
145                 settingInfo[SETTING_FAVORITE_URL].isSelected = true;
146         }
147
148         settingInfo[SETTING_DEFAULT_VIEW_TITLE].titleText = CommonUtil::GetString(L"IDS_BR_BODY_DEFAULT_VIEW");
149         settingInfo[SETTING_DEFAULT_VIEW_TITLE].subText = CommonUtil::GetString(SettingPresentationModel::GetInstance()->GetDefaultView());
150         settingInfo[SETTING_DEFAULT_VIEW_TITLE].itemType = ITEM_TYPE_DROPDOWN;
151
152         settingInfo[SETTING_FIT_TO_WIDTH].titleText = CommonUtil::GetString(L"IDS_BR_BODY_FIT_TO_WIDTH");
153         settingInfo[SETTING_FIT_TO_WIDTH].subText = L"";
154         settingInfo[SETTING_FIT_TO_WIDTH].itemType = ITEM_TYPE_RADIO;
155         settingInfo[SETTING_FIT_TO_WIDTH].isSelected = !(String::Compare(settingInfo[SETTING_FIT_TO_WIDTH].titleText, settingInfo[SETTING_DEFAULT_VIEW_TITLE].subText));
156
157         settingInfo[SETTING_READABLE].titleText = CommonUtil::GetString(L"IDS_BR_BODY_READABLE");
158         settingInfo[SETTING_READABLE].subText = L"";
159         settingInfo[SETTING_READABLE].itemType = ITEM_TYPE_RADIO;
160         settingInfo[SETTING_READABLE].isSelected = !(String::Compare(settingInfo[SETTING_READABLE].titleText, settingInfo[SETTING_DEFAULT_VIEW_TITLE].subText));
161
162         settingInfo[SETTING_RUN_JAVASCRIPT].titleText = CommonUtil::GetString(L"IDS_BR_BODY_RUN_JAVASCRIPT");
163         settingInfo[SETTING_RUN_JAVASCRIPT].subText = L"";
164         settingInfo[SETTING_RUN_JAVASCRIPT].itemType = ITEM_TYPE_TOGGLE;
165         settingInfo[SETTING_RUN_JAVASCRIPT].isSelected = SettingPresentationModel::GetInstance()->IsRunJavascriptEnabled();
166
167         settingInfo[SETTING_DISPLAY_IMAGES].titleText = CommonUtil::GetString(L"IDS_BR_OPT_LOAD_IMAGES");
168         settingInfo[SETTING_DISPLAY_IMAGES].subText = L"";
169         settingInfo[SETTING_DISPLAY_IMAGES].itemType = ITEM_TYPE_TOGGLE;
170         settingInfo[SETTING_DISPLAY_IMAGES].isSelected = SettingPresentationModel::GetInstance()->IsDisplayImagesEnabled();
171
172         settingInfo[SETTING_BLOCK_POPUP].titleText = CommonUtil::GetString(L"IDS_BR_BODY_BLOCK_POP_UPS_ABB");
173         settingInfo[SETTING_BLOCK_POPUP].subText = L"";
174         settingInfo[SETTING_BLOCK_POPUP].itemType = ITEM_TYPE_TOGGLE;
175         settingInfo[SETTING_BLOCK_POPUP].isSelected = !SettingPresentationModel::GetInstance()->IsBlockPopUp();
176
177         settingInfo[SETTING_CLEAR_CACHE].titleText = CommonUtil::GetString(L"IDS_BR_BODY_CLEAR_CACHE");
178         settingInfo[SETTING_CLEAR_CACHE].subText = L"";
179         settingInfo[SETTING_CLEAR_CACHE].itemType = ITEM_TYPE_NORMAL;
180
181         settingInfo[SETTING_CLEAR_HISTORY].titleText = CommonUtil::GetString(L"IDS_BR_BODY_CLEAR_HISTORY");
182         settingInfo[SETTING_CLEAR_HISTORY].subText = L"";
183         settingInfo[SETTING_CLEAR_HISTORY].itemType = ITEM_TYPE_NORMAL;
184
185         settingInfo[SETTING_SHOW_SECURITY_WARNINGS].titleText = CommonUtil::GetString(L"IDS_BR_BODY_SHOW_SECURITY_WARNINGS");
186         settingInfo[SETTING_SHOW_SECURITY_WARNINGS].subText = L"";
187         settingInfo[SETTING_SHOW_SECURITY_WARNINGS].itemType = ITEM_TYPE_TOGGLE;
188         settingInfo[SETTING_SHOW_SECURITY_WARNINGS].isSelected = SettingPresentationModel::GetInstance()->IsSecurityWarningsEnabled();
189
190         settingInfo[SETTING_ACCEPT_COOKIES].titleText = CommonUtil::GetString(L"IDS_BR_BODY_ACCEPT_COOKIES");
191         settingInfo[SETTING_ACCEPT_COOKIES].subText = L"";
192         settingInfo[SETTING_ACCEPT_COOKIES].itemType = ITEM_TYPE_TOGGLE;
193         settingInfo[SETTING_ACCEPT_COOKIES].isSelected = SettingPresentationModel::GetInstance()->IsCookiesEnabled();
194
195         settingInfo[SETTING_CLEAR_COOKIE_DATA].titleText = CommonUtil::GetString(L"IDS_BR_BODY_CLEAR_ALL_COOKIE_DATA");
196         settingInfo[SETTING_CLEAR_COOKIE_DATA].subText = CommonUtil::GetString(L"IDS_BR_BODY_COOKIES");
197         settingInfo[SETTING_CLEAR_COOKIE_DATA].itemType = ITEM_TYPE_NORMAL;
198
199         settingInfo[SETTING_REMEMBER_FORM_DATA].titleText = CommonUtil::GetString(L"IDS_BR_BODY_REMEMBER_FORM_DATA");
200         settingInfo[SETTING_REMEMBER_FORM_DATA].subText = L"";
201         settingInfo[SETTING_REMEMBER_FORM_DATA].itemType = ITEM_TYPE_TOGGLE;
202         settingInfo[SETTING_REMEMBER_FORM_DATA].isSelected = SettingPresentationModel::GetInstance()->IsRememberFormData();
203
204         settingInfo[SETTING_CLEAR_FORM_DATA].titleText = CommonUtil::GetString(L"IDS_BR_BODY_CLEAR_FORM_DATA");
205         settingInfo[SETTING_CLEAR_FORM_DATA].subText = CommonUtil::GetString(L"IDS_BR_HEADER_FORM_DATA");
206         settingInfo[SETTING_CLEAR_FORM_DATA].itemType = ITEM_TYPE_NORMAL;
207
208         settingInfo[SETTING_REMEMBER_PASSWORD].titleText = CommonUtil::GetString(L"IDS_BR_BODY_REMEMBER_PASSWORDS");
209         settingInfo[SETTING_REMEMBER_PASSWORD].subText = L"";
210         settingInfo[SETTING_REMEMBER_PASSWORD].itemType = ITEM_TYPE_TOGGLE;
211         settingInfo[SETTING_REMEMBER_PASSWORD].isSelected = SettingPresentationModel::GetInstance()->IsRememberPassword();
212
213
214         settingInfo[SETTING_CLEAR_PASSWORDS].titleText = CommonUtil::GetString(L"IDS_BR_BODY_CLEAR_PASSWORDS");
215         settingInfo[SETTING_CLEAR_PASSWORDS].subText = L"";
216         settingInfo[SETTING_CLEAR_PASSWORDS].itemType = ITEM_TYPE_NORMAL;
217
218         settingInfo[SETTING_SEARCH_ENGINE_TITLE].titleText = CommonUtil::GetString(L"IDS_BR_BODY_SEARCH_ENGINE");
219         settingInfo[SETTING_SEARCH_ENGINE_TITLE].subText = SettingPresentationModel::GetInstance()->GetSearchEngine();
220         settingInfo[SETTING_SEARCH_ENGINE_TITLE].itemType = ITEM_TYPE_DROPDOWN;
221
222         settingInfo[SETTING_SEARCH_ENGINE_YAHOO].titleText = L"Yahoo";  //CommonUtil::GetString(L"IDS_BR_BODY_YAHOO");
223         settingInfo[SETTING_SEARCH_ENGINE_YAHOO].subText = L"";
224         settingInfo[SETTING_SEARCH_ENGINE_YAHOO].itemType = ITEM_TYPE_RADIO;
225         settingInfo[SETTING_SEARCH_ENGINE_YAHOO].isSelected = !(String::Compare(settingInfo[SETTING_SEARCH_ENGINE_YAHOO].titleText, settingInfo[SETTING_SEARCH_ENGINE_TITLE].subText));
226
227         settingInfo[SETTING_SEARCH_ENGINE_NAVER].titleText = L"Naver";          //CommonUtil::GetString(L"IDS_BR_BODY_NAVER");
228         settingInfo[SETTING_SEARCH_ENGINE_NAVER].subText = L"";
229         settingInfo[SETTING_SEARCH_ENGINE_NAVER].itemType = ITEM_TYPE_RADIO;
230         settingInfo[SETTING_SEARCH_ENGINE_NAVER].isSelected = !(String::Compare(settingInfo[SETTING_SEARCH_ENGINE_NAVER].titleText, settingInfo[SETTING_SEARCH_ENGINE_TITLE].subText));
231
232         settingInfo[SETTING_SEARCH_ENGINE_GOOGLE].titleText = L"Google";//CommonUtil::GetString(L"IDS_COM_BODY_GOOGLE");
233         settingInfo[SETTING_SEARCH_ENGINE_GOOGLE].subText = L"";
234         settingInfo[SETTING_SEARCH_ENGINE_GOOGLE].itemType = ITEM_TYPE_RADIO;
235         settingInfo[SETTING_SEARCH_ENGINE_GOOGLE].isSelected = !(String::Compare(settingInfo[SETTING_SEARCH_ENGINE_GOOGLE].titleText, settingInfo[SETTING_SEARCH_ENGINE_TITLE].subText));
236
237         settingInfo[SETTING_RESET_TO_DEFAULT].titleText = CommonUtil::GetString(L"IDS_BR_BODY_RESET_TO_DEFAULT");
238         settingInfo[SETTING_RESET_TO_DEFAULT].subText = L"";
239         settingInfo[SETTING_RESET_TO_DEFAULT].itemType = ITEM_TYPE_NORMAL;
240 }
241
242 bool
243 SettingForm::Initialize(void)
244 {
245         result r = E_FAILURE;
246
247         r = Construct(L"IDL_SETTING_FORM");
248         if (IsFailed(r))
249         {
250                 return false;
251         }
252         return true;
253 }
254
255 result
256 SettingForm::OnInitializing(void)
257 {
258         result r = E_FAILURE;
259         Footer* pFooter = NULL;
260         SceneManager* pSceneManager = NULL;
261
262         __fontSize = CommonUtil::GetFontSize();
263
264         bool isHwKeySupported = false;
265
266         //SetFormStyle(FORM_STYLE_NORMAL | FORM_STYLE_INDICATOR);
267         __pList = static_cast< GroupedListView* >(GetControl(L"IDC_SETTING_LIST"));
268         if ( __pList != NULL )
269         {
270
271                 r = __pList->SetItemProvider(*this);
272                 TryCatch(!IsFailed(r),,"setItemProvider failed with error %s",GetErrorMessage(r));
273                 __pList->AddGroupedListViewItemEventListener(*this);
274         }
275
276 //      pFooter = GetFooter();
277 //      if (pFooter)
278 //      {
279 //              AppLogDebug("setting back button");
280 //              pFooter->SetBackButtonEnabled(true);
281 //      }
282         SetFormBackEventListener(this);
283         AppLog("SetFormBackEventListener result %s",GetErrorMessage(GetLastResult()));
284         pSceneManager = SceneManager::GetInstance();
285         if (pSceneManager != null)
286         {
287                 r = pSceneManager->AddSceneEventListener(IDSCN_SETTINGS, *this);
288                 TryCatch(!IsFailed(r),,"AddSceneEventListener failed with error %s",GetErrorMessage(r));
289         }
290         AddOrientationEventListener(*this);
291
292         CATCH:
293         return r;
294 }
295
296 void
297 SettingForm::OnGroupedListViewContextItemStateChanged(GroupedListView& listView, int groupIndex, int itemIndex, int elementId, ListContextItemStatus status)
298 {
299
300 }
301
302 void
303 SettingForm::OnGroupedListViewItemStateChanged(GroupedListView& listView, int groupIndex, int itemIndex, int elementId, ListItemStatus status)
304 {
305         int effectiveIndex = 0;
306         SettingPresentationModel* pSettingMgr = SettingPresentationModel::GetInstance();
307
308         if (pSettingMgr == null)
309                 return;
310
311         for (int i = 0; i < groupIndex; i++)
312                 effectiveIndex = effectiveIndex + pGroupItemCount[i];
313         effectiveIndex = effectiveIndex + itemIndex;
314
315         if (settingInfo[effectiveIndex].itemType == ITEM_TYPE_DROPDOWN)
316         {
317                 AppLogDebug("refreshing data child count is %d", settingInfo[effectiveIndex].childCount);
318                 if (settingInfo[effectiveIndex].isOpen == false)
319                 {
320                         settingInfo[effectiveIndex].isOpen = true;
321                         settingInfo[effectiveIndex].childCount = 0;
322                         for (int iter = effectiveIndex + 1; iter < SETTING_MAX; iter++)
323                         {
324                                 if (settingInfo[iter].itemType == ITEM_TYPE_RADIO)
325                                         settingInfo[effectiveIndex].childCount++;
326                                 else
327                                         break;
328                         }
329 /*
330                         listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
331                         for(int iter = 0; iter < settingInfo[effectiveIndex].childCount; iter++)
332                         {
333                                 listView.RefreshList(groupIndex, itemIndex + iter + 1, LIST_REFRESH_TYPE_ITEM_MODIFY);
334                         }
335 */
336                         listView.UpdateList();
337                 }
338                 else
339                 {
340                         settingInfo[effectiveIndex].isOpen = false;
341 /*
342                         listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
343                         for(int iter = 0; iter < settingInfo[effectiveIndex].childCount; iter++)
344                         {
345                                 listView.RefreshList(groupIndex, itemIndex + iter + 1, LIST_REFRESH_TYPE_ITEM_MODIFY);
346                         }
347 */
348                         listView.UpdateList();
349                 }
350         }
351         else if (settingInfo[effectiveIndex].itemType == ITEM_TYPE_RADIO)
352         {
353                 int parentIndex = 0;
354                 for (parentIndex = effectiveIndex; parentIndex > SETTING_INVALID; parentIndex--)
355                 {
356                         if (settingInfo[parentIndex].itemType == ITEM_TYPE_DROPDOWN)
357                                 break;
358                 }
359                 settingInfo[parentIndex].subText = settingInfo[effectiveIndex].titleText;
360
361 //              listView.RefreshList(groupIndex, itemIndex - (effectiveIndex - parentIndex), LIST_REFRESH_TYPE_ITEM_MODIFY);
362 //              listView.RefreshList(groupIndex, parentIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
363                 for (int iter = 0; iter < settingInfo[parentIndex].childCount; iter++)
364                 {
365                         if (parentIndex + iter + 1 != effectiveIndex)
366                         {
367                                 AppLogDebug("long effectiveIndex %d set to false", itemIndex - (effectiveIndex - parentIndex) + iter + 1);
368                                 settingInfo[parentIndex + iter + 1].isSelected = false;
369                         }
370                         else
371                         {
372                                 AppLogDebug("effectiveIndex %d set to true", effectiveIndex);
373                                 settingInfo[effectiveIndex].isSelected = true;
374                         }
375                         if (effectiveIndex == SETTING_CURRENT_PAGE)
376                         {
377                                 settingInfo[SETTING_CURRENT_PAGE].isSelected = false;
378                                 settingInfo[SETTING_FAVORITE_URL].isSelected = true;
379                         }
380 //                      listView.RefreshList(groupIndex, itemIndex - (effectiveIndex - parentIndex) + iter + 1, LIST_REFRESH_TYPE_ITEM_MODIFY);
381                 }
382 //              listView.UpdateList();
383                 //listView.ScrollToItem(groupIndex, itemIndex, LIST_SCROLL_ITEM_ALIGNMENT_TOP);
384                 Invalidate(true);
385         }
386         else if (settingInfo[effectiveIndex].itemType == ITEM_TYPE_TOGGLE)
387         {
388                 if (settingInfo[effectiveIndex].isSelected == true)
389                 {
390                         settingInfo[effectiveIndex].isSelected = false;
391                 }
392                 else
393                 {
394                         settingInfo[effectiveIndex].isSelected = true;
395                 }
396 //              listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
397                 if(__pList != null)
398                 {
399                         __pList->SetItemChecked(groupIndex, itemIndex, settingInfo[effectiveIndex].isSelected);
400                 }
401         }
402
403         switch (effectiveIndex)
404         {
405         case SETTING_CURRENT_PAGE:
406                 //SettingPresentationModel::GetInstance()->SetHomepage(settingInfo[SETTING_FAVORITE_URL].titleText);
407                 AppLog("setting current page currentURL is =%ls",__currentURL.GetPointer());
408                 if (__currentURL.CompareTo(L"") != 0)
409                 {
410                         AppLog("setting current page currentURL is =%ls",__currentURL.GetPointer());
411                         SettingPresentationModel::GetInstance()->SetHomepage(CommonUtil::GetString(L"IDS_BR_BODY_USER_HOMEPAGE"));
412                         SettingPresentationModel::GetInstance()->SetFavoriteValue(__currentURL);
413                         settingInfo[SETTING_FAVORITE_URL].titleText = __currentURL;
414 //                      listView.RefreshList(groupIndex, effectiveIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
415 //                      listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
416                         listView.UpdateList();
417                 }
418                 break;
419         case SETTING_BLANK_PAGE:
420                 //SettingPresentationModel::GetInstance()->SetHomepage(settingInfo[SETTING_BLANK_PAGE].titleText);
421                 SettingPresentationModel::GetInstance()->SetHomepage((L"IDS_BR_BODY_BLANK_PAGE"));
422                 AppLog("GetHomepage() %ls",SettingPresentationModel::GetInstance()->GetHomepage().GetPointer());
423 //              listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
424                 listView.UpdateList();
425
426                 break;
427         case SETTING_MOST_VISITED_SITE:
428                 SettingPresentationModel::GetInstance()->SetHomepage(L"IDS_BR_BODY_MOST_VISITED_SITES");
429 //              listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
430                 listView.UpdateList();
431                 break;
432
433         case SETTING_FAVORITE_URL:
434                 //SettingPresentationModel::GetInstance()->SetHomepage(settingInfo[SETTING_FAVORITE_URL].titleText);
435                 SceneManager::GetInstance()->GoForward(ForwardSceneTransition(IDSCN_EDIT_HOMEPAGE_VIEW, SCENE_TRANSITION_ANIMATION_TYPE_LEFT));
436                 break;
437
438         case SETTING_FIT_TO_WIDTH:
439                 SettingPresentationModel::GetInstance()->SetDefaultView(L"IDS_BR_BODY_FIT_TO_WIDTH");
440 //              listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
441                 listView.UpdateList();
442                 break;
443
444         case SETTING_READABLE:
445                 SettingPresentationModel::GetInstance()->SetDefaultView(L"IDS_BR_BODY_READABLE");
446 //              listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
447                 listView.UpdateList();
448                 break;
449
450         case SETTING_RUN_JAVASCRIPT:
451                 SettingPresentationModel::GetInstance()->SetRunJavascriptEnabled(settingInfo[SETTING_RUN_JAVASCRIPT].isSelected);
452                 break;
453
454         case SETTING_DISPLAY_IMAGES:
455                 SettingPresentationModel::GetInstance()->SetDisplayImagesEnabled(settingInfo[SETTING_DISPLAY_IMAGES].isSelected);
456                 break;
457
458         case SETTING_BLOCK_POPUP:
459                 SettingPresentationModel::GetInstance()->SetBlockPopUp(!settingInfo[SETTING_BLOCK_POPUP].isSelected);
460                 break;
461
462         case SETTING_CLEAR_CACHE:
463                 ClearCache();
464                 break;
465
466         case SETTING_CLEAR_HISTORY:
467                 ClearHistory();
468                 break;
469
470         case SETTING_SHOW_SECURITY_WARNINGS:
471                 SettingPresentationModel::GetInstance()->SetSecurityWarningsEnabled(settingInfo[SETTING_SHOW_SECURITY_WARNINGS].isSelected);
472                 break;
473
474         case SETTING_ACCEPT_COOKIES:
475                 SettingPresentationModel::GetInstance()->SetCookiesEnabled(settingInfo[SETTING_ACCEPT_COOKIES].isSelected);
476                 break;
477
478         case SETTING_CLEAR_COOKIE_DATA:
479                 ClearCookie();
480                 break;
481
482         case SETTING_REMEMBER_FORM_DATA:
483                 SettingPresentationModel::GetInstance()->SetRememberFormData(settingInfo[SETTING_REMEMBER_FORM_DATA].isSelected);
484                 break;
485
486         case SETTING_CLEAR_FORM_DATA:
487                 ClearFormData();
488                 break;
489
490         case SETTING_CLEAR_PASSWORDS:
491                 ClearPasswords();
492                 break;
493
494         case SETTING_REMEMBER_PASSWORD:
495                 SettingPresentationModel::GetInstance()->SetRememberPassword(settingInfo[SETTING_REMEMBER_PASSWORD].isSelected);
496                 break;
497
498         case SETTING_SEARCH_ENGINE_YAHOO:
499                 SettingPresentationModel::GetInstance()->SetSearchEngine(settingInfo[SETTING_SEARCH_ENGINE_YAHOO].titleText);
500 //              listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
501                 listView.UpdateList();
502                 break;
503
504         case SETTING_SEARCH_ENGINE_NAVER:
505                 SettingPresentationModel::GetInstance()->SetSearchEngine(settingInfo[SETTING_SEARCH_ENGINE_NAVER].titleText);
506 //              listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
507                 listView.UpdateList();
508                 break;
509
510         case SETTING_SEARCH_ENGINE_GOOGLE:
511                 SettingPresentationModel::GetInstance()->SetSearchEngine(settingInfo[SETTING_SEARCH_ENGINE_GOOGLE].titleText);
512 //              listView.RefreshList(groupIndex, itemIndex, LIST_REFRESH_TYPE_ITEM_MODIFY);
513                 listView.UpdateList();
514                 break;
515
516         case SETTING_RESET_TO_DEFAULT:
517                 //OpenResetPopup();
518                 ResetToDefault();
519                 break;
520
521         default:
522                 break;
523         }
524 }
525
526 void
527 SettingForm::OnGroupedListViewItemSwept(GroupedListView& listView, int groupIndex, int itemIndex, SweepDirection direction)
528 {
529
530 }
531
532 GroupItem*
533 SettingForm::CreateGroupItem(int groupIndex, int itemWidth)
534 {
535         result r = E_FAILURE;
536         String text(L"");
537         GroupItem* pItem = null;
538         const Color ITEM_TEXT_COLOR = CUSTOM_COLOR_SETTINGS_GROUPTITLE;
539
540         pItem = new(std::nothrow) GroupItem();
541         if (pItem == null)
542         {
543                 return null;
544         }
545         r = pItem->Construct(Dimension(itemWidth, 76));
546         if (IsFailed(r))
547         {
548                 delete pItem;
549                 return null;
550         }
551
552         switch (groupIndex)
553         {
554         case 0:
555                 text = CommonUtil::GetString(L"IDS_BR_BODY_HOMEPAGE"); // IDS_HOMEPAGE
556                 settingInfo[SETTING_HOMEPAGE_TITLE].subText = SettingPresentationModel::GetInstance()->GetHomepage();
557                 break;
558
559         case 1:
560                 text = CommonUtil::GetString(L"IDS_BR_MBODY_PAGE_CONTENT_SETTINGS"); // IDS_BR_MBODY_PAGE_CONTENT_SETTINGS
561                 break;
562
563         case 2:
564                 text = CommonUtil::GetString(L"IDS_BR_BODY_PRIVACY_AND_SECURITY_ABB");  // IDS_BR_BODY_PRIVACY_AND_SECURITY_ABB
565                 break;
566
567         case 3:
568                 text = CommonUtil::GetString(L"IDS_BR_BODY_SEARCH");    // IDS_BR_BODY_SEARCH
569                 break;
570
571         case 4:
572                 text = L" ";
573                 break;
574
575         default:
576                 break;
577         }
578
579         pItem->SetElement(text, null);
580
581         AppLogDebug("background color set result %s", GetErrorMessage(r));
582
583         pItem->SetTextColor(ITEM_TEXT_COLOR);
584         return pItem;
585 }
586
587 ListItemBase*
588 SettingForm::CreateItem(int groupIndex, int itemIndex, int itemWidth)
589 {
590         AppLog("SettingForm::CreateItem --> groupIndex : %d, itemIndex: %d itemWidth: %d ", groupIndex, itemIndex, itemWidth);
591
592         result r = E_SUCCESS;
593         int effectiveIndex = 0;
594         const Color ITEM_BACKGROUND_COLOR = CUSTOM_COLOR_SETTINGS_LISTITEM_BACKGROUND;
595         const Color ITEM_RADIO_ITEM_BACKGROUND_COLOR = CUSTOM_COLOR_SETTINGS_LISTITEM_RADIO_BACKGROUND;
596         const Color ITEM_BACKGROUND_COLOR_HIGHLIGHTED = CUSTOM_BACKGROUND_COLOR_LISTVIEW_PRESSED_HIGHLIGHTED;
597
598         for (int i = 0; i < groupIndex; i++)
599                 effectiveIndex = effectiveIndex + pGroupItemCount[i];
600         effectiveIndex = effectiveIndex + itemIndex;
601         AppLogDebug("SettingForm::CreateItem --> groupIndex : %d, itemIndex: %d itemWidth: %d effectiveIndex %d", groupIndex, itemIndex, itemWidth, effectiveIndex);
602
603         if (settingInfo[effectiveIndex].itemType == ITEM_TYPE_TOGGLE)
604         {
605                 SettingToggleCustomItem* pItem = new(std::nothrow) SettingToggleCustomItem();
606                 r = pItem->Construct(itemWidth, 112 + (__fontSize - 44));
607                 if (IsFailed(r))
608                 {
609                         delete pItem;
610                         return null;
611                 }
612
613                 pItem->SetBackgroundColor(LIST_ITEM_DRAWING_STATUS_NORMAL,ITEM_BACKGROUND_COLOR);
614                 pItem->SetBackgroundColor(LIST_ITEM_DRAWING_STATUS_PRESSED,ITEM_BACKGROUND_COLOR_HIGHLIGHTED);
615                 if(__pList != null)
616                 {
617                         __pList->SetItemChecked(groupIndex, itemIndex, settingInfo[effectiveIndex].isSelected);
618                 }
619
620                 pItem->SetText(settingInfo[effectiveIndex].titleText);
621                 pItem->Make();
622
623                 return pItem;
624
625         }
626         else if (settingInfo[effectiveIndex].itemType == ITEM_TYPE_DROPDOWN)
627         {
628                 DropDownCustomItem* pItem = new(std::nothrow) DropDownCustomItem();
629                 r = pItem->Construct(itemWidth);
630                 if (IsFailed(r))
631                 {
632                         delete pItem;
633                         return null;
634                 }
635
636 /*              Bitmap* pNormalBackgroundBitmap = CommonUtil::GetNinepatchedBitmapN(IDB_LIST_GROUP_BG9,itemWidth,128);
637                 Bitmap* pPressedBackgroundBitmap = CommonUtil::GetNinepatchedBitmapN(IDB_LIST_GROUP_BG_PRESS9,itemWidth,112);
638
639                 if (pNormalBackgroundBitmap != NULL)
640                 {
641                         pItem->SetBackgroundBitmap(LIST_ITEM_DRAWING_STATUS_NORMAL,pNormalBackgroundBitmap);
642                         delete pNormalBackgroundBitmap;
643                 }
644
645                 if (pPressedBackgroundBitmap != NULL)
646                 {
647                         pItem->SetBackgroundBitmap(LIST_ITEM_DRAWING_STATUS_PRESSED,pPressedBackgroundBitmap);
648                         delete pPressedBackgroundBitmap;
649                 }*/
650
651                 pItem->SetBackgroundColor(LIST_ITEM_DRAWING_STATUS_NORMAL,ITEM_BACKGROUND_COLOR);
652                 pItem->SetBackgroundColor(LIST_ITEM_DRAWING_STATUS_PRESSED,ITEM_BACKGROUND_COLOR_HIGHLIGHTED);
653
654                 pItem->SetMainText(settingInfo[effectiveIndex].titleText);
655                 if(settingInfo[effectiveIndex].subText.CompareTo(L"IDS_BR_BODY_BLANK_PAGE") == 0 || settingInfo[effectiveIndex].subText.CompareTo(L"IDS_BR_BODY_MOST_VISITED_SITES") == 0  || settingInfo[effectiveIndex].subText.CompareTo(L"IDS_BR_BODY_FIT_TO_WIDTH") == 0 || settingInfo[effectiveIndex].subText.CompareTo(L"IDS_BR_BODY_READABLE") == 0)
656                 {
657                         pItem->SetSubText(CommonUtil::GetString(settingInfo[effectiveIndex].subText));
658                 }
659                 else
660                 {
661                         pItem->SetSubText(settingInfo[effectiveIndex].subText);
662                 }
663                 if (settingInfo[effectiveIndex].isOpen)
664                 {
665                         pItem->SetCurState(DROP_DOWN_ITEM_STATE_OPENED);
666                 }
667                 else
668                 {
669                         pItem->SetCurState(DROP_DOWN__ITEM_STATE_CLOSED);
670                 }
671                 r = pItem->Make();
672                 //      if (pBitmap != null)
673                 //              pItem->AddElement(Rectangle(0, 0, 10, 128), IDA_LIST_LEFT_SIDE_MARGIN_DROPDOWN, *pBitmap, null);
674
675                 if (IsFailed(r))
676                 {
677                         delete pItem;
678                         return null;
679                 }
680
681                 return pItem;
682         }
683         else if (settingInfo[effectiveIndex].itemType == ITEM_TYPE_RADIO)
684         {
685                 RadioCustomItem* pItem = new(std::nothrow) RadioCustomItem();
686                 int parentIndex = 0;
687                 for (parentIndex = effectiveIndex; parentIndex > SETTING_INVALID; parentIndex--)
688                 {
689                         if (settingInfo[parentIndex].itemType == ITEM_TYPE_DROPDOWN)
690                                 break;
691                 }
692                 if (settingInfo[parentIndex].isOpen == false || (__isCurrentPageDisable == true && groupIndex == 0 && itemIndex == 1))
693                 {
694                         r = pItem->Construct(itemWidth, 0);
695                         __pList->SetItemEnabled(groupIndex,itemIndex,false);
696                         AppLogDebug("construct with height 0 %s", GetErrorMessage(r));
697                         return pItem;
698                 }
699                 else
700                 {
701                         __pList->SetItemEnabled(groupIndex,itemIndex,true);
702                         pItem->Construct(itemWidth, 112 +  (__fontSize - 44));
703                 }
704 /*
705                 Bitmap* pNormalBackgroundBitmap = CommonUtil::GetNinepatchedBitmapN(IDB_LIST_GROUP_BG9,itemWidth,112);
706                 Bitmap* pPressedBackgroundBitmap = CommonUtil::GetNinepatchedBitmapN(IDB_LIST_GROUP_BG_PRESS9,itemWidth,112);
707
708                 if (pNormalBackgroundBitmap != NULL)
709                 {
710                         pItem->SetBackgroundBitmap(LIST_ITEM_DRAWING_STATUS_NORMAL,pNormalBackgroundBitmap);
711                         delete pNormalBackgroundBitmap;
712                 }
713
714                 if (pPressedBackgroundBitmap != NULL)
715                 {
716                         pItem->SetBackgroundBitmap(LIST_ITEM_DRAWING_STATUS_PRESSED,pPressedBackgroundBitmap);
717                         delete pPressedBackgroundBitmap;
718                 }*/
719
720                 pItem->SetBackgroundColor(LIST_ITEM_DRAWING_STATUS_NORMAL,ITEM_RADIO_ITEM_BACKGROUND_COLOR);
721                 pItem->SetBackgroundColor(LIST_ITEM_DRAWING_STATUS_PRESSED,ITEM_BACKGROUND_COLOR_HIGHLIGHTED);
722
723
724                 pItem->SetText(settingInfo[effectiveIndex].titleText);
725                 AppLogDebug("effectiveIndex %d SettingInfo[effectiveIndex].isSelected %d", effectiveIndex, settingInfo[effectiveIndex].isSelected);
726
727                 //if (pBitmap != null)
728                 //      pItem->AddElement(Rectangle(0, 0, 10, 112), IDA_LIST_LEFT_SIDE_MARGIN, *pBitmap, null);
729
730 //              pItem->SetSelected(settingInfo[effectiveIndex].isSelected);
731                 __pList->SetItemChecked(groupIndex,itemIndex,settingInfo[effectiveIndex].isSelected);
732                 pItem->Make();
733
734                 return pItem;
735         }
736         else if (settingInfo[effectiveIndex].itemType == ITEM_TYPE_NORMAL)
737         {
738                 DefaultCustomItem* pItem = new(std::nothrow) DefaultCustomItem();
739
740                 r = pItem->Construct(itemWidth, 112 + (__fontSize - 44));
741                 if (IsFailed(r))
742                 {
743                         delete pItem;
744                         return null;
745                 }
746
747
748 //              Bitmap* pNormalBackgroundBitmap = CommonUtil::GetNinepatchedBitmapN(IDB_LIST_GROUP_BG9,itemWidth,112);
749 //              Bitmap* pPressedBackgroundBitmap = CommonUtil::GetNinepatchedBitmapN(IDB_LIST_GROUP_BG_PRESS9,itemWidth,112);
750 //
751 //              if (pNormalBackgroundBitmap != NULL)
752 //              {
753 //                      pItem->SetBackgroundBitmap(LIST_ITEM_DRAWING_STATUS_NORMAL,pNormalBackgroundBitmap);
754 //                      delete pNormalBackgroundBitmap;
755 //              }
756 //
757 //              if (pPressedBackgroundBitmap != NULL)
758 //              {
759 //                      pItem->SetBackgroundBitmap(LIST_ITEM_DRAWING_STATUS_PRESSED,pPressedBackgroundBitmap);
760 //                      delete pPressedBackgroundBitmap;
761 //              }
762
763                 pItem->SetBackgroundColor(LIST_ITEM_DRAWING_STATUS_NORMAL,ITEM_BACKGROUND_COLOR);
764                 pItem->SetBackgroundColor(LIST_ITEM_DRAWING_STATUS_PRESSED,ITEM_BACKGROUND_COLOR_HIGHLIGHTED);
765
766
767                 pItem->SetText(settingInfo[effectiveIndex].titleText);
768
769                 //if (pBitmap != null)
770                 //      pItem->AddElement(Rectangle(0, 0, 10, 112), IDA_LIST_LEFT_SIDE_MARGIN, *pBitmap, null);
771
772                 r = pItem->Make();
773                 if (IsFailed(r))
774                 {
775                         delete pItem;
776                         return null;
777                 }
778                 return pItem;
779         }
780         else
781         {
782                 return null;
783         }
784 }
785
786 bool
787 SettingForm::DeleteGroupItem(int groupIndex, GroupItem* pItem, int itemWidth)
788 {
789         delete pItem;
790         pItem = null;
791         return true;
792 }
793
794 bool
795 SettingForm::DeleteItem(int groupIndex, int itemIndex, ListItemBase* pItem, int itemWidth)
796 {
797         delete pItem;
798         pItem = null;
799         return true;
800 }
801
802 int
803 SettingForm::GetGroupCount(void)
804 {
805         return groupCount;
806 }
807
808 int
809 SettingForm::GetItemCount(int groupIndex)
810 {
811         AppLog(" SettingForm::GetItemCount --> groupIndex : %d,", groupIndex);
812         return pGroupItemCount[groupIndex];
813 }
814
815 void
816 SettingForm::OnFormBackRequested(Form& source)
817 {
818         AppLog("SettingForm::OnFormBackRequested entered");
819         String* pSelectedScene = NULL;
820         Object* value = NULL;
821         MultipleWindowPresentationModel::GetInstance()->GetValue(SELECTED_SCENE_ID, &value);
822         pSelectedScene = (String*) value;
823         if (pSelectedScene)
824         {
825                 SceneManager::GetInstance()->GoBackward(BackwardSceneTransition(*pSelectedScene, SCENE_TRANSITION_ANIMATION_TYPE_NONE));
826 //              delete pSelectedScene;
827 //              pSelectedScene = null;
828         }
829 }
830
831 void
832 SettingForm::OnActionPerformed(const Control& source, int actionId)
833 {
834         switch (actionId)
835         {
836         case IDA_BUTTON_NO:
837                 if(__pConfirmationPopup)
838                 {
839                         __pConfirmationPopup->SetShowState(false);
840                         __pConfirmationPopup->Show();
841                         delete __pConfirmationPopup;
842                         __pConfirmationPopup = null;
843                 }
844                 break;
845
846         case IDA_BUTTON_YES:
847                 if(__pConfirmationPopup)
848                 {
849                         String message = L"";
850                         __pConfirmationPopup->SetShowState(false);
851                         __pConfirmationPopup->Show();
852                         if (__pConfirmationPopup->GetMessage() == CommonUtil::GetString(L"IDS_BR_POP_EMPTY_COOKIE_POPUP_BNO"))
853                         {
854                                 message = CommonUtil::GetString(L"IDS_BR_POP_DELETED");
855                                 SettingPresentationModel::GetInstance()->ClearCookie();
856                         }
857                         else if (__pConfirmationPopup->GetMessage() == CommonUtil::GetString(L"IDS_BR_POP_DELETE_ALL_SAVED_FORM_DATA_Q"))
858                         {
859                                 message = CommonUtil::GetString(L"IDS_BR_POP_DELETED");
860                                 SettingPresentationModel::GetInstance()->ClearFormData();
861                         }
862                         else if (__pConfirmationPopup->GetMessage() == CommonUtil::GetString(L"IDS_BR_POP_DELETE_ALL_SAVED_PASSWORDS_Q"))
863                         {
864                                 message = CommonUtil::GetString(L"IDS_BR_POP_DELETED");
865                                 SettingPresentationModel::GetInstance()->ClearPasswords();
866                         }
867                         else if (__pConfirmationPopup->GetMessage() == CommonUtil::GetString(L"IDS_BR_POP_DELETE_LOCALLY_CACHED_CONTENT_AND_DATABASES_Q"))
868                         {
869                                 message = CommonUtil::GetString(L"IDS_BR_POP_DELETED");
870                                 SettingPresentationModel::GetInstance()->ClearCache();
871                         }
872                         else if (__pConfirmationPopup->GetMessage() == CommonUtil::GetString(L"IDS_BR_BODY_DELETE_BROWSER_HISTORY_Q"))
873                         {
874                                 message = CommonUtil::GetString(L"IDS_BR_POP_DELETED");
875                                 HistoryPresentationModel::GetInstance()->ClearHistory();
876                         }
877                         else if (__pConfirmationPopup->GetMessage() == CommonUtil::GetString(L"IDS_BR_POP_ALL_SETTINGS_TO_DEFAULT_CONTINUE_Q"))
878                         {
879                                 message = CommonUtil::GetString(L"IDS_BR_SK_DONE");
880                                 SettingPresentationModel::GetInstance()->ResetRegistry();
881                                 InitializeSettingValues();
882                                 if(__pList != null)
883                                 {
884                                         __pList->UpdateList();
885                                 }
886                         }
887                         delete __pConfirmationPopup;
888                         __pConfirmationPopup = null;
889
890                         if (__pNotification != null)
891                         {
892                                 RemoveControl(__pNotification);
893                                 __pNotification = null;
894                         }
895                         __pNotification = new (std::nothrow) NotificationPanel(*this);
896
897                         //NotificationPanel* pNotification = new (std::nothrow) NotificationPanel(*this);
898                         __pNotification->SetText(message);
899                         __pNotification->SetPositionDiff(0);
900                         __pNotification->ShowNotification();
901                 }
902                 break;
903
904         default:
905                 break;
906         }
907 }
908
909 void
910 SettingForm::OnOrientationChanged(const Control& source, OrientationStatus orientationStatus)
911 {
912         Rectangle rect = GetClientAreaBounds();
913
914         if (__pNotification != null && __pNotification->GetShowState() == true)
915         {
916                 __pNotification->OrientationChanged();
917         }
918
919         if (__pList == null)
920         {
921                 return;
922         }
923         __pList->SetBounds(rect.x,rect.y,rect.width-16,rect.height);
924 //      __pList->UpdateList();//removed for issue 53768
925 }
926
927 SettingForm::SettingItemInfo::SettingItemInfo(void)
928 {
929         titleText = L"";
930         subText = L"";
931         childCount = 0;
932         isOpen = false;
933         isSelected = false ;
934 }
935 void
936 SettingForm::OnSceneActivatedN(const SceneId& previousSceneId, const SceneId& currentSceneId, IList* pArgs)
937 {
938         WindowInfo* pWindowInfo = null;
939         String curUrl = SettingPresentationModel::GetInstance()->GetFavoriteUrl();
940
941         pWindowInfo = MultipleWindowPresentationModel::GetInstance()->GetActiveWindowInfo();
942
943         if (previousSceneId == IDSCN_EDIT_HOMEPAGE_VIEW)
944         {
945                 if (pArgs != null)
946                 {
947                         String* pValue = NULL;
948                         pValue = dynamic_cast<String*>(pArgs->GetAt(0));
949                         if( pValue != NULL )
950                         {
951                                 if (pValue->CompareTo(L"Done") == 0)
952                                 {
953                                 //      SettingPresentationModel::GetInstance()->SetHomepage(CommonUtil::GetString(L"IDS_BR_BODY_USER_HOMEPAGE"));
954                                 }
955                                 else if (pValue->CompareTo(L"Cancel") == 0)
956                                 {
957                                         String homePage = SettingPresentationModel::GetInstance()->GetHomepage();
958                                         if (homePage.CompareTo((L"IDS_BR_BODY_MOST_VISITED_SITES")) == 0)
959                                         {
960                                                 settingInfo[SETTING_MOST_VISITED_SITE].isSelected = true;
961                                                 settingInfo[SETTING_BLANK_PAGE].isSelected = false;
962                                                 settingInfo[SETTING_CURRENT_PAGE].isSelected = false;
963                                                 settingInfo[SETTING_FAVORITE_URL].isSelected = false;
964                                                 SettingPresentationModel::GetInstance()->SetHomepage(L"IDS_BR_BODY_MOST_VISITED_SITES");
965
966                                         }
967                                         else if (homePage.CompareTo((L"IDS_BR_BODY_BLANK_PAGE")) == 0)
968                                         {
969                                                 settingInfo[SETTING_MOST_VISITED_SITE].isSelected = false;
970                                                 settingInfo[SETTING_BLANK_PAGE].isSelected = true;
971                                                 settingInfo[SETTING_CURRENT_PAGE].isSelected = false;
972                                                 settingInfo[SETTING_FAVORITE_URL].isSelected = false;
973                                                 SettingPresentationModel::GetInstance()->SetHomepage(L"IDS_BR_BODY_BLANK_PAGE");
974                                         }
975                                         else
976                                         {
977                                                 settingInfo[SETTING_MOST_VISITED_SITE].isSelected = false;
978                                                 settingInfo[SETTING_BLANK_PAGE].isSelected = false;
979                                                 settingInfo[SETTING_CURRENT_PAGE].isSelected = false;
980                                                 settingInfo[SETTING_FAVORITE_URL].isSelected = true;
981                                         }
982
983                                 }
984                         }
985                 }
986         }
987
988         if (pWindowInfo != null)
989         {
990                 __currentURL.Clear();
991                 __currentURL.Append(pWindowInfo->pageUrl);
992                 AppLog("current url is %ls",__currentURL.GetPointer());
993
994                 if (SettingPresentationModel::GetInstance()->GetFavoriteUrl().CompareTo(L"") == 0)
995                 {
996                         if (pWindowInfo->pageUrl.CompareTo(L"") == 0)
997                         {
998                                 //settingInfo[SETTING_FAVORITE_URL].titleText = CommonUtil::GetString(L"IDS_SET_HOMEPAGE");
999                                 settingInfo[SETTING_FAVORITE_URL].titleText = L"http://www.tizen.org";
1000                         }
1001                         else
1002                         {
1003                                 settingInfo[SETTING_FAVORITE_URL].titleText = pWindowInfo->pageUrl;
1004                         }
1005                 }
1006                 else
1007                 {
1008                         settingInfo[SETTING_FAVORITE_URL].titleText = SettingPresentationModel::GetInstance()->GetFavoriteUrl();
1009                 }
1010         }
1011
1012         if (__pList != null)
1013         {
1014                 __pList->UpdateList();
1015                 if (pWindowInfo && pWindowInfo->pageUrl.CompareTo(L"") == 0)
1016                 {
1017                         __isCurrentPageDisable = true;
1018                         AppLog("set item enabled is false");
1019                         __pList->SetItemEnabled(0, 1, false);
1020                 }
1021                 else
1022                 {
1023                         __isCurrentPageDisable = false;
1024                         AppLog("set item enabled is true");
1025                         if (settingInfo[0].isOpen == false)
1026                         {
1027                                 __pList->SetItemEnabled(0,1,false);
1028                         }
1029                         else
1030                         {
1031                                 __pList->SetItemEnabled(0,1,true);
1032                         }
1033                 }
1034                 for(int grpindex = 0; grpindex < groupCount; grpindex++)
1035                 {
1036                         for(int index = 0; index < *(pGroupItemCount+groupCount); index++)
1037                         {
1038                                 int effectiveIndex = 0;
1039                                 for (int i = 0; i < grpindex; i++)
1040                                                 effectiveIndex = effectiveIndex + pGroupItemCount[i];
1041                                         effectiveIndex = effectiveIndex + index;
1042
1043                                         if(effectiveIndex >= SETTING_MAX)
1044                                         {
1045                                                 continue;
1046                                         }
1047                                 if(settingInfo[effectiveIndex].itemType == ITEM_TYPE_TOGGLE || settingInfo[effectiveIndex].itemType == ITEM_TYPE_RADIO )
1048                                 {
1049                                         __pList->SetItemChecked(grpindex, index, settingInfo[effectiveIndex].isSelected);
1050                                 }
1051                         }
1052                 }
1053         }
1054         return;
1055 }
1056
1057 void
1058 SettingForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
1059 {
1060         return;
1061 }
1062
1063 void
1064 SettingForm::ClearHistory(void)
1065 {
1066         if(__pConfirmationPopup)
1067         {
1068                 __pConfirmationPopup->SetShowState(false);
1069                 __pConfirmationPopup->Show();
1070                 delete __pConfirmationPopup;
1071                 __pConfirmationPopup = null;
1072         }
1073         String message = CommonUtil::GetString(L"IDS_BR_BODY_DELETE_BROWSER_HISTORY_Q");
1074         if(!__pConfirmationPopup)
1075         {
1076                 __pConfirmationPopup = new(std::nothrow) ConfirmationPopup();
1077                 __pConfirmationPopup->Initialize();
1078                 __pConfirmationPopup->RemoveActionListener(*this);
1079                 __pConfirmationPopup->AddActionListener(*this);
1080                 __pConfirmationPopup->setMessage(message);
1081                 __pConfirmationPopup->Show();
1082         }
1083 }
1084
1085 void
1086 SettingForm::ClearCache(void)
1087 {
1088         if(__pConfirmationPopup)
1089         {
1090                 __pConfirmationPopup->SetShowState(false);
1091                 __pConfirmationPopup->Show();
1092                 delete __pConfirmationPopup;
1093                 __pConfirmationPopup = null;
1094         }
1095         String message = CommonUtil::GetString(L"IDS_BR_POP_DELETE_LOCALLY_CACHED_CONTENT_AND_DATABASES_Q");
1096         if(!__pConfirmationPopup)
1097         {
1098                 __pConfirmationPopup = new(std::nothrow) ConfirmationPopup();
1099                 __pConfirmationPopup->Initialize();
1100                 __pConfirmationPopup->RemoveActionListener(*this);
1101                 __pConfirmationPopup->AddActionListener(*this);
1102                 __pConfirmationPopup->setMessage(message);
1103                 __pConfirmationPopup->Show();
1104         }
1105 }
1106
1107 void
1108 SettingForm::ClearCookie(void)
1109 {
1110         if(__pConfirmationPopup)
1111         {
1112                 __pConfirmationPopup->SetShowState(false);
1113                 __pConfirmationPopup->Show();
1114                 delete __pConfirmationPopup;
1115                 __pConfirmationPopup = null;
1116         }
1117         String message = CommonUtil::GetString(L"IDS_BR_POP_EMPTY_COOKIE_POPUP_BNO");
1118         if(!__pConfirmationPopup)
1119         {
1120                 __pConfirmationPopup = new(std::nothrow) ConfirmationPopup();
1121                 __pConfirmationPopup->Initialize();
1122                 __pConfirmationPopup->RemoveActionListener(*this);
1123                 __pConfirmationPopup->AddActionListener(*this);
1124                 __pConfirmationPopup->setMessage(message);
1125                 __pConfirmationPopup->Show();
1126         }
1127 }
1128
1129 void
1130 SettingForm::ClearFormData(void)
1131 {
1132         if(__pConfirmationPopup)
1133         {
1134                 __pConfirmationPopup->SetShowState(false);
1135                 __pConfirmationPopup->Show();
1136                 delete __pConfirmationPopup;
1137                 __pConfirmationPopup = null;
1138         }
1139         String message = CommonUtil::GetString(L"IDS_BR_POP_DELETE_ALL_SAVED_FORM_DATA_Q");
1140         if(!__pConfirmationPopup)
1141         {
1142                 __pConfirmationPopup = new(std::nothrow) ConfirmationPopup();
1143                 __pConfirmationPopup->Initialize();
1144                 __pConfirmationPopup->RemoveActionListener(*this);
1145                 __pConfirmationPopup->AddActionListener(*this);
1146                 __pConfirmationPopup->setMessage(message);
1147                 __pConfirmationPopup->Show();
1148         }
1149 }
1150
1151 void
1152 SettingForm::ClearPasswords(void)
1153 {
1154         if(__pConfirmationPopup)
1155         {
1156                 __pConfirmationPopup->SetShowState(false);
1157                 __pConfirmationPopup->Show();
1158                 delete __pConfirmationPopup;
1159                 __pConfirmationPopup = null;
1160         }
1161         String message = CommonUtil::GetString(L"IDS_BR_POP_DELETE_ALL_SAVED_PASSWORDS_Q");
1162         if(!__pConfirmationPopup)
1163         {
1164                 __pConfirmationPopup = new(std::nothrow) ConfirmationPopup();
1165                 __pConfirmationPopup->Initialize();
1166                 __pConfirmationPopup->RemoveActionListener(*this);
1167                 __pConfirmationPopup->AddActionListener(*this);
1168                 __pConfirmationPopup->setMessage(message);
1169                 __pConfirmationPopup->Show();
1170         }
1171 }
1172
1173
1174 void
1175 SettingForm::ResetToDefault()
1176 {
1177         if(__pConfirmationPopup)
1178         {
1179                 __pConfirmationPopup->SetShowState(false);
1180                 __pConfirmationPopup->Show();
1181                 delete __pConfirmationPopup;
1182                 __pConfirmationPopup = null;
1183         }
1184         String message = CommonUtil::GetString(L"IDS_BR_POP_ALL_SETTINGS_TO_DEFAULT_CONTINUE_Q");
1185         if(!__pConfirmationPopup)
1186         {
1187                 __pConfirmationPopup = new(std::nothrow) ConfirmationPopup();
1188                 __pConfirmationPopup->Initialize();
1189                 __pConfirmationPopup->RemoveActionListener(*this);
1190                 __pConfirmationPopup->AddActionListener(*this);
1191                 __pConfirmationPopup->setMessage(message);
1192                 __pConfirmationPopup->Show();
1193         }
1194 }
1195
1196 void
1197 SettingForm::OnUserEventReceivedN (RequestId requestId, Tizen::Base::Collection::IList *pArgs)
1198 {
1199         AppLog("receiving userevent for appcontrol %d",requestId);
1200         if (requestId == APPCONTROL_LAUNCH_MAX_LIMIT_REACHED)
1201         {
1202                 AppLog("receiving userevent for appcontrol %d ",requestId);
1203                 if(__pConfirmationPopup)
1204                 {
1205                         __pConfirmationPopup->SetShowState(false);
1206                         delete __pConfirmationPopup;
1207                         __pConfirmationPopup = null;
1208                 }
1209         }
1210 }