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