Fixed Nabi Issues N_SE-52525,52761,52458,52443,52423,52179,52389 and third party...
[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_LISTVIEW_TEXT,CUSTOM_COLOR_LISTVIEW_TEXT,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         AppLog("HistoryListForm::OnSceneActivatedN called");
826
827         GetHeader()->SetItemSelected(1);
828 //      __previousSceneId = previousSceneId;
829         ArrayListT<String> * pList = dynamic_cast<ArrayListT<String>* >(SceneManager::GetInstance()->GetSceneHistoryN());
830         if(pList != null)
831         {
832                 pList->GetAt(pList->GetCount()-1,__previousSceneId);
833         }
834
835         if(__pBookmarkList != null)
836         {
837                 __pBookmarkList->RemoveAll(false);
838         }
839
840         BookmarkPresentationModel::GetInstance()->GetBookmarkForHistory(0,*__pBookmarkList);
841
842         AppLog("HistoryListForm::OnSceneActivatedN called");
843         //GetHeader()->Invalidate(true);
844         if (__pGroupData == null)
845         {
846                 __pGroupData = new(std::nothrow) ArrayList();
847                 __pGroupData->Construct();
848         }
849         if (__pGroupedListView != null)
850         {
851                 __pGroupedListView->UpdateList();
852         }
853         if (__isNoHistoryPresent == true)
854         {
855                 GetFooter()->SetItemEnabled(0, false);
856         }
857         else
858         {
859                 GetFooter()->SetItemEnabled(0, true);
860         }
861
862         int count = 0;
863         DateTime startTime;
864         DateTime endTime;
865         HistoryPresentationModel::GetCurrentDateTime(endTime);;
866
867         startTime.SetValue(0,0,0);
868         HistoryPresentationModel::GetInstance()->GetHistoryCountWithTimeRange(startTime,endTime,count);
869         if (count == 0)
870         {
871                 __pSearchBar->SetShowState(false);
872                 __pSearchBar->Invalidate(true);
873         }
874         else
875         {
876                 __pSearchBar->SetShowState(true);
877                 __pSearchBar->Invalidate(true);
878         }
879
880         //      if (__isNoHistoryPresent == true)
881         //      {
882         //              //      __pGroupedListView->SetBitmapOfEmptyList(AppResource::GetInstance()->GetBitmapN(L"I01_Nocontents_Bookmarks.png"));
883         //              __pGroupedListView->UpdateList();
884         //      }
885
886         result r = GetHeader()->SetItemSelected(1);
887         if (IsFailed(r))
888         {
889                 AppLog("HistoryListForm::OnSceneActivatedN header failed %s", GetErrorMessage(r));
890                 return;
891         }
892
893
894
895         Invalidate(true);
896
897 }
898
899 void
900 HistoryListForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
901 {
902         AppLog("HistoryListForm::OnSceneDeactivated");
903         __pSearchBar->SetMode(SEARCH_BAR_MODE_NORMAL);
904 }
905
906 void
907 HistoryListForm::OnGroupedListViewContextItemStateChanged(GroupedListView& listView, int groupIndex, int itemIndex, int elementId, ListContextItemStatus status)
908 {
909
910 }
911
912 void
913 HistoryListForm::OnGroupedListViewItemStateChanged(GroupedListView& listView, int groupIndex, int itemIndex, int elementId, ListItemStatus status)
914 {
915         GroupItemClass* pGroupItemClass = null;
916         History* pHistory = null;
917         AppLog("int groupIndex %d, int itemIndex %d, int elementId %d, ListItemStatus status %d",groupIndex,itemIndex,elementId,status);
918         if (elementId == IDA_FORMAT_BOOKMARK)
919         {
920                 String toggledUrl = L"";
921                 AppLog("BookMarkStatusChanged ID_FORMAT_BOOKMARK");
922                 pGroupItemClass = dynamic_cast< GroupItemClass* >(__pGroupData->GetAt(groupIndex));
923                 if (pGroupItemClass == null)
924                 {
925                         return;
926                 }
927                 pHistory = dynamic_cast< History* >(pGroupItemClass->GetHistoryData()->GetAt(itemIndex));
928                 if (pHistory == null)
929                 {
930                         return;
931                 }
932                 toggledUrl = pHistory->GetHistoryUrl();
933
934                 AppLog("History's Bookmark ID %ls ToggledUrl %ls",pHistory->GetBookmarkId().GetPointer(),toggledUrl.GetPointer());
935
936                 bool bookmarkFound = false;
937                 BookmarkData* pBookMark = null;
938 //              if(__pBookmarkList != null)
939 //              {
940 //                      for (int i = 0; i < __pBookmarkList->GetCount(); i++)
941 //                      {
942 //                              pBookMark = dynamic_cast< BookmarkData* >(__pBookmarkList->GetAt(i));
943 //                              if (pBookMark != null && toggledUrl.CompareTo(pBookMark->GetUrl()) == 0)
944 //                              {
945 //                                      bookmarkFound = true;
946 //                                      break;
947 //                              }
948 //                      }
949 //              }
950                 BookmarkPresentationModel::GetInstance()->DoesBookmarkExist(toggledUrl,bookmarkFound);
951                 if(bookmarkFound == false)
952                 {
953                         // Add the history in bookmark database
954                         result r = E_FAILURE;
955                         BookmarkData bookmark;
956
957                         String bookmarkTitle = pHistory->GetHistoryTitle();
958
959                         bookmark.SetBookmarkTitle(bookmarkTitle);
960                         bookmark.SetUrl(pHistory->GetHistoryUrl());
961                         bookmark.SetFaviconId(pHistory->GetFaviconId());
962                         if(pHistory->GetFavIconBuffer())
963                         {
964                                 ByteBuffer *pBuffer = new ByteBuffer();
965
966                                 pBuffer->Construct(*pHistory->GetFavIconBuffer());
967                                 bookmark.SetFavIconBuffer(*pBuffer);
968                         }
969                         //r = BookmarkPresentationModel::GetInstance()->SaveBookmark(pBookmark);
970                         r = BookmarkPresentationModel::GetInstance()->SaveTempBookmark(bookmark);
971                 }
972                 else
973                 {
974                         // remove the history from bookmark database
975                         BookmarkPresentationModel::GetInstance()->DeleteBookmark(toggledUrl);
976                 }
977
978                 if(__pBookmarkList != null)
979                 {
980                         __pBookmarkList->RemoveAll(false);
981                         BookmarkPresentationModel::GetInstance()->GetBookmarkForHistory(0,*__pBookmarkList);
982                 }
983                 listView.RefreshList(groupIndex,itemIndex,LIST_REFRESH_TYPE_ITEM_MODIFY);
984                 listView.UpdateList();
985         }
986         else
987         {
988                 pGroupItemClass = dynamic_cast< GroupItemClass* >(__pGroupData->GetAt(groupIndex));
989                 if (pGroupItemClass == null)
990                 {
991                         return;
992                 }
993
994                 History* pHistory1 = dynamic_cast< History* >(pGroupItemClass->GetHistoryData()->GetAt(itemIndex));
995                 if (pHistory1 == null)
996                 {
997                         return;
998                 }
999                 SceneManager* pSceneManager = SceneManager::GetInstance();
1000                 ArrayList *pArgList = null;
1001                 result r = E_SUCCESS;
1002                 pArgList = new(std::nothrow) ArrayList();
1003                 if (pArgList != null)
1004                 {
1005                         r = pArgList->Construct();
1006                         if (IsFailed(r))
1007                         {
1008                                 delete pArgList;
1009                                 return;
1010                         }
1011
1012                         r = pArgList->Add(*MultipleWindowPresentationModel::GetInstance()->GetActiveWindowInfo());
1013                         r = pArgList->Add(*new(std::nothrow) String(pHistory1->GetHistoryUrl()));
1014                         if (IsFailed(r))
1015                         {
1016                                 delete pArgList;
1017                                 return;
1018                         }
1019
1020
1021                 }
1022
1023                 String scneId = L"";
1024                 MultipleWindowPresentationModel::GetInstance()->GetCurrentSceneId(scneId);
1025
1026                 if (pSceneManager != null)
1027                 {
1028                         AppLog("pSceneManager exists");
1029                         r = SceneManager::GetInstance()->GoForward(ForwardSceneTransition(scneId), pArgList);
1030                         if(pArgList)
1031                         {
1032                                 pArgList->RemoveAll(false);
1033                                 delete pArgList;
1034                         }
1035                         if (IsFailed(r))
1036                         {
1037                                 return;
1038                         }
1039                 }
1040         }
1041
1042 }
1043
1044 void
1045 HistoryListForm::OnGroupedListViewItemSwept(GroupedListView& listView, int groupIndex, int itemIndex, SweepDirection direction)
1046 {
1047
1048 }
1049
1050 void
1051 HistoryListForm::OnSearchBarModeChanged(SearchBar& source, SearchBarMode mode)
1052 {
1053         result r = E_FAILURE;
1054         if (mode == SEARCH_BAR_MODE_NORMAL)
1055         {
1056                 if ( Clipboard::GetInstance()->IsPopupVisible() == false && __searchHistory == false)
1057                 {
1058                         __pSearchListView->SetEnabled(true);
1059                 }
1060
1061                 r = __pSearchListView->SetShowState(false);
1062                 if (IsFailed(r))
1063                 {
1064                         return;
1065                 }
1066                 r = __pGroupedListView->SetShowState(true);
1067                 if (IsFailed(r))
1068                 {
1069                         return;
1070                 }
1071
1072                 __pSearchListView->SetEnabled(true);
1073                 if(__pSearchBar != null)
1074                         __pGroupedListView->SetBounds(0, __pSearchBar->GetY() + __pSearchBar->GetHeight(), GetClientAreaBounds().width, GetClientAreaBounds().height - __pSearchBar->GetHeight());
1075                 Invalidate(true);
1076                 __searchHistory = false;
1077                 r = __pGroupedListView->UpdateList();
1078                 if (__isNoHistoryPresent == true)
1079                 {
1080                         GetFooter()->SetItemEnabled(0, false);
1081                 }
1082                 else
1083                 {
1084                         GetFooter()->SetItemEnabled(0, true);
1085                 }
1086                 if(__pSearchBar != null)
1087                 {
1088                         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1089                 }
1090                 if (IsFailed(r))
1091                 {
1092                         return;
1093                 }
1094         }
1095         else
1096         {
1097
1098                 //              __pSearchListView->SetEnabled(false);
1099                 r = __pSearchListView->SetShowState(true);
1100                 if (IsFailed(r))
1101                 {
1102                         return;
1103                 }
1104                 __pSearchListView->SetEnabled(false);
1105                 r = __pSearchListView->UpdateList();
1106                 if (IsFailed(r))
1107                 {
1108                         return;
1109                 }
1110                 r = __pGroupedListView->SetShowState(false);
1111                 if (IsFailed(r))
1112                 {
1113                         return;
1114                 }
1115                 if(__pSearchBar != null)
1116                 {
1117                         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1118                 }
1119         }
1120 }
1121
1122 String
1123 HistoryListForm::GetMonth(int month)
1124 {
1125         String monthValue = L"";
1126         switch (month)
1127         {
1128         case JANUARY:
1129                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_JAN"));
1130                 break;
1131         case FEBRUARY:
1132                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_FEB"));
1133                 break;
1134         case MARCH:
1135                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_MAR"));
1136                 break;
1137         case APRIL:
1138                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_APRIL"));
1139                 break;
1140         case MAY:
1141                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_MAY"));
1142                 break;
1143         case JUNE:
1144                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_JUNE"));
1145                 break;
1146         case JULY:
1147                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_JUL"));
1148                 break;
1149         case AUGUST:
1150                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_AUG"));
1151                 break;
1152         case SEPTEMBER:
1153                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_SEP"));
1154                 break;
1155         case OCTOBER:
1156                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_OCT"));
1157                 break;
1158         case NOVEMBER:
1159                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_NOV"));
1160                 break;
1161         case DECEMBER:
1162                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_DEC"));
1163                 break;
1164         default:
1165                 break;
1166         }
1167
1168
1169         return monthValue;
1170 }
1171
1172 void
1173 HistoryListForm::OnKeypadActionPerformed(Control &source, KeypadAction keypadAction)
1174 {
1175         result r = E_FAILURE;
1176         if (__pSearchBar != null)
1177         {
1178                 __pSearchBar->HideKeypad();
1179         }
1180
1181         if (__pSearchBar != null && keypadAction == KEYPAD_ACTION_SEARCH)
1182         {
1183                 __pSearchListView->SetEnabled(true);
1184                 __searchHistory = true;
1185                 __searchText =__pSearchBar->GetText();
1186                 AppLog("SearchTextHistory %S errormsg %s",__searchText.GetPointer(),GetErrorMessage(GetLastResult()));
1187
1188                 r = __pGroupedListView->SetShowState(false);
1189                 if (IsFailed(r))
1190                 {
1191                         return;
1192                 }
1193                 r = __pSearchListView->SetShowState(true);
1194                 if (IsFailed(r))
1195                 {
1196                         return;
1197                 }
1198                 r= __pSearchListView->UpdateList();
1199                 if (__isNoHistoryPresent == true)
1200                 {
1201                         GetFooter()->SetItemEnabled(0, false);
1202                 }
1203                 else
1204                 {
1205                         GetFooter()->SetItemEnabled(0, true);
1206                 }
1207                 __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1208
1209                 if (IsFailed(r))
1210                 {
1211                         return;
1212                 }
1213         }
1214         else
1215         {
1216                 __searchHistory = false;
1217         }
1218         Invalidate(true);
1219 }
1220
1221 void
1222 HistoryListForm::OnKeypadBoundsChanged(Tizen::Ui::Control& source)
1223 {
1224         FloatRectangle clientRect;
1225         clientRect = GetClientAreaBoundsF();
1226         AppLogDebug("SearchBarForm::OnKeypadBoundsChanged ClientBounds(%f, %f, %f, %f)",clientRect.x, clientRect.y, clientRect.width, clientRect.height);
1227         __pSearchBar->SetContentAreaSize(FloatDimension(clientRect.width, clientRect.height - __pSearchBar->GetHeightF()));
1228         __pSearchListView->SetSize(FloatDimension(clientRect.width, clientRect.height - __pSearchBar->GetHeightF()));
1229         __pGroupedListView->SetSize(FloatDimension(clientRect.width, clientRect.height - __pSearchBar->GetHeightF()));
1230 //      __pGroupedListView->SetEnabled(false);
1231         Invalidate(true);
1232 }
1233
1234 void
1235 HistoryListForm::OnOrientationChanged(const Control& source, OrientationStatus orientationStatus)
1236 {
1237         result r = E_FAILURE;
1238         if (__pGroupedListView != null)
1239         {
1240                 if(__pSearchBar != null &&__pSearchBar->GetShowState())
1241                         r = __pGroupedListView->SetBounds(Rectangle(0,__pSearchBar->GetY() + __pSearchBar->GetHeight()/*72 + 30*/,GetClientAreaBounds().width,GetClientAreaBounds().height - __pSearchBar->GetHeight() - __pSearchBar->GetY()));
1242                 else if(__pSearchBar != null)
1243                         r = __pGroupedListView->SetBounds(Rectangle(0,0,GetClientAreaBounds().width,GetClientAreaBounds().height - __pSearchBar->GetHeight() - __pSearchBar->GetY()));
1244                 if (IsFailed(r))
1245                 {
1246                         return;
1247                 }
1248                 //__pGroupedListView->UpdateList();
1249                 if (__pSearchListView != null)
1250                 {
1251                         r = __pSearchListView->SetBounds(Rectangle(0,  0, GetClientAreaBounds().width, __pGroupedListView->GetHeight()));
1252                         if (IsFailed(r))
1253                         {
1254                                 return;
1255                         }
1256
1257                         __pSearchListView->UpdateList();
1258
1259                         if(__pSearchBar != null)
1260                                 __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1261                 }
1262
1263                 __pGroupedListView->UpdateList();//this change is as suggested by platform team for issue N_SE-52111
1264 //              if(__pGroupData != NULL)
1265 //              {
1266 //                      for (int groupIndex = 0; groupIndex < __pGroupData->GetCount(); groupIndex++)
1267 //                      {
1268 //                              for (int itemIndex = 0; itemIndex < __pGroupedListView->GetItemCountAt(groupIndex); itemIndex++)
1269 //                              {
1270 //                                      __pGroupedListView->RefreshList(groupIndex, itemIndex,LIST_REFRESH_TYPE_ITEM_MODIFY);
1271 //                              }
1272 //                      }
1273 //              }
1274         }
1275
1276         if (__isNoHistoryPresent == true)
1277         {
1278                 GetFooter()->SetItemEnabled(0, false);
1279         }
1280         else
1281         {
1282                 GetFooter()->SetItemEnabled(0, true);
1283         }
1284 }
1285
1286 void
1287 HistoryListForm::OnKeypadWillOpen(Control& source)
1288 {
1289         GetFooter()->SetShowState(false);
1290         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), GetClientAreaBounds().width, GetClientAreaBounds().height - __pSearchBar->GetHeight());
1291         __pSearchListView->SetEnabled(false);
1292         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1293         Invalidate(true);
1294
1295 }
1296
1297 void
1298 HistoryListForm::OnKeypadOpened(Control& source)
1299 {
1300         // this is added because some time footer is shown when key pad is opened, do not remove
1301         GetFooter()->SetShowState(false);
1302         GetFooter()->Invalidate(true);
1303         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight());
1304 }
1305
1306 void
1307 HistoryListForm::OnKeypadClosed(Control& source)
1308 {
1309         if(Clipboard::GetInstance()->IsPopupVisible() == true)
1310         {
1311                 return;
1312         }
1313         GetFooter()->SetShowState(true);
1314         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight());
1315         __pSearchListView->Invalidate(false);
1316         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight()));
1317         __pGroupedListView->SetBounds(0, __pSearchBar->GetY() + __pSearchBar->GetHeight(), GetClientAreaBounds().width, GetClientAreaBounds().height - __pSearchBar->GetHeight());
1318         Invalidate(true);
1319 }
1320
1321 void
1322 HistoryListForm::CreateGroupItems()
1323 {
1324         result r = E_FAILURE;
1325         DateTime currentTime;
1326         DateTime dateTime;
1327         GroupItemClass* pGroupItemClass = null;
1328         String titleText;
1329
1330         String weeksAgo2 = L"";
1331         weeksAgo2.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),2);
1332
1333         String weeksAgo3 = L"";
1334         weeksAgo3.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),3);
1335
1336         if (__pGroupData != null)
1337         {
1338                 __pGroupData->RemoveAll(false);
1339                 delete __pGroupData;
1340                 __pGroupData = null;
1341         }
1342         __pGroupData = new(std::nothrow) ArrayList();
1343         if (__pGroupData == null)
1344         {
1345                 return;
1346         }
1347         r = __pGroupData->Construct();
1348         if (IsFailed(r))
1349         {
1350                 delete __pGroupData;
1351                 __pGroupData = null;
1352                 return;
1353         }
1354         if (__searchHistory == true)
1355         {
1356                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1357                 if (pGroupItemClass == null)
1358                 {
1359                         return;
1360                 }
1361                 titleText = CommonUtil::GetString(L"IDS_BR_BODY_SEARCH");
1362                 pGroupItemClass->SetTitleText(titleText);
1363                 r = __pGroupData->Add(*pGroupItemClass);
1364                 if (IsFailed(r))
1365                 {
1366                         return;
1367                 }
1368         }
1369         else
1370         {
1371                 Calendar* pGregorianCalendar = null;
1372                 int dayOfWeek = 0;
1373                 int day = 0;
1374                 HistoryPresentationModel::GetCurrentDateTime(currentTime);
1375                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1376                 if (pGroupItemClass == null)
1377                 {
1378                         return;
1379                 }
1380                 titleText = CommonUtil::GetString(L"IDS_COM_BODY_TODAY");
1381                 pGroupItemClass->SetTitleText(titleText);
1382                 pGroupItemClass->SetEndTime(currentTime);
1383                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1384                 pGroupItemClass->SetStartTime(dateTime);
1385                 __pGroupData->Add(*pGroupItemClass);
1386
1387
1388                 pGregorianCalendar = Calendar::CreateInstanceN(CALENDAR_GREGORIAN);
1389                 if ( pGregorianCalendar != NULL )
1390                 {
1391                         pGregorianCalendar->SetTimeField(TIME_FIELD_YEAR, currentTime.GetYear());
1392                         pGregorianCalendar->SetTimeField(TIME_FIELD_MONTH, currentTime.GetMonth());
1393                         pGregorianCalendar->SetTimeField(TIME_FIELD_DAY_OF_MONTH, currentTime.GetDay());
1394                         dayOfWeek = pGregorianCalendar->GetTimeField(TIME_FIELD_DAY_OF_WEEK);
1395                         delete pGregorianCalendar;
1396                 }
1397                 switch(dayOfWeek)
1398                 {
1399                 case SUNDAY:
1400                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1401                         if (pGroupItemClass == null)
1402                         {
1403                                 return;
1404                         }
1405                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1406                         pGroupItemClass->SetTitleText(titleText);
1407                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1408                         pGroupItemClass->SetEndTime(dateTime);
1409                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1410                         dateTime.AddDays(currentTime.GetDay() - 6 - 1);
1411                         pGroupItemClass->SetStartTime(dateTime);
1412                         __pGroupData->Add(*pGroupItemClass);
1413                         break;
1414                 case MONDAY:
1415                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1416                         if (pGroupItemClass == null)
1417                         {
1418                                 return;
1419                         }
1420                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1421                         pGroupItemClass->SetTitleText(titleText);
1422                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1423                         pGroupItemClass->SetEndTime(dateTime);
1424                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1425                         dateTime.AddDays(currentTime.GetDay() - 7 - 1);
1426                         pGroupItemClass->SetStartTime(dateTime);
1427                         __pGroupData->Add(*pGroupItemClass);
1428                         break;
1429                 case TUESDAY:
1430                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1431                         if (pGroupItemClass == null)
1432                         {
1433                                 return;
1434                         }
1435                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1436                         pGroupItemClass->SetTitleText(titleText);
1437                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1438                         pGroupItemClass->SetEndTime(dateTime);
1439                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1440                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1441                         pGroupItemClass->SetStartTime(dateTime);
1442                         __pGroupData->Add(*pGroupItemClass);
1443
1444                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1445                         if (pGroupItemClass == null)
1446                         {
1447                                 return;
1448                         }
1449                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1450                         pGroupItemClass->SetTitleText(titleText);
1451                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1452                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1453                         pGroupItemClass->SetEndTime(dateTime);
1454                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1455                         dateTime.AddDays(currentTime.GetDay() - 8 - 1);
1456                         pGroupItemClass->SetStartTime(dateTime);
1457                         __pGroupData->Add(*pGroupItemClass);
1458                         break;
1459                 case WEDNESDAY:
1460                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1461                         if (pGroupItemClass == null)
1462                         {
1463                                 return;
1464                         }
1465                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1466                         pGroupItemClass->SetTitleText(titleText);
1467                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1468                         pGroupItemClass->SetEndTime(dateTime);
1469                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1470                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1471                         pGroupItemClass->SetStartTime(dateTime);
1472                         __pGroupData->Add(*pGroupItemClass);
1473
1474                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1475                         if (pGroupItemClass == null)
1476                         {
1477                                 return;
1478                         }
1479                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1480                         pGroupItemClass->SetTitleText(titleText);
1481                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1482                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1483                         pGroupItemClass->SetEndTime(dateTime);
1484                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1485                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1486                         pGroupItemClass->SetStartTime(dateTime);
1487                         __pGroupData->Add(*pGroupItemClass);
1488
1489                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1490                         if (pGroupItemClass == null)
1491                         {
1492                                 return;
1493                         }
1494                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1495                         pGroupItemClass->SetTitleText(titleText);
1496                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1497                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1498                         pGroupItemClass->SetEndTime(dateTime);
1499                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1500                         dateTime.AddDays(currentTime.GetDay() - 9 - 1);
1501                         pGroupItemClass->SetStartTime(dateTime);
1502                         __pGroupData->Add(*pGroupItemClass);
1503                         break;
1504                 case THURSDAY:
1505                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1506                         if (pGroupItemClass == null)
1507                         {
1508                                 return;
1509                         }
1510                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1511                         pGroupItemClass->SetTitleText(titleText);
1512                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1513                         pGroupItemClass->SetEndTime(dateTime);
1514                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1515                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1516                         pGroupItemClass->SetStartTime(dateTime);
1517                         __pGroupData->Add(*pGroupItemClass);
1518
1519                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1520                         if (pGroupItemClass == null)
1521                         {
1522                                 return;
1523                         }
1524                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_TUE");
1525                         pGroupItemClass->SetTitleText(titleText);
1526                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1527                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1528                         pGroupItemClass->SetEndTime(dateTime);
1529                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1530                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1531                         pGroupItemClass->SetStartTime(dateTime);
1532                         __pGroupData->Add(*pGroupItemClass);
1533
1534                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1535                         if (pGroupItemClass == null)
1536                         {
1537                                 return;
1538                         }
1539                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1540                         pGroupItemClass->SetTitleText(titleText);
1541                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1542                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1543                         pGroupItemClass->SetEndTime(dateTime);
1544                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1545                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1546                         pGroupItemClass->SetStartTime(dateTime);
1547                         __pGroupData->Add(*pGroupItemClass);
1548
1549                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1550                         if (pGroupItemClass == null)
1551                         {
1552                                 return;
1553                         }
1554                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1555                         pGroupItemClass->SetTitleText(titleText);
1556                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1557                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1558                         pGroupItemClass->SetEndTime(dateTime);
1559                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1560                         dateTime.AddDays(currentTime.GetDay() - 10 - 1);
1561                         pGroupItemClass->SetStartTime(dateTime);
1562                         __pGroupData->Add(*pGroupItemClass);
1563                         break;
1564                 case FRIDAY:
1565                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1566                         if (pGroupItemClass == null)
1567                         {
1568                                 return;
1569                         }
1570                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1571                         pGroupItemClass->SetTitleText(titleText);
1572                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1573                         pGroupItemClass->SetEndTime(dateTime);
1574                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1575                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1576                         pGroupItemClass->SetStartTime(dateTime);
1577                         __pGroupData->Add(*pGroupItemClass);
1578
1579                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1580                         if (pGroupItemClass == null)
1581                         {
1582                                 return;
1583                         }
1584                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_WED");
1585                         pGroupItemClass->SetTitleText(titleText);
1586                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1587                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1588                         pGroupItemClass->SetEndTime(dateTime);
1589                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1590                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1591                         pGroupItemClass->SetStartTime(dateTime);
1592                         __pGroupData->Add(*pGroupItemClass);
1593
1594                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1595                         if (pGroupItemClass == null)
1596                         {
1597                                 return;
1598                         }
1599                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_TUE");
1600                         pGroupItemClass->SetTitleText(titleText);
1601                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1602                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1603                         pGroupItemClass->SetEndTime(dateTime);
1604                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1605                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1606                         pGroupItemClass->SetStartTime(dateTime);
1607                         __pGroupData->Add(*pGroupItemClass);
1608
1609                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1610                         if (pGroupItemClass == null)
1611                         {
1612                                 return;
1613                         }
1614                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1615                         pGroupItemClass->SetTitleText(titleText);
1616                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1617                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1618                         pGroupItemClass->SetEndTime(dateTime);
1619                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1620                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1621                         pGroupItemClass->SetStartTime(dateTime);
1622                         __pGroupData->Add(*pGroupItemClass);
1623
1624                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1625                         if (pGroupItemClass == null)
1626                         {
1627                                 return;
1628                         }
1629                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1630                         pGroupItemClass->SetTitleText(titleText);
1631                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1632                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1633                         pGroupItemClass->SetEndTime(dateTime);
1634                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1635                         dateTime.AddDays(currentTime.GetDay() - 11 - 1);
1636                         pGroupItemClass->SetStartTime(dateTime);
1637                         __pGroupData->Add(*pGroupItemClass);
1638                         break;
1639                 case SATURDAY:
1640                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1641                         if (pGroupItemClass == null)
1642                         {
1643                                 return;
1644                         }
1645                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1646                         pGroupItemClass->SetTitleText(titleText);
1647                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1648                         pGroupItemClass->SetEndTime(dateTime);
1649                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1650                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1651                         pGroupItemClass->SetStartTime(dateTime);
1652                         __pGroupData->Add(*pGroupItemClass);
1653
1654                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1655                         if (pGroupItemClass == null)
1656                         {
1657                                 return;
1658                         }
1659                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_THU");
1660                         pGroupItemClass->SetTitleText(titleText);
1661                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1662                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1663                         pGroupItemClass->SetEndTime(dateTime);
1664                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1665                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1666                         pGroupItemClass->SetStartTime(dateTime);
1667                         __pGroupData->Add(*pGroupItemClass);
1668
1669                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1670                         if (pGroupItemClass == null)
1671                         {
1672                                 return;
1673                         }
1674                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_WED");
1675                         pGroupItemClass->SetTitleText(titleText);
1676                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1677                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1678                         pGroupItemClass->SetEndTime(dateTime);
1679                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1680                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1681                         pGroupItemClass->SetStartTime(dateTime);
1682                         __pGroupData->Add(*pGroupItemClass);
1683
1684                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1685                         if (pGroupItemClass == null)
1686                         {
1687                                 return;
1688                         }
1689                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_TUE");
1690                         pGroupItemClass->SetTitleText(titleText);
1691                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1692                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1693                         pGroupItemClass->SetEndTime(dateTime);
1694                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1695                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1696                         pGroupItemClass->SetStartTime(dateTime);
1697                         __pGroupData->Add(*pGroupItemClass);
1698
1699                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1700                         if (pGroupItemClass == null)
1701                         {
1702                                 return;
1703                         }
1704                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1705                         pGroupItemClass->SetTitleText(titleText);
1706                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1707                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1708                         pGroupItemClass->SetEndTime(dateTime);
1709                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1710                         dateTime.AddDays(currentTime.GetDay() - 5 - 1);
1711                         pGroupItemClass->SetStartTime(dateTime);
1712                         __pGroupData->Add(*pGroupItemClass);
1713
1714                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1715                         if (pGroupItemClass == null)
1716                         {
1717                                 return;
1718                         }
1719                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1720                         pGroupItemClass->SetTitleText(titleText);
1721                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1722                         dateTime.AddDays(currentTime.GetDay() - 5 - 1);
1723                         pGroupItemClass->SetEndTime(dateTime);
1724                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1725                         dateTime.AddDays(currentTime.GetDay() - 12 - 1);
1726                         pGroupItemClass->SetStartTime(dateTime);
1727                         __pGroupData->Add(*pGroupItemClass);
1728                         break;
1729
1730                 default:
1731                         break;
1732                 }
1733                 day = currentTime.GetDay();
1734                 switch(day/7)
1735                 {
1736                 case 2:
1737                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1738                         if (pGroupItemClass == null)
1739                         {
1740                                 return;
1741                         }
1742
1743                         pGroupItemClass->SetTitleText(weeksAgo2);
1744                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1745                         dateTime.AddDays(currentTime.GetDay() - 7 - dayOfWeek + 2 - 1);
1746                         pGroupItemClass->SetEndTime(dateTime);
1747                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1748                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1749                         pGroupItemClass->SetStartTime(dateTime);
1750                         __pGroupData->Add(*pGroupItemClass);
1751
1752                         if (pGroupItemClass->GetStartTime().GetDay() > 1 && pGroupItemClass->GetStartTime().GetDay() < 8)
1753                         {
1754                                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1755                                 if (pGroupItemClass == null)
1756                                 {
1757                                         return;
1758                                 }
1759                                 String weeksAgo3 = L"";
1760                                 weeksAgo3.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),3);
1761                                 pGroupItemClass->SetTitleText(weeksAgo3);
1762                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1763                                 dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1764                                 pGroupItemClass->SetEndTime(dateTime);
1765                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1766                                 dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1767                                 pGroupItemClass->SetStartTime(dateTime);
1768                                 __pGroupData->Add(*pGroupItemClass);
1769                         }
1770                         break;
1771                 case 3:
1772                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1773                         if (pGroupItemClass == null)
1774                         {
1775                                 return;
1776                         }
1777                         pGroupItemClass->SetTitleText(weeksAgo2);
1778                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1779                         dateTime.AddDays(currentTime.GetDay() - 7 - dayOfWeek + 2 - 1);
1780                         pGroupItemClass->SetEndTime(dateTime);
1781                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1782                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1783                         pGroupItemClass->SetStartTime(dateTime);
1784                         __pGroupData->Add(*pGroupItemClass);
1785
1786                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1787                         if (pGroupItemClass == null)
1788                         {
1789                                 return;
1790                         }
1791
1792                         pGroupItemClass->SetTitleText(weeksAgo3);
1793                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1794                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1795                         pGroupItemClass->SetEndTime(dateTime);
1796                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1797                         dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1798                         pGroupItemClass->SetStartTime(dateTime);
1799                         __pGroupData->Add(*pGroupItemClass);
1800
1801                         if (pGroupItemClass->GetStartTime().GetDay() > 1 && pGroupItemClass->GetStartTime().GetDay() < 8)
1802                         {
1803                                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1804                                 if (pGroupItemClass == null)
1805                                 {
1806                                         return;
1807                                 }
1808                                 titleText = CommonUtil::GetString(L"IDS_BR_EARLIER_THIS_MONTH");
1809                                 pGroupItemClass->SetTitleText(titleText);
1810                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1811                                 dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1812                                 pGroupItemClass->SetEndTime(dateTime);
1813                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1814                                 //dateTime.AddDays(currentTime.GetDay() - 28 - dayOfWeek + 2 - 1);
1815                                 pGroupItemClass->SetStartTime(dateTime);
1816                                 __pGroupData->Add(*pGroupItemClass);
1817                         }
1818                         break;
1819                 case 4:
1820                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1821                         if (pGroupItemClass == null)
1822                         {
1823                                 return;
1824                         }
1825                         pGroupItemClass->SetTitleText(weeksAgo2);
1826                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1827                         dateTime.AddDays(currentTime.GetDay() - 7 - dayOfWeek + 2 - 1);
1828                         pGroupItemClass->SetEndTime(dateTime);
1829                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1830                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1831                         pGroupItemClass->SetStartTime(dateTime);
1832                         __pGroupData->Add(*pGroupItemClass);
1833
1834                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1835                         if (pGroupItemClass == null)
1836                         {
1837                                 return;
1838                         }
1839                         pGroupItemClass->SetTitleText(weeksAgo3);
1840                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1841                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1842                         pGroupItemClass->SetEndTime(dateTime);
1843                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1844                         dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1845                         pGroupItemClass->SetStartTime(dateTime);
1846                         __pGroupData->Add(*pGroupItemClass);
1847
1848                         if (pGroupItemClass->GetStartTime().GetDay() > 1 && pGroupItemClass->GetStartTime().GetDay() < 8)
1849                         {
1850                                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1851                                 if (pGroupItemClass == null)
1852                                 {
1853                                         return;
1854                                 }
1855                                 titleText = CommonUtil::GetString(L"IDS_BR_EARLIER_THIS_MONTH");
1856                                 pGroupItemClass->SetTitleText(titleText);
1857                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1858                                 dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1859                                 pGroupItemClass->SetEndTime(dateTime);
1860                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1861                                 //dateTime.AddDays(currentTime.GetDay() - 28 - dayOfWeek + 2 - 1);
1862                                 pGroupItemClass->SetStartTime(dateTime);
1863                                 __pGroupData->Add(*pGroupItemClass);
1864                         }
1865                         break;
1866                 default:
1867                         break;
1868                 }
1869                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1870                 if (pGroupItemClass == null)
1871                 {
1872                         return;
1873                 }
1874                 titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_MONTH");
1875                 pGroupItemClass->SetTitleText(titleText);
1876                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1877                 dateTime.AddDays(-1);
1878                 pGroupItemClass->SetEndTime(dateTime);
1879                 dateTime.SetValue(currentTime.GetYear(), 1, 1);
1880                 dateTime.AddMonths(currentTime.GetMonth() - 1 - 1);
1881                 pGroupItemClass->SetStartTime(dateTime);
1882                 __pGroupData->Add(*pGroupItemClass);
1883
1884                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1885                 if (pGroupItemClass == null)
1886                 {
1887                         return;
1888                 }
1889                 titleText = CommonUtil::GetString(L"IDS_BR_BODY_OLDER");
1890                 pGroupItemClass->SetTitleText(titleText);
1891                 dateTime.SetValue(currentTime.GetYear(),1, 1);
1892                 dateTime.AddMonths(currentTime.GetMonth() - 2);
1893                 dateTime.AddDays(-1);
1894                 pGroupItemClass->SetEndTime(dateTime);
1895                 DateTime dateTime2;
1896                 dateTime2.SetValue(0, 0, 0);
1897                 pGroupItemClass->SetStartTime(dateTime2);
1898                 __pGroupData->Add(*pGroupItemClass);
1899         }
1900 }
1901
1902 GroupItemClass::GroupItemClass()
1903 {
1904         __pData = null;
1905 }
1906
1907 GroupItemClass&
1908 GroupItemClass::operator =(const GroupItemClass& rhs)
1909 {
1910         if (this != &rhs)
1911         {
1912                 __pData = rhs.__pData;
1913         }
1914         return *this;
1915 }
1916
1917 GroupItemClass::GroupItemClass(const GroupItemClass& groupItem)
1918 {
1919         __pData = groupItem.__pData;
1920 }
1921
1922 GroupItemClass::~GroupItemClass()
1923 {
1924         if (__pData)
1925         {
1926                 __pData->RemoveAll(true);
1927                 delete __pData;
1928         }
1929 }
1930
1931 void
1932 GroupItemClass::SetStartTime(DateTime& startTime)
1933 {
1934         __startTime = startTime;
1935 }
1936
1937 void
1938 GroupItemClass::SetEndTime(DateTime& endTime)
1939 {
1940         __endTime = endTime;
1941 }
1942
1943 void
1944 GroupItemClass::SetTitleText(String& titleText)
1945 {
1946         __titleText = titleText;
1947 }
1948
1949 void
1950 GroupItemClass::SetHistoryData(ArrayList* pData)
1951 {
1952         __pData = pData;
1953 }
1954
1955 DateTime
1956 GroupItemClass::GetStartTime(void)
1957 {
1958         return __startTime;
1959 }
1960
1961 DateTime
1962 GroupItemClass::GetEndTime(void)
1963 {
1964         return __endTime;
1965 }
1966
1967 String
1968 GroupItemClass::GetTitleText(void)
1969 {
1970         return __titleText;
1971 }
1972
1973 ArrayList*
1974 GroupItemClass::GetHistoryData(void)
1975 {
1976         return __pData;
1977 }
1978
1979 void
1980 HistoryListForm::OnSettingChanged(Tizen::Base::String& key)
1981 {
1982         if (__pGroupedListView)
1983         {
1984                 __pGroupedListView->UpdateList();
1985         }
1986         if (__isNoHistoryPresent == true )
1987         {
1988                 if(__pSearchBar)
1989                         __pSearchBar->SetShowState(false);
1990                 GetFooter()->SetItemEnabled(0, false);
1991         }
1992         else
1993         {
1994                 if(__pSearchBar)
1995                         __pSearchBar->SetShowState(true);
1996                 GetFooter()->SetItemEnabled(0, true);
1997         }
1998         GetFooter()->Invalidate(true);
1999 }