6dba4ffaa07c7e9f02ab20ea63e7595e6192a05d
[apps/osp/Internet.git] / src / IntHistoryListForm.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 HistoryListForm class
18 /*@file: HistoryListForm.cpp
19  *@brief:       This class defines HistoryListForm used define history
20  *
21  */
22
23 #include <FApp.h>
24 #include <FUi.h>
25 #include "IntBookmarkData.h"
26 #include "IntBookmarkPresentationModel.h"
27 #include "IntCommonLib.h"
28 #include "IntFaviconManager.h"
29 #include "IntHistoryListForm.h"
30 #include "IntHistoryPresentationModel.h"
31 #include "IntMultipleWindowPresentationModel.h"
32 #include "IntSceneRegister.h"
33 #include "IntTypes.h"
34
35 using namespace Tizen::App;
36 using namespace Tizen::Base;
37 using namespace Tizen::Base::Collection;
38 using namespace Tizen::Base::Runtime;
39 using namespace Tizen::Graphics;
40 using namespace Tizen::Locales;
41 using namespace Tizen::Media;
42 using namespace Tizen::Ui;
43 using namespace Tizen::Ui::Controls;
44 using namespace Tizen::Ui::Scenes;
45 using namespace Tizen::System;
46
47 static const wchar_t* IDB_TAB_ICON_BOOKMARKS =  L"I01_search_list_icon_favorite.png";
48 static const wchar_t* IDB_TAB_ICON_HISTORY =L"I01_search_list_icon_history.png";
49 static const wchar_t* IDB_ICON_BOOKMARK_ON_TEMP = L"00_icon_favorite_on_74x74.png";
50 static const wchar_t* IDB_ICON_BOOKMARK_OFF_TEMP = L"00_icon_favorite_off_74x74.png";
51
52
53 const int HistoryListForm::IDA_TABBAR_ITEM_1 = 101;
54 const int HistoryListForm::IDA_TABBAR_ITEM_2 = 102;
55 const int HistoryListForm::IDA_EDIT_HISTORY_LIST_FORM = 103;
56 const int HistoryListForm::IDA_FORMAT_ICON = 104;
57 const int HistoryListForm::IDA_FORMAT_TITLE = 105;
58 const int HistoryListForm::IDA_FORMAT_URL = 106;
59 const int HistoryListForm::IDA_FORMAT_BOOKMARK = 107;
60
61
62 HistoryListForm::HistoryListForm(void)
63 {
64         __pBookmarkList = null;
65         __pGroupedListView =null;
66         __pSearchListView = null;
67         __pSearchBar = null;
68         __pGroupData = null;
69         __pSearchedData = null ;
70         __searchHistory = false;
71         __isNoHistoryPresent = true;
72         __searchText = L"";
73         __previousSceneId = L"";
74 }
75
76 HistoryListForm::~HistoryListForm(void)
77 {
78         if (__pGroupData != null)
79         {
80                 __pGroupData->RemoveAll(false);
81                 delete __pGroupData;
82         }
83         if(__pBookmarkList != null)
84         {
85                 __pBookmarkList->RemoveAll(false);
86                 delete __pBookmarkList;
87         }
88         if (__pSearchListView)
89         {
90                 delete __pSearchListView;
91                 __pSearchListView = null;
92         }
93 }
94
95 bool
96 HistoryListForm::Initialize(void)
97 {
98         Construct(L"IDL_HISTORY_LIST");
99
100         return true;
101 }
102
103 result
104 HistoryListForm::OnInitializing(void)
105 {
106         AppLog("HistoryListForm::OnInitializing");
107         result r = E_SUCCESS;
108         SceneManager* pSceneManager = null;
109         HeaderItem bookmark;
110         HeaderItem history;
111         Header *pHeader = GetHeader();
112         Bitmap *pIconBitmap = null;
113         AppResource* pAppResource = UiApp::GetInstance()->GetAppResource();
114         const Color brown = Color(32, 32, 32, 0xFF);
115 //      bool isHwBackButtonExist = false;
116 //      Tizen::System::SystemInfo::GetValue(L"http:://tizen.org/feature/input.back.key",isHwBackButtonExist);
117 //
118 //      SetFormStyle(FORM_STYLE_INDICATOR | FORM_STYLE_HEADER | FORM_STYLE_FOOTER);
119         // Setup back event listener
120         SetFormBackEventListener(this);
121
122         GetHeader()->AddActionEventListener(*this);
123         GetFooter()->AddActionEventListener(*this);
124
125 //      if(isHwBackButtonExist)
126 //      {
127 //              GetFooter()->SetBackButtonEnabled(false);
128 //      }
129         AddOrientationEventListener(*this);
130         SettingInfo::AddSettingEventListener(*this);
131
132         pSceneManager = SceneManager::GetInstance();
133         if (pSceneManager != null)
134         {
135                 pSceneManager->AddSceneEventListener(IDSCN_HISTORY_LIST, *this);
136         }
137
138         __fontSize = CommonUtil::GetFontSize();
139         if (pAppResource == null)
140         {
141                 return E_FAILURE;
142         }
143
144         __pGroupedListView = static_cast< GroupedListView* >(GetControl(L"IDC_GROUPEDLISTVIEW1"));
145         if (__pGroupedListView == null)
146         {
147                 return E_FAILURE;
148         }
149
150         r = __pGroupedListView->SetItemProvider(*this);
151         if (IsFailed(r))
152         {
153                 return r;
154         }
155
156
157         __pSearchBar = static_cast< SearchBar* >(GetControl(L"IDC_SEARCHBAR1"));
158         if (__pSearchBar == null)
159         {
160                 return E_FAILURE;
161         }
162         __pSearchBar->AddFocusEventListener(*this);
163         __pSearchListView = new(std::nothrow) GroupedListView();
164         if (__pSearchListView == null)
165         {
166                 return E_FAILURE;
167         }
168
169         __pGroupedListView->AddGroupedListViewItemEventListener(*this);
170         r = __pGroupedListView->SetBounds(Rectangle(0,__pGroupedListView->GetY(),GetClientAreaBounds().width,GetClientAreaBounds().height  - __pSearchBar->GetHeight() - __pSearchBar->GetY()));
171         if (IsFailed(r))
172         {
173                 return r;
174         }
175         r = __pSearchListView->Construct(Rectangle(0,0, GetClientAreaBounds().width, GetClientAreaBounds().height -__pSearchBar->GetHeight() - __pSearchBar->GetY()), GROUPED_LIST_VIEW_STYLE_INDEXED, true, false);
176         if (IsFailed(r))
177         {
178                 return r;
179         }
180         r = __pSearchListView->SetItemProvider(*this);
181         if (IsFailed(r))
182         {
183                 return r;
184         }
185         r = __pSearchListView->SetTextOfEmptyList(CommonUtil::GetString(L"IDS_BR_BODY_NO_RESULTS_FOUND"));
186
187         if (IsFailed(r))
188         {
189                 return r;
190         }
191
192         __pSearchListView->SetBackgroundColor(GetBackgroundColor());
193         __pSearchListView->SetTextColorOfEmptyList(Color::GetColor(COLOR_ID_BLACK));
194         __pSearchListView->AddGroupedListViewItemEventListener(*this);
195         r = __pSearchListView->SetShowState(false);
196         if (IsFailed(r))
197         {
198                 return r;
199         }
200
201
202         __pSearchBar->AddSearchBarEventListener(*this);
203         __pSearchBar->AddKeypadEventListener(*this);
204         r = __pSearchBar->SetContent(__pSearchListView);
205
206         if (pHeader != null)
207         {
208                 pHeader->SetStyle(HEADER_STYLE_TAB);
209                 bookmark.Construct(IDA_TABBAR_ITEM_1);
210                 String strbookmark;
211                 pAppResource->GetString(L"IDS_BR_TAB_BOOKMARKS", strbookmark);
212                 bookmark.SetText(strbookmark);
213                 pIconBitmap = pAppResource->GetBitmapN(IDB_TAB_ICON_BOOKMARKS);
214                 bookmark.SetIcon(HEADER_ITEM_STATUS_NORMAL, pIconBitmap);
215                 bookmark.SetIcon(HEADER_ITEM_STATUS_PRESSED, pIconBitmap);
216                 pHeader->AddItem(bookmark);
217
218                 if (pIconBitmap)
219                 {
220                         delete pIconBitmap;
221                 }
222
223
224                 history.Construct(IDA_TABBAR_ITEM_2);
225                 String strhistory;
226                 pAppResource->GetString(L"IDS_BR_TAB_HISTORY", strhistory);
227                 history.SetText(strhistory);
228                 pIconBitmap = pAppResource->GetBitmapN(IDB_TAB_ICON_HISTORY);
229                 history.SetIcon(HEADER_ITEM_STATUS_NORMAL, pIconBitmap);
230                 history.SetIcon(HEADER_ITEM_STATUS_PRESSED, pIconBitmap);
231                 pHeader->AddItem(history);
232                 pHeader->SetItemSelected(1);
233                 pHeader->SetTabEditModeEnabled(false);
234
235                 if (pIconBitmap != NULL)
236                 {
237                         delete pIconBitmap;
238                 }
239         }
240
241         __pBookmarkList = new(std::nothrow) Collection::ArrayList();
242         __pBookmarkList->Construct();
243         BookmarkPresentationModel::GetInstance()->GetBookmarkForHistory(0,*__pBookmarkList);
244         return r;
245 }
246
247 result
248 HistoryListForm::OnTerminating(void)
249 {
250         result r = E_SUCCESS;
251
252         SettingInfo::RemoveSettingEventListener(*this);
253         return r;
254 }
255
256 void
257 HistoryListForm::OnActionPerformed(const Control& source, int actionId)
258 {
259         AppLog("HistoryListForm::OnActionPerformed");
260         result r = E_FAILURE;
261         SceneManager* pSceneManager = SceneManager::GetInstance();
262         if (pSceneManager == null)
263         {
264                 return;
265         }
266         switch (actionId)
267         {
268         case IDA_EDIT_HISTORY_LIST_FORM:
269         {
270                 AppLog("ID_EDIT_HISTORY_LIST_FORM entered");
271                 r = pSceneManager->GoForward(ForwardSceneTransition(IDSCN_EDIT_HISTORY_LIST, SCENE_TRANSITION_ANIMATION_TYPE_LEFT));
272                 if (IsFailed(r))
273                 {
274                         return;
275                 }
276         }
277         break;
278         case IDA_TABBAR_ITEM_1:
279         {
280         //      result r = GetHeader()->SetItemSelected(1);
281         //      AppLog("SetItemSelected result %s",GetErrorMessage(r));
282         //      GetHeader()->Invalidate(true);
283
284                 if (pSceneManager != null)
285                 {
286                         if(__previousSceneId.CompareTo(IDSCN_BOOKMARK_VIEW) != 0)
287                         {
288                                 if(pSceneManager->GoForward(ForwardSceneTransition(IDSCN_BOOKMARK_VIEW, SCENE_TRANSITION_ANIMATION_TYPE_LEFT)) != E_SUCCESS)
289                                 {
290                                         AppLogDebug("BookmarkListForm::OnActionPerformed GoForward failed");
291                                         return;
292                                 }
293                         }
294                         else
295                         {
296                                 if(pSceneManager->GoBackward(BackwardSceneTransition(SCENE_TRANSITION_ANIMATION_TYPE_RIGHT))!= E_SUCCESS)
297                                 {
298                                         AppLogDebug("BookmarkListForm::OnActionPerformed GoBackward failed");
299                                         return;
300                                 }
301                         }
302                 }
303
304         }
305         break;
306         default:
307                 break;
308         }
309 }
310
311 void
312 HistoryListForm::OnFocusGained(const Tizen::Ui::Control& source)
313 {
314         __pSearchListView->SetEnabled(false);
315 }
316
317 void
318 HistoryListForm::OnFocusLost(const Tizen::Ui::Control& source)
319 {
320         __pSearchListView->SetEnabled(true);
321         __searchHistory = false;
322 }
323 void
324 HistoryListForm::OnFormBackRequested(Form& source)
325 {
326         SceneManager* pSceneManager = SceneManager::GetInstance();
327         if (pSceneManager == null)
328         {
329                 return;
330         }
331         result r = E_FAILURE;
332         if(__previousSceneId.CompareTo(IDSCN_BOOKMARK_VIEW) != 0)
333         {
334                         r = pSceneManager->GoBackward(BackwardSceneTransition());
335         }
336         else
337         {
338                 r = pSceneManager->GoBackward(BackwardSceneTransition(SCENE_TRANSITION_ANIMATION_TYPE_RIGHT));
339         }
340         if(IsFailed(r))
341         {
342                 AppLogDebug("HistoryListForm::OnFormBackRequested GoForward failed %s",GetErrorMessage(r));
343         }
344 }
345
346 GroupItem*
347 HistoryListForm::CreateGroupItem(int groupIndex, int itemWidth)
348 {
349         result r = E_FAILURE;
350         int strMonth = 0;
351         String text(L"");
352         DateTime endTime;
353         DateTime startTime;
354         int count = 0;
355         GroupItem* pItem = null;
356         GroupItemClass* pGroupItemClass = null;
357
358         String weeksAgo2 = L"";
359         weeksAgo2.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),2);
360
361         String weeksAgo3 = L"";
362         weeksAgo3.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),3);
363
364         String weeksAgo4 = L"";
365         weeksAgo4.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),4);
366
367         pItem = new(std::nothrow) GroupItem();
368         if (pItem == null)
369         {
370                 return null;
371         }
372         pGroupItemClass = dynamic_cast< GroupItemClass* >(__pGroupData->GetAt(groupIndex));
373
374         if (pGroupItemClass == null || pGroupItemClass->GetHistoryData() == null || pGroupItemClass->GetHistoryData()->GetCount() == 0)
375         {
376                 AppLog("CreateGroupItem :: if history is null");
377                 r = pItem->Construct(Dimension(itemWidth, 0));
378                 __pGroupedListView->SetItemEnabled(groupIndex, -1, false);
379                 return pItem;
380         }
381         else
382         {
383                 r = pItem->Construct(Dimension(itemWidth, 48));
384         }
385         text = pGroupItemClass->GetTitleText();
386
387         if (__searchHistory == false)
388         {
389                 String month = L"";
390                 text.Append(L" (");
391                 if (pGroupItemClass->GetTitleText() == CommonUtil::GetString(L"IDS_COM_BODY_TODAY") || pGroupItemClass->GetTitleText() == CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY"))
392                 {
393                         int dayOfWeek = 0;
394                         Calendar* pGregorianCalendar = Calendar::CreateInstanceN(CALENDAR_GREGORIAN);
395                         if ( pGregorianCalendar != NULL)
396                         {
397                                 r = pGregorianCalendar->SetTimeField(TIME_FIELD_YEAR, pGroupItemClass->GetStartTime().GetYear());
398                                 if (IsFailed(r))
399                                 {
400                                         if( pItem != null)
401                                         {
402                                                 delete pItem;
403                                         }
404                                         delete pGregorianCalendar;
405                                         return null;
406                                 }
407                                 r = pGregorianCalendar->SetTimeField(TIME_FIELD_MONTH, pGroupItemClass->GetStartTime().GetMonth());
408                                 if (IsFailed(r))
409                                 {
410                                         if( pItem != null)
411                                         {
412                                                 delete pItem;
413                                         }
414                                         delete pGregorianCalendar;
415                                         return null;
416                                 }
417                                 r = pGregorianCalendar->SetTimeField(TIME_FIELD_DAY_OF_MONTH, pGroupItemClass->GetStartTime().GetDay());
418                                 if (IsFailed(r))
419                                 {
420                                         if( pItem != null)
421                                         {
422                                                 delete pItem;
423                                         }
424                                         delete pGregorianCalendar;
425                                         return null;
426                                 }
427                                 dayOfWeek = pGregorianCalendar->GetTimeField(TIME_FIELD_DAY_OF_WEEK);
428                                 if (pGregorianCalendar != NULL)
429                                 {
430                                         delete pGregorianCalendar;
431                                 }
432
433                         }
434                         switch(dayOfWeek)
435                         {
436                         case SUNDAY:
437                                 text.Append(CommonUtil::GetString(L"IDS_COM_BODY_SUN"));
438                                 break;
439                         case MONDAY:
440                                 text.Append(CommonUtil::GetString(L"IDS_COM_BODY_MON"));
441                                 break;
442                         case TUESDAY:
443                                 text.Append(CommonUtil::GetString(L"IDS_COM_BODY_TUE"));
444                                 break;
445                         case WEDNESDAY:
446                                 text.Append(CommonUtil::GetString(L"IDS_COM_BODY_WED"));
447                                 break;
448                         case THURSDAY:
449                                 text.Append(CommonUtil::GetString(L"IDS_COM_BODY_THU"));
450                                 break;
451                         case FRIDAY:
452                                 text.Append(CommonUtil::GetString(L"IDS_COM_BODY_FRI"));
453                                 break;
454                         case SATURDAY:
455                                 text.Append(CommonUtil::GetString(L"IDS_COM_BODY_SAT"));
456                                 break;
457                         default:
458                                 break;
459                         }
460                         text.Append(L", ");
461                 }
462
463                 if (pGroupItemClass->GetTitleText() != CommonUtil::GetString(L"IDS_BR_BODY_OLDER"))
464                 {
465                         text.Append(pGroupItemClass->GetStartTime().GetDay());
466                         text.Append(L" ");
467                         strMonth = pGroupItemClass->GetStartTime().GetMonth();
468                         month = GetMonth(strMonth);
469                         text.Append(month);
470                 }
471                 else
472                 {
473                         text.Append(L"~ ");
474                 }
475
476
477
478                 if (pGroupItemClass->GetTitleText() == CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK") || pGroupItemClass->GetTitleText() == weeksAgo2
479                                 || pGroupItemClass->GetTitleText() == weeksAgo3 || pGroupItemClass->GetTitleText() == weeksAgo4 || pGroupItemClass->GetTitleText() == CommonUtil::GetString(L"IDS_BR_EARLIER_THIS_MONTH") || pGroupItemClass->GetTitleText() == CommonUtil::GetString(L"IDS_BR_BODY_LAST_MONTH") || pGroupItemClass->GetTitleText() == CommonUtil::GetString(L"IDS_BR_BODY_OLDER"))
480                 {
481                         text.Append(L" - ");
482                         text.Append(pGroupItemClass->GetEndTime().GetDay());
483                         text.Append(L" ");
484                         strMonth = pGroupItemClass->GetEndTime().GetMonth();
485                         month = GetMonth(strMonth);
486                         text.Append(month);
487                 }
488                 text.Append(L")");
489         }
490
491         r = pItem->SetElement(text, null);
492         if (IsFailed(r))
493         {
494                 delete pItem;
495                 AppLogDebug("Failed with %s", GetErrorMessage(r));
496                 return null;
497         }
498         r = pItem->SetTextSize(32);
499         if (IsFailed(r))
500         {
501                 delete pItem;
502                 return null;
503         }
504         __pGroupedListView->SetItemEnabled(groupIndex, -1, false);
505
506         return pItem;
507 }
508
509 ListItemBase*
510 HistoryListForm::CreateItem(int groupIndex, int itemIndex, int itemWidth)
511 {
512         AppLog("HistoryListForm::CreateItem");
513         result r = E_FAILURE;
514         History* pHistory = null;
515         Bitmap* pBitmap = null;
516         Bitmap* pBookmarkBitmap = null;
517         GroupItemClass* pGroupItemClass = null;
518         CustomItem* pItem = new(std::nothrow) CustomItem();
519         int bookmarkBtnWidth = 0;
520         String bitmapId;
521
522         Image* pImage = null;
523         pImage = new Image();
524         pImage->Construct();
525
526         if(__pGroupData == null)
527         {
528                 delete pItem;
529                 delete pImage;
530                 return null;
531         }
532
533         if (pItem == null)
534         {
535                 delete pImage;
536                 return null;
537         }
538         pGroupItemClass = dynamic_cast< GroupItemClass* >(__pGroupData->GetAt(groupIndex));
539         if (pGroupItemClass == null)
540         {
541                 delete pItem;
542                 delete pImage;
543                 return null;
544         }
545         if (pGroupItemClass->GetHistoryData() == null)
546         {
547                 delete pItem;
548                 delete pImage;
549                 return null;
550         }
551         pHistory = dynamic_cast< History* >(pGroupItemClass->GetHistoryData()->GetAt(itemIndex));
552         if (pHistory == null)
553         {
554                 delete pItem;
555                 delete pImage;
556                 return null;
557         }
558         r = pItem->Construct(Dimension(itemWidth, 128 - 44 + __fontSize), LIST_ANNEX_STYLE_NORMAL);
559         if (IsFailed(r))
560         {
561                 delete pItem;
562                 delete pImage;
563                 return null;
564         }
565
566         ByteBuffer* pFavIconBuffer = null;
567         pFavIconBuffer = pHistory->GetFavIconBuffer();
568
569         AppLog("BookmarkListForm::CreateItem check 0");
570
571         if (pFavIconBuffer != null)
572         {
573                 AppLog("BookmarkListForm::CreateItem pFavIconBuffer is not null");
574         }
575         else
576         {
577                 AppLog("BookmarkListForm::CreateItem pFavIconBuffer is null");
578         }
579
580         pBitmap = pImage->DecodeN(*pFavIconBuffer, IMG_FORMAT_PNG, BITMAP_PIXEL_FORMAT_ARGB8888);
581
582         AppLog("BookmarkListForm::CreateItem check 1");
583
584         //bitmapId = pHistory->GetFaviconId() ;
585         //pBitmap = pHistory->GetFavIconBitmap();
586
587         if (pBitmap == null)
588         {
589                 pBitmap = FaviconManager::GetInstance()->GetDefaultFaviconN();
590         }
591         if (pBitmap != null)
592         {
593                 AppLog("rrrr:: width %d height %d of the faviconbitmap",pBitmap->GetWidth(),pBitmap->GetHeight());
594                 r = pItem->AddElement(Rectangle(16, 28 + (__fontSize - 44)/2,72, 72), IDA_FORMAT_ICON, *pBitmap, null);
595                 delete pBitmap;
596                 if (IsFailed(r))
597                 {
598                         delete pItem;
599                         delete pImage;
600                         AppLogException("CreateItem failed with %s", GetErrorMessage(r));
601                         return null;
602                 }
603         }
604         bool urlFoundInBookmark = false;
605 //
606 //      if(__pBookmarkList != null)
607 //      {
608 //              for (int i = 0; i < __pBookmarkList->GetCount();i++)
609 //              {
610 //                      BookmarkData* pBookMark = dynamic_cast< BookmarkData* >(__pBookmarkList->GetAt(i));
611 //                      if(pBookMark != null && pHistory->GetHistoryUrl().CompareTo(pBookMark->GetUrl()) == 0)
612 //                      {
613 //                              urlFoundInBookmark = true;
614 //                              break;
615 //                      }
616 //              }
617 //      }
618         BookmarkPresentationModel::GetInstance()->DoesBookmarkExist(pHistory->GetHistoryUrl(),urlFoundInBookmark);
619         if (urlFoundInBookmark == true)
620         {
621                 pBookmarkBitmap = AppResource::GetInstance()->GetBitmapN(IDB_ICON_BOOKMARK_ON_TEMP);
622         }
623         else
624         {
625                 pBookmarkBitmap = AppResource::GetInstance()->GetBitmapN(IDB_ICON_BOOKMARK_OFF_TEMP);
626         }
627         bookmarkBtnWidth = 74;
628
629
630         r = pItem->AddElement(Rectangle(104, 10, GetClientAreaBounds().width - 108 - 32 - bookmarkBtnWidth - 32, 60 - 44 + __fontSize), IDA_FORMAT_TITLE, pHistory->GetHistoryTitle(), __fontSize,CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,true);
631         TryCatch(!IsFailed(r), "CreateItem failed with %s",GetErrorMessage(r));
632
633 //      if(__pSearchBar->GetMode() == SEARCH_BAR_MODE_INPUT)
634 //              r = pItem->AddElement(Rectangle(104, 70, GetClientAreaBounds().width - 108 - 32 - bookmarkBtnWidth - 32, 48), IDA_FORMAT_URL, pHistory->GetHistoryUrl(),32,CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,CUSTOM_COLOR_TRANSPARENT,true);
635 //      else
636                 r = pItem->AddElement(Rectangle(104, 70 - 44 +__fontSize, GetClientAreaBounds().width - 108 - 32 - bookmarkBtnWidth - 32, 48), IDA_FORMAT_URL, pHistory->GetHistoryUrl(),32,CUSTOM_COLOR_GREY,CUSTOM_COLOR_GREY,CUSTOM_COLOR_GREY,true);
637         TryCatch(!IsFailed(r), "CreateItem failed with %s",GetErrorMessage(r));
638         if ( pBookmarkBitmap != null)
639         {
640                 r = pItem->AddElement(Rectangle(GetClientAreaBounds().width - bookmarkBtnWidth - 16, (128 - pBookmarkBitmap->GetHeight())/2 +(__fontSize - 44)/2, bookmarkBtnWidth, bookmarkBtnWidth), IDA_FORMAT_BOOKMARK, *pBookmarkBitmap);
641                 TryCatch(!IsFailed(r), "CreateItem failed with %s",GetErrorMessage(r));
642                 delete pBookmarkBitmap;
643         }
644         delete pImage;
645         return pItem;
646
647         CATCH:
648         delete pItem;
649         delete pImage;
650         return null;
651 }
652
653 bool
654 HistoryListForm::DeleteGroupItem(int groupIndex, GroupItem* pItem, int itemWidth)
655 {
656
657         //      delete pItem;
658         //      pItem = null;
659         return false;
660 }
661
662 bool
663 HistoryListForm::DeleteItem(int groupIndex, int itemIndex, ListItemBase* pItem, int itemWidth)
664 {
665         AppLog("HistoryListForm::DeleteItem");
666         result r = E_FAILURE;
667         GroupItemClass* pGroupItemClass = dynamic_cast< GroupItemClass* >(__pGroupData->GetAt(groupIndex));
668         if (pGroupItemClass == null)
669         {
670                 return false;
671         }
672
673         //      if (pGroupItemClass->__pData != null)
674         //      {
675         //              r = pGroupItemClass->__pData->RemoveAt(itemIndex);
676         //              if (IsFailed(r))
677         //              {
678         //                      return false;
679         //              }
680         //      }
681
682         delete pItem;
683         pItem = null;
684         return true;
685 }
686
687 int
688 HistoryListForm::GetGroupCount(void)
689 {
690         __isNoHistoryPresent = true;
691         CreateGroupItems();
692         if (__pGroupData != null)
693         {
694                 if (__searchHistory == false)
695                 {
696                         int count = 0;
697                         DateTime startTime;
698                         DateTime endTime;
699                         HistoryPresentationModel::GetCurrentDateTime(endTime);
700
701                         startTime.SetValue(0,0,0);
702
703                         HistoryPresentationModel::GetInstance()->GetHistoryCountWithTimeRange(startTime,endTime,count);
704                         if (count == 0)
705                         {
706                                 return 0;
707                         }
708                         return __pGroupData->GetCount();
709                 }
710                 else
711                 {
712                         int count = 0;
713                         if (__searchText.GetLength() > 0)
714                         {
715                                 __searchText.Replace(L"%", L"/%");
716                                 __searchText.Replace(L"_", L"/_");
717                         }
718                 //      String searchText = __pSearchBar->GetText();
719                         result r = HistoryPresentationModel::GetInstance()->GetSearchHistoryCount(count, __searchText);
720                         if(count)
721                                 return 1;
722                         else
723                                 return 0;
724                 }
725         }
726         else
727         {
728                 return 0;
729         }
730 }
731
732 int
733 HistoryListForm::GetItemCount(int groupIndex)
734 {
735         result r = E_FAILURE;
736         int count = 0;
737         DateTime endTime;
738         DateTime startTime;
739         String text;
740
741         GroupItemClass* pGroupItemClass = dynamic_cast< GroupItemClass* >(__pGroupData->GetAt(groupIndex));
742         if (pGroupItemClass == null)
743         {
744                 return null;
745         }
746         if (__searchHistory == false)
747         {
748                 startTime = pGroupItemClass->GetStartTime();
749                 endTime = pGroupItemClass->GetEndTime();
750                 r = HistoryPresentationModel::GetInstance()->GetHistoryCountWithTimeRange(startTime,endTime,count);
751         }
752         else
753         {
754                 //text =  __pSearchBar->GetText();
755                 r = HistoryPresentationModel::GetInstance()->GetSearchHistoryCount(count,__searchText);
756                 if(count == 0)
757                 {
758                         return count;
759                 }
760         }
761         if (IsFailed(r))
762         {
763                 return 0;
764         }
765
766         ArrayList* pData = new(std::nothrow) ArrayList();
767         if (pData == null)
768         {
769                 return 0;
770         }
771         r = pData->Construct();
772
773         if (IsFailed(r))
774         {
775                 delete pData;
776                 return 0;
777         }
778
779         if (__searchHistory == false)
780         {
781                 startTime = pGroupItemClass->GetStartTime();
782                 endTime = pGroupItemClass->GetEndTime();
783                 AppLog("Starttime %ls endtime %ls",startTime.ToString().GetPointer(),endTime.ToString().GetPointer());
784                 r = HistoryPresentationModel::GetInstance()->GetHistoryWithTimeRange(startTime,endTime, 0, count, *pData);
785         }
786         else
787         {
788                 //text = __pSearchBar->GetText() ;
789                 r = HistoryPresentationModel::GetInstance()->GetSearchHistory(0, count, *pData,__searchText );
790         }
791         if (IsFailed(r))
792         {
793                 delete pData;
794                 return 0;
795         }
796         pGroupItemClass->SetHistoryData(pData);
797
798
799         if (__isNoHistoryPresent == true && count == 0)
800         {
801                 __isNoHistoryPresent = true;
802                 GetFooter()->SetItemEnabled(0, false);
803         }
804         else
805         {
806                 __isNoHistoryPresent = false;
807                 GetFooter()->SetItemEnabled(0, true);
808         }
809         //       pGroupItemClass = dynamic_cast< GroupItemClass* >(__pGroupData->GetAt(groupIndex));
810         if (pGroupItemClass == null || pGroupItemClass->GetHistoryData() == null)
811         {
812                 delete pData;
813                 return 0;
814         }
815         else
816         {
817                 AppLogDebug("HistoryListForm::GetItemCount returning %d for %d title %ls",pGroupItemClass->GetHistoryData()->GetCount(),groupIndex,pGroupItemClass->GetTitleText().GetPointer());
818                 return pGroupItemClass->GetHistoryData()->GetCount();
819         }
820 }
821
822 void
823 HistoryListForm::OnSceneActivatedN(const SceneId& previousSceneId, const SceneId& currentSceneId, IList* pArgs)
824 {
825
826         GetHeader()->SetItemSelected(1);
827 //      __previousSceneId = previousSceneId;
828         ArrayListT<String> * pList = dynamic_cast<ArrayListT<String>* >(SceneManager::GetInstance()->GetSceneHistoryN());
829         if(pList != null)
830         {
831                 pList->GetAt(pList->GetCount()-1,__previousSceneId);
832         }
833
834         if(__pBookmarkList != null)
835         {
836                 __pBookmarkList->RemoveAll(false);
837         }
838
839         BookmarkPresentationModel::GetInstance()->GetBookmarkForHistory(0,*__pBookmarkList);
840
841         AppLog("HistoryListForm::OnSceneActivatedN called");
842         //GetHeader()->Invalidate(true);
843         if (__pGroupData == null)
844         {
845                 __pGroupData = new(std::nothrow) ArrayList();
846                 __pGroupData->Construct();
847         }
848         if (__pGroupedListView != null)
849         {
850                 __pGroupedListView->UpdateList();
851         }
852         if (__isNoHistoryPresent == true)
853         {
854                 GetFooter()->SetItemEnabled(0, false);
855         }
856         else
857         {
858                 GetFooter()->SetItemEnabled(0, true);
859         }
860
861         int count = 0;
862         DateTime startTime;
863         DateTime endTime;
864         HistoryPresentationModel::GetCurrentDateTime(endTime);;
865
866         startTime.SetValue(0,0,0);
867         HistoryPresentationModel::GetInstance()->GetHistoryCountWithTimeRange(startTime,endTime,count);
868         if (count == 0)
869         {
870                 __pSearchBar->SetShowState(false);
871                 __pSearchBar->Invalidate(true);
872         }
873         else
874         {
875                 __pSearchBar->SetShowState(true);
876                 __pSearchBar->Invalidate(true);
877         }
878
879         //      if (__isNoHistoryPresent == true)
880         //      {
881         //              //      __pGroupedListView->SetBitmapOfEmptyList(AppResource::GetInstance()->GetBitmapN(L"I01_Nocontents_Bookmarks.png"));
882         //              __pGroupedListView->UpdateList();
883         //      }
884
885         result r = GetHeader()->SetItemSelected(1);
886         if (IsFailed(r))
887         {
888                 AppLog("HistoryListForm::OnSceneActivatedN header failed %s", GetErrorMessage(r));
889                 return;
890         }
891
892
893
894         Invalidate(true);
895
896 }
897
898 void
899 HistoryListForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
900 {
901         AppLog("HistoryListForm::OnSceneDeactivated");
902         __pSearchBar->SetMode(SEARCH_BAR_MODE_NORMAL);
903 }
904
905 void
906 HistoryListForm::OnGroupedListViewContextItemStateChanged(GroupedListView& listView, int groupIndex, int itemIndex, int elementId, ListContextItemStatus status)
907 {
908
909 }
910
911 void
912 HistoryListForm::OnGroupedListViewItemStateChanged(GroupedListView& listView, int groupIndex, int itemIndex, int elementId, ListItemStatus status)
913 {
914         GroupItemClass* pGroupItemClass = null;
915         History* pHistory = null;
916         AppLog("int groupIndex %d, int itemIndex %d, int elementId %d, ListItemStatus status %d",groupIndex,itemIndex,elementId,status);
917         if (elementId == IDA_FORMAT_BOOKMARK)
918         {
919                 String toggledUrl = L"";
920                 AppLog("BookMarkStatusChanged ID_FORMAT_BOOKMARK");
921                 pGroupItemClass = dynamic_cast< GroupItemClass* >(__pGroupData->GetAt(groupIndex));
922                 if (pGroupItemClass == null)
923                 {
924                         return;
925                 }
926                 pHistory = dynamic_cast< History* >(pGroupItemClass->GetHistoryData()->GetAt(itemIndex));
927                 if (pHistory == null)
928                 {
929                         return;
930                 }
931                 toggledUrl = pHistory->GetHistoryUrl();
932
933                 AppLog("History's Bookmark ID %ls ToggledUrl %ls",pHistory->GetBookmarkId().GetPointer(),toggledUrl.GetPointer());
934
935                 bool bookmarkFound = false;
936                 BookmarkData* pBookMark = null;
937 //              if(__pBookmarkList != null)
938 //              {
939 //                      for (int i = 0; i < __pBookmarkList->GetCount(); i++)
940 //                      {
941 //                              pBookMark = dynamic_cast< BookmarkData* >(__pBookmarkList->GetAt(i));
942 //                              if (pBookMark != null && toggledUrl.CompareTo(pBookMark->GetUrl()) == 0)
943 //                              {
944 //                                      bookmarkFound = true;
945 //                                      break;
946 //                              }
947 //                      }
948 //              }
949                 BookmarkPresentationModel::GetInstance()->DoesBookmarkExist(toggledUrl,bookmarkFound);
950                 if(bookmarkFound == false)
951                 {
952                         // Add the history in bookmark database
953                         result r = E_FAILURE;
954                         BookmarkData bookmark;
955
956                         String bookmarkTitle = pHistory->GetHistoryTitle();
957
958                         bookmark.SetBookmarkTitle(bookmarkTitle);
959                         bookmark.SetUrl(pHistory->GetHistoryUrl());
960                         bookmark.SetFaviconId(pHistory->GetFaviconId());
961                         if(pHistory->GetFavIconBuffer())
962                         {
963                                 ByteBuffer *pBuffer = new ByteBuffer();
964
965                                 pBuffer->Construct(*pHistory->GetFavIconBuffer());
966                                 bookmark.SetFavIconBuffer(*pBuffer);
967                         }
968                         //r = BookmarkPresentationModel::GetInstance()->SaveBookmark(pBookmark);
969                         r = BookmarkPresentationModel::GetInstance()->SaveTempBookmark(bookmark);
970                 }
971                 else
972                 {
973                         // remove the history from bookmark database
974                         BookmarkPresentationModel::GetInstance()->DeleteBookmark(toggledUrl);
975                 }
976
977                 if(__pBookmarkList != null)
978                 {
979                         __pBookmarkList->RemoveAll(false);
980                         BookmarkPresentationModel::GetInstance()->GetBookmarkForHistory(0,*__pBookmarkList);
981                 }
982                 listView.RefreshList(groupIndex,itemIndex,LIST_REFRESH_TYPE_ITEM_MODIFY);
983                 listView.UpdateList();
984         }
985         else
986         {
987                 pGroupItemClass = dynamic_cast< GroupItemClass* >(__pGroupData->GetAt(groupIndex));
988                 if (pGroupItemClass == null)
989                 {
990                         return;
991                 }
992
993                 History* pHistory1 = dynamic_cast< History* >(pGroupItemClass->GetHistoryData()->GetAt(itemIndex));
994                 if (pHistory1 == null)
995                 {
996                         return;
997                 }
998                 SceneManager* pSceneManager = SceneManager::GetInstance();
999                 ArrayList *pArgList = null;
1000                 result r = E_SUCCESS;
1001                 pArgList = new(std::nothrow) ArrayList();
1002                 if (pArgList != null)
1003                 {
1004                         r = pArgList->Construct();
1005                         if (IsFailed(r))
1006                         {
1007                                 delete pArgList;
1008                                 return;
1009                         }
1010
1011                         r = pArgList->Add(*MultipleWindowPresentationModel::GetInstance()->GetActiveWindowInfo());
1012                         r = pArgList->Add(*new(std::nothrow) String(pHistory1->GetHistoryUrl()));
1013                         if (IsFailed(r))
1014                         {
1015                                 delete pArgList;
1016                                 return;
1017                         }
1018
1019
1020                 }
1021
1022                 String scneId = L"";
1023                 MultipleWindowPresentationModel::GetInstance()->GetCurrentSceneId(scneId);
1024
1025                 if (pSceneManager != null)
1026                 {
1027                         AppLog("pSceneManager exists");
1028                         r = SceneManager::GetInstance()->GoForward(ForwardSceneTransition(scneId), pArgList);
1029                         if(pArgList)
1030                         {
1031                                 pArgList->RemoveAll(false);
1032                                 delete pArgList;
1033                         }
1034                         if (IsFailed(r))
1035                         {
1036                                 return;
1037                         }
1038                 }
1039         }
1040
1041 }
1042
1043 void
1044 HistoryListForm::OnGroupedListViewItemSwept(GroupedListView& listView, int groupIndex, int itemIndex, SweepDirection direction)
1045 {
1046
1047 }
1048
1049 void
1050 HistoryListForm::OnSearchBarModeChanged(SearchBar& source, SearchBarMode mode)
1051 {
1052         result r = E_FAILURE;
1053         if (mode == SEARCH_BAR_MODE_NORMAL)
1054         {
1055                 if ( Clipboard::GetInstance()->IsPopupVisible() == false && __searchHistory == false)
1056                 {
1057                         __pSearchListView->SetEnabled(true);
1058                 }
1059
1060                 r = __pSearchListView->SetShowState(false);
1061                 if (IsFailed(r))
1062                 {
1063                         return;
1064                 }
1065                 r = __pGroupedListView->SetShowState(true);
1066                 if (IsFailed(r))
1067                 {
1068                         return;
1069                 }
1070
1071                 __pSearchListView->SetEnabled(true);
1072                 if(__pSearchBar != null)
1073                         __pGroupedListView->SetBounds(0, __pSearchBar->GetY() + __pSearchBar->GetHeight(), GetClientAreaBounds().width, GetClientAreaBounds().height - __pSearchBar->GetHeight());
1074                 Invalidate(true);
1075                 __searchHistory = false;
1076                 r = __pGroupedListView->UpdateList();
1077                 if (__isNoHistoryPresent == true)
1078                 {
1079                         GetFooter()->SetItemEnabled(0, false);
1080                 }
1081                 else
1082                 {
1083                         GetFooter()->SetItemEnabled(0, true);
1084                 }
1085                 if(__pSearchBar != null)
1086                 {
1087                         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1088                 }
1089                 if (IsFailed(r))
1090                 {
1091                         return;
1092                 }
1093         }
1094         else
1095         {
1096
1097                 //              __pSearchListView->SetEnabled(false);
1098                 r = __pSearchListView->SetShowState(true);
1099                 if (IsFailed(r))
1100                 {
1101                         return;
1102                 }
1103                 __pSearchListView->SetEnabled(false);
1104                 r = __pSearchListView->UpdateList();
1105                 if (IsFailed(r))
1106                 {
1107                         return;
1108                 }
1109                 r = __pGroupedListView->SetShowState(false);
1110                 if (IsFailed(r))
1111                 {
1112                         return;
1113                 }
1114                 if(__pSearchBar != null)
1115                 {
1116                         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1117                 }
1118         }
1119 }
1120
1121 String
1122 HistoryListForm::GetMonth(int month)
1123 {
1124         String monthValue = L"";
1125         switch (month)
1126         {
1127         case JANUARY:
1128                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_JAN"));
1129                 break;
1130         case FEBRUARY:
1131                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_FEB"));
1132                 break;
1133         case MARCH:
1134                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_MAR"));
1135                 break;
1136         case APRIL:
1137                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_APRIL"));
1138                 break;
1139         case MAY:
1140                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_MAY"));
1141                 break;
1142         case JUNE:
1143                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_JUNE"));
1144                 break;
1145         case JULY:
1146                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_JUL"));
1147                 break;
1148         case AUGUST:
1149                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_AUG"));
1150                 break;
1151         case SEPTEMBER:
1152                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_SEP"));
1153                 break;
1154         case OCTOBER:
1155                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_OCT"));
1156                 break;
1157         case NOVEMBER:
1158                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_NOV"));
1159                 break;
1160         case DECEMBER:
1161                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_DEC"));
1162                 break;
1163         default:
1164                 break;
1165         }
1166
1167
1168         return monthValue;
1169 }
1170
1171 void
1172 HistoryListForm::OnKeypadActionPerformed(Control &source, KeypadAction keypadAction)
1173 {
1174         result r = E_FAILURE;
1175         if (__pSearchBar != null)
1176         {
1177                 __pSearchBar->HideKeypad();
1178         }
1179
1180         if (__pSearchBar != null && keypadAction == KEYPAD_ACTION_SEARCH)
1181         {
1182                 __pSearchListView->SetEnabled(true);
1183                 __searchHistory = true;
1184                 __searchText =__pSearchBar->GetText();
1185                 AppLog("SearchTextHistory %S errormsg %s",__searchText.GetPointer(),GetErrorMessage(GetLastResult()));
1186
1187                 r = __pGroupedListView->SetShowState(false);
1188                 if (IsFailed(r))
1189                 {
1190                         return;
1191                 }
1192                 r = __pSearchListView->SetShowState(true);
1193                 if (IsFailed(r))
1194                 {
1195                         return;
1196                 }
1197                 r= __pSearchListView->UpdateList();
1198                 if (__isNoHistoryPresent == true)
1199                 {
1200                         GetFooter()->SetItemEnabled(0, false);
1201                 }
1202                 else
1203                 {
1204                         GetFooter()->SetItemEnabled(0, true);
1205                 }
1206                 __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1207
1208                 if (IsFailed(r))
1209                 {
1210                         return;
1211                 }
1212         }
1213         else
1214         {
1215                 __searchHistory = false;
1216         }
1217         Invalidate(true);
1218 }
1219
1220 void
1221 HistoryListForm::OnKeypadBoundsChanged(Tizen::Ui::Control& source)
1222 {
1223         FloatRectangle clientRect;
1224         clientRect = GetClientAreaBoundsF();
1225         AppLogDebug("SearchBarForm::OnKeypadBoundsChanged ClientBounds(%f, %f, %f, %f)",clientRect.x, clientRect.y, clientRect.width, clientRect.height);
1226         __pSearchBar->SetContentAreaSize(FloatDimension(clientRect.width, clientRect.height - __pSearchBar->GetHeightF()));
1227         __pSearchListView->SetSize(FloatDimension(clientRect.width, clientRect.height - __pSearchBar->GetHeightF()));
1228         __pGroupedListView->SetSize(FloatDimension(clientRect.width, clientRect.height - __pSearchBar->GetHeightF()));
1229 //      __pGroupedListView->SetEnabled(false);
1230         Invalidate(true);
1231 }
1232
1233 void
1234 HistoryListForm::OnOrientationChanged(const Control& source, OrientationStatus orientationStatus)
1235 {
1236         result r = E_FAILURE;
1237         if (__pGroupedListView != null)
1238         {
1239                 if(__pSearchBar != null &&__pSearchBar->GetShowState())
1240                         r = __pGroupedListView->SetBounds(Rectangle(0,__pSearchBar->GetY() + __pSearchBar->GetHeight()/*72 + 30*/,GetClientAreaBounds().width,GetClientAreaBounds().height - __pSearchBar->GetHeight() - __pSearchBar->GetY()));
1241                 else if(__pSearchBar != null)
1242                         r = __pGroupedListView->SetBounds(Rectangle(0,0,GetClientAreaBounds().width,GetClientAreaBounds().height - __pSearchBar->GetHeight() - __pSearchBar->GetY()));
1243                 if (IsFailed(r))
1244                 {
1245                         return;
1246                 }
1247
1248                 if (__pSearchListView != null)
1249                 {
1250                         r = __pSearchListView->SetBounds(Rectangle(0,  0, GetClientAreaBounds().width, __pGroupedListView->GetHeight()));
1251                         if (IsFailed(r))
1252                         {
1253                                 return;
1254                         }
1255
1256                         __pSearchListView->UpdateList();
1257
1258                         if(__pSearchBar != null)
1259                                 __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1260                 }
1261
1262                 if(__pGroupData != NULL)
1263                 {
1264                         for (int groupIndex = 0; groupIndex < __pGroupData->GetCount(); groupIndex++)
1265                         {
1266                                 for (int itemIndex = 0; itemIndex < __pGroupedListView->GetItemCountAt(groupIndex); itemIndex++)
1267                                 {
1268                                         __pGroupedListView->RefreshList(groupIndex, itemIndex,LIST_REFRESH_TYPE_ITEM_MODIFY);
1269                                 }
1270                         }
1271                 }
1272         }
1273
1274         if (__isNoHistoryPresent == true)
1275         {
1276                 GetFooter()->SetItemEnabled(0, false);
1277         }
1278         else
1279         {
1280                 GetFooter()->SetItemEnabled(0, true);
1281         }
1282 }
1283
1284 void
1285 HistoryListForm::OnKeypadWillOpen(Control& source)
1286 {
1287         GetFooter()->SetShowState(false);
1288         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), GetClientAreaBounds().width, GetClientAreaBounds().height - __pSearchBar->GetHeight());
1289         __pSearchListView->SetEnabled(false);
1290         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1291         Invalidate(true);
1292
1293 }
1294
1295 void
1296 HistoryListForm::OnKeypadOpened(Control& source)
1297 {
1298         // this is added because some time footer is shown when key pad is opened, do not remove
1299         GetFooter()->SetShowState(false);
1300         GetFooter()->Invalidate(true);
1301         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight());
1302 }
1303
1304 void
1305 HistoryListForm::OnKeypadClosed(Control& source)
1306 {
1307         if(Clipboard::GetInstance()->IsPopupVisible() == true)
1308         {
1309                 return;
1310         }
1311         GetFooter()->SetShowState(true);
1312         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight());
1313         __pSearchListView->Invalidate(false);
1314         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight()));
1315         __pGroupedListView->SetBounds(0, __pSearchBar->GetY() + __pSearchBar->GetHeight(), GetClientAreaBounds().width, GetClientAreaBounds().height - __pSearchBar->GetHeight());
1316         Invalidate(true);
1317 }
1318
1319 void
1320 HistoryListForm::CreateGroupItems()
1321 {
1322         result r = E_FAILURE;
1323         DateTime currentTime;
1324         DateTime dateTime;
1325         GroupItemClass* pGroupItemClass = null;
1326         String titleText;
1327
1328         String weeksAgo2 = L"";
1329         weeksAgo2.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),2);
1330
1331         String weeksAgo3 = L"";
1332         weeksAgo3.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),3);
1333
1334         if (__pGroupData != null)
1335         {
1336                 __pGroupData->RemoveAll(false);
1337                 delete __pGroupData;
1338                 __pGroupData = null;
1339         }
1340         __pGroupData = new(std::nothrow) ArrayList();
1341         if (__pGroupData == null)
1342         {
1343                 return;
1344         }
1345         r = __pGroupData->Construct();
1346         if (IsFailed(r))
1347         {
1348                 delete __pGroupData;
1349                 __pGroupData = null;
1350                 return;
1351         }
1352         if (__searchHistory == true)
1353         {
1354                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1355                 if (pGroupItemClass == null)
1356                 {
1357                         return;
1358                 }
1359                 titleText = CommonUtil::GetString(L"IDS_BR_BODY_SEARCH");
1360                 pGroupItemClass->SetTitleText(titleText);
1361                 r = __pGroupData->Add(*pGroupItemClass);
1362                 if (IsFailed(r))
1363                 {
1364                         return;
1365                 }
1366         }
1367         else
1368         {
1369                 Calendar* pGregorianCalendar = null;
1370                 int dayOfWeek = 0;
1371                 int day = 0;
1372                 HistoryPresentationModel::GetCurrentDateTime(currentTime);
1373                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1374                 if (pGroupItemClass == null)
1375                 {
1376                         return;
1377                 }
1378                 titleText = CommonUtil::GetString(L"IDS_COM_BODY_TODAY");
1379                 pGroupItemClass->SetTitleText(titleText);
1380                 pGroupItemClass->SetEndTime(currentTime);
1381                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1382                 pGroupItemClass->SetStartTime(dateTime);
1383                 __pGroupData->Add(*pGroupItemClass);
1384
1385
1386                 pGregorianCalendar = Calendar::CreateInstanceN(CALENDAR_GREGORIAN);
1387                 if ( pGregorianCalendar != NULL )
1388                 {
1389                         pGregorianCalendar->SetTimeField(TIME_FIELD_YEAR, currentTime.GetYear());
1390                         pGregorianCalendar->SetTimeField(TIME_FIELD_MONTH, currentTime.GetMonth());
1391                         pGregorianCalendar->SetTimeField(TIME_FIELD_DAY_OF_MONTH, currentTime.GetDay());
1392                         dayOfWeek = pGregorianCalendar->GetTimeField(TIME_FIELD_DAY_OF_WEEK);
1393                         delete pGregorianCalendar;
1394                 }
1395                 switch(dayOfWeek)
1396                 {
1397                 case SUNDAY:
1398                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1399                         if (pGroupItemClass == null)
1400                         {
1401                                 return;
1402                         }
1403                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1404                         pGroupItemClass->SetTitleText(titleText);
1405                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1406                         pGroupItemClass->SetEndTime(dateTime);
1407                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1408                         dateTime.AddDays(currentTime.GetDay() - 6 - 1);
1409                         pGroupItemClass->SetStartTime(dateTime);
1410                         __pGroupData->Add(*pGroupItemClass);
1411                         break;
1412                 case MONDAY:
1413                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1414                         if (pGroupItemClass == null)
1415                         {
1416                                 return;
1417                         }
1418                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1419                         pGroupItemClass->SetTitleText(titleText);
1420                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1421                         pGroupItemClass->SetEndTime(dateTime);
1422                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1423                         dateTime.AddDays(currentTime.GetDay() - 7 - 1);
1424                         pGroupItemClass->SetStartTime(dateTime);
1425                         __pGroupData->Add(*pGroupItemClass);
1426                         break;
1427                 case TUESDAY:
1428                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1429                         if (pGroupItemClass == null)
1430                         {
1431                                 return;
1432                         }
1433                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1434                         pGroupItemClass->SetTitleText(titleText);
1435                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1436                         pGroupItemClass->SetEndTime(dateTime);
1437                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1438                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1439                         pGroupItemClass->SetStartTime(dateTime);
1440                         __pGroupData->Add(*pGroupItemClass);
1441
1442                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1443                         if (pGroupItemClass == null)
1444                         {
1445                                 return;
1446                         }
1447                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1448                         pGroupItemClass->SetTitleText(titleText);
1449                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1450                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1451                         pGroupItemClass->SetEndTime(dateTime);
1452                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1453                         dateTime.AddDays(currentTime.GetDay() - 8 - 1);
1454                         pGroupItemClass->SetStartTime(dateTime);
1455                         __pGroupData->Add(*pGroupItemClass);
1456                         break;
1457                 case WEDNESDAY:
1458                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1459                         if (pGroupItemClass == null)
1460                         {
1461                                 return;
1462                         }
1463                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1464                         pGroupItemClass->SetTitleText(titleText);
1465                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1466                         pGroupItemClass->SetEndTime(dateTime);
1467                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1468                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1469                         pGroupItemClass->SetStartTime(dateTime);
1470                         __pGroupData->Add(*pGroupItemClass);
1471
1472                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1473                         if (pGroupItemClass == null)
1474                         {
1475                                 return;
1476                         }
1477                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1478                         pGroupItemClass->SetTitleText(titleText);
1479                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1480                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1481                         pGroupItemClass->SetEndTime(dateTime);
1482                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1483                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1484                         pGroupItemClass->SetStartTime(dateTime);
1485                         __pGroupData->Add(*pGroupItemClass);
1486
1487                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1488                         if (pGroupItemClass == null)
1489                         {
1490                                 return;
1491                         }
1492                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1493                         pGroupItemClass->SetTitleText(titleText);
1494                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1495                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1496                         pGroupItemClass->SetEndTime(dateTime);
1497                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1498                         dateTime.AddDays(currentTime.GetDay() - 9 - 1);
1499                         pGroupItemClass->SetStartTime(dateTime);
1500                         __pGroupData->Add(*pGroupItemClass);
1501                         break;
1502                 case THURSDAY:
1503                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1504                         if (pGroupItemClass == null)
1505                         {
1506                                 return;
1507                         }
1508                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1509                         pGroupItemClass->SetTitleText(titleText);
1510                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1511                         pGroupItemClass->SetEndTime(dateTime);
1512                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1513                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1514                         pGroupItemClass->SetStartTime(dateTime);
1515                         __pGroupData->Add(*pGroupItemClass);
1516
1517                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1518                         if (pGroupItemClass == null)
1519                         {
1520                                 return;
1521                         }
1522                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_TUE");
1523                         pGroupItemClass->SetTitleText(titleText);
1524                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1525                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1526                         pGroupItemClass->SetEndTime(dateTime);
1527                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1528                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1529                         pGroupItemClass->SetStartTime(dateTime);
1530                         __pGroupData->Add(*pGroupItemClass);
1531
1532                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1533                         if (pGroupItemClass == null)
1534                         {
1535                                 return;
1536                         }
1537                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1538                         pGroupItemClass->SetTitleText(titleText);
1539                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1540                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1541                         pGroupItemClass->SetEndTime(dateTime);
1542                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1543                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1544                         pGroupItemClass->SetStartTime(dateTime);
1545                         __pGroupData->Add(*pGroupItemClass);
1546
1547                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1548                         if (pGroupItemClass == null)
1549                         {
1550                                 return;
1551                         }
1552                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1553                         pGroupItemClass->SetTitleText(titleText);
1554                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1555                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1556                         pGroupItemClass->SetEndTime(dateTime);
1557                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1558                         dateTime.AddDays(currentTime.GetDay() - 10 - 1);
1559                         pGroupItemClass->SetStartTime(dateTime);
1560                         __pGroupData->Add(*pGroupItemClass);
1561                         break;
1562                 case FRIDAY:
1563                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1564                         if (pGroupItemClass == null)
1565                         {
1566                                 return;
1567                         }
1568                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1569                         pGroupItemClass->SetTitleText(titleText);
1570                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1571                         pGroupItemClass->SetEndTime(dateTime);
1572                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1573                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1574                         pGroupItemClass->SetStartTime(dateTime);
1575                         __pGroupData->Add(*pGroupItemClass);
1576
1577                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1578                         if (pGroupItemClass == null)
1579                         {
1580                                 return;
1581                         }
1582                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_WED");
1583                         pGroupItemClass->SetTitleText(titleText);
1584                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1585                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1586                         pGroupItemClass->SetEndTime(dateTime);
1587                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1588                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1589                         pGroupItemClass->SetStartTime(dateTime);
1590                         __pGroupData->Add(*pGroupItemClass);
1591
1592                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1593                         if (pGroupItemClass == null)
1594                         {
1595                                 return;
1596                         }
1597                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_TUE");
1598                         pGroupItemClass->SetTitleText(titleText);
1599                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1600                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1601                         pGroupItemClass->SetEndTime(dateTime);
1602                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1603                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1604                         pGroupItemClass->SetStartTime(dateTime);
1605                         __pGroupData->Add(*pGroupItemClass);
1606
1607                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1608                         if (pGroupItemClass == null)
1609                         {
1610                                 return;
1611                         }
1612                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1613                         pGroupItemClass->SetTitleText(titleText);
1614                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1615                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1616                         pGroupItemClass->SetEndTime(dateTime);
1617                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1618                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1619                         pGroupItemClass->SetStartTime(dateTime);
1620                         __pGroupData->Add(*pGroupItemClass);
1621
1622                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1623                         if (pGroupItemClass == null)
1624                         {
1625                                 return;
1626                         }
1627                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1628                         pGroupItemClass->SetTitleText(titleText);
1629                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1630                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1631                         pGroupItemClass->SetEndTime(dateTime);
1632                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1633                         dateTime.AddDays(currentTime.GetDay() - 11 - 1);
1634                         pGroupItemClass->SetStartTime(dateTime);
1635                         __pGroupData->Add(*pGroupItemClass);
1636                         break;
1637                 case SATURDAY:
1638                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1639                         if (pGroupItemClass == null)
1640                         {
1641                                 return;
1642                         }
1643                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1644                         pGroupItemClass->SetTitleText(titleText);
1645                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1646                         pGroupItemClass->SetEndTime(dateTime);
1647                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1648                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1649                         pGroupItemClass->SetStartTime(dateTime);
1650                         __pGroupData->Add(*pGroupItemClass);
1651
1652                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1653                         if (pGroupItemClass == null)
1654                         {
1655                                 return;
1656                         }
1657                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_THU");
1658                         pGroupItemClass->SetTitleText(titleText);
1659                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1660                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1661                         pGroupItemClass->SetEndTime(dateTime);
1662                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1663                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1664                         pGroupItemClass->SetStartTime(dateTime);
1665                         __pGroupData->Add(*pGroupItemClass);
1666
1667                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1668                         if (pGroupItemClass == null)
1669                         {
1670                                 return;
1671                         }
1672                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_WED");
1673                         pGroupItemClass->SetTitleText(titleText);
1674                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1675                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1676                         pGroupItemClass->SetEndTime(dateTime);
1677                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1678                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1679                         pGroupItemClass->SetStartTime(dateTime);
1680                         __pGroupData->Add(*pGroupItemClass);
1681
1682                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1683                         if (pGroupItemClass == null)
1684                         {
1685                                 return;
1686                         }
1687                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_TUE");
1688                         pGroupItemClass->SetTitleText(titleText);
1689                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1690                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1691                         pGroupItemClass->SetEndTime(dateTime);
1692                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1693                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1694                         pGroupItemClass->SetStartTime(dateTime);
1695                         __pGroupData->Add(*pGroupItemClass);
1696
1697                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1698                         if (pGroupItemClass == null)
1699                         {
1700                                 return;
1701                         }
1702                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1703                         pGroupItemClass->SetTitleText(titleText);
1704                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1705                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1706                         pGroupItemClass->SetEndTime(dateTime);
1707                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1708                         dateTime.AddDays(currentTime.GetDay() - 5 - 1);
1709                         pGroupItemClass->SetStartTime(dateTime);
1710                         __pGroupData->Add(*pGroupItemClass);
1711
1712                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1713                         if (pGroupItemClass == null)
1714                         {
1715                                 return;
1716                         }
1717                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1718                         pGroupItemClass->SetTitleText(titleText);
1719                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1720                         dateTime.AddDays(currentTime.GetDay() - 5 - 1);
1721                         pGroupItemClass->SetEndTime(dateTime);
1722                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1723                         dateTime.AddDays(currentTime.GetDay() - 12 - 1);
1724                         pGroupItemClass->SetStartTime(dateTime);
1725                         __pGroupData->Add(*pGroupItemClass);
1726                         break;
1727
1728                 default:
1729                         break;
1730                 }
1731                 day = currentTime.GetDay();
1732                 switch(day/7)
1733                 {
1734                 case 2:
1735                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1736                         if (pGroupItemClass == null)
1737                         {
1738                                 return;
1739                         }
1740
1741                         pGroupItemClass->SetTitleText(weeksAgo2);
1742                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1743                         dateTime.AddDays(currentTime.GetDay() - 7 - dayOfWeek + 2 - 1);
1744                         pGroupItemClass->SetEndTime(dateTime);
1745                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1746                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1747                         pGroupItemClass->SetStartTime(dateTime);
1748                         __pGroupData->Add(*pGroupItemClass);
1749
1750                         if (pGroupItemClass->GetStartTime().GetDay() > 1 && pGroupItemClass->GetStartTime().GetDay() < 8)
1751                         {
1752                                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1753                                 if (pGroupItemClass == null)
1754                                 {
1755                                         return;
1756                                 }
1757                                 String weeksAgo3 = L"";
1758                                 weeksAgo3.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),3);
1759                                 pGroupItemClass->SetTitleText(weeksAgo3);
1760                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1761                                 dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1762                                 pGroupItemClass->SetEndTime(dateTime);
1763                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1764                                 dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1765                                 pGroupItemClass->SetStartTime(dateTime);
1766                                 __pGroupData->Add(*pGroupItemClass);
1767                         }
1768                         break;
1769                 case 3:
1770                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1771                         if (pGroupItemClass == null)
1772                         {
1773                                 return;
1774                         }
1775                         pGroupItemClass->SetTitleText(weeksAgo2);
1776                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1777                         dateTime.AddDays(currentTime.GetDay() - 7 - dayOfWeek + 2 - 1);
1778                         pGroupItemClass->SetEndTime(dateTime);
1779                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1780                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1781                         pGroupItemClass->SetStartTime(dateTime);
1782                         __pGroupData->Add(*pGroupItemClass);
1783
1784                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1785                         if (pGroupItemClass == null)
1786                         {
1787                                 return;
1788                         }
1789
1790                         pGroupItemClass->SetTitleText(weeksAgo3);
1791                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1792                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1793                         pGroupItemClass->SetEndTime(dateTime);
1794                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1795                         dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1796                         pGroupItemClass->SetStartTime(dateTime);
1797                         __pGroupData->Add(*pGroupItemClass);
1798
1799                         if (pGroupItemClass->GetStartTime().GetDay() > 1 && pGroupItemClass->GetStartTime().GetDay() < 8)
1800                         {
1801                                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1802                                 if (pGroupItemClass == null)
1803                                 {
1804                                         return;
1805                                 }
1806                                 titleText = CommonUtil::GetString(L"IDS_BR_EARLIER_THIS_MONTH");
1807                                 pGroupItemClass->SetTitleText(titleText);
1808                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1809                                 dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1810                                 pGroupItemClass->SetEndTime(dateTime);
1811                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1812                                 //dateTime.AddDays(currentTime.GetDay() - 28 - dayOfWeek + 2 - 1);
1813                                 pGroupItemClass->SetStartTime(dateTime);
1814                                 __pGroupData->Add(*pGroupItemClass);
1815                         }
1816                         break;
1817                 case 4:
1818                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1819                         if (pGroupItemClass == null)
1820                         {
1821                                 return;
1822                         }
1823                         pGroupItemClass->SetTitleText(weeksAgo2);
1824                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1825                         dateTime.AddDays(currentTime.GetDay() - 7 - dayOfWeek + 2 - 1);
1826                         pGroupItemClass->SetEndTime(dateTime);
1827                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1828                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1829                         pGroupItemClass->SetStartTime(dateTime);
1830                         __pGroupData->Add(*pGroupItemClass);
1831
1832                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1833                         if (pGroupItemClass == null)
1834                         {
1835                                 return;
1836                         }
1837                         pGroupItemClass->SetTitleText(weeksAgo3);
1838                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1839                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1840                         pGroupItemClass->SetEndTime(dateTime);
1841                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1842                         dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1843                         pGroupItemClass->SetStartTime(dateTime);
1844                         __pGroupData->Add(*pGroupItemClass);
1845
1846                         if (pGroupItemClass->GetStartTime().GetDay() > 1 && pGroupItemClass->GetStartTime().GetDay() < 8)
1847                         {
1848                                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1849                                 if (pGroupItemClass == null)
1850                                 {
1851                                         return;
1852                                 }
1853                                 titleText = CommonUtil::GetString(L"IDS_BR_EARLIER_THIS_MONTH");
1854                                 pGroupItemClass->SetTitleText(titleText);
1855                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1856                                 dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1857                                 pGroupItemClass->SetEndTime(dateTime);
1858                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1859                                 //dateTime.AddDays(currentTime.GetDay() - 28 - dayOfWeek + 2 - 1);
1860                                 pGroupItemClass->SetStartTime(dateTime);
1861                                 __pGroupData->Add(*pGroupItemClass);
1862                         }
1863                         break;
1864                 default:
1865                         break;
1866                 }
1867                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1868                 if (pGroupItemClass == null)
1869                 {
1870                         return;
1871                 }
1872                 titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_MONTH");
1873                 pGroupItemClass->SetTitleText(titleText);
1874                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1875                 dateTime.AddDays(-1);
1876                 pGroupItemClass->SetEndTime(dateTime);
1877                 dateTime.SetValue(currentTime.GetYear(), 1, 1);
1878                 dateTime.AddMonths(currentTime.GetMonth() - 1 - 1);
1879                 pGroupItemClass->SetStartTime(dateTime);
1880                 __pGroupData->Add(*pGroupItemClass);
1881
1882                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1883                 if (pGroupItemClass == null)
1884                 {
1885                         return;
1886                 }
1887                 titleText = CommonUtil::GetString(L"IDS_BR_BODY_OLDER");
1888                 pGroupItemClass->SetTitleText(titleText);
1889                 dateTime.SetValue(currentTime.GetYear(),1, 1);
1890                 dateTime.AddMonths(currentTime.GetMonth() - 2);
1891                 dateTime.AddDays(-1);
1892                 pGroupItemClass->SetEndTime(dateTime);
1893                 DateTime dateTime2;
1894                 dateTime2.SetValue(0, 0, 0);
1895                 pGroupItemClass->SetStartTime(dateTime2);
1896                 __pGroupData->Add(*pGroupItemClass);
1897         }
1898 }
1899
1900 GroupItemClass::GroupItemClass()
1901 {
1902         __pData = null;
1903 }
1904
1905 GroupItemClass&
1906 GroupItemClass::operator =(const GroupItemClass& rhs)
1907 {
1908         if (this != &rhs)
1909         {
1910                 __pData = rhs.__pData;
1911         }
1912         return *this;
1913 }
1914
1915 GroupItemClass::GroupItemClass(const GroupItemClass& groupItem)
1916 {
1917         __pData = groupItem.__pData;
1918 }
1919
1920 GroupItemClass::~GroupItemClass()
1921 {
1922         if (__pData)
1923         {
1924                 __pData->RemoveAll(true);
1925                 delete __pData;
1926         }
1927 }
1928
1929 void
1930 GroupItemClass::SetStartTime(DateTime& startTime)
1931 {
1932         __startTime = startTime;
1933 }
1934
1935 void
1936 GroupItemClass::SetEndTime(DateTime& endTime)
1937 {
1938         __endTime = endTime;
1939 }
1940
1941 void
1942 GroupItemClass::SetTitleText(String& titleText)
1943 {
1944         __titleText = titleText;
1945 }
1946
1947 void
1948 GroupItemClass::SetHistoryData(ArrayList* pData)
1949 {
1950         __pData = pData;
1951 }
1952
1953 DateTime
1954 GroupItemClass::GetStartTime(void)
1955 {
1956         return __startTime;
1957 }
1958
1959 DateTime
1960 GroupItemClass::GetEndTime(void)
1961 {
1962         return __endTime;
1963 }
1964
1965 String
1966 GroupItemClass::GetTitleText(void)
1967 {
1968         return __titleText;
1969 }
1970
1971 ArrayList*
1972 GroupItemClass::GetHistoryData(void)
1973 {
1974         return __pData;
1975 }
1976
1977 void
1978 HistoryListForm::OnSettingChanged(Tizen::Base::String& key)
1979 {
1980         if (__pGroupedListView)
1981         {
1982                 __pGroupedListView->UpdateList();
1983         }
1984         if (__isNoHistoryPresent == true )
1985         {
1986                 if(__pSearchBar)
1987                         __pSearchBar->SetShowState(false);
1988                 GetFooter()->SetItemEnabled(0, false);
1989         }
1990         else
1991         {
1992                 if(__pSearchBar)
1993                         __pSearchBar->SetShowState(true);
1994                 GetFooter()->SetItemEnabled(0, true);
1995         }
1996         GetFooter()->Invalidate(true);
1997 }