Fixed Nabi Issues 49466,55718,55225,52332
[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(__pSearchBar)
1055                 __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight());
1056         __pSearchListView->Invalidate(false);
1057
1058         if (mode == SEARCH_BAR_MODE_NORMAL)
1059         {
1060                 if ( Clipboard::GetInstance()->IsPopupVisible() == false && __searchHistory == false)
1061                 {
1062                         __pSearchListView->SetEnabled(true);
1063                 }
1064
1065                 r = __pSearchListView->SetShowState(false);
1066                 if (IsFailed(r))
1067                 {
1068                         return;
1069                 }
1070                 r = __pGroupedListView->SetShowState(true);
1071                 if (IsFailed(r))
1072                 {
1073                         return;
1074                 }
1075
1076                 __pSearchListView->SetEnabled(true);
1077                 if(__pSearchBar != null)
1078                         __pGroupedListView->SetBounds(0, __pSearchBar->GetY() + __pSearchBar->GetHeight(), GetClientAreaBounds().width, GetClientAreaBounds().height - __pSearchBar->GetHeight());
1079                 Invalidate(true);
1080                 __searchHistory = false;
1081                 r = __pGroupedListView->UpdateList();
1082                 if (__isNoHistoryPresent == true)
1083                 {
1084                         GetFooter()->SetItemEnabled(0, false);
1085                 }
1086                 else
1087                 {
1088                         GetFooter()->SetItemEnabled(0, true);
1089                 }
1090                 if(__pSearchBar != null)
1091                 {
1092                         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1093                 }
1094                 if (IsFailed(r))
1095                 {
1096                         return;
1097                 }
1098         }
1099         else
1100         {
1101
1102                 //              __pSearchListView->SetEnabled(false);
1103                 r = __pSearchListView->SetShowState(true);
1104                 if (IsFailed(r))
1105                 {
1106                         return;
1107                 }
1108                 __pSearchListView->SetEnabled(false);
1109                 r = __pSearchListView->UpdateList();
1110                 if (IsFailed(r))
1111                 {
1112                         return;
1113                 }
1114                 r = __pGroupedListView->SetShowState(false);
1115                 if (IsFailed(r))
1116                 {
1117                         return;
1118                 }
1119                 if(__pSearchBar != null)
1120                 {
1121                         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1122                 }
1123         }
1124 }
1125
1126 String
1127 HistoryListForm::GetMonth(int month)
1128 {
1129         String monthValue = L"";
1130         switch (month)
1131         {
1132         case JANUARY:
1133                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_JAN"));
1134                 break;
1135         case FEBRUARY:
1136                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_FEB"));
1137                 break;
1138         case MARCH:
1139                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_MAR"));
1140                 break;
1141         case APRIL:
1142                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_APRIL"));
1143                 break;
1144         case MAY:
1145                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_MAY"));
1146                 break;
1147         case JUNE:
1148                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_JUNE"));
1149                 break;
1150         case JULY:
1151                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_JUL"));
1152                 break;
1153         case AUGUST:
1154                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_AUG"));
1155                 break;
1156         case SEPTEMBER:
1157                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_SEP"));
1158                 break;
1159         case OCTOBER:
1160                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_OCT"));
1161                 break;
1162         case NOVEMBER:
1163                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_NOV"));
1164                 break;
1165         case DECEMBER:
1166                 monthValue.Append(CommonUtil::GetString(L"IDS_COM_BODY_DEC"));
1167                 break;
1168         default:
1169                 break;
1170         }
1171
1172
1173         return monthValue;
1174 }
1175
1176 void
1177 HistoryListForm::OnKeypadActionPerformed(Control &source, KeypadAction keypadAction)
1178 {
1179         result r = E_FAILURE;
1180         if (__pSearchBar != null)
1181         {
1182                 __pSearchBar->HideKeypad();
1183         }
1184
1185         if (__pSearchBar != null && keypadAction == KEYPAD_ACTION_SEARCH)
1186         {
1187                 __pSearchListView->SetEnabled(true);
1188                 __searchHistory = true;
1189                 __searchText =__pSearchBar->GetText();
1190                 AppLog("SearchTextHistory %S errormsg %s",__searchText.GetPointer(),GetErrorMessage(GetLastResult()));
1191
1192                 r = __pGroupedListView->SetShowState(false);
1193                 if (IsFailed(r))
1194                 {
1195                         return;
1196                 }
1197                 r = __pSearchListView->SetShowState(true);
1198                 if (IsFailed(r))
1199                 {
1200                         return;
1201                 }
1202                 r= __pSearchListView->UpdateList();
1203                 if (__isNoHistoryPresent == true)
1204                 {
1205                         GetFooter()->SetItemEnabled(0, false);
1206                 }
1207                 else
1208                 {
1209                         GetFooter()->SetItemEnabled(0, true);
1210                 }
1211                 __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1212
1213                 if (IsFailed(r))
1214                 {
1215                         return;
1216                 }
1217         }
1218         else
1219         {
1220                 __searchHistory = false;
1221         }
1222         Invalidate(true);
1223 }
1224
1225 void
1226 HistoryListForm::OnKeypadBoundsChanged(Tizen::Ui::Control& source)
1227 {
1228         FloatRectangle clientRect;
1229         clientRect = GetClientAreaBoundsF();
1230         AppLogDebug("SearchBarForm::OnKeypadBoundsChanged ClientBounds(%f, %f, %f, %f)",clientRect.x, clientRect.y, clientRect.width, clientRect.height);
1231         __pSearchBar->SetContentAreaSize(FloatDimension(clientRect.width, clientRect.height - __pSearchBar->GetHeightF()));
1232         __pSearchListView->SetSize(FloatDimension(clientRect.width, clientRect.height - __pSearchBar->GetHeightF()));
1233         __pGroupedListView->SetSize(FloatDimension(clientRect.width, clientRect.height - __pSearchBar->GetHeightF()));
1234 //      __pGroupedListView->SetEnabled(false);
1235         Invalidate(true);
1236 }
1237
1238 void
1239 HistoryListForm::OnOrientationChanged(const Control& source, OrientationStatus orientationStatus)
1240 {
1241         result r = E_FAILURE;
1242         if (__pGroupedListView != null)
1243         {
1244                 if(__pSearchBar != null &&__pSearchBar->GetShowState())
1245                         r = __pGroupedListView->SetBounds(Rectangle(0,__pSearchBar->GetY() + __pSearchBar->GetHeight()/*72 + 30*/,GetClientAreaBounds().width,GetClientAreaBounds().height - __pSearchBar->GetHeight() - __pSearchBar->GetY()));
1246                 else if(__pSearchBar != null)
1247                         r = __pGroupedListView->SetBounds(Rectangle(0,0,GetClientAreaBounds().width,GetClientAreaBounds().height - __pSearchBar->GetHeight() - __pSearchBar->GetY()));
1248                 if (IsFailed(r))
1249                 {
1250                         return;
1251                 }
1252                 //__pGroupedListView->UpdateList();
1253                 if (__pSearchListView != null)
1254                 {
1255                         r = __pSearchListView->SetBounds(Rectangle(0,  0, GetClientAreaBounds().width, __pGroupedListView->GetHeight()));
1256                         if (IsFailed(r))
1257                         {
1258                                 return;
1259                         }
1260
1261                         __pSearchListView->UpdateList();
1262
1263                         if(__pSearchBar != null)
1264                                 __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1265                 }
1266
1267                 __pGroupedListView->UpdateList();//this change is as suggested by platform team for issue N_SE-52111
1268 //              if(__pGroupData != NULL)
1269 //              {
1270 //                      for (int groupIndex = 0; groupIndex < __pGroupData->GetCount(); groupIndex++)
1271 //                      {
1272 //                              for (int itemIndex = 0; itemIndex < __pGroupedListView->GetItemCountAt(groupIndex); itemIndex++)
1273 //                              {
1274 //                                      __pGroupedListView->RefreshList(groupIndex, itemIndex,LIST_REFRESH_TYPE_ITEM_MODIFY);
1275 //                              }
1276 //                      }
1277 //              }
1278         }
1279
1280         if (__isNoHistoryPresent == true)
1281         {
1282                 GetFooter()->SetItemEnabled(0, false);
1283         }
1284         else
1285         {
1286                 GetFooter()->SetItemEnabled(0, true);
1287         }
1288 }
1289
1290 void
1291 HistoryListForm::OnKeypadWillOpen(Control& source)
1292 {
1293         GetFooter()->SetShowState(false);
1294         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), GetClientAreaBounds().width, GetClientAreaBounds().height - __pSearchBar->GetHeight());
1295         __pSearchListView->SetEnabled(false);
1296         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), __pSearchListView->GetHeight()));
1297         Invalidate(true);
1298
1299 }
1300
1301 void
1302 HistoryListForm::OnKeypadOpened(Control& source)
1303 {
1304         // this is added because some time footer is shown when key pad is opened, do not remove
1305         GetFooter()->SetShowState(false);
1306         GetFooter()->Invalidate(true);
1307         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight());
1308 }
1309
1310 void
1311 HistoryListForm::OnKeypadClosed(Control& source)
1312 {
1313 //      if(Clipboard::GetInstance()->IsPopupVisible() == true)
1314 //      {
1315 //              return;
1316 //      }
1317         GetFooter()->SetShowState(true);
1318         __pSearchListView->SetBounds(__pSearchListView->GetX(), __pSearchListView->GetY(), __pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight());
1319         __pSearchListView->Invalidate(false);
1320         __pSearchBar->SetContentAreaSize(Dimension(__pSearchListView->GetWidth(), GetClientAreaBounds().height - __pSearchBar->GetHeight()));
1321         __pGroupedListView->SetBounds(0, __pSearchBar->GetY() + __pSearchBar->GetHeight(), GetClientAreaBounds().width, GetClientAreaBounds().height - __pSearchBar->GetHeight());
1322         Invalidate(true);
1323 }
1324
1325 void
1326 HistoryListForm::CreateGroupItems()
1327 {
1328         result r = E_FAILURE;
1329         DateTime currentTime;
1330         DateTime dateTime;
1331         GroupItemClass* pGroupItemClass = null;
1332         String titleText;
1333
1334         String weeksAgo2 = L"";
1335         weeksAgo2.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),2);
1336
1337         String weeksAgo3 = L"";
1338         weeksAgo3.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),3);
1339
1340         if (__pGroupData != null)
1341         {
1342                 __pGroupData->RemoveAll(false);
1343                 delete __pGroupData;
1344                 __pGroupData = null;
1345         }
1346         __pGroupData = new(std::nothrow) ArrayList();
1347         if (__pGroupData == null)
1348         {
1349                 return;
1350         }
1351         r = __pGroupData->Construct();
1352         if (IsFailed(r))
1353         {
1354                 delete __pGroupData;
1355                 __pGroupData = null;
1356                 return;
1357         }
1358         if (__searchHistory == true)
1359         {
1360                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1361                 if (pGroupItemClass == null)
1362                 {
1363                         return;
1364                 }
1365                 titleText = CommonUtil::GetString(L"IDS_BR_BODY_SEARCH");
1366                 pGroupItemClass->SetTitleText(titleText);
1367                 r = __pGroupData->Add(*pGroupItemClass);
1368                 if (IsFailed(r))
1369                 {
1370                         return;
1371                 }
1372         }
1373         else
1374         {
1375                 Calendar* pGregorianCalendar = null;
1376                 int dayOfWeek = 0;
1377                 int day = 0;
1378                 HistoryPresentationModel::GetCurrentDateTime(currentTime);
1379                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1380                 if (pGroupItemClass == null)
1381                 {
1382                         return;
1383                 }
1384                 titleText = CommonUtil::GetString(L"IDS_COM_BODY_TODAY");
1385                 pGroupItemClass->SetTitleText(titleText);
1386                 pGroupItemClass->SetEndTime(currentTime);
1387                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1388                 pGroupItemClass->SetStartTime(dateTime);
1389                 __pGroupData->Add(*pGroupItemClass);
1390
1391
1392                 pGregorianCalendar = Calendar::CreateInstanceN(CALENDAR_GREGORIAN);
1393                 if ( pGregorianCalendar != NULL )
1394                 {
1395                         pGregorianCalendar->SetTimeField(TIME_FIELD_YEAR, currentTime.GetYear());
1396                         pGregorianCalendar->SetTimeField(TIME_FIELD_MONTH, currentTime.GetMonth());
1397                         pGregorianCalendar->SetTimeField(TIME_FIELD_DAY_OF_MONTH, currentTime.GetDay());
1398                         dayOfWeek = pGregorianCalendar->GetTimeField(TIME_FIELD_DAY_OF_WEEK);
1399                         delete pGregorianCalendar;
1400                 }
1401                 switch(dayOfWeek)
1402                 {
1403                 case SUNDAY:
1404                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1405                         if (pGroupItemClass == null)
1406                         {
1407                                 return;
1408                         }
1409                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1410                         pGroupItemClass->SetTitleText(titleText);
1411                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1412                         pGroupItemClass->SetEndTime(dateTime);
1413                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1414                         dateTime.AddDays(currentTime.GetDay() - 6 - 1);
1415                         pGroupItemClass->SetStartTime(dateTime);
1416                         __pGroupData->Add(*pGroupItemClass);
1417                         break;
1418                 case MONDAY:
1419                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1420                         if (pGroupItemClass == null)
1421                         {
1422                                 return;
1423                         }
1424                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1425                         pGroupItemClass->SetTitleText(titleText);
1426                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1427                         pGroupItemClass->SetEndTime(dateTime);
1428                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1429                         dateTime.AddDays(currentTime.GetDay() - 7 - 1);
1430                         pGroupItemClass->SetStartTime(dateTime);
1431                         __pGroupData->Add(*pGroupItemClass);
1432                         break;
1433                 case TUESDAY:
1434                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1435                         if (pGroupItemClass == null)
1436                         {
1437                                 return;
1438                         }
1439                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1440                         pGroupItemClass->SetTitleText(titleText);
1441                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1442                         pGroupItemClass->SetEndTime(dateTime);
1443                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1444                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1445                         pGroupItemClass->SetStartTime(dateTime);
1446                         __pGroupData->Add(*pGroupItemClass);
1447
1448                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1449                         if (pGroupItemClass == null)
1450                         {
1451                                 return;
1452                         }
1453                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1454                         pGroupItemClass->SetTitleText(titleText);
1455                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1456                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1457                         pGroupItemClass->SetEndTime(dateTime);
1458                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1459                         dateTime.AddDays(currentTime.GetDay() - 8 - 1);
1460                         pGroupItemClass->SetStartTime(dateTime);
1461                         __pGroupData->Add(*pGroupItemClass);
1462                         break;
1463                 case WEDNESDAY:
1464                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1465                         if (pGroupItemClass == null)
1466                         {
1467                                 return;
1468                         }
1469                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1470                         pGroupItemClass->SetTitleText(titleText);
1471                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1472                         pGroupItemClass->SetEndTime(dateTime);
1473                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1474                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1475                         pGroupItemClass->SetStartTime(dateTime);
1476                         __pGroupData->Add(*pGroupItemClass);
1477
1478                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1479                         if (pGroupItemClass == null)
1480                         {
1481                                 return;
1482                         }
1483                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1484                         pGroupItemClass->SetTitleText(titleText);
1485                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1486                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1487                         pGroupItemClass->SetEndTime(dateTime);
1488                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1489                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1490                         pGroupItemClass->SetStartTime(dateTime);
1491                         __pGroupData->Add(*pGroupItemClass);
1492
1493                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1494                         if (pGroupItemClass == null)
1495                         {
1496                                 return;
1497                         }
1498                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1499                         pGroupItemClass->SetTitleText(titleText);
1500                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1501                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1502                         pGroupItemClass->SetEndTime(dateTime);
1503                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1504                         dateTime.AddDays(currentTime.GetDay() - 9 - 1);
1505                         pGroupItemClass->SetStartTime(dateTime);
1506                         __pGroupData->Add(*pGroupItemClass);
1507                         break;
1508                 case THURSDAY:
1509                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1510                         if (pGroupItemClass == null)
1511                         {
1512                                 return;
1513                         }
1514                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1515                         pGroupItemClass->SetTitleText(titleText);
1516                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1517                         pGroupItemClass->SetEndTime(dateTime);
1518                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1519                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1520                         pGroupItemClass->SetStartTime(dateTime);
1521                         __pGroupData->Add(*pGroupItemClass);
1522
1523                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1524                         if (pGroupItemClass == null)
1525                         {
1526                                 return;
1527                         }
1528                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_TUE");
1529                         pGroupItemClass->SetTitleText(titleText);
1530                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1531                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1532                         pGroupItemClass->SetEndTime(dateTime);
1533                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1534                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1535                         pGroupItemClass->SetStartTime(dateTime);
1536                         __pGroupData->Add(*pGroupItemClass);
1537
1538                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1539                         if (pGroupItemClass == null)
1540                         {
1541                                 return;
1542                         }
1543                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1544                         pGroupItemClass->SetTitleText(titleText);
1545                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1546                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1547                         pGroupItemClass->SetEndTime(dateTime);
1548                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1549                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1550                         pGroupItemClass->SetStartTime(dateTime);
1551                         __pGroupData->Add(*pGroupItemClass);
1552
1553                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1554                         if (pGroupItemClass == null)
1555                         {
1556                                 return;
1557                         }
1558                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1559                         pGroupItemClass->SetTitleText(titleText);
1560                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1561                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1562                         pGroupItemClass->SetEndTime(dateTime);
1563                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1564                         dateTime.AddDays(currentTime.GetDay() - 10 - 1);
1565                         pGroupItemClass->SetStartTime(dateTime);
1566                         __pGroupData->Add(*pGroupItemClass);
1567                         break;
1568                 case FRIDAY:
1569                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1570                         if (pGroupItemClass == null)
1571                         {
1572                                 return;
1573                         }
1574                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1575                         pGroupItemClass->SetTitleText(titleText);
1576                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1577                         pGroupItemClass->SetEndTime(dateTime);
1578                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1579                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1580                         pGroupItemClass->SetStartTime(dateTime);
1581                         __pGroupData->Add(*pGroupItemClass);
1582
1583                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1584                         if (pGroupItemClass == null)
1585                         {
1586                                 return;
1587                         }
1588                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_WED");
1589                         pGroupItemClass->SetTitleText(titleText);
1590                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1591                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1592                         pGroupItemClass->SetEndTime(dateTime);
1593                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1594                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1595                         pGroupItemClass->SetStartTime(dateTime);
1596                         __pGroupData->Add(*pGroupItemClass);
1597
1598                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1599                         if (pGroupItemClass == null)
1600                         {
1601                                 return;
1602                         }
1603                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_TUE");
1604                         pGroupItemClass->SetTitleText(titleText);
1605                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1606                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1607                         pGroupItemClass->SetEndTime(dateTime);
1608                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1609                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1610                         pGroupItemClass->SetStartTime(dateTime);
1611                         __pGroupData->Add(*pGroupItemClass);
1612
1613                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1614                         if (pGroupItemClass == null)
1615                         {
1616                                 return;
1617                         }
1618                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1619                         pGroupItemClass->SetTitleText(titleText);
1620                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1621                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1622                         pGroupItemClass->SetEndTime(dateTime);
1623                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1624                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1625                         pGroupItemClass->SetStartTime(dateTime);
1626                         __pGroupData->Add(*pGroupItemClass);
1627
1628                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1629                         if (pGroupItemClass == null)
1630                         {
1631                                 return;
1632                         }
1633                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1634                         pGroupItemClass->SetTitleText(titleText);
1635                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1636                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1637                         pGroupItemClass->SetEndTime(dateTime);
1638                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1639                         dateTime.AddDays(currentTime.GetDay() - 11 - 1);
1640                         pGroupItemClass->SetStartTime(dateTime);
1641                         __pGroupData->Add(*pGroupItemClass);
1642                         break;
1643                 case SATURDAY:
1644                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1645                         if (pGroupItemClass == null)
1646                         {
1647                                 return;
1648                         }
1649                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_YESTERDAY");
1650                         pGroupItemClass->SetTitleText(titleText);
1651                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), currentTime.GetDay());
1652                         pGroupItemClass->SetEndTime(dateTime);
1653                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1654                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1655                         pGroupItemClass->SetStartTime(dateTime);
1656                         __pGroupData->Add(*pGroupItemClass);
1657
1658                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1659                         if (pGroupItemClass == null)
1660                         {
1661                                 return;
1662                         }
1663                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_THU");
1664                         pGroupItemClass->SetTitleText(titleText);
1665                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1666                         dateTime.AddDays(currentTime.GetDay() - 1 - 1);
1667                         pGroupItemClass->SetEndTime(dateTime);
1668                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1669                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1670                         pGroupItemClass->SetStartTime(dateTime);
1671                         __pGroupData->Add(*pGroupItemClass);
1672
1673                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1674                         if (pGroupItemClass == null)
1675                         {
1676                                 return;
1677                         }
1678                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_WED");
1679                         pGroupItemClass->SetTitleText(titleText);
1680                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1681                         dateTime.AddDays(currentTime.GetDay() - 2 - 1);
1682                         pGroupItemClass->SetEndTime(dateTime);
1683                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1684                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1685                         pGroupItemClass->SetStartTime(dateTime);
1686                         __pGroupData->Add(*pGroupItemClass);
1687
1688                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1689                         if (pGroupItemClass == null)
1690                         {
1691                                 return;
1692                         }
1693                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_TUE");
1694                         pGroupItemClass->SetTitleText(titleText);
1695                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1696                         dateTime.AddDays(currentTime.GetDay() - 3 - 1);
1697                         pGroupItemClass->SetEndTime(dateTime);
1698                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1699                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1700                         pGroupItemClass->SetStartTime(dateTime);
1701                         __pGroupData->Add(*pGroupItemClass);
1702
1703                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1704                         if (pGroupItemClass == null)
1705                         {
1706                                 return;
1707                         }
1708                         titleText = CommonUtil::GetString(L"IDS_COM_BODY_MON");
1709                         pGroupItemClass->SetTitleText(titleText);
1710                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1711                         dateTime.AddDays(currentTime.GetDay() - 4 - 1);
1712                         pGroupItemClass->SetEndTime(dateTime);
1713                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1714                         dateTime.AddDays(currentTime.GetDay() - 5 - 1);
1715                         pGroupItemClass->SetStartTime(dateTime);
1716                         __pGroupData->Add(*pGroupItemClass);
1717
1718                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1719                         if (pGroupItemClass == null)
1720                         {
1721                                 return;
1722                         }
1723                         titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_WEEK");
1724                         pGroupItemClass->SetTitleText(titleText);
1725                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1726                         dateTime.AddDays(currentTime.GetDay() - 5 - 1);
1727                         pGroupItemClass->SetEndTime(dateTime);
1728                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1729                         dateTime.AddDays(currentTime.GetDay() - 12 - 1);
1730                         pGroupItemClass->SetStartTime(dateTime);
1731                         __pGroupData->Add(*pGroupItemClass);
1732                         break;
1733
1734                 default:
1735                         break;
1736                 }
1737                 day = currentTime.GetDay();
1738                 switch(day/7)
1739                 {
1740                 case 2:
1741                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1742                         if (pGroupItemClass == null)
1743                         {
1744                                 return;
1745                         }
1746
1747                         pGroupItemClass->SetTitleText(weeksAgo2);
1748                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1749                         dateTime.AddDays(currentTime.GetDay() - 7 - dayOfWeek + 2 - 1);
1750                         pGroupItemClass->SetEndTime(dateTime);
1751                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1752                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1753                         pGroupItemClass->SetStartTime(dateTime);
1754                         __pGroupData->Add(*pGroupItemClass);
1755
1756                         if (pGroupItemClass->GetStartTime().GetDay() > 1 && pGroupItemClass->GetStartTime().GetDay() < 8)
1757                         {
1758                                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1759                                 if (pGroupItemClass == null)
1760                                 {
1761                                         return;
1762                                 }
1763                                 String weeksAgo3 = L"";
1764                                 weeksAgo3.Format(25,CommonUtil::GetString(L"IDS_EMAIL_BODY_PD_WEEKS_AGO").GetPointer(),3);
1765                                 pGroupItemClass->SetTitleText(weeksAgo3);
1766                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1767                                 dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1768                                 pGroupItemClass->SetEndTime(dateTime);
1769                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1770                                 dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1771                                 pGroupItemClass->SetStartTime(dateTime);
1772                                 __pGroupData->Add(*pGroupItemClass);
1773                         }
1774                         break;
1775                 case 3:
1776                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1777                         if (pGroupItemClass == null)
1778                         {
1779                                 return;
1780                         }
1781                         pGroupItemClass->SetTitleText(weeksAgo2);
1782                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1783                         dateTime.AddDays(currentTime.GetDay() - 7 - dayOfWeek + 2 - 1);
1784                         pGroupItemClass->SetEndTime(dateTime);
1785                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1786                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1787                         pGroupItemClass->SetStartTime(dateTime);
1788                         __pGroupData->Add(*pGroupItemClass);
1789
1790                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1791                         if (pGroupItemClass == null)
1792                         {
1793                                 return;
1794                         }
1795
1796                         pGroupItemClass->SetTitleText(weeksAgo3);
1797                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1798                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1799                         pGroupItemClass->SetEndTime(dateTime);
1800                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1801                         dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1802                         pGroupItemClass->SetStartTime(dateTime);
1803                         __pGroupData->Add(*pGroupItemClass);
1804
1805                         if (pGroupItemClass->GetStartTime().GetDay() > 1 && pGroupItemClass->GetStartTime().GetDay() < 8)
1806                         {
1807                                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1808                                 if (pGroupItemClass == null)
1809                                 {
1810                                         return;
1811                                 }
1812                                 titleText = CommonUtil::GetString(L"IDS_BR_EARLIER_THIS_MONTH");
1813                                 pGroupItemClass->SetTitleText(titleText);
1814                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1815                                 dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1816                                 pGroupItemClass->SetEndTime(dateTime);
1817                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1818                                 //dateTime.AddDays(currentTime.GetDay() - 28 - dayOfWeek + 2 - 1);
1819                                 pGroupItemClass->SetStartTime(dateTime);
1820                                 __pGroupData->Add(*pGroupItemClass);
1821                         }
1822                         break;
1823                 case 4:
1824                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1825                         if (pGroupItemClass == null)
1826                         {
1827                                 return;
1828                         }
1829                         pGroupItemClass->SetTitleText(weeksAgo2);
1830                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1831                         dateTime.AddDays(currentTime.GetDay() - 7 - dayOfWeek + 2 - 1);
1832                         pGroupItemClass->SetEndTime(dateTime);
1833                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1834                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1835                         pGroupItemClass->SetStartTime(dateTime);
1836                         __pGroupData->Add(*pGroupItemClass);
1837
1838                         pGroupItemClass = new(std::nothrow) GroupItemClass();
1839                         if (pGroupItemClass == null)
1840                         {
1841                                 return;
1842                         }
1843                         pGroupItemClass->SetTitleText(weeksAgo3);
1844                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1845                         dateTime.AddDays(currentTime.GetDay() - 14 - dayOfWeek + 2 - 1);
1846                         pGroupItemClass->SetEndTime(dateTime);
1847                         dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1848                         dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1849                         pGroupItemClass->SetStartTime(dateTime);
1850                         __pGroupData->Add(*pGroupItemClass);
1851
1852                         if (pGroupItemClass->GetStartTime().GetDay() > 1 && pGroupItemClass->GetStartTime().GetDay() < 8)
1853                         {
1854                                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1855                                 if (pGroupItemClass == null)
1856                                 {
1857                                         return;
1858                                 }
1859                                 titleText = CommonUtil::GetString(L"IDS_BR_EARLIER_THIS_MONTH");
1860                                 pGroupItemClass->SetTitleText(titleText);
1861                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1862                                 dateTime.AddDays(currentTime.GetDay() - 21 - dayOfWeek + 2 - 1);
1863                                 pGroupItemClass->SetEndTime(dateTime);
1864                                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1865                                 //dateTime.AddDays(currentTime.GetDay() - 28 - dayOfWeek + 2 - 1);
1866                                 pGroupItemClass->SetStartTime(dateTime);
1867                                 __pGroupData->Add(*pGroupItemClass);
1868                         }
1869                         break;
1870                 default:
1871                         break;
1872                 }
1873                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1874                 if (pGroupItemClass == null)
1875                 {
1876                         return;
1877                 }
1878                 titleText = CommonUtil::GetString(L"IDS_BR_BODY_LAST_MONTH");
1879                 pGroupItemClass->SetTitleText(titleText);
1880                 dateTime.SetValue(currentTime.GetYear(),currentTime.GetMonth(), 1);
1881                 dateTime.AddDays(-1);
1882                 pGroupItemClass->SetEndTime(dateTime);
1883                 dateTime.SetValue(currentTime.GetYear(), 1, 1);
1884                 dateTime.AddMonths(currentTime.GetMonth() - 1 - 1);
1885                 pGroupItemClass->SetStartTime(dateTime);
1886                 __pGroupData->Add(*pGroupItemClass);
1887
1888                 pGroupItemClass = new(std::nothrow) GroupItemClass();
1889                 if (pGroupItemClass == null)
1890                 {
1891                         return;
1892                 }
1893                 titleText = CommonUtil::GetString(L"IDS_BR_BODY_OLDER");
1894                 pGroupItemClass->SetTitleText(titleText);
1895                 dateTime.SetValue(currentTime.GetYear(),1, 1);
1896                 dateTime.AddMonths(currentTime.GetMonth() - 2);
1897                 dateTime.AddDays(-1);
1898                 pGroupItemClass->SetEndTime(dateTime);
1899                 DateTime dateTime2;
1900                 dateTime2.SetValue(0, 0, 0);
1901                 pGroupItemClass->SetStartTime(dateTime2);
1902                 __pGroupData->Add(*pGroupItemClass);
1903         }
1904 }
1905
1906 GroupItemClass::GroupItemClass()
1907 {
1908         __pData = null;
1909 }
1910
1911 GroupItemClass&
1912 GroupItemClass::operator =(const GroupItemClass& rhs)
1913 {
1914         if (this != &rhs)
1915         {
1916                 __pData = rhs.__pData;
1917         }
1918         return *this;
1919 }
1920
1921 GroupItemClass::GroupItemClass(const GroupItemClass& groupItem)
1922 {
1923         __pData = groupItem.__pData;
1924 }
1925
1926 GroupItemClass::~GroupItemClass()
1927 {
1928         if (__pData)
1929         {
1930                 __pData->RemoveAll(true);
1931                 delete __pData;
1932         }
1933 }
1934
1935 void
1936 GroupItemClass::SetStartTime(DateTime& startTime)
1937 {
1938         __startTime = startTime;
1939 }
1940
1941 void
1942 GroupItemClass::SetEndTime(DateTime& endTime)
1943 {
1944         __endTime = endTime;
1945 }
1946
1947 void
1948 GroupItemClass::SetTitleText(String& titleText)
1949 {
1950         __titleText = titleText;
1951 }
1952
1953 void
1954 GroupItemClass::SetHistoryData(ArrayList* pData)
1955 {
1956         __pData = pData;
1957 }
1958
1959 DateTime
1960 GroupItemClass::GetStartTime(void)
1961 {
1962         return __startTime;
1963 }
1964
1965 DateTime
1966 GroupItemClass::GetEndTime(void)
1967 {
1968         return __endTime;
1969 }
1970
1971 String
1972 GroupItemClass::GetTitleText(void)
1973 {
1974         return __titleText;
1975 }
1976
1977 ArrayList*
1978 GroupItemClass::GetHistoryData(void)
1979 {
1980         return __pData;
1981 }
1982
1983 void
1984 HistoryListForm::OnSettingChanged(Tizen::Base::String& key)
1985 {
1986         if (__pGroupedListView)
1987         {
1988                 __pGroupedListView->UpdateList();
1989         }
1990         if (__isNoHistoryPresent == true )
1991         {
1992                 if(__pSearchBar)
1993                         __pSearchBar->SetShowState(false);
1994                 GetFooter()->SetItemEnabled(0, false);
1995         }
1996         else
1997         {
1998                 if(__pSearchBar)
1999                         __pSearchBar->SetShowState(true);
2000                 GetFooter()->SetItemEnabled(0, true);
2001         }
2002         GetFooter()->Invalidate(true);
2003 }