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