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