54f92eff9b870e2701e624b2425743b5cbf2c319
[apps/osp/Call.git] / src / CallActiveCallForm.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.1 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://floralicense.org/license/
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file        PhnActiveCallForm.cpp
19  * @brief       Active Call Form class
20  */
21 #include <FApp.h>
22 #include <FUi.h>
23 #include <FMedia.h>
24 #include <FSystem.h>
25 #include <FShell.h>
26 #include "CallActiveCallForm.h"
27 #include "CallButtonsPanel.h"
28 #include "CallInfo.h"
29 #include "CallAppUtility.h"
30 #include "CallDtmfKeypadPanel.h"
31 #include "CallPresentationModel.h"
32 #include "CallSceneRegister.h"
33 #include "CallTypes.h"
34 #include "CallApp.h"
35
36 using namespace Tizen::App;
37 using namespace Tizen::Base;
38 using namespace Tizen::Base::Collection;
39 using namespace Tizen::Base::Utility;
40 using namespace Tizen::Graphics;
41 using namespace Tizen::Media;
42 using namespace Tizen::Social;
43 using namespace Tizen::System;
44 using namespace Tizen::Ui;
45 using namespace Tizen::Ui::Controls;
46 using namespace Tizen::Ui::Scenes;
47 using namespace Tizen::Shell;
48
49 //constants
50 const int IDI_MAX_SECONDS = 60;
51 const int IDI_MAX_MINS = 60;
52 const int W_HOLD_BITMAP = 78;
53 const int H_HOLD_BITMAP = 78;
54 //for Options menu list
55 const int IDI_POPUP_TEXT_SIZE = 33;
56 const unsigned int COLOR_POPUP_TEXT = Color32<255, 255, 255, 255>::Value;
57 const int IDI_MOREOPTIONS_LIST_ITEMS = 1;
58 const int W_OPTION_ANCHOR = 72;
59 const int H_OPTION_ANCHOR = 22;
60 const int W_MGR_CONFCALL_BITMAP = 64;
61 const int H_MGR_CONFCALL_BITMAP = 64;
62 const int X_POPUP_ANCHOR = 632;
63 const int Y_POPUP_ANCHOR = 140;
64 const int W_POPUP_ANCHOR = 72;
65 const int H_POPUP_ANCHOR = 22;
66 const int IDI_OPTIONMENU_ITEM_SPACING = 16;
67 const Point IDI_OPTIONMENU_POS(238, 162);
68 const Dimension IDI_OPTIONMENU_DIMEN(466, 99);
69 const int X_PHOTO_LBL = 166;
70 const int Y_PHOTO_LBL = 232;
71 const int W_PHOTO_LBL = 388;
72 const int H_PHOTO_LBL = 388;
73 const int W_PHOTO_LABEL = 720;
74 const int H_PHOTO_LABEL = 720;
75 const int W_RIGHT_MORE_ICON_MARGIN = 24;
76 const int W_MORE_LABEL = 466;
77 const int H_MORE_LABEL = 162;
78 const int W_MORE_ICON = 70;
79
80 static const wchar_t* IDC_CONF_CALL_MORE_BUTTON = L"IDC_CONF_CALL_MORE_BUTTON";
81 static const wchar_t* IDC_HOLD_BUTTON = L"IDC_HOLD_BUTTON";
82 static const wchar_t* IDC_SWAP_BUTTON = L"IDC_SWAP_BUTTON";
83 static const wchar_t* IDC_HOLD_LABEL = L"IDC_HOLD_LABEL";
84 static const wchar_t* IDC_TEXTBOX = L"IDC_NUM_EDITFIELD";
85 static const wchar_t* IDC_CALLER1_LABEL = L"IDC_CALLER1_LABEL";
86 static const wchar_t* IDC_BACKGROUND_LABEL = L"IDC_BACKGROUND_LABEL";
87 static const wchar_t* IDC_CALLER1_TIME_LABEL = L"IDC_CALLER1_TIME_LABEL";
88 static const wchar_t* IDC_NUMBER1_LABEL = L"IDC_NUMBER1_LABEL";
89 static const wchar_t* IDC_VOICE_CALL_ICON_LABEL = L"IDC_VOICE_CALL_ICON_LABEL";
90 static const wchar_t* IDC_CALLER2_LABEL = L"IDC_CALLER2_LABEL";
91 static const wchar_t* IDC_NUMBER2_LABEL = L"IDC_NUMBER2_LABEL";
92 static const wchar_t* IDC_CALLER2_TIME_LABEL = L"IDC_CALLER2_TIME_LABEL";
93 static const wchar_t* IDC_SWAP_LABEL = L"IDC_SWAP_LABEL";
94 static const wchar_t* IDC_BACKGROUND_LABEL2 = L"IDC_BACKGROUND_LABEL2";
95 static const wchar_t* IDC_PARTICIPANTS_LABEL = L"IDC_PARTICIPANTS_LABEL";
96 static const wchar_t* IDC_CALLER1_BIGPHOTO_LABEL = L"IDC_CALLER1_BIGPHOTO_LABEL";
97 static const wchar_t* IDC_CALLER2_PHOTO_LABEL = L"IDC_CALLER2_PHOTO_LABEL";
98 static const wchar_t* IDC_CALLER1_PHOTO_LABEL = L"IDC_CALLER1_PHOTO_LABEL";
99 static const wchar_t* IDC_KEY_BG_LABEL = L"IDC_KEY_BG_LABEL";
100
101 ActiveCallForm::ActiveCallForm(FormType formType)
102         : BaseForm(formType)
103 {
104         __pActiveCallTimer = null;
105         __pCallButtonsPanel = null;
106         __pDTMFKeypad = null;
107         __pMoreOptionsList = null;
108         __pMoreOptionsListAnchor = null;
109         __pSmallPhotoLabel = null;
110         __pActiveCallInfo = null;
111         __pHeldCallInfo = null;
112         __isSwapInProgress = false;
113         __pAddressbook = null;
114 }
115
116 ActiveCallForm::~ActiveCallForm(void)
117 {
118         if (__pActiveCallTimer != null)
119         {
120                 __pActiveCallTimer->Cancel();
121                 delete __pActiveCallTimer;
122         }
123         if (__pMoreOptionsList != null)
124         {
125                 __pMoreOptionsList = null;
126         }
127         if (__pMoreOptionsListAnchor != null)
128         {
129                 __pMoreOptionsListAnchor = null;
130         }
131         if (__pSmallPhotoLabel != null)
132         {
133                 __pSmallPhotoLabel = null;
134         }
135         if (__pActiveCallInfo != null)
136         {
137                 delete __pActiveCallInfo;
138         }
139         if (__pHeldCallInfo != null)
140         {
141                 delete __pHeldCallInfo;
142         }
143         if(__pDTMFKeypad != null)
144         {
145                 __pDTMFKeypad = null;
146         }
147 }
148
149 void
150 ActiveCallForm::Initialize(void)
151 {
152         switch (__formType)
153         {
154         case FORMTYPE_OUTGOINGCALL:
155                 Construct(IDL_OUTCALL_FORM);
156                 break;
157
158         case FORMTYPE_EMERGENCYOUTGOINGCALL:
159                 Construct(IDL_OUT_EMERGENCYCALL_FORM);
160                 break;
161
162         case FORMTYPE_ACTIVECALL:
163                 Construct(IDL_CALL_FORM);
164                 break;
165
166         case FORMTYPE_EMERGENCYACTIVECALL:
167                 Construct(IDL_EMERGENCY_CALL_FORM);
168                 break;
169
170         case FORMTYPE_MULTIPLECALLS:
171                 Construct(IDL_MULTIPLE_CALL_FORM);
172                 break;
173
174         case FORMTYPE_ACTIVECONFCALL:
175                 Construct(IDL_CONFCALL_FORM);
176                 break;
177
178         default:
179                 break;
180         }
181 }
182
183 result
184 ActiveCallForm::OnInitializing(void)
185 {
186         result r = E_SUCCESS;
187
188         //Hold Button - Shown on single active/conf call scene
189         InitializeHoldButton();
190         //Swap button for multiple call screen
191         InitializeSwapButton();
192         //Initialize manage conf. call list form
193         InitializeManageConfCallButton();
194
195         __pCallPresentor = CallPresentationModel::GetInstance();
196         return r;
197 }
198
199 void
200 ActiveCallForm::ShowDTMFKeypad(void)
201 {
202         if(__pDTMFKeypad == null)
203         {
204                 //update rect according to client screen area
205                 Rectangle rect(0, 0, 0, 0);
206                 if (GetOrientationStatus() == ORIENTATION_STATUS_PORTRAIT || GetOrientationStatus() == ORIENTATION_STATUS_PORTRAIT_REVERSE)
207                 {
208                         rect.width = GetClientAreaBounds().width;
209                         rect.height = GetClientAreaBounds().height - __pCallButtonsPanel->GetHeight();
210                 }
211                 else if (GetOrientationStatus() == ORIENTATION_STATUS_LANDSCAPE || GetOrientationStatus() == ORIENTATION_STATUS_LANDSCAPE_REVERSE)
212                 {
213                         rect.height = GetClientAreaBounds().height;
214                         rect.width = GetClientAreaBounds().width - __pCallButtonsPanel->GetWidth();
215                 }
216
217                 AppLog("DTMF Keypad rect(%d,%d,%d,%d)",rect.x,rect.y,rect.width,rect.height);
218                 __pDTMFKeypad = new (std::nothrow) DtmfKeyPadPanel();
219                 __pDTMFKeypad->Initialize(this, rect);
220                 AddControl(__pDTMFKeypad);
221
222                 //set layout relation w.r.t call buttons panel
223                 RelativeLayout* pRelativeLayout = dynamic_cast<RelativeLayout*>(GetLandscapeLayoutN());
224                 if (pRelativeLayout != null)
225                 {
226                         pRelativeLayout->SetRelation(*__pDTMFKeypad, this, RECT_EDGE_RELATION_LEFT_TO_LEFT);
227                         pRelativeLayout->SetRelation(*__pDTMFKeypad, __pCallButtonsPanel, RECT_EDGE_RELATION_RIGHT_TO_LEFT);
228                 }
229         }
230         __pDTMFKeypad->SetShowState(true);
231         if(__DtmfString.IsEmpty() == false)
232         {
233                 EditField* pTextBox = static_cast<EditField*>(__pDTMFKeypad->GetControl(IDC_TEXTBOX));
234                 pTextBox->SetText(__DtmfString);
235         }
236         __pDTMFKeypad->Draw(true);
237         __pDTMFKeypad->Show();
238 }
239
240 void
241 ActiveCallForm::OnOrientationChanged(const Tizen::Ui::Control& source, Tizen::Ui::OrientationStatus orientationStatus)
242 {
243         AppLog("ENTER");
244
245         if (__pCallButtonsPanel != null)
246         {
247                 //update position of call buttons panel
248                 Label* pKeysBgLbl = static_cast<Label*>(GetControl(IDC_KEY_BG_LABEL, true));
249                 __pCallButtonsPanel->SetBounds(pKeysBgLbl->GetBounds());
250
251                 //bring button on top
252                 __pCallButtonsPanel->SetButtonPosition();
253
254                 RelativeLayout* pRelativeLayout = dynamic_cast<RelativeLayout*>(GetPortraitLayoutN());
255                 if (pRelativeLayout != null)
256                 {
257                         pRelativeLayout->SetRelation(*__pCallButtonsPanel, *pKeysBgLbl, RECT_EDGE_RELATION_BOTTOM_TO_BOTTOM);
258                 }
259
260                 pRelativeLayout = dynamic_cast<RelativeLayout*>(GetLandscapeLayoutN());
261                 if (pRelativeLayout != null)
262                 {
263                         pRelativeLayout->SetRelation(*__pCallButtonsPanel, *pKeysBgLbl, RECT_EDGE_RELATION_LEFT_TO_LEFT);
264                         pRelativeLayout->SetRelation(*__pCallButtonsPanel, *pKeysBgLbl, RECT_EDGE_RELATION_RIGHT_TO_RIGHT);
265                 }
266
267                 //change orientation of DTMF Keypad, if it is visible.
268                 if (__pDTMFKeypad != null)
269                 {
270                         if (orientationStatus == ORIENTATION_STATUS_LANDSCAPE || orientationStatus == ORIENTATION_STATUS_LANDSCAPE_REVERSE)
271                         {
272                                 //in landscape mode, caller info is visible.
273                                 SetShowStateOnKeypad(true);
274                                 SetHoldButtonShowState(false);
275                         }
276                         else if (orientationStatus == ORIENTATION_STATUS_PORTRAIT || orientationStatus == ORIENTATION_STATUS_PORTRAIT_REVERSE)
277                         {
278                                 //in Portrait mode it is hidden beneath DTMF Keypad.
279                                 SetShowStateOnKeypad(false);
280                         }
281                         if(__pDTMFKeypad->GetShowState() == true)
282                         {
283                                 String dtmfText = static_cast<EditField*>(__pDTMFKeypad->GetControl(IDC_TEXTBOX))->GetText();
284                                 HideDTMFKeypad();
285                                 ShowDTMFKeypad();
286                         }
287                 }
288         }
289         //More option is displayed recreate it
290         if(__pMoreOptionsListAnchor != null)
291         {
292                 CreateMoreOptionsMenuList();
293                 CreateMoreOptionsMenuList();
294         }
295 }
296
297 void
298 ActiveCallForm::HideDTMFKeypad(void)
299 {
300         if(__pDTMFKeypad != null)
301         {
302                 __DtmfString = static_cast<EditField*>(__pDTMFKeypad->GetControl(IDC_TEXTBOX))->GetText();
303
304                 RemoveControl(__pDTMFKeypad);
305                 __pDTMFKeypad = null;
306         }
307 }
308
309 result
310 ActiveCallForm::InitializeCallButtonsPanel(void)
311 {
312         result r = E_SUCCESS;
313         //Set background bitmap for call keypad
314         Label* pKeysBgLbl = static_cast<Label*>(GetControl(IDC_KEY_BG_LABEL, true));
315         Bitmap* pBgBitmap = AppUtility::GetBitmapFromResourcesN(IDB_BACKGROUND_BITMAP, pKeysBgLbl->GetWidth(), pKeysBgLbl->GetHeight());
316         if (pBgBitmap != null)
317         {
318                 pKeysBgLbl->SetBackgroundBitmap(*pBgBitmap);
319         }
320
321         if (__pCallButtonsPanel == null)
322         {
323                 __pCallButtonsPanel = new (std::nothrow) CallButtonsPanel();
324                 __pCallButtonsPanel->ConstructPanel(this, __formType);
325                 __pCallButtonsPanel->SetBounds(pKeysBgLbl->GetBounds());
326                 r = AddControl(__pCallButtonsPanel);
327         }
328
329         RelativeLayout* pRelativeLayout = dynamic_cast<RelativeLayout*>(GetPortraitLayoutN());
330         if (pRelativeLayout != null)
331         {
332                 pRelativeLayout->SetRelation(*__pCallButtonsPanel, *pKeysBgLbl, RECT_EDGE_RELATION_BOTTOM_TO_BOTTOM);
333         }
334         pRelativeLayout = dynamic_cast<RelativeLayout*>(GetLandscapeLayoutN());
335         if (pRelativeLayout != null)
336         {
337                 pRelativeLayout->SetRelation(*__pCallButtonsPanel, *pKeysBgLbl, RECT_EDGE_RELATION_LEFT_TO_LEFT);
338                 pRelativeLayout->SetRelation(*__pCallButtonsPanel, *pKeysBgLbl, RECT_EDGE_RELATION_RIGHT_TO_RIGHT);
339                 pRelativeLayout->SetRelation(*__pCallButtonsPanel, *pKeysBgLbl, RECT_EDGE_RELATION_BOTTOM_TO_BOTTOM);
340                 pRelativeLayout->SetRelation(*__pCallButtonsPanel, *pKeysBgLbl, RECT_EDGE_RELATION_TOP_TO_TOP);
341         }
342
343         return r;
344 }
345
346 void
347 ActiveCallForm::InitializeSwapButton(void)
348 {
349         Button* pSwapBtn = static_cast<Button*>(GetControl(IDC_SWAP_BUTTON));
350         if (pSwapBtn)
351         {
352                 Bitmap* pSwapBmp = AppUtility::GetBitmapFromResourcesN(IDB_SWAP_ICON_NORMAL,
353                                                                                                                            W_HOLD_BITMAP, H_HOLD_BITMAP);
354                 if (pSwapBmp)
355                 {
356                         pSwapBtn->SetNormalBitmap(Point(0, 0), *pSwapBmp);
357                 }
358                 delete pSwapBmp;
359                 pSwapBmp = null;
360
361                 pSwapBmp = AppUtility::GetBitmapFromResourcesN(IDB_SWAP_ICON_PRESS,
362                                                                                                            W_HOLD_BITMAP, H_HOLD_BITMAP);
363                 if (pSwapBmp)
364                 {
365                         pSwapBtn->SetPressedBitmap(Point(0, 0), *pSwapBmp);
366                 }
367                 delete pSwapBmp;
368                 pSwapBmp = null;
369                 pSwapBtn->SetActionId(IDA_SWAP_CALLS);
370                 pSwapBtn->AddActionEventListener(*this);
371         }
372 }
373
374 void
375 ActiveCallForm::InitializeManageConfCallButton(void)
376 {
377         Button* pMoreBtn = static_cast<Button*>(GetControl(IDC_CONF_CALL_MORE_BUTTON));
378         if (pMoreBtn != null)
379         {
380                 pMoreBtn->SetActionId(IDA_MORE_OPTIONS_MENU);
381                 pMoreBtn->AddActionEventListener(*this);
382                 if (__formType == FORMTYPE_MULTIPLECALLS)
383                 {
384                         //Correct state will be set in OnSceneActivated based on the call
385                         pMoreBtn->SetShowState(false);
386                 }
387                 else if (__formType == FORMTYPE_ACTIVECONFCALL)
388                 {
389                         pMoreBtn->SetShowState(true);
390                 }
391         }
392 }
393
394 void
395 ActiveCallForm::InitializeHoldButton(void)
396 {
397         Button* pHoldBtn = static_cast<Button*>(GetControl(IDC_HOLD_BUTTON));
398         if (pHoldBtn != null)
399         {
400                 //set status of Hold Button
401                 SetHoldButtonStatus(true);
402                 pHoldBtn->AddActionEventListener(*this);
403         }
404 }
405
406 void
407 ActiveCallForm::SetHoldButtonStatus(bool toHoldCall)
408 {
409         //background bitmap & button name
410         String btnName("");
411         Bitmap* normalImg = null;
412         Bitmap* pressImg = null;
413         if (toHoldCall)
414         {
415                 btnName.Append(AppUtility::GetResourceString(IDS_HOLD_BTN_NAME));
416                 normalImg = AppUtility::GetBitmapFromResourcesN(IDB_HOLD_NORMAL_BUTTON_ICON,
417                                                                                                                 W_HOLD_BITMAP, H_HOLD_BITMAP);
418                 pressImg = AppUtility::GetBitmapFromResourcesN(IDB_HOLD_PRESS_BUTTON_ICON,
419                                                                                                            W_HOLD_BITMAP, H_HOLD_BITMAP);
420         }
421         else
422         {
423                 btnName.Append(AppUtility::GetResourceString(IDS_UNHOLD_BTN_NAME));
424                 normalImg = AppUtility::GetBitmapFromResourcesN(IDB_UNHOLD_NORMAL_BUTTON_ICON,
425                                                                                                                 W_HOLD_BITMAP, H_HOLD_BITMAP);
426                 pressImg = AppUtility::GetBitmapFromResourcesN(IDB_UNHOLD_PRESS_BUTTON_ICON,
427                                                                                                            W_HOLD_BITMAP, H_HOLD_BITMAP);
428         }
429
430         //Action id
431         CommandIds cmdId = IDA_HOLD_CALL;
432         switch (__formType)
433         {
434         case FORMTYPE_ACTIVECALL:
435         {
436                 cmdId = toHoldCall ? IDA_HOLD_CALL : IDA_UNHOLD_CALL;
437         }
438         break;
439
440         case FORMTYPE_ACTIVECONFCALL:
441         {
442                 cmdId = toHoldCall ? IDA_HOLD_CONF_CALL : IDA_UNHOLD_CONF_CALL;
443         }
444         break;
445
446         default:
447                 break;
448         }
449
450         //set background bitmap, button name & action id
451         Button* pHoldBtn = static_cast<Button*>(GetControl(IDC_HOLD_BUTTON));
452         Label* pHoldLbl = static_cast<Label*>(GetControl(IDC_HOLD_LABEL));
453         if (pHoldBtn)
454         {
455                 pHoldBtn->SetActionId(cmdId);
456                 pHoldBtn->SetNormalBitmap(Point(0, 0),*normalImg);
457                 pHoldBtn->SetPressedBitmap(Point(0, 0),*pressImg);
458         }
459         if (pHoldLbl)
460         {
461                 pHoldLbl->SetText(btnName);
462                 pHoldLbl->Invalidate(true);
463         }
464
465         //free the resources
466         delete normalImg;
467         normalImg = null;
468         delete pressImg;
469         pressImg = null;
470 }
471
472 void
473 ActiveCallForm::CreateMoreOptionsMenuList(void)
474 {
475         //create option list anchor
476         if (__pMoreOptionsListAnchor == null)
477         {
478                 Bitmap* pBgPopupArwBmp = AppUtility::GetBitmapFromResourcesN(IDB_POPUP_ARROW_ICON, W_OPTION_ANCHOR,
479                                                                                                                                          H_OPTION_ANCHOR);
480                 __pMoreOptionsListAnchor = new (std::nothrow) Label();
481                 __pMoreOptionsListAnchor->Construct(Rectangle(GetWidth()-W_RIGHT_MORE_ICON_MARGIN - W_MORE_ICON, Y_POPUP_ANCHOR, W_POPUP_ANCHOR, H_POPUP_ANCHOR), L"");
482                 __pMoreOptionsListAnchor->SetBackgroundBitmap(*pBgPopupArwBmp);
483
484                 delete pBgPopupArwBmp;
485                 pBgPopupArwBmp = null;
486
487                 // Adds a Label to the Form
488                 AddControl(__pMoreOptionsListAnchor);
489         }
490
491         //create options menu list
492         if (__pMoreOptionsList == null)
493         {
494                 __pMoreOptionsList = new (std::nothrow) ListView();
495                 __pMoreOptionsList->Construct(Rectangle(Point(GetWidth()-W_RIGHT_MORE_ICON_MARGIN - W_MORE_LABEL,H_MORE_LABEL), IDI_OPTIONMENU_DIMEN), false, SCROLL_STYLE_FADE_OUT);
496                 __pMoreOptionsList->SetItemProvider(*this);
497                 __pMoreOptionsList->AddListViewItemEventListener(*this);
498                 //Add option list to the form
499                 AddControl(__pMoreOptionsList);
500         }
501         else
502         {
503                 //Hide option menu list
504                 DestroyMoreOptionsMenuList();
505         }
506 }
507
508 void
509 ActiveCallForm::DestroyMoreOptionsMenuList(void)
510 {
511         if (__pMoreOptionsListAnchor != null)
512         {
513                 //removes and delete the child control
514                 RemoveControl(__pMoreOptionsListAnchor);
515                 __pMoreOptionsListAnchor = null;
516         }
517
518         if (__pMoreOptionsList != null)
519         {
520                 //removes and delete the child control
521                 RemoveControl(__pMoreOptionsList);
522                 __pMoreOptionsList = null;
523         }
524 }
525
526 result
527 ActiveCallForm::OnTerminating(void)
528 {
529         result r = E_SUCCESS;
530         if (__pCallPresentor != null)
531         {
532                 __pCallPresentor = null;
533         }
534         return r;
535 }
536
537 void
538 ActiveCallForm::OnActionPerformed(const Control& source, int actionId)
539 {
540
541         String dtmfString;
542         switch (actionId)
543         {
544         case IDA_END_CALL:
545         {
546                 //End the currently active / dialing call
547                 if (__pActiveCallInfo->IsConferenceCall() == false)
548                 {
549                         String activeContactNo;
550                         activeContactNo.Append(__pActiveCallInfo->GetContactNumber());
551                         //Check if it is call is in dialing state, then
552                         if (__formType == FORMTYPE_EMERGENCYOUTGOINGCALL || __formType == FORMTYPE_OUTGOINGCALL)
553                         {
554                                 __pCallPresentor->EndDialingCall(activeContactNo);
555                         }
556                         else
557                         {
558                                 //end active calls
559                                 __pCallPresentor->EndActiveCall(*__pActiveCallInfo->GetCallHandle());
560                         }
561                 }
562                 else
563                 {
564                         __pCallPresentor->EndConferenceCall();
565                 }
566         }
567         break;
568
569         case IDA_END_CONF_CALL:
570         {
571                 AppAssert(__formType == FORMTYPE_ACTIVECONFCALL);
572                 __pCallPresentor->EndConferenceCall();
573         }
574         break;
575
576         case IDA_OPEN_NUMKEYPAD:
577         {
578                 if (GetOrientationStatus() == ORIENTATION_STATUS_PORTRAIT || GetOrientationStatus() == ORIENTATION_STATUS_PORTRAIT_REVERSE)
579                 {
580                         //hide only in portrait mode.
581                         SetShowStateOnKeypad(false);
582                 }
583                 //Hide the hold button as it goes behind DTMF keypad
584                 SetHoldButtonShowState(false);
585                 ShowDTMFKeypad();
586                 __pCallButtonsPanel->SetKeypadButtonState(IDA_CLOSE_NUMKEYPAD);
587         }
588         break;
589
590         case IDA_CLOSE_NUMKEYPAD:
591         {
592                 SetShowStateOnKeypad(true);
593                 HideDTMFKeypad();
594                 __pCallButtonsPanel->SetKeypadButtonState(IDA_OPEN_NUMKEYPAD);
595         }
596         break;
597
598         case IDA_ADD_CALL:
599         {
600                 //switch to Dialer Form to make an call
601                 if(__pCallPresentor->GetCurrentCallCount() == 1)
602                 {
603                 __pCallPresentor->LaunchDialAppControl();
604                 }
605         }
606         break;
607
608         case IDA_HOLD_CALL:
609         {
610                 bool success = true;
611                 if (__pActiveCallInfo->IsConferenceCall() == false)
612                 {
613                         if(__pActiveCallInfo->GetCallHandle() != null)
614                         {
615                                 success = __pCallPresentor->HoldCall(*__pActiveCallInfo->GetCallHandle());
616                         }
617                 }
618                 else
619                 {
620                         success = __pCallPresentor->HoldConferenceCall();
621                 }
622                 //reset hold status and "OnHold" text
623                 ShowTimerInfo(IDC_CALLER1_TIME_LABEL, success);
624                 if(__pActiveCallTimer != null)
625                 {
626                         __pActiveCallTimer->Cancel();
627                 }
628                 SetHoldButtonStatus(!success);
629         }
630         break;
631
632         case IDA_UNHOLD_CALL:
633         {
634                 bool success = false;
635                 if (__pActiveCallInfo->IsConferenceCall() == false)
636                 {
637                         if(__pActiveCallInfo->GetCallHandle() != null)
638                         {
639                                 success = __pCallPresentor->UnHoldCall(*__pActiveCallInfo->GetCallHandle());
640                         }
641                 }
642                 else
643                 {
644                         success = __pCallPresentor->ActivateConferenceCall();
645                 }
646                 //reset hold status and show call timer
647                 ShowTimerInfo(IDC_CALLER1_TIME_LABEL, !success, __activeCallStartTime);
648                 SetHoldButtonStatus(success);
649         }
650         break;
651
652         case IDA_HOLD_CONF_CALL:
653         {
654                 AppAssert(__formType == FORMTYPE_ACTIVECONFCALL);
655                 bool success = __pCallPresentor->HoldConferenceCall();
656                 //reset hold status and "OnHold" text
657                 SetHoldButtonStatus(!success);
658                 ShowTimerInfo(IDC_CALLER1_TIME_LABEL, success);
659                 if(__pActiveCallTimer != null)
660                 {
661                         __pActiveCallTimer->Cancel();
662                 }
663         }
664         break;
665
666         case IDA_UNHOLD_CONF_CALL:
667         {
668                 AppAssert(__formType == FORMTYPE_ACTIVECONFCALL);
669                 bool success = __pCallPresentor->ActivateConferenceCall();
670                 //reset hold status and show call timer
671                 ShowTimerInfo(IDC_CALLER1_TIME_LABEL, !success, __activeCallStartTime);
672                 SetHoldButtonStatus(success);
673         }
674         break;
675
676         case IDA_OPEN_CONTACTS:
677         {
678                 //Open Contacts APP
679                 //Launch call application
680                 AppManager* pAppManager = AppManager::GetInstance();
681                 pAppManager->LaunchApplication(PROVIDER_ID_CONTACTS);
682         }
683                 break;
684
685         case IDA_MUTE:
686         {
687                 bool success = __pCallPresentor->SetMuteStatus(true);
688                 if (success)
689                 {
690                         __pCallButtonsPanel->SetMuteButtonState(IDA_UNMUTE);
691                 }
692         }
693         break;
694
695         case IDA_UNMUTE:
696         {
697                 bool success = __pCallPresentor->SetMuteStatus(false);
698                 if (success)
699                 {
700                         __pCallButtonsPanel->SetMuteButtonState(IDA_MUTE);
701                 }
702         }
703         break;
704
705         case IDA_SPEAKER:
706         {
707                 bool success = __pCallPresentor->SetSpeakerStatus(true);
708                 if (success)
709                 {
710                         __pCallButtonsPanel->SetSpeakerButtonState(IDA_SPEAKER_OFF);
711                 }
712         }
713         break;
714
715         case IDA_SPEAKER_OFF:
716         {
717                 bool success = __pCallPresentor->SetSpeakerStatus(false);
718                 if (success)
719                 {
720                         __pCallButtonsPanel->SetSpeakerButtonState(IDA_SPEAKER);
721                 }
722         }
723         break;
724
725         case IDA_JOIN_CALL:
726         {
727                 AppAssert(__formType == FORMTYPE_MULTIPLECALLS);
728                 __pCallPresentor->JoinCall();
729         }
730         break;
731
732         case IDA_SWAP_CALLS:
733         {
734                 if(IsSwapInProgress() == false)
735                 {
736                         AppAssert(__formType == FORMTYPE_MULTIPLECALLS);
737                         __pCallPresentor->SwapCalls();
738                         SetSwapInProgress(true);
739                 }
740         }
741         break;
742
743         case IDA_MORE_OPTIONS_MENU:
744         {
745                 //Show 'more' options menu
746                 CreateMoreOptionsMenuList();
747         }
748         break;
749
750         case NUM_KEY0:
751         {
752                 dtmfString.Append(L"0");
753                 SetTextToDTMFTextField(dtmfString);
754                 __pCallPresentor->SendDTMFSignal(dtmfString);
755         }
756         break;
757
758         case NUM_KEY1:
759         {
760                 dtmfString.Append(L"1");
761                 SetTextToDTMFTextField(dtmfString);
762                 __pCallPresentor->SendDTMFSignal(dtmfString);
763         }
764         break;
765
766         case NUM_KEY2:
767         {
768                 dtmfString.Append(L"2");
769                 SetTextToDTMFTextField(dtmfString);
770                 __pCallPresentor->SendDTMFSignal(dtmfString);
771         }
772         break;
773
774         case NUM_KEY3:
775         {
776                 dtmfString.Append(L"3");
777                 SetTextToDTMFTextField(dtmfString);
778                 __pCallPresentor->SendDTMFSignal(dtmfString);
779         }
780         break;
781
782         case NUM_KEY4:
783         {
784                 dtmfString.Append(L"4");
785                 SetTextToDTMFTextField(dtmfString);
786                 __pCallPresentor->SendDTMFSignal(dtmfString);
787         }
788         break;
789
790         case NUM_KEY5:
791         {
792                 dtmfString.Append(L"5");
793                 SetTextToDTMFTextField(dtmfString);
794                 __pCallPresentor->SendDTMFSignal(dtmfString);
795         }
796         break;
797
798         case NUM_KEY6:
799         {
800                 dtmfString.Append(L"6");
801                 SetTextToDTMFTextField(dtmfString);
802                 __pCallPresentor->SendDTMFSignal(dtmfString);
803         }
804         break;
805
806         case NUM_KEY7:
807         {
808                 dtmfString.Append(L"7");
809                 SetTextToDTMFTextField(dtmfString);
810                 __pCallPresentor->SendDTMFSignal(dtmfString);
811         }
812         break;
813
814         case NUM_KEY8:
815         {
816                 dtmfString.Append(L"8");
817                 SetTextToDTMFTextField(dtmfString);
818                 __pCallPresentor->SendDTMFSignal(dtmfString);
819         }
820         break;
821
822         case NUM_KEY9:
823         {
824                 dtmfString.Append(L"9");
825                 SetTextToDTMFTextField(dtmfString);
826                 __pCallPresentor->SendDTMFSignal(dtmfString);
827         }
828         break;
829
830         case PAUSE_KEY:
831         {
832                 dtmfString.Append(L"*");
833                 SetTextToDTMFTextField(dtmfString);
834                 __pCallPresentor->SendDTMFSignal(dtmfString);
835         }
836         break;
837
838         case HASH_KEY:
839         {
840                 dtmfString.Append(L"#");
841                 SetTextToDTMFTextField(dtmfString);
842                 __pCallPresentor->SendDTMFSignal(dtmfString);
843         }
844         break;
845
846         default:
847                 break;
848         }
849 }
850
851 bool
852 ActiveCallForm::IsSwapInProgress(void)
853 {
854         return __isSwapInProgress;
855 }
856
857 void
858 ActiveCallForm::SetSwapInProgress(bool progress)
859 {
860         __isSwapInProgress = progress;
861 }
862
863 void
864 ActiveCallForm::SetTextToDTMFTextField(const String& dtmfStr)
865 {
866         if(__pDTMFKeypad != null)
867         {
868                 EditField* pTextBox = static_cast<EditField*>(__pDTMFKeypad->GetControl(IDC_TEXTBOX));
869
870                 int startpos=-1,endpos=-1;
871                 pTextBox->GetBlockRange(startpos,endpos);
872                 if(startpos != -1)
873                 {
874                         pTextBox->Remove();
875                         pTextBox->ReleaseBlock();
876                 }
877
878                 pTextBox->InsertTextAtCursorPosition(dtmfStr);
879                 //pTextBox->AppendText(dtmfStr);
880                 pTextBox->SetFocus();
881                 pTextBox->Invalidate(true);
882         }
883 }
884
885 void
886 ActiveCallForm::OnSceneActivatedN(const SceneId& previousSceneId, const SceneId& currentSceneId, IList* pArgs)
887 {
888         AppLog("ENTER");
889         //set itself as listener
890         __pCallPresentor->SetTelEventListener(this);
891         AddOrientationEventListener(*this);
892
893         CallApp* pPhoneApp = static_cast<CallApp*>(CallApp::GetInstance());
894         pPhoneApp->AddAppStateChangeListener(*this);
895
896         //Initialize keypad and buttons
897         InitializeCallButtonsPanel();
898
899         AddressbookManager* pAddressbookManager = AddressbookManager::GetInstance();
900         __pAddressbook = pAddressbookManager->GetAddressbookN(DEFAULT_ADDRESSBOOK_ID);
901         if(__pAddressbook != null)
902         {
903                 __pAddressbook->SetAddressbookChangeEventListener(this);
904         }
905
906
907         if (__pActiveCallInfo != null)
908         {
909                 delete __pActiveCallInfo;
910                 __pActiveCallInfo = null;
911         }
912         if (__pHeldCallInfo != null)
913         {
914                 delete __pHeldCallInfo;
915                 __pHeldCallInfo = null;
916         }
917         DestroyMoreOptionsMenuList();
918
919         switch (__formType)
920         {
921         case FORMTYPE_OUTGOINGCALL:
922         {
923                 String contactNo;
924                 contactNo.Append(*(static_cast<String*>(pArgs->GetAt(0))));
925                 __pActiveCallInfo = new (std::nothrow) AppCallInfo();
926                 __pActiveCallInfo->SetContactNumber(contactNo);
927                 Contact* pContact = __pCallPresentor->GetContactN(contactNo);
928                 if (pContact != null)
929                 {
930                         __pActiveCallInfo->SetContactInfo(*pContact);
931                         delete pContact;
932                 }
933                 ShowPersonDetails(contactNo, IDC_NUMBER1_LABEL, IDC_CALLER1_LABEL, false,__pActiveCallInfo);
934                 //make an normal outgoing call
935                 __pCallPresentor->DialCall(contactNo, false);
936         }
937         break;
938
939         case FORMTYPE_EMERGENCYOUTGOINGCALL:
940         {
941                 String* pContactNo = static_cast<String*>(pArgs->GetAt(0));
942                 __pActiveCallInfo = new (std::nothrow) AppCallInfo();
943                 long long phNumber = 0;
944                 LongLong::Parse(*pContactNo, phNumber);
945                 __pActiveCallInfo->SetContactNumber(*pContactNo);
946                 //make an emergency call
947                 __pCallPresentor->DialCall(*pContactNo, true);
948         }
949         break;
950
951         case FORMTYPE_ACTIVECALL:
952         {
953                 //get contact number
954                 AppCallInfo* pCall = static_cast<AppCallInfo*>(pArgs->GetAt(0));
955
956                 __pActiveCallInfo = new (std::nothrow) AppCallInfo();
957                 *__pActiveCallInfo =  *pCall;
958                 String activeContactNo;
959                 if(pCall->GetContactNumber().IsEmpty() == false)
960                 {
961                         activeContactNo.Append(pCall->GetContactNumber());
962                 }
963                 else
964                 {
965                         activeContactNo.Append(AppUtility::GetResourceString(IDS_NUMBER_UNKNOWN));
966                 }
967                 ShowPersonDetails(activeContactNo, IDC_NUMBER1_LABEL, IDC_CALLER1_LABEL, false,__pActiveCallInfo);
968
969                 //show call active time using Timer
970                 __activeCallStartTime = pCall->GetCallConnectTime();
971                 ShowTimerInfo(IDC_CALLER1_TIME_LABEL, pCall->IsOnHold(), __activeCallStartTime);
972         }
973         break;
974
975         case FORMTYPE_EMERGENCYACTIVECALL:
976         {
977                 //get contact number
978                 AppCallInfo* pCall = static_cast<AppCallInfo*>(pArgs->GetAt(0));
979
980                 __pActiveCallInfo = new (std::nothrow) AppCallInfo();
981                 *__pActiveCallInfo =  *pCall;
982
983                 //show call active time using Timer
984                 __activeCallStartTime = pCall->GetCallConnectTime();
985                 ShowTimerInfo(IDC_CALLER1_TIME_LABEL, pCall->IsOnHold(), __activeCallStartTime);
986         }
987         break;
988
989         case FORMTYPE_MULTIPLECALLS:
990         {
991                 IListT<AppCallInfo>* pCallsList = __pCallPresentor->GetCallListN();
992                 //update calls state
993                 UpdateMultipleCallScreen(*pCallsList);
994                 delete pCallsList;
995                 pCallsList = null;
996         }
997         break;
998
999         case FORMTYPE_ACTIVECONFCALL:
1000         {
1001                 //get Conf call
1002                 AppCallInfo* pConfInfo = static_cast<AppCallInfo*>(pArgs->GetAt(0));
1003                 __pActiveCallInfo = new (std::nothrow) AppCallInfo();
1004                 *__pActiveCallInfo =  *pConfInfo;
1005
1006                 int participantsCount = __pActiveCallInfo->GetCallerListCount();
1007
1008                 // show participant count on name Label
1009                 Label* pPeopleCountLbl = static_cast<Label*>(GetControl(IDC_PARTICIPANTS_LABEL));
1010                 if (pPeopleCountLbl)
1011                 {
1012                         String count;
1013                         count.Append(participantsCount);
1014                         count.Append(" ");
1015                         count.Append(AppUtility::GetResourceString(IDS_PEOPLE_STR));
1016                         pPeopleCountLbl->SetText(count);
1017                 }
1018
1019                 if(participantsCount >= IDI_MAX_CONF_CALL_PARTICIPANTS)
1020                 {
1021                         __pCallButtonsPanel->EnableAddCallButton(false);
1022                 }
1023                 else
1024                 {
1025                         __pCallButtonsPanel->EnableAddCallButton(true);
1026                 }
1027
1028                 //show call active time using Timer
1029                 __activeCallStartTime = __pActiveCallInfo->GetCallConnectTime();
1030                 ShowTimerInfo(IDC_CALLER1_TIME_LABEL, __pActiveCallInfo->IsOnHold(),__activeCallStartTime);
1031         }
1032         break;
1033
1034         default:
1035                 break;
1036         }
1037
1038         if(__formType == FORMTYPE_ACTIVECALL || __formType == FORMTYPE_EMERGENCYACTIVECALL ||
1039                         __formType == FORMTYPE_MULTIPLECALLS || __formType == FORMTYPE_ACTIVECONFCALL)
1040         {
1041                 //Unlock the phone if its locked
1042                 if(LockManager::GetInstance()->IsLocked())
1043                 {
1044                         AppLogDebug("Phone Locked");
1045                         LockManager::GetInstance()->Unlock();
1046                 }
1047         }
1048
1049         //Hide DTMFKeypad, if visible and show caller info
1050         HideDTMFKeypad();
1051         SetShowStateOnKeypad(true);
1052         __pCallButtonsPanel->SetKeypadButtonState(IDA_OPEN_NUMKEYPAD);
1053
1054         //Set the correct speaker status
1055         if(__pCallPresentor->IsSpeakerOn() == true)
1056         {
1057                 __pCallButtonsPanel->SetSpeakerButtonState(IDA_SPEAKER_OFF);
1058         }
1059         else
1060         {
1061                 __pCallButtonsPanel->SetSpeakerButtonState(IDA_SPEAKER);
1062         }
1063
1064         //Set the correct Mute status
1065         if (__pCallPresentor->IsCallMuted() == true)
1066         {
1067                 __pCallButtonsPanel->SetMuteButtonState(IDA_UNMUTE);
1068         }
1069         else
1070         {
1071                 __pCallButtonsPanel->SetMuteButtonState(IDA_MUTE);
1072         }
1073
1074         if (pArgs)
1075         {
1076                 pArgs->RemoveAll();
1077                 delete pArgs;
1078                 pArgs = null;
1079         }
1080
1081         CallApp* pCallApp = static_cast<CallApp*>(CallApp::GetInstance());
1082         pCallApp->SetTopMostWindow(false);
1083 }
1084
1085 void
1086 ActiveCallForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
1087 {
1088         RemoveOrientationEventListener(*this);
1089         if (__pActiveCallTimer != null)
1090         {
1091                 __pActiveCallTimer->Cancel();
1092                 delete __pActiveCallTimer;
1093                 __pActiveCallTimer = null;
1094         }
1095         if (__pSmallPhotoLabel != null)
1096         {
1097                 __pSmallPhotoLabel->SetShowState(false);
1098         }
1099         //Hide "Manage conf. Call" Context menu
1100         if (__pMoreOptionsListAnchor != null)
1101         {
1102                 __pMoreOptionsListAnchor->SetShowState(false);
1103         }
1104         if (__pMoreOptionsList != null)
1105         {
1106                 __pMoreOptionsList->SetShowState(false);
1107         }
1108         __DtmfString.Clear();
1109         CallApp* pCallApp = static_cast<CallApp*>(CallApp::GetInstance());
1110         pCallApp->RemoveAppStateChangeListener(*this);
1111         if(__pAddressbook != null)
1112         {
1113                 __pAddressbook->SetAddressbookChangeEventListener(null);
1114         }
1115 }
1116
1117 void
1118 ActiveCallForm::HandleConfCallChanged(void)
1119 {
1120         AppLog("ENTER");
1121         AppAssert((__formType == FORMTYPE_ACTIVECONFCALL) || (__formType == FORMTYPE_MULTIPLECALLS));
1122         //fetch changed conference call info
1123         AppCallInfo* pConfCallInfo = __pCallPresentor->GetConferenceCallInfoN();
1124         if (pConfCallInfo == null)
1125         {
1126                 AppLog("EXIT");
1127                 return;
1128         }
1129
1130         //fetch participant count in conf call
1131         int participantsCount = pConfCallInfo->GetCallerListCount();
1132         //update status of join and Add call
1133         bool isEnableAddCall = false;
1134         bool isEnableJoinCall = false;
1135         if(participantsCount < IDI_MAX_CONF_CALL_PARTICIPANTS)
1136         {
1137                 //available only at Active conf. call or active call screen
1138                 isEnableAddCall = true;
1139                 //join button is available only at multiple call screen
1140                 isEnableJoinCall = true;
1141         }
1142
1143         Label* pPeopleCountLbl = null;
1144         if (__pActiveCallInfo != null && __pActiveCallInfo->IsConferenceCall() == true)
1145         {
1146                 //Active call is conference call
1147                 delete __pActiveCallInfo;
1148                 __pActiveCallInfo = new (std::nothrow) AppCallInfo();
1149                 *__pActiveCallInfo = *pConfCallInfo;
1150
1151                 if (__formType == FORMTYPE_MULTIPLECALLS)
1152                 {
1153                         pPeopleCountLbl = static_cast<Label*>(GetControl(IDC_NUMBER1_LABEL));
1154                 }
1155                 else if (__formType == FORMTYPE_ACTIVECONFCALL)
1156                 {
1157                         pPeopleCountLbl = static_cast<Label*>(GetControl(IDC_PARTICIPANTS_LABEL));
1158                         AppLog("Active conf call...(%d)", pPeopleCountLbl);
1159                 }
1160         }
1161         else if(__pHeldCallInfo != null && __pHeldCallInfo->IsConferenceCall() == true)
1162         {
1163                 //Held call is conference call - this is definitely multiple call screen.
1164                 delete __pHeldCallInfo;
1165                 __pHeldCallInfo = new (std::nothrow) AppCallInfo();
1166                 *__pHeldCallInfo = *pConfCallInfo;
1167                 pPeopleCountLbl = static_cast<Label*>(GetControl(IDC_NUMBER2_LABEL));
1168         }
1169
1170         // update participant count on name Label
1171         if (pPeopleCountLbl != null)
1172         {
1173                 String count;
1174                 count.Append(participantsCount);
1175                 count.Append(" ");
1176                 count.Append(AppUtility::GetResourceString(IDS_PEOPLE_STR));
1177                 pPeopleCountLbl->SetText(count);
1178                 pPeopleCountLbl->Invalidate(true);
1179         }
1180         //change AddCall Button status
1181         __pCallButtonsPanel->EnableAddCallButton(isEnableAddCall);
1182         //change JoinCall Button status
1183         __pCallButtonsPanel->EnableJoinCallButton(__pCallPresentor->IsEnableJoinCallButton());
1184         AppLog("EXIT");
1185 }
1186
1187 void
1188 ActiveCallForm::OnContactsChanged(const Tizen::Base::Collection::IList& contactChangeInfoList)
1189 {
1190         AppLog("Enter");
1191         switch (__formType)
1192         {
1193
1194         case FORMTYPE_OUTGOINGCALL:
1195         case FORMTYPE_ACTIVECALL:
1196         {
1197                 String pContactNumber;
1198                 pContactNumber.Append(__pActiveCallInfo->GetContactNumber());
1199                 Contact* pContact = __pCallPresentor->GetContactN(__pActiveCallInfo->GetContactNumber());
1200                 if(pContact == null)
1201                 {
1202                         __pActiveCallInfo->ResetContactNumber(null);
1203                         __pActiveCallInfo->ResetContactInfo(null);
1204
1205                 }
1206                 else
1207                 {
1208                         __pActiveCallInfo->SetContactNumber(pContactNumber);
1209                         __pActiveCallInfo->SetContactInfo(*pContact);
1210                 }
1211                 if(pContact != null)
1212                 {
1213                         delete pContact;
1214                         pContact = null;
1215                 }
1216                 ShowPersonDetails(pContactNumber, IDC_NUMBER1_LABEL, IDC_CALLER1_LABEL, false,__pActiveCallInfo);
1217         }
1218         break;
1219
1220         case FORMTYPE_EMERGENCYACTIVECALL:
1221         {
1222         }
1223         break;
1224
1225         case FORMTYPE_MULTIPLECALLS:
1226         {
1227
1228                 IListT<AppCallInfo>* pCallsList = __pCallPresentor->GetCallListN();
1229                 if(pCallsList != null)
1230                 {
1231                         int listCount = pCallsList->GetCount();
1232                         for(int index = 0; index < listCount; index++)
1233                         {
1234                                 AppCallInfo callInfo;
1235                                 Contact* pContact;
1236                                 pCallsList->GetAt(index, callInfo);
1237                                 if(__pActiveCallInfo == null)
1238                                 {
1239                                         __pActiveCallInfo = new (std::nothrow) AppCallInfo();
1240                                 }
1241                                 *__pActiveCallInfo =  callInfo;
1242                                 String contactNumber;
1243                                 contactNumber.Append(__pActiveCallInfo->GetContactNumber());
1244                                 pContact = __pCallPresentor->GetContactN(__pActiveCallInfo->GetContactNumber());
1245                                 if(pContact == null)
1246                                 {
1247                                         __pActiveCallInfo->ResetContactNumber(null);
1248                                         __pActiveCallInfo->ResetContactInfo(null);
1249
1250                                 }
1251                                 else
1252                                 {
1253                                         __pActiveCallInfo->SetContactNumber(contactNumber);
1254                                         __pActiveCallInfo->SetContactInfo(*pContact);
1255                                 }
1256                                 if(pContact != null)
1257                                 {
1258                                         delete pContact;
1259                                         pContact = null;
1260                                 }
1261                                 if(callInfo.IsOnHold() == false)
1262                                 {
1263                                         ShowPersonDetails(contactNumber, IDC_NUMBER1_LABEL, IDC_CALLER1_LABEL, false,__pActiveCallInfo);
1264                                 }
1265                                 else
1266                                 {
1267                                         ShowPersonDetails(contactNumber, IDC_NUMBER2_LABEL, IDC_CALLER2_LABEL, true,__pActiveCallInfo);
1268                                 }
1269
1270                         }
1271
1272                         delete pCallsList;
1273                         pCallsList = null;
1274                 }
1275         }
1276         break;
1277         default:
1278                 break;
1279         }
1280         AppLog("Exit");
1281 }
1282
1283 void
1284 ActiveCallForm::OnCategoriesChanged(const Tizen::Base::Collection::IList& categoryChangeInfoList)
1285 {
1286         //No implementation
1287 }
1288
1289
1290 void
1291 ActiveCallForm::UpdateMultipleCallScreen(Tizen::Base::Collection::IListT<AppCallInfo>& activeCallsList)
1292 {
1293         AppLog("ENTER");
1294         if(__pActiveCallInfo != null)
1295         {
1296                 delete __pActiveCallInfo;
1297                 __pActiveCallInfo = null;
1298         }
1299         if(__pHeldCallInfo != null)
1300         {
1301                 delete __pHeldCallInfo;
1302                 __pHeldCallInfo = null;
1303         }
1304
1305         Button* pMoreBtn = static_cast<Button*>(GetControl(IDC_CONF_CALL_MORE_BUTTON));
1306         if (pMoreBtn != null)
1307         {
1308                 pMoreBtn->SetShowState(false);
1309         }
1310
1311         //show caller's info.
1312         for (int index = 0; index < activeCallsList.GetCount(); index++)
1313         {
1314                 //Fetch call info
1315                 AppCallInfo callInfo;
1316                 activeCallsList.GetAt(index, callInfo);
1317
1318                 String contactNo;
1319                 if(callInfo.GetContactNumber().IsEmpty() == false)
1320                 {
1321                         contactNo.Append(callInfo.GetContactNumber());
1322                 }
1323                 else
1324                 {
1325                         contactNo.Append(AppUtility::GetResourceString(IDS_NUMBER_UNKNOWN));
1326                 }
1327
1328                 if (callInfo.IsOnHold() == false)
1329                 {
1330                         __pActiveCallInfo = new (std::nothrow) AppCallInfo();
1331                         *__pActiveCallInfo =  callInfo;
1332
1333                         if (__pActiveCallInfo->IsConferenceCall() == false)
1334                         {
1335                                 Label* pVoiceIconLbl = static_cast<Label*>(GetControl(IDC_VOICE_CALL_ICON_LABEL));
1336                                 if (pVoiceIconLbl)
1337                                 {
1338                                         pVoiceIconLbl->SetShowState(true);
1339                                 }
1340                                 if (pMoreBtn != null)
1341                                 {
1342                                         pMoreBtn->SetShowState(false);
1343                                 }
1344                                 ShowPersonDetails(contactNo, IDC_NUMBER1_LABEL, IDC_CALLER1_LABEL, false,__pActiveCallInfo);
1345                                 if(__pMoreOptionsListAnchor != null && __pMoreOptionsListAnchor->GetShowState() == true)
1346                                 {
1347                                         CreateMoreOptionsMenuList();
1348                                 }
1349                         }
1350                         else
1351                         {
1352                                 // show participant count on name Label
1353                                 Label* pPeopleCountLbl = static_cast<Label*>(GetControl(IDC_NUMBER1_LABEL));
1354                                 if (pPeopleCountLbl)
1355                                 {
1356                                         String count;
1357                                         count.Append(__pActiveCallInfo->GetCallerListCount());
1358                                         count.Append(" ");
1359                                         count.Append(AppUtility::GetResourceString(IDS_PEOPLE_STR));
1360                                         pPeopleCountLbl->SetText(count);
1361                                 }
1362                                 String nameStr = AppUtility::GetResourceString(L"IDS_CONFERENCE_CALL_STRING");
1363                                 Label* pNameLbl = static_cast<Label*>(GetControl(IDC_CALLER1_LABEL));
1364                                 if (pNameLbl)
1365                                 {
1366                                         pNameLbl->SetText(nameStr);
1367                                 }
1368                                 Label* pVoiceIconLbl = static_cast<Label*>(GetControl(IDC_VOICE_CALL_ICON_LABEL));
1369                                 if (pVoiceIconLbl)
1370                                 {
1371                                         pVoiceIconLbl->SetShowState(false);
1372                                 }
1373                                 if (pMoreBtn != null)
1374                                 {
1375                                         pMoreBtn->SetShowState(true);
1376                                 }
1377                                 Bitmap* pPhotoBitmap = AppUtility::GetBitmapFromResourcesN(IDB_CONFERENCE_BG_ICON,W_CONFERENCE_PHOTO,H_CONFERENCE_PHOTO);
1378                                 if (pPhotoBitmap != null)
1379                                 {
1380                                         Label* pPhotoLbl = static_cast<Label*>(GetControl(IDC_CALLER1_PHOTO_LABEL));
1381                                         if (pPhotoLbl)
1382                                         {
1383                                                 pPhotoLbl->SetBackgroundBitmap(*pPhotoBitmap);
1384                                                 pPhotoLbl->Invalidate(true);
1385                                         }
1386                                         delete pPhotoBitmap;
1387                                 }
1388                         }
1389                         //show call active time using Timer
1390                         __activeCallStartTime = __pActiveCallInfo->GetCallConnectTime();
1391                         ShowTimerInfo(IDC_CALLER1_TIME_LABEL,false,__activeCallStartTime);
1392                 }
1393                 else
1394                 {
1395                         __pHeldCallInfo = new (std::nothrow) AppCallInfo();
1396                         *__pHeldCallInfo = callInfo;
1397
1398                         if (__pHeldCallInfo->IsConferenceCall() == false)
1399                         {
1400                                 ShowPersonDetails(contactNo, IDC_NUMBER2_LABEL, IDC_CALLER2_LABEL, true,__pHeldCallInfo);
1401                         }
1402                         else
1403                         {
1404                                 // show participant count on name Label
1405                                 Label* pPeopleCountLbl = static_cast<Label*>(GetControl(IDC_NUMBER2_LABEL));
1406                                 if (pPeopleCountLbl)
1407                                 {
1408                                         String count;
1409                                         count.Append(__pHeldCallInfo->GetCallerListCount());
1410                                         count.Append(" ");
1411                                         count.Append(AppUtility::GetResourceString(IDS_PEOPLE_STR));
1412                                         pPeopleCountLbl->SetText(count);
1413                                 }
1414                                 String nameStr = AppUtility::GetResourceString(L"IDS_CONFERENCE_CALL_STRING");
1415                                 Label* pNameLbl = static_cast<Label*>(GetControl(IDC_CALLER2_LABEL));
1416                                 if (pNameLbl)
1417                                 {
1418                                         pNameLbl->SetText(nameStr);
1419                                 }
1420                                 Bitmap* pPhotoBitmap = AppUtility::GetBitmapFromResourcesN(IDB_CONFERENCE_BG_ICON,W_CONFERENCE_PHOTO,H_CONFERENCE_PHOTO);
1421                                 if (pPhotoBitmap != null)
1422                                 {
1423                                         Label* pPhotoLbl = static_cast<Label*>(GetControl(IDC_CALLER2_PHOTO_LABEL));
1424                                         if (pPhotoLbl)
1425                                         {
1426                                                 pPhotoLbl->SetBackgroundBitmap(*pPhotoBitmap);
1427                                                 pPhotoLbl->Invalidate(true);
1428                                         }
1429                                         delete pPhotoBitmap;
1430                                 }
1431                         }
1432                         //show "On Hold"
1433                         ShowTimerInfo(IDC_CALLER2_TIME_LABEL, true);
1434                 }
1435         }
1436
1437         //update JoinCall button status
1438         __pCallButtonsPanel->EnableJoinCallButton(__pCallPresentor->IsEnableJoinCallButton());
1439         Invalidate(true);
1440         AppLog("EXIT");
1441 }
1442
1443 void
1444 ActiveCallForm::ShowPersonDetails(const String& phoneNumber, const String& contactLblName, const String& nameLblName, bool isSecondCaller, AppCallInfo* pCallInfo)
1445 {
1446         result r = E_FAILURE;
1447
1448         //call individual methods to show contact number, caller name & photo
1449         ShowPhoneNumber(phoneNumber, contactLblName);
1450
1451         //fetch contact details based on phone number
1452         String* pDisplayName = pCallInfo->FetchLatestCallerNameN(phoneNumber);
1453         ShowCallerName(*pDisplayName, nameLblName);
1454
1455         Bitmap* pPhotoBitmap = pCallInfo->FetchLatestCallerPhotoN(phoneNumber);
1456         ShowCallerPhoto(pPhotoBitmap, isSecondCaller);
1457
1458         //free resources
1459         if (pDisplayName)
1460         {
1461                 delete pDisplayName;
1462                 pDisplayName = null;
1463         }
1464         if (pPhotoBitmap)
1465         {
1466                 delete pPhotoBitmap;
1467                 pPhotoBitmap = null;
1468         }
1469 }
1470
1471 void
1472 ActiveCallForm::ShowPhoneNumber(const String& phoneNumber, const String& contactLblName)
1473 {
1474         String formattedNumber = phoneNumber;
1475
1476         Label* pContactLbl = static_cast<Label*>(GetControl(contactLblName));
1477         if (pContactLbl)
1478         {
1479                 pContactLbl->SetText(formattedNumber);
1480                 pContactLbl->Invalidate(true);
1481         }
1482 }
1483
1484 void
1485 ActiveCallForm::ShowCallerName(const String& callerName, const String& nameLblName)
1486 {
1487         // show display name on name Label
1488         Label* pNameLbl = static_cast<Label*>(GetControl(nameLblName));
1489         if (pNameLbl)
1490         {
1491                 //passing an empty string to SetText fails in label,
1492                 //if previously valid text has been set
1493                 if (callerName.IsEmpty() == true && pNameLbl->GetText().IsEmpty() == false)
1494                 {
1495                         String stringToBeSet(L" ");
1496                         pNameLbl->SetText(stringToBeSet);
1497                 }
1498                 else
1499                 {
1500                         pNameLbl->SetText(callerName);
1501                 }
1502                 pNameLbl->Invalidate(true);
1503         }
1504 }
1505
1506 void
1507 ActiveCallForm::ShowCallerPhoto(Bitmap* pPhotoId, bool isSecondCaller)
1508 {
1509         //to check if default image is to be shown
1510         bool showDefaultPhoto = false;
1511         bool showSmallPhoto = false;
1512         String photoLabel("");
1513
1514         switch (__formType)
1515         {
1516         case FORMTYPE_OUTGOINGCALL:
1517         case FORMTYPE_ACTIVECALL:
1518         {
1519                 if (pPhotoId == null)
1520                 {
1521                         //show default caller image
1522                         showDefaultPhoto = true;
1523                 }
1524                 else
1525                 {
1526                         //Check the size of photo
1527                         // Now checking the condition with && but actually it should be ||
1528                         //But for now keeping it as && because _pContact->GetThubNail() returns image width as
1529                         // height 270 and width = 480 . So all images set thru gallery is show as small image
1530                         if(pPhotoId->GetHeight() <= H_SMALL_PHOTO
1531                                         && pPhotoId->GetWidth() <= W_SMALL_PHOTO)
1532                         {
1533                                 showSmallPhoto = true;
1534                         }
1535
1536                 }
1537                 photoLabel.Append(IDC_CALLER1_BIGPHOTO_LABEL);
1538         }
1539         break;
1540
1541         case FORMTYPE_MULTIPLECALLS:
1542         {
1543                 if (isSecondCaller)
1544                 {
1545                         photoLabel.Append(IDC_CALLER2_PHOTO_LABEL);
1546                 }
1547                 else
1548                 {
1549                         photoLabel.Append(IDC_CALLER1_PHOTO_LABEL);
1550                 }
1551
1552                 if (pPhotoId == null)
1553                 {
1554                         showDefaultPhoto = true;
1555                 }
1556                 else
1557                 {
1558                         if (pPhotoId->GetHeight() <= H_SMALL_PHOTO
1559                                 && pPhotoId->GetWidth() <= W_SMALL_PHOTO)
1560                         {
1561                                 //pPhotoId->Scale(Dimension(W_CONFERENCE_PHOTO,H_CONFERENCE_PHOTO));
1562                                 showSmallPhoto = true;
1563                         }
1564                 }
1565         }
1566         break;
1567
1568         default:
1569                 break;
1570         }
1571
1572         //Remove small photo label
1573         if (__pSmallPhotoLabel != null)
1574         {
1575                 RemoveControl(__pSmallPhotoLabel);
1576                 __pSmallPhotoLabel = null;
1577         }
1578
1579         //show photo - for Big Photo Id, Animated Call Image
1580         if (!showDefaultPhoto)
1581         {
1582                 if(showSmallPhoto == true)
1583                 {
1584                         ShowThumbnailImage(pPhotoId,photoLabel);
1585                 }
1586                 else
1587                 {
1588                         Label* pPhotoLbl = static_cast<Label*>(GetControl(photoLabel));
1589                         if (pPhotoLbl)
1590                         {
1591                                 Canvas* pCanvas = new (std::nothrow) Canvas;
1592                                 Rectangle canvasRect(Rectangle(0, 0, pPhotoLbl->GetBounds().width, pPhotoLbl->GetBounds().height));
1593                                 pCanvas->Construct(canvasRect);
1594                                 //draw the contact bitmap
1595                                 pCanvas->DrawBitmap(canvasRect,*pPhotoId);
1596                                 Bitmap* pNewPhotoId = new Bitmap();
1597                                 pNewPhotoId->Construct(*pCanvas, pCanvas->GetBounds());
1598                                 delete pCanvas;
1599
1600                                 pPhotoLbl->SetBackgroundBitmap(*pNewPhotoId);
1601                                 pPhotoLbl->Invalidate(true);
1602                                 delete pNewPhotoId;
1603                         }
1604                 }
1605         }
1606         else
1607         {
1608                 Bitmap* pDefaultPhoto = null;
1609                 switch (__formType)
1610                 {
1611                 case FORMTYPE_OUTGOINGCALL:
1612                 case FORMTYPE_ACTIVECALL:
1613                         pDefaultPhoto = AppUtility::GetBitmapFromResourcesN(IDB_ACTIVE_CALL_DEFAULT_ICON,W_CONFERENCE_PHOTO,W_CONFERENCE_PHOTO);
1614                         break;
1615
1616                 case FORMTYPE_MULTIPLECALLS:
1617                         pDefaultPhoto = AppUtility::GetBitmapFromResourcesN(IDB_MULTIPLE_CALL_DEFAULT_ICON,W_CONFERENCE_PHOTO,H_CONFERENCE_PHOTO);
1618                         break;
1619
1620                 case FORMTYPE_ACTIVECONFCALL:
1621                         pDefaultPhoto = AppUtility::GetBitmapFromResourcesN(IDB_CONFERENCE_BIG_BG_ICON,W_CONFERENCE_PHOTO,W_CONFERENCE_PHOTO);
1622                         break;
1623
1624                 default:
1625                         break;
1626                 }
1627                 if (pDefaultPhoto != null)
1628                 {
1629                         Label* pPhotoLbl = static_cast<Label*>(GetControl(photoLabel));
1630                         if (pPhotoLbl)
1631                         {
1632                                 pPhotoLbl->SetBackgroundBitmap(*pDefaultPhoto);
1633                                 pPhotoLbl->Invalidate(true);
1634                         }
1635                         delete pDefaultPhoto;
1636                 }
1637         }
1638 }
1639
1640 void
1641 ActiveCallForm::ShowThumbnailImage(const Bitmap* pPhotoId,String& photoLabel)
1642 {
1643         Label* pPhotoLbl = static_cast<Label*>(GetControl(photoLabel));
1644
1645         if (pPhotoLbl != null && pPhotoId != null)
1646         {
1647                 Canvas* pCanvas = new (std::nothrow) Canvas;
1648                 Bitmap* pBackground = AppUtility::GetBitmapFromResourcesN(IDB_CALL_THUMBNAIL_BACKGROUND,W_CALL_THUMBNAIL,H_CALL_THUMBNAIL);
1649                 Bitmap* pShadow = AppUtility::GetBitmapFromResourcesN(IDB_CALL_THUMBNAIL_SHADOW,W_CALL_THUMBNAIL_SHADOW,H_CALL_THUMBNAIL_SHADOW);
1650                 Rectangle canvasRect(Rectangle(0, 0, pPhotoLbl->GetBounds().width, pPhotoLbl->GetBounds().height));
1651                 pCanvas->Construct(canvasRect);
1652                 //draw the back ground
1653                 pCanvas->DrawBitmap(canvasRect,*pBackground);
1654                 //draw shadow (to be enabled after correct shadow image is provided )
1655                 //pCanvas->DrawBitmap(Rectangle((pPhotoLbl->GetBounds().width/2)-(W_CALL_THUMBNAIL_SHADOW/2),
1656                         //      (pPhotoLbl->GetBounds().height/2)-(H_CALL_THUMBNAIL_SHADOW/2),W_CALL_THUMBNAIL_SHADOW,H_CALL_THUMBNAIL_SHADOW),*pShadow);
1657                 //draw the contact bitmap
1658                 pCanvas->DrawBitmap(Rectangle((pPhotoLbl->GetBounds().width/2)-(W_SMALL_PHOTO/2),
1659                                 (pPhotoLbl->GetBounds().height/2)-(H_SMALL_PHOTO/2),W_SMALL_PHOTO,H_SMALL_PHOTO),*pPhotoId);
1660                 Bitmap* pNewPhotoId = new Bitmap();
1661                 pNewPhotoId->Construct(*pCanvas, pCanvas->GetBounds());
1662                 delete pCanvas;
1663
1664                 pPhotoLbl->SetBackgroundBitmap(*pNewPhotoId);
1665                 pPhotoLbl->Invalidate(true);
1666                 delete pNewPhotoId;
1667                 delete pBackground;
1668                 delete pShadow;
1669         }
1670
1671 }
1672
1673 void
1674 ActiveCallForm::ShowCallersPhotoThumbnail(const Bitmap& pPhotoId)
1675 {
1676         if (__pSmallPhotoLabel != null)
1677         {
1678                 RemoveControl(__pSmallPhotoLabel);
1679                 __pSmallPhotoLabel = null;
1680         }
1681         //Draw Small Photo and show on small photo label
1682         __pSmallPhotoLabel  = new (std::nothrow) Label();//static_cast<Label*>(GetControl(IDC_SMALL_PHOTO_LABEL));
1683         __pSmallPhotoLabel->Construct(Rectangle(X_PHOTO_LBL, Y_PHOTO_LBL, W_PHOTO_LBL, H_PHOTO_LBL), L"");
1684         __pSmallPhotoLabel->SetBackgroundColor(Color(0,0,0));
1685         __pSmallPhotoLabel->SetBackgroundBitmap(pPhotoId);
1686         // Add a Label to the Form
1687         AddControl(__pSmallPhotoLabel);
1688         __pSmallPhotoLabel->Invalidate(true);
1689 }
1690
1691 void
1692 ActiveCallForm::ShowTimerInfo(const String& timerLblName, bool isOnHold, long long startTime)
1693 {
1694         Label* pTimerLbl = static_cast<Label*>(GetControl(timerLblName));
1695
1696         if (__pActiveCallTimer == null)
1697         {
1698                 __pActiveCallTimer = new (std::nothrow) Tizen::Base::Runtime::Timer();
1699                 __pActiveCallTimer->Construct(*this);
1700         }
1701
1702         if (pTimerLbl != null)
1703         {
1704                 if (isOnHold == true)
1705                 {
1706                         pTimerLbl->SetText(AppUtility::GetResourceString(IDS_TIMER_ON_HOLD));
1707                         //update Hold button status
1708                         SetHoldButtonStatus(false);
1709                 }
1710                 else
1711                 {
1712                         //update Hold button status
1713                         SetHoldButtonStatus(true);
1714                         //current system time
1715                         long long currTime = 0;
1716                         SystemTime::GetTicks(currTime);
1717                         //Set call duration
1718                         TimeSpan diffSpan(abs(startTime - currTime));
1719
1720                         String activeCallTime(L"");
1721
1722                         long long hr = diffSpan.GetHours();
1723                         if (hr <= 9)
1724                         {
1725                                 activeCallTime.Append("0");
1726                         }
1727                         activeCallTime.Append(hr);
1728                         activeCallTime.Append(L":");
1729
1730                         long long min = diffSpan.GetMinutes();
1731                         if (min <= 9)
1732                         {
1733                                 activeCallTime.Append("0");
1734                         }
1735                         activeCallTime.Append(min);
1736                         activeCallTime.Append(L":");
1737
1738                         long long sec = diffSpan.GetSeconds();
1739                         if (sec <= 9)
1740                         {
1741                                 activeCallTime.Append("0");
1742                         }
1743                         activeCallTime.Append(sec);
1744
1745                         pTimerLbl->SetText(activeCallTime);
1746                         __pActiveCallTimer->StartAsRepeatable(TimeSpan::NUM_OF_TICKS_IN_SECOND);
1747                 }
1748                 pTimerLbl->Invalidate(true);
1749         }
1750 }
1751
1752 void
1753 ActiveCallForm::SetHoldButtonShowState(bool showState)
1754 {
1755         Label* pLblControl = static_cast<Label*>(GetControl(IDC_HOLD_LABEL));
1756         if(pLblControl != null)
1757         {
1758                 pLblControl->SetShowState(showState);
1759         }
1760         Button* pButtonControl = static_cast<Button*>(GetControl(IDC_HOLD_BUTTON));
1761         if(pButtonControl != null)
1762         {
1763                 pButtonControl->SetShowState(showState);
1764         }
1765 }
1766
1767 void
1768 ActiveCallForm::SetShowStateOnKeypad(bool showState)
1769 {
1770         Label* pLblControl = static_cast<Label*>(GetControl(IDC_CALLER1_LABEL));
1771         pLblControl->SetShowState(showState);
1772         pLblControl = static_cast<Label*>(GetControl(IDC_BACKGROUND_LABEL));
1773         pLblControl->SetShowState(showState);
1774         pLblControl = static_cast<Label*>(GetControl(IDC_CALLER1_TIME_LABEL));
1775         pLblControl->SetShowState(showState);
1776         if (__pSmallPhotoLabel != null)
1777         {
1778                 __pSmallPhotoLabel->SetShowState(showState);
1779         }
1780
1781         switch (__formType)
1782         {
1783         case FORMTYPE_ACTIVECALL:
1784         {
1785                 pLblControl = static_cast<Label*>(GetControl(IDC_NUMBER1_LABEL));
1786                 pLblControl->SetShowState(showState);
1787                 pLblControl = static_cast<Label*>(GetControl(IDC_VOICE_CALL_ICON_LABEL));
1788                 pLblControl->SetShowState(showState);
1789                 SetHoldButtonShowState(showState);
1790         }
1791         break;
1792
1793         case FORMTYPE_MULTIPLECALLS:
1794         {
1795                 pLblControl = static_cast<Label*>(GetControl(IDC_NUMBER1_LABEL));
1796                 pLblControl->SetShowState(showState);
1797                 pLblControl = static_cast<Label*>(GetControl(IDC_CALLER2_LABEL));
1798                 pLblControl->SetShowState(showState);
1799                 pLblControl = static_cast<Label*>(GetControl(IDC_NUMBER2_LABEL));
1800                 pLblControl->SetShowState(showState);
1801                 pLblControl = static_cast<Label*>(GetControl(IDC_CALLER2_TIME_LABEL));
1802                 pLblControl->SetShowState(showState);
1803                 pLblControl = static_cast<Label*>(GetControl(IDC_SWAP_LABEL));
1804                 pLblControl->SetShowState(showState);
1805                 pLblControl = static_cast<Label*>(GetControl(IDC_BACKGROUND_LABEL2));
1806                 pLblControl->SetShowState(showState);
1807                 if (__pActiveCallInfo != null && __pActiveCallInfo->IsConferenceCall() == false)
1808                 {
1809                         pLblControl = static_cast<Label*>(GetControl(IDC_VOICE_CALL_ICON_LABEL));
1810                         pLblControl->SetShowState(showState);
1811                 }
1812                 else
1813                 {
1814                         Button* pButtonControl = static_cast<Button*>(GetControl(IDC_CONF_CALL_MORE_BUTTON));
1815                         pButtonControl->SetShowState(showState);
1816                 }
1817                 Button* pButtonControl = static_cast<Button*>(GetControl(IDC_SWAP_BUTTON));
1818                 pButtonControl->SetShowState(showState);
1819         }
1820         break;
1821
1822         case FORMTYPE_ACTIVECONFCALL:
1823         {
1824                 pLblControl = static_cast<Label*>(GetControl(IDC_PARTICIPANTS_LABEL));
1825                 pLblControl->SetShowState(showState);
1826                 SetHoldButtonShowState(showState);
1827                 Button* pButtonControl = static_cast<Button*>(GetControl(IDC_CONF_CALL_MORE_BUTTON));
1828                 pButtonControl->SetShowState(showState);
1829         }
1830         break;
1831
1832         default:
1833                 break;
1834         }
1835 }
1836
1837 void
1838 ActiveCallForm::OnTimerExpired(Tizen::Base::Runtime::Timer& timer)
1839 {
1840         //Call default implementation of "Object.Equals()"
1841         //returns true, if they are pointing to same address.
1842         if (__pActiveCallTimer->Equals(timer))
1843         {
1844                 Label* pTimerLbl = static_cast<Label*>(GetControl(IDC_CALLER1_TIME_LABEL));
1845                 if (pTimerLbl)
1846                 {
1847                         String activeCallTime = pTimerLbl->GetText();
1848                         // Create a StringTokenizer instance
1849                         StringTokenizer strTokens(activeCallTime, L":");
1850
1851                         int count = strTokens.GetTokenCount(); // count == 3
1852                         String token;
1853                         int sec = 0;
1854                         int min = 0;
1855                         int hr = 0;
1856                         for (int index = 0; index < count; index++)
1857                         {
1858                                 switch (index)
1859                                 {
1860                                 case 0:
1861                                         strTokens.GetNextToken(token);
1862                                         Integer::Parse(token, hr);
1863                                         break;
1864
1865                                 case 1:
1866                                         strTokens.GetNextToken(token);
1867                                         Integer::Parse(token, min);
1868                                         break;
1869
1870                                 case 2:
1871                                         strTokens.GetNextToken(token);
1872                                         Integer::Parse(token, sec);
1873                                         break;
1874                                 }
1875                         }
1876                         //update all values
1877                         sec = sec + 1;
1878                         if (sec == IDI_MAX_SECONDS)
1879                         {
1880                                 sec = 0;
1881                                 min = min + 1;
1882                         }
1883                         if (min == IDI_MAX_MINS)
1884                         {
1885                                 min = 0;
1886                                 hr = hr + 1;
1887                         }
1888
1889                         //replace string
1890                         activeCallTime.Clear();
1891                         if (hr <= 9)
1892                         {
1893                                 activeCallTime.Append("0");
1894                         }
1895                         activeCallTime.Append(hr);
1896                         activeCallTime.Append(":");
1897                         if (min <= 9)
1898                         {
1899                                 activeCallTime.Append("0");
1900                         }
1901                         activeCallTime.Append(min);
1902                         activeCallTime.Append(":");
1903                         if (sec <= 9)
1904                         {
1905                                 activeCallTime.Append("0");
1906                         }
1907                         activeCallTime.Append(sec);
1908                         //update timer label
1909                         pTimerLbl->SetText(activeCallTime);
1910                         pTimerLbl->Invalidate(true);
1911                 }
1912         }
1913 }
1914
1915 ///////////////////////////////////////////////////////////
1916 ///////////     Options Menu List Functionality   /////////
1917 ///////////////////////////////////////////////////////////
1918 void
1919 ActiveCallForm::OnListViewContextItemStateChanged(ListView& listView, int index, int elementId, ListContextItemStatus state)
1920 {
1921 }
1922
1923 void
1924 ActiveCallForm::OnListViewItemStateChanged(ListView& listView, int index, int elementId, ListItemStatus status)
1925 {
1926         //Goto conference call list form
1927         SceneManager* pSceneManager = SceneManager::GetInstance();
1928         pSceneManager->GoForward(ForwardSceneTransition(IDSCN_SCENE_CONFCALLLIST, SCENE_TRANSITION_ANIMATION_TYPE_NONE,
1929                          SCENE_HISTORY_OPTION_NO_HISTORY, SCENE_DESTROY_OPTION_KEEP), null);
1930 }
1931
1932 void
1933 ActiveCallForm::OnListViewItemSwept(ListView& listView, int index, SweepDirection direction)
1934 {
1935 }
1936
1937 void
1938 ActiveCallForm::OnListViewItemLongPressed(ListView& listView, int index, int elementId, bool& invokeListViewItemCallback)
1939 {
1940 }
1941
1942 int
1943 ActiveCallForm::GetItemCount(void)
1944 {
1945         return IDI_MOREOPTIONS_LIST_ITEMS;
1946 }
1947
1948 ListItemBase*
1949 ActiveCallForm::CreateItem(int index, int itemWidth)
1950 {
1951         //create 1st Menu option
1952         CustomItem* pItem = new (std::nothrow) CustomItem();
1953         pItem->Construct(IDI_OPTIONMENU_DIMEN, LIST_ANNEX_STYLE_NORMAL);
1954
1955         //Set background 9-patch bitmap to option menu
1956         Bitmap* pBgBmp = AppUtility::GetBitmapFromResourcesN(IDB_POPUP_BG_ICON);
1957         if (pBgBmp != null && pBgBmp->IsNinePatchedBitmap())
1958         {
1959                 Canvas bgCanvas;
1960                 bgCanvas.Construct(Rectangle(IDI_OPTIONMENU_POS, IDI_OPTIONMENU_DIMEN));
1961                 bgCanvas.DrawNinePatchedBitmap(bgCanvas.GetBounds(), *pBgBmp);
1962         }
1963         else
1964         {
1965                 pItem->SetBackgroundColor(LIST_ITEM_DRAWING_STATUS_NORMAL, Color(40, 45, 48));
1966         }
1967         delete pBgBmp;
1968         pBgBmp = null;
1969
1970         //Set bitmap to option menu
1971         Bitmap* pNormalConfCallBmp = AppUtility::GetBitmapFromResourcesN(IDB_MORE_MANAGE_CONFERENCE_ICON ,
1972                                                                                                                                          W_MGR_CONFCALL_BITMAP, H_MGR_CONFCALL_BITMAP);
1973         pItem->AddElement(Rectangle(16, 17, W_MGR_CONFCALL_BITMAP, H_MGR_CONFCALL_BITMAP), 1, *pNormalConfCallBmp, null, null);
1974         // Deallocate bitmaps
1975         delete pNormalConfCallBmp;
1976         pNormalConfCallBmp = null;
1977
1978         //Set text to menu option
1979         String confCallName = AppUtility::GetResourceString(IDS_MGR_CONF_CALL_LIST_STR);
1980
1981         TextElement* pTextElement = new (std::nothrow) TextElement();
1982         pTextElement->Construct(confCallName);
1983         pTextElement->SetTextColor(COLOR_POPUP_TEXT);
1984         //create font
1985         Font font;
1986         font.Construct(FONT_STYLE_PLAIN, IDI_POPUP_TEXT_SIZE);
1987         pTextElement->SetFont(font);
1988         //construct Enriched text
1989         EnrichedText* pEnrichedText = new (std::nothrow) EnrichedText();
1990         FloatDimension textDimension;
1991         font.GetTextExtent(confCallName, confCallName.GetLength(), textDimension);
1992         textDimension.height = textDimension.height + font.GetDescender();
1993         pEnrichedText->Construct(textDimension);
1994         //add text element to enriched text
1995         pEnrichedText->Add(*pTextElement);
1996
1997         //Add Enriched text to pItem
1998         FloatPoint textPos(((2 * IDI_OPTIONMENU_ITEM_SPACING) + W_MGR_CONFCALL_BITMAP), ((IDI_OPTIONMENU_DIMEN.height - textDimension.height) / 2));
1999         pItem->AddElement(FloatRectangle(textPos, textDimension), 2, *pEnrichedText);
2000         // Cleans up
2001         pEnrichedText->RemoveAll(true);
2002         delete pEnrichedText;
2003         return pItem;
2004 }
2005
2006 bool
2007 ActiveCallForm::DeleteItem(int index, ListItemBase* pItem, int itemWidth)
2008 {
2009         delete pItem;
2010         return true;
2011 }
2012
2013 void
2014 ActiveCallForm::OnForeground(void)
2015 {
2016         AppLogDebug("Enter");
2017         __pCallPresentor->OnAppForeground();
2018 }