9b8279941e2f6777f6e0305df5321d6c2d00920a
[apps/osp/Call.git] / src / CallConfCallerListForm.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 /**
18  * @file    CallConfCallerListForm.cpp
19  * @brief       Conference caller list form
20  */
21 #include <FSystem.h>
22 #include "CallConfCallerListForm.h"
23 #include "CallAppUtility.h"
24 #include "CallPresentationModel.h"
25 #include "CallSceneRegister.h"
26
27 using namespace Tizen::App;
28 using namespace Tizen::Base;
29 using namespace Tizen::Base::Collection;
30 using namespace Tizen::Base::Runtime;
31 using namespace Tizen::Base::Utility;
32 using namespace Tizen::Graphics;
33 using namespace Tizen::System;
34 using namespace Tizen::Ui;
35 using namespace Tizen::Ui::Controls;
36 using namespace Tizen::Ui::Scenes;
37
38 //Constants
39 const int W_HOLD_BITMAP = 78;
40 const int H_HOLD_BITMAP = 78;
41 const int W_BACK_BITMAP = 56;
42 const int H_BACK_BITMAP = 56;
43 const int X_BACK_BITMAP = 8;
44 const int Y_BACK_BITMAP = 8;
45 const int W_SPLIT_BITMAP = 74;
46 const int H_SPLIT_BITMAP = 74;
47 const int W_END_BITMAP = 80;
48 const int H_END_BITMAP = 74;
49 const int IDI_MAX_SECONDS = 60;
50 const int IDI_MAX_MINS = 60;
51 const int LIST_ITEM_HEIGHT = 112;
52 const int X_SPLIT_BUTTON_MARGIN = 26;
53 const int Y_SPLIT_BUTTON_MARGIN = 19;
54 const int X_END_BUTTON_PADDING = 26;
55 const int X_CALLER_LABEL = 116;
56 const int Y_CALLER_LABEL = 0;
57 const int W_CALLER_LABEL = 488;
58 const int H_CALLER_LABEL = 112;
59
60
61 static const wchar_t* IDL_CONFCALL_LIST_FORM = L"IDL_CONFCALL_LIST_FORM";
62 static const wchar_t* IDC_CALL_TIME_LABEL = L"IDC_CALL_TIME_LABEL";
63 static const wchar_t* IDB_SPLIT_NORMAL_BUTTON_ICON = L"C01-1_conference_split.png";
64 static const wchar_t* IDB_SPLIT_PRESS_BUTTON_ICON = L"C01-1_conference_split_press.png";
65 static const wchar_t* IDB_END_NORMAL_BUTTON_ICON = L"C01-1_conference_end.png";
66 static const wchar_t* IDB_END_PRESS_BUTTON_ICON = L"C01-1_conference_end_press.png";
67 static const wchar_t* IDC_END_CONFCALL_BUTTON = L"IDC_END_CONFCALL_BUTTON";
68 static const wchar_t* IDC_HOLD_CONFCALL_BUTTON = L"IDC_HOLD_CONFCALL_BUTTON";
69 static const wchar_t* IDC_CALLER1_PANEL = L"IDC_CALLER1_PANEL";
70 static const wchar_t* IDC__LINE_LABEL1 = L"IDC__LINE_LABEL1";
71 static const wchar_t* IDC_CALLER2_PANEL = L"IDC_CALLER2_PANEL";
72 static const wchar_t* IDC__LINE_LABEL2 = L"IDC__LINE_LABEL2";
73 static const wchar_t* IDC_CALLER3_PANEL = L"IDC_CALLER3_PANEL";
74 static const wchar_t* IDC__LINE_LABEL3 = L"IDC__LINE_LABEL3";
75 static const wchar_t* IDC_CALLER4_PANEL = L"IDC_CALLER4_PANEL";
76 static const wchar_t* IDC__LINE_LABEL4 = L"IDC__LINE_LABEL4";
77 static const wchar_t* IDC_CALLER5_PANEL = L"IDC_CALLER5_PANEL";
78 static const wchar_t* IDC__LINE_LABEL5 = L"IDC__LINE_LABEL5";
79 static const wchar_t* IDC_END_CALLER1 = L"IDC_END_CALLER1";
80 static const wchar_t* IDC_SPLIT_CALLER1 = L"IDC_SPLIT_CALLER1";
81 static const wchar_t* IDC_CALLER1_LABEL = L"IDC_CALLER1_LABEL";
82 static const wchar_t* IDC_END_CALLER2 = L"IDC_END_CALLER2";
83 static const wchar_t* IDC_SPLIT_CALLER2 = L"IDC_SPLIT_CALLER2";
84 static const wchar_t* IDC_CALLER2_LABEL = L"IDC_CALLER2_LABEL";
85 static const wchar_t* IDC_END_CALLER3 = L"IDC_END_CALLER3";
86 static const wchar_t* IDC_SPLIT_CALLER3 = L"IDC_SPLIT_CALLER3";
87 static const wchar_t* IDC_CALLER3_LABEL = L"IDC_CALLER3_LABEL";
88 static const wchar_t* IDC_END_CALLER4 = L"IDC_END_CALLER4";
89 static const wchar_t* IDC_SPLIT_CALLER4 = L"IDC_SPLIT_CALLER4";
90 static const wchar_t* IDC_CALLER4_LABEL = L"IDC_CALLER4_LABEL";
91 static const wchar_t* IDC_END_CALLER5 = L"IDC_END_CALLER5";
92 static const wchar_t* IDC_SPLIT_CALLER5 = L"IDC_SPLIT_CALLER5";
93 static const wchar_t* IDC_CALLER5_LABEL = L"IDC_CALLER5_LABEL";
94 static const wchar_t* IDC_CONF_CALL_LIST_TABLEVIEW = L"IDC_CONF_CALL_LIST_TABLEVIEW";
95
96 //color
97 const unsigned int COLOR_END_CALL_BG = Color32<180, 60, 60>::Value;
98 const unsigned int COLOR_END_CALL_BG_PRESS = Color32<61, 153, 208>::Value;
99 const unsigned int COLOR_SPLIT_CALL_BG = Color32<129, 140, 148>::Value;
100 const unsigned int COLOR_SPLIT_CALL_BG_PRESS = Color32<63, 155, 210>::Value;
101 ConfCallerListForm::ConfCallerListForm(void)
102 : BaseForm(FORMTYPE_CONFCALLLIST)
103 {
104         __pConfCallInfo = null;
105         __pConfCallTimer = null;
106 }
107
108 ConfCallerListForm::~ConfCallerListForm(void)
109 {
110         if (__pConfCallTimer != null)
111         {
112                 __pConfCallTimer->Cancel();
113                 delete __pConfCallTimer;
114         }
115 }
116
117 void
118 ConfCallerListForm::Initialize(void)
119 {
120         Construct(IDL_CONFCALL_LIST_FORM);
121 }
122
123 result
124 ConfCallerListForm::OnInitializing(void)
125 {
126         result r = E_SUCCESS;
127         //Add action listener to buttons
128         AddActionListener(IDC_END_CONFCALL_BUTTON, IDA_END_CONF_CALL);
129         AddActionListener(IDC_HOLD_CONFCALL_BUTTON, IDA_HOLD_CONF_CALL);
130
131         Footer* pFooter = GetFooter();
132         if(pFooter != null)
133         {
134                 SetFormBackEventListener(this);
135                 pFooter->SetBackButton();
136         }
137
138         CreateTableView();
139         __pCallPresentor = CallPresentationModel::GetInstance();
140         return r;
141 }
142
143 void
144 ConfCallerListForm::CreateTableView(void)
145 {
146         __pList = static_cast <TableView*> (GetControl(IDC_CONF_CALL_LIST_TABLEVIEW));
147         __pList->SetItemProvider(this);
148         AddControl(*__pList);
149 }
150
151 void
152 ConfCallerListForm::AddActionListener(const String& keyName, CommandIds cmdId)
153 {
154         Button* pButtonKeypad = static_cast<Button*>(GetControl(keyName));
155         if (pButtonKeypad != null)
156         {
157                 pButtonKeypad->SetActionId(cmdId);
158                 pButtonKeypad->AddActionEventListener(*this);
159         }
160 }
161
162 result
163 ConfCallerListForm::OnTerminating(void)
164 {
165         result r = E_SUCCESS;
166
167         if (__pCallPresentor != null)
168         {
169                 __pCallPresentor = null;
170         }
171
172         if (__pConfCallInfo != null)
173         {
174                 delete __pConfCallInfo;
175                 __pConfCallInfo = null;
176         }
177
178         RemoveAllControls();
179         return r;
180 }
181
182 void
183 ConfCallerListForm::OnActionPerformed(const Control& source, int actionId)
184 {
185         SceneManager* pSceneManager = SceneManager::GetInstance();
186         AppAssert(pSceneManager);
187
188         switch (actionId)
189         {
190         case IDA_END_CONF_CALL:
191         {
192                 bool success = __pCallPresentor->EndConferenceCall();
193                 if (success == true)
194                 {
195                         delete __pConfCallInfo;
196                         __pConfCallInfo = null;
197                 }
198         }
199         break;
200
201         case IDA_HOLD_CONF_CALL:
202         {
203                 // User has pressed end conference call and we are waiting for TAPI response
204                 if(__pConfCallInfo == null)
205                 {
206                         return;
207                 }
208                 bool success = true;
209                 bool isCallOnHold = __pConfCallInfo->IsOnHold();
210                 if (isCallOnHold == false)
211                 {
212                         success = __pCallPresentor->HoldConferenceCall();
213                 }
214                 else
215                 {
216                         success = __pCallPresentor->ActivateConferenceCall();
217                 }
218
219                 //Check if request to Hold / UnHold call is successful.
220                 if(success == true)
221                 {
222                         //If success, then invert the Hold status in conference call
223                         isCallOnHold = !(isCallOnHold);
224                         __pConfCallInfo->SetOnHold(isCallOnHold);
225                         //update panels and Hold button status
226                         ActivatePanels();
227                         SetHoldButtonStatus(isCallOnHold);
228                 }
229         }
230         break;
231
232         case IDA_BACK_EVENT:
233         {
234                 ArrayListT<CallInfo>* pCallList  = static_cast<ArrayListT<CallInfo>*>(__pCallPresentor->GetCallListN());
235                 int noOfCalls = pCallList->GetCount();
236
237                 //Ownership - To be deleted in 'OnSceneActivatedN' of next form
238                 ArrayList* pCallInfoList = new (std::nothrow) ArrayList(SingleObjectDeleter);
239                 pCallInfoList->Construct(noOfCalls);
240
241                 for (int index = 0; index < noOfCalls; index++)
242                 {
243                         //fetch call info and add to list
244                         CallInfo callInfo;
245                         result r = pCallList->GetAt(index, callInfo);
246                         if (r == E_SUCCESS)
247                         {
248                                 //copy call information to new instance
249                                 CallInfo* pCaller = new (std::nothrow) CallInfo();
250                                 *pCaller = callInfo;
251                                 pCallInfoList->Add(pCaller);
252                         }
253                 }
254
255                 if (noOfCalls == 1)
256                 {
257                         //single active call - goto active call form
258                         pSceneManager->GoForward(ForwardSceneTransition(IDSCN_SCENE_CONFCALL), pCallInfoList);
259                 }
260                 else
261                 {
262                         //goto multiple active call form
263                         pSceneManager->GoForward(ForwardSceneTransition(IDSCN_SCENE_MULTIPLEACTIVECALL), pCallInfoList);
264                 }
265                 pCallList->RemoveAll();
266                 delete pCallList;
267         }
268         break;
269
270         case IDA_SPLIT_CALLER1:
271         case IDA_SPLIT_CALLER2:
272         case IDA_SPLIT_CALLER3:
273         case IDA_SPLIT_CALLER4:
274         case IDA_SPLIT_CALLER5:
275         {
276                 // User has pressed end conference call and we are waiting for TAPI response
277                 if(__pConfCallInfo == null)
278                 {
279                         break;
280                 }
281                 __pCallPresentor->SplitFromConference(SplitConfCallerCmdIds(actionId),__pConfCallInfo->GetCallerList());
282         }
283         break;
284
285         case IDA_END_CALLER1:
286         case IDA_END_CALLER2:
287         case IDA_END_CALLER3:
288         case IDA_END_CALLER4:
289         case IDA_END_CALLER5:
290         {
291                 // User has pressed end conference call and we are waiting for TAPI response
292                 if(__pConfCallInfo == null)
293                 {
294                         break;
295                 }
296                 __pCallPresentor->EndCallFromConference(EndConfCallerCmdIds(actionId),__pConfCallInfo->GetCallerList());
297         }
298         break;
299
300         default:
301                 break;
302         }
303 }
304
305 void
306 ConfCallerListForm::OnSceneActivatedN(const SceneId& previousSceneId, const SceneId& currentSceneId, IList* pArgs)
307 {
308         //set itself as listener
309         __pCallPresentor->SetTelEventListener(this);
310
311         AddOrientationEventListener(*this);
312
313         //DisableAllControls();
314         if (__pConfCallInfo != null)
315         {
316                 delete __pConfCallInfo;
317                 __pConfCallInfo = null;
318         }
319         //show 1st caller's info.
320         //Fetch Conference call info from telephony manager
321         __pConfCallInfo = __pCallPresentor->GetConferenceCallInfoN();
322
323         //show active call timer
324         ShowTimerInfo(IDC_CALL_TIME_LABEL, __pConfCallInfo->GetCallConnectTime());
325
326         //Set the correct bitmap to the "hold" button based on the current state of the call
327         SetHoldButtonStatus(__pConfCallInfo->IsOnHold());
328         //disable Hold Button, if 2 active calls are present,Else enable it.
329         Button* pButtonHold = static_cast<Button*>(GetControl(IDC_HOLD_CONFCALL_BUTTON));
330         if(pButtonHold != null)
331         {
332                 if (__pCallPresentor->GetCurrentCallCount() == IDI_MAX_ACTIVE_CALLS)
333                 {
334                         pButtonHold->SetShowState(false);
335                 }
336                 else
337                 {
338                         pButtonHold->SetShowState(true);
339                 }
340                 pButtonHold->Invalidate(true);
341         }
342
343         __pList->UpdateTableView();
344         //ActivatePanels();
345 }
346
347 void
348 ConfCallerListForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
349 {
350         RemoveOrientationEventListener(*this);
351         if (__pConfCallInfo != null)
352         {
353                 delete __pConfCallInfo;
354                 __pConfCallInfo = null;
355         }
356         if (__pConfCallTimer != null)
357         {
358                 __pConfCallTimer->Cancel();
359                 delete __pConfCallTimer;
360                 __pConfCallTimer = null;
361         }
362 }
363
364 result
365 ConfCallerListForm::OnDraw(void)
366 {
367         return E_SUCCESS;
368 }
369
370 void
371 ConfCallerListForm::SetHoldButtonStatus(bool isCallOnHold)
372 {
373         Button* pButtonHold = static_cast<Button*>(GetControl(IDC_HOLD_CONFCALL_BUTTON));
374         if(pButtonHold != null)
375         {
376                 Bitmap* pNormalBitmapToBeDrawn = null;
377                 Bitmap* pPressBitmapToBeDrawn = null;
378
379                 if (isCallOnHold == true)
380                 {
381                         pNormalBitmapToBeDrawn = AppUtility::GetBitmapFromResourcesN(IDB_UNHOLD_NORMAL_BUTTON_ICON,
382                                         W_HOLD_BITMAP, W_HOLD_BITMAP);
383                         pPressBitmapToBeDrawn = AppUtility::GetBitmapFromResourcesN(IDB_UNHOLD_PRESS_BUTTON_ICON,
384                                         W_HOLD_BITMAP, W_HOLD_BITMAP);
385                 }
386                 else
387                 {
388                         pNormalBitmapToBeDrawn = AppUtility::GetBitmapFromResourcesN(IDB_HOLD_NORMAL_BUTTON_ICON,
389                                         W_HOLD_BITMAP, W_HOLD_BITMAP);
390                         pPressBitmapToBeDrawn = AppUtility::GetBitmapFromResourcesN(IDB_HOLD_PRESS_BUTTON_ICON,
391                                         W_HOLD_BITMAP, W_HOLD_BITMAP);
392                 }
393
394                 if (pNormalBitmapToBeDrawn)
395                 {
396                         pButtonHold->SetNormalBitmap(Point(0, 0), *pNormalBitmapToBeDrawn);
397                 }
398                 if (pPressBitmapToBeDrawn)
399                 {
400                         pButtonHold->SetPressedBitmap(Point(0, 0), *pPressBitmapToBeDrawn);
401                 }
402
403                 pButtonHold->Invalidate(true);
404                 delete pNormalBitmapToBeDrawn;
405                 pNormalBitmapToBeDrawn = null;
406                 delete pPressBitmapToBeDrawn;
407                 pPressBitmapToBeDrawn = null;
408         }
409 }
410
411 void
412 ConfCallerListForm::HandleParticipantsChanged(void)
413 {
414         CallInfo* pCallInfo = __pCallPresentor->GetConferenceCallInfoN();
415         if (pCallInfo == null)
416         {
417                 return;
418         }
419         if (__pConfCallInfo != null)
420         {
421                 delete __pConfCallInfo;
422                 __pConfCallInfo = null;
423         }
424         __pConfCallInfo = new (std::nothrow) CallInfo();
425         *__pConfCallInfo = *pCallInfo;
426         //Disable all key panels and redraw with new caller list
427         //DisableAllControls();
428         //ActivatePanels();
429         __pList->UpdateTableView();
430 }
431
432 void
433 ConfCallerListForm::DisableAllControls(void)
434 {
435         Panel* pKeysPanel = static_cast<Panel*>(GetControl(IDC_CALLER1_PANEL));
436         if (pKeysPanel != null)
437         {
438                 pKeysPanel->SetShowState(false);
439                 Label* pLineLabel1 = static_cast<Label*>(GetControl(IDC__LINE_LABEL1));
440                 pLineLabel1->SetShowState(false);
441                 pKeysPanel = null;
442         }
443         pKeysPanel = static_cast<Panel*>(GetControl(IDC_CALLER2_PANEL));
444         if (pKeysPanel != null)
445         {
446                 pKeysPanel->SetShowState(false);
447                 Label* pLineLabel1 = static_cast<Label*>(GetControl(IDC__LINE_LABEL2));
448                 pLineLabel1->SetShowState(false);
449                 pKeysPanel = null;
450         }
451         pKeysPanel = static_cast<Panel*>(GetControl(IDC_CALLER3_PANEL));
452         if (pKeysPanel != null)
453         {
454                 pKeysPanel->SetShowState(false);
455                 Label* pLineLabel1 = static_cast<Label*>(GetControl(IDC__LINE_LABEL3));
456                 pLineLabel1->SetShowState(false);
457                 pKeysPanel = null;
458         }
459         pKeysPanel = static_cast<Panel*>(GetControl(IDC_CALLER4_PANEL));
460         if (pKeysPanel != null)
461         {
462                 pKeysPanel->SetShowState(false);
463                 Label* pLineLabel1 = static_cast<Label*>(GetControl(IDC__LINE_LABEL4));
464                 pLineLabel1->SetShowState(false);
465                 pKeysPanel = null;
466         }
467         pKeysPanel = static_cast<Panel*>(GetControl(IDC_CALLER5_PANEL));
468         if (pKeysPanel != null)
469         {
470                 pKeysPanel->SetShowState(false);
471                 Label* pLineLabel1 = static_cast<Label*>(GetControl(IDC__LINE_LABEL5));
472                 pLineLabel1->SetShowState(false);
473                 pKeysPanel = null;
474         }
475 }
476
477 void
478 ConfCallerListForm::ActivatePanels(void)
479 {
480         IListT<CallInfo>* pCallList = __pConfCallInfo->GetCallerList();
481         int confCallCount = pCallList->GetCount();
482
483         for (int index = 0; index < confCallCount; index++)
484         {
485                 CallInfo callInfo;
486                 String pContactNo;
487                 result r = pCallList->GetAt(index, callInfo);
488                 if(callInfo.GetContactNumber().IsEmpty() == false)
489                 {
490                         pContactNo.Append(callInfo.GetContactNumber());
491                 }
492                 else
493                 {
494                         pContactNo.Append(AppUtility::GetResourceString(IDS_NUMBER_UNKNOWN));
495                 }
496
497                 //fetch contact details based on phone number
498                 String* pDisplayName = callInfo.FetchCallerNameN();
499
500                 if ((pDisplayName->IsEmpty()) || r != E_SUCCESS)
501                 {
502                         pDisplayName->Append(pContactNo);
503                 }
504
505                 switch (index)
506                 {
507                 case 0:
508                 {
509                         ActivatePanelAndAddActionListener(IDC_CALLER1_PANEL,IDC__LINE_LABEL1,IDC_SPLIT_CALLER1,IDC_END_CALLER1
510                                         ,IDC_CALLER1_LABEL,IDA_SPLIT_CALLER1,IDA_END_CALLER1,*pDisplayName);
511                 }
512                 break;
513
514                 case 1:
515                 {
516                         ActivatePanelAndAddActionListener(IDC_CALLER2_PANEL,IDC__LINE_LABEL2,IDC_SPLIT_CALLER2,IDC_END_CALLER2
517                                         ,IDC_CALLER2_LABEL,IDA_SPLIT_CALLER2,IDA_END_CALLER2,*pDisplayName);
518                 }
519                 break;
520
521                 case 2:
522                 {
523                         ActivatePanelAndAddActionListener(IDC_CALLER3_PANEL,IDC__LINE_LABEL3,IDC_SPLIT_CALLER3,IDC_END_CALLER3
524                                         ,IDC_CALLER3_LABEL,IDA_SPLIT_CALLER3,IDA_END_CALLER3,*pDisplayName);
525                 }
526                 break;
527
528                 case 3:
529                 {
530                         ActivatePanelAndAddActionListener(IDC_CALLER4_PANEL,IDC__LINE_LABEL4,IDC_SPLIT_CALLER4,IDC_END_CALLER4
531                                         ,IDC_CALLER4_LABEL,IDA_SPLIT_CALLER4,IDA_END_CALLER4,*pDisplayName);
532                 }
533                 break;
534
535                 case 4:
536                 {
537                         ActivatePanelAndAddActionListener(IDC_CALLER5_PANEL,IDC__LINE_LABEL5,IDC_SPLIT_CALLER5,IDC_END_CALLER5
538                                         ,IDC_CALLER5_LABEL,IDA_SPLIT_CALLER5,IDA_END_CALLER5,*pDisplayName);
539                 }
540                 break;
541
542                 default:
543                         break;
544                 }
545
546                 delete pDisplayName;
547                 pDisplayName = null;
548         }
549 }
550
551 void
552 ConfCallerListForm::ActivatePanelAndAddActionListener( const String& panelName, const String& lineLabelName, const String& splitButtonName,
553                 const String& endButtonName, const String& callerLabelName, SplitConfCallerCmdIds splitCmdId,
554                 EndConfCallerCmdIds EndCmdId, const String& displayName)
555 {
556         Bitmap* pNormalSplitBitmap = null;
557         Bitmap* pPressSplitBitmap = null;
558
559
560         Bitmap* pNormalEndBitmap = null;
561         Bitmap* pPressEndBitmap = null;
562
563
564
565         pNormalSplitBitmap = AppUtility::GetBitmapFromResourcesN(IDB_SPLIT_NORMAL_BUTTON_ICON,
566                         W_SPLIT_BITMAP, H_SPLIT_BITMAP);
567         pPressSplitBitmap = AppUtility::GetBitmapFromResourcesN(IDB_SPLIT_PRESS_BUTTON_ICON,
568                         W_SPLIT_BITMAP, H_SPLIT_BITMAP);
569         pNormalEndBitmap = AppUtility::GetBitmapFromResourcesN(IDB_END_NORMAL_BUTTON_ICON,
570                         W_END_BITMAP, H_END_BITMAP);
571         pPressEndBitmap = AppUtility::GetBitmapFromResourcesN(IDB_END_PRESS_BUTTON_ICON,
572                         W_END_BITMAP, H_END_BITMAP);
573
574         bool isSplitAllowed = true;
575         if ((__pCallPresentor->IsSplitAllowed() == false) || (__pConfCallInfo->IsOnHold() == true))
576         {
577                 isSplitAllowed = false;
578         }
579
580         Panel* pKeysPanel = static_cast<Panel*>(GetControl(panelName));
581         if (pKeysPanel != null)
582         {
583                 Button* pButtonSplit = static_cast<Button*>(pKeysPanel->GetControl(splitButtonName));
584                 if (pButtonSplit != null)
585                 {
586                         pButtonSplit->SetActionId(splitCmdId);
587                         pButtonSplit->AddActionEventListener(*this);
588                         pButtonSplit->SetNormalBitmap(Point(0, 0), *pNormalSplitBitmap);
589                         pButtonSplit->SetPressedBitmap(Point(0, 0), *pPressSplitBitmap);
590                 }
591                 Button* pButtonEnd = static_cast<Button*>(pKeysPanel->GetControl(endButtonName));
592                 if (pButtonEnd != null)
593                 {
594                         pButtonEnd->SetActionId(EndCmdId);
595                         pButtonEnd->AddActionEventListener(*this);
596                         pButtonEnd->SetNormalBitmap(Point(0, 0), *pNormalEndBitmap);
597                         pButtonEnd->SetPressedBitmap(Point(0, 0), *pPressEndBitmap);
598                 }
599                 Label* pNameLabel = static_cast<Label*>(pKeysPanel->GetControl(callerLabelName));
600                 if (pButtonSplit != null)
601                 {
602                         if (isSplitAllowed == false)
603                         {
604                                 pButtonSplit->SetShowState(false);
605                                 pNameLabel->SetBounds(pButtonSplit->GetBounds().x, pNameLabel->GetBounds().y,
606                                                 pNameLabel->GetBounds().width, pNameLabel->GetBounds().height);
607                         }
608                         else
609                         {
610                                 pButtonSplit->SetShowState(true);
611                                 pNameLabel->SetBounds((pButtonSplit->GetBounds().x + pButtonSplit->GetBounds().width), pNameLabel->GetBounds().y,
612                                                 pNameLabel->GetBounds().width, pNameLabel->GetBounds().height);
613                         }
614                 }
615                 pNameLabel->SetText(displayName);
616
617                 pKeysPanel->SetShowState(true);
618                 Label* pLineLabel1 = static_cast<Label*>(GetControl(lineLabelName));
619                 pLineLabel1->SetShowState(true);
620
621                 pKeysPanel->Draw(true);
622                 pKeysPanel->Show();
623         }
624
625         delete pNormalEndBitmap;
626         pNormalEndBitmap = null;
627         delete pPressEndBitmap;
628         pPressEndBitmap = null;
629         delete pNormalSplitBitmap;
630         pNormalSplitBitmap = null;
631         delete pPressSplitBitmap;
632         pPressSplitBitmap = null;
633 }
634
635 void
636 ConfCallerListForm::ShowTimerInfo(const String& timerLblName, long long startTime)
637 {
638         Label* pTimerLbl = static_cast<Label*>(GetControl(timerLblName));
639
640         if (__pConfCallTimer == null)
641         {
642                 __pConfCallTimer = new (std::nothrow) Timer();
643                 __pConfCallTimer->Construct(*this);
644         }
645
646         if (pTimerLbl != null)
647         {
648                 //current system time
649                 long long currTime = 0;
650                 SystemTime::GetTicks(currTime);
651                 //Set call duration
652                 TimeSpan diffSpan(abs(startTime - currTime));
653
654                 String activeCallTime(L"");
655
656                 long long hr = diffSpan.GetHours();
657                 if (hr <= 9) {
658                         activeCallTime.Append("0");
659                 }
660                 activeCallTime.Append(hr);
661                 activeCallTime.Append(L":");
662
663                 long long min = diffSpan.GetMinutes();
664                 if (min <= 9) {
665                         activeCallTime.Append("0");
666                 }
667                 activeCallTime.Append(min);
668                 activeCallTime.Append(L":");
669
670                 long long sec = diffSpan.GetSeconds();
671                 if (sec <= 9) {
672                         activeCallTime.Append("0");
673                 }
674                 activeCallTime.Append(sec);
675
676                 pTimerLbl->SetText(activeCallTime);
677                 __pConfCallTimer->StartAsRepeatable(TimeSpan::NUM_OF_TICKS_IN_SECOND);
678
679         }
680 }
681
682 void
683 ConfCallerListForm::OnTimerExpired(Tizen::Base::Runtime::Timer& timer)
684 {
685         //Call default implementation of "Object.Equals()"
686         //returns true, if they are pointing to same address.
687         if (__pConfCallTimer->Equals(timer))
688         {
689                 Label* pTimerLbl = static_cast<Label*>(GetControl(IDC_CALL_TIME_LABEL));
690                 if (pTimerLbl)
691                 {
692                         String activeCallTime = pTimerLbl->GetText();
693                         // Create a StringTokenizer instance
694                         StringTokenizer strTokens(activeCallTime, L":");
695
696                         int count = strTokens.GetTokenCount(); // count == 3
697                         String token;
698                         int sec = 0;
699                         int min = 0;
700                         int hr = 0;
701                         for (int index = 0; index < count; index++)
702                         {
703                                 switch (index)
704                                 {
705                                 case 0:
706                                         strTokens.GetNextToken(token);
707                                         Integer::Parse(token, hr);
708                                         break;
709
710                                 case 1:
711                                         strTokens.GetNextToken(token);
712                                         Integer::Parse(token, min);
713                                         break;
714
715                                 case 2:
716                                         strTokens.GetNextToken(token);
717                                         Integer::Parse(token, sec);
718                                         break;
719                                 }
720                         }
721                         //update all values
722                         sec = sec + 1;
723                         if (sec == IDI_MAX_SECONDS)
724                         {
725                                 sec = 0;
726                                 min = min + 1;
727                         }
728                         if (min == IDI_MAX_MINS)
729                         {
730                                 min = 0;
731                                 hr = hr + 1;
732                         }
733
734                         //replace string
735                         activeCallTime.Clear();
736                         if (hr <= 9)
737                         {
738                                 activeCallTime.Append("0");
739                         }
740                         activeCallTime.Append(hr);
741                         activeCallTime.Append(":");
742                         if (min <= 9)
743                         {
744                                 activeCallTime.Append("0");
745                         }
746                         activeCallTime.Append(min);
747                         activeCallTime.Append(":");
748                         if (sec <= 9)
749                         {
750                                 activeCallTime.Append("0");
751                         }
752                         activeCallTime.Append(sec);
753                         //update timer label
754                         pTimerLbl->SetText(activeCallTime);
755                         pTimerLbl->Invalidate(true);
756                 }
757         }
758 }
759
760 void
761 ConfCallerListForm::OnFormBackRequested(Form& source)
762 {
763         SceneManager* pSceneManager = SceneManager::GetInstance();
764         AppAssert(pSceneManager);
765
766         ArrayListT<CallInfo>* pCallList  = static_cast<ArrayListT<CallInfo>*>(__pCallPresentor->GetCallListN());
767         int noOfCalls = pCallList->GetCount();
768
769         //Ownership - To be deleted in 'OnSceneActivatedN' of next form
770         ArrayList* pCallInfoList = new (std::nothrow) ArrayList(SingleObjectDeleter);
771         pCallInfoList->Construct(noOfCalls);
772
773         for (int index = 0; index < noOfCalls; index++)
774         {
775                 //fetch call info and add to list
776                 CallInfo callInfo;
777                 result r = pCallList->GetAt(index, callInfo);
778                 if (r == E_SUCCESS)
779                 {
780                         //copy call information to new instance
781                         CallInfo* pCaller = new (std::nothrow) CallInfo();
782                         *pCaller = callInfo;
783                         pCallInfoList->Add(pCaller);
784                 }
785         }
786
787         if (noOfCalls == 1)
788         {
789                 //single active call - goto active call form
790                 pSceneManager->GoForward(ForwardSceneTransition(IDSCN_SCENE_CONFCALL), pCallInfoList);
791         }
792         else
793         {
794                 //goto multiple active call form
795                 pSceneManager->GoForward(ForwardSceneTransition(IDSCN_SCENE_MULTIPLEACTIVECALL), pCallInfoList);
796         }
797         pCallList->RemoveAll();
798         delete pCallList;
799
800 }
801
802 void
803 ConfCallerListForm::CreateItemAndAddActionListener( Button& splitButton,
804                 Button& endButton, Label& callerLabel, SplitConfCallerCmdIds splitCmdId,
805                 EndConfCallerCmdIds EndCmdId, const String& displayName)
806 {
807         Bitmap* pNormalSplitBitmap = null;
808         Bitmap* pPressSplitBitmap = null;
809         Bitmap* pNormalEndBitmap = null;
810         Bitmap* pPressEndBitmap = null;
811
812         pNormalSplitBitmap = AppUtility::GetBitmapFromResourcesN(IDB_SPLIT_NORMAL_BUTTON_ICON,
813                         W_SPLIT_BITMAP, H_SPLIT_BITMAP);
814         pPressSplitBitmap = AppUtility::GetBitmapFromResourcesN(IDB_SPLIT_PRESS_BUTTON_ICON,
815                         W_SPLIT_BITMAP, H_SPLIT_BITMAP);
816         pNormalEndBitmap = AppUtility::GetBitmapFromResourcesN(IDB_END_NORMAL_BUTTON_ICON,
817                         W_END_BITMAP, H_END_BITMAP);
818         pPressEndBitmap = AppUtility::GetBitmapFromResourcesN(IDB_END_PRESS_BUTTON_ICON,
819                         W_END_BITMAP, H_END_BITMAP);
820
821         bool isSplitAllowed = true;
822         if ((__pCallPresentor->IsSplitAllowed() == false) || (__pConfCallInfo->IsOnHold() == true))
823         {
824                 isSplitAllowed = false;
825         }
826
827         splitButton.SetActionId(splitCmdId);
828         splitButton.AddActionEventListener(*this);
829         splitButton.SetColor(BUTTON_STATUS_NORMAL,COLOR_SPLIT_CALL_BG);
830         splitButton.SetColor(BUTTON_STATUS_PRESSED,COLOR_SPLIT_CALL_BG_PRESS);
831         splitButton.SetNormalBitmap(Point(0, 0), *pNormalSplitBitmap);
832         splitButton.SetPressedBitmap(Point(0, 0), *pPressSplitBitmap);
833
834
835
836         endButton.SetActionId(EndCmdId);
837         endButton.AddActionEventListener(*this);
838         endButton.SetNormalBitmap(Point(0, 0), *pNormalEndBitmap);
839         endButton.SetColor(BUTTON_STATUS_NORMAL,COLOR_END_CALL_BG);
840         endButton.SetColor(BUTTON_STATUS_PRESSED,COLOR_END_CALL_BG_PRESS);
841         endButton.SetPressedBitmap(Point(0, 0), *pPressEndBitmap);
842
843
844         if (isSplitAllowed == false)
845         {
846                 splitButton.SetShowState(false);
847                 callerLabel.SetBounds(splitButton.GetBounds().x, callerLabel.GetBounds().y,
848                 callerLabel.GetBounds().width, callerLabel.GetBounds().height);
849         }
850         else
851         {
852                 splitButton.SetShowState(true);
853                 callerLabel.SetBounds((splitButton.GetBounds().x + splitButton.GetBounds().width), callerLabel.GetBounds().y,
854                                 callerLabel.GetBounds().width, callerLabel.GetBounds().height);
855         }
856
857
858         callerLabel.SetTextHorizontalAlignment(ALIGNMENT_LEFT);
859         callerLabel.SetText(displayName);
860         delete pNormalEndBitmap;
861         pNormalEndBitmap = null;
862         delete pPressEndBitmap;
863         pPressEndBitmap = null;
864         delete pNormalSplitBitmap;
865         pNormalSplitBitmap = null;
866         delete pPressSplitBitmap;
867         pPressSplitBitmap = null;
868 }
869
870 int
871 ConfCallerListForm::GetItemCount(void)
872 {
873         IListT<CallInfo>* pCallList = __pConfCallInfo->GetCallerList();
874         return pCallList->GetCount();
875 }
876
877 TableViewItem*
878 ConfCallerListForm::CreateItem(int itemIndex, int itemWidth)
879 {
880         IListT<CallInfo>* pCallList = __pConfCallInfo->GetCallerList();
881
882         TableViewAnnexStyle style = TABLE_VIEW_ANNEX_STYLE_NORMAL;
883         TableViewItem* pItem = new (std::nothrow) TableViewItem();
884
885         pItem->Construct(Tizen::Graphics::Dimension(GetBounds().width, LIST_ITEM_HEIGHT), style);
886
887         Button *pSplitCallButton = new (std::nothrow) Button();
888         pSplitCallButton->Construct(Rectangle(X_SPLIT_BUTTON_MARGIN,Y_SPLIT_BUTTON_MARGIN,W_SPLIT_BITMAP,W_SPLIT_BITMAP));
889
890         Label *pCallLabel =  new (std::nothrow)Label();
891         pCallLabel->Construct(Rectangle(X_CALLER_LABEL,Y_CALLER_LABEL,W_CALLER_LABEL,H_CALLER_LABEL),L"");
892
893         Button *pEndCallButton =  new (std::nothrow)Button();
894         pEndCallButton->Construct(Rectangle(GetBounds().width-X_END_BUTTON_PADDING-W_SPLIT_BITMAP,Y_SPLIT_BUTTON_MARGIN,W_SPLIT_BITMAP,W_SPLIT_BITMAP));
895
896
897         CallInfo callInfo;
898         String pContactNo;
899         result r = pCallList->GetAt(itemIndex, callInfo);
900
901         if(callInfo.GetContactNumber().IsEmpty() == false)
902         {
903                 pContactNo.Append(callInfo.GetContactNumber());
904         }
905         else
906         {
907                 pContactNo.Append(AppUtility::GetResourceString(IDS_NUMBER_UNKNOWN));
908         }
909         //fetch contact details based on phone number
910         String* pDisplayName = callInfo.FetchCallerNameN();
911
912         if ((pDisplayName->IsEmpty()) || r != E_SUCCESS)
913         {
914                 pDisplayName->Append(pContactNo);
915         }
916         switch (itemIndex)
917         {
918                 case 0:
919                 {
920                         CreateItemAndAddActionListener(*pSplitCallButton,*pEndCallButton,*pCallLabel,
921                                         IDA_SPLIT_CALLER1,IDA_END_CALLER1,*pDisplayName);
922                 }
923                 break;
924                 case 1:
925                 {
926                         CreateItemAndAddActionListener(*pSplitCallButton,*pEndCallButton,*pCallLabel,
927                                         IDA_SPLIT_CALLER2,IDA_END_CALLER2,*pDisplayName);
928                 }
929                 break;
930                 case 2:
931                 {
932                         CreateItemAndAddActionListener(*pSplitCallButton,*pEndCallButton,*pCallLabel,
933                                         IDA_SPLIT_CALLER3,IDA_END_CALLER3,*pDisplayName);
934                 }
935                 break;
936                 case 3:
937                 {
938                         CreateItemAndAddActionListener(*pSplitCallButton,*pEndCallButton,*pCallLabel,
939                                         IDA_SPLIT_CALLER4,IDA_END_CALLER4,*pDisplayName);
940                 }
941                 break;
942                 case 4:
943                 {
944                         CreateItemAndAddActionListener(*pSplitCallButton,*pEndCallButton,*pCallLabel,
945                                         IDA_SPLIT_CALLER5,IDA_END_CALLER5,*pDisplayName);
946                 }
947                 break;
948                 default:
949                         break;
950         }
951         pItem->AddControl(*pSplitCallButton);
952         pItem->AddControl(*pCallLabel);
953         pItem->AddControl(*pEndCallButton);
954         return pItem;
955
956
957 }
958
959 bool
960 ConfCallerListForm::DeleteItem(int itemIndex, TableViewItem* pItem)
961 {
962         return false;
963 }
964
965 void
966 ConfCallerListForm::UpdateItem(int itemIndex, TableViewItem* pItem)
967 {
968         return ;
969 }
970
971 int
972 ConfCallerListForm::GetDefaultItemHeight(void)
973 {
974         return LIST_ITEM_HEIGHT;
975 }
976
977 void
978 ConfCallerListForm::OnOrientationChanged(const Control& source, OrientationStatus orientationStatus)
979 {
980         AppLogDebug("Enter");
981         __pList->UpdateTableView();
982 }