cae2461fcf85f509917cb7014e006278c1124d61
[apps/osp/Call.git] / src / CallIncomingCallForm.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    CallIncomingCallForm.cpp
19  * @brief       Incoming Call form implementation
20  */
21 #include <FBaseColIList.h>
22 #include "CallIncomingCallForm.h"
23 #include "CallAppUtility.h"
24 #include "CallSettingsManager.h"
25 #include "CallPresentationModel.h"
26 #include "CallSceneRegister.h"
27 #include "CallTypes.h"
28 #include "CallApp.h"
29
30 using namespace Tizen::App;
31 using namespace Tizen::Base;
32 using namespace Tizen::Base::Collection;
33 using namespace Tizen::Graphics;
34 using namespace Tizen::Ui;
35 using namespace Tizen::Ui::Animations;
36 using namespace Tizen::Ui::Controls;
37 using namespace Tizen::Ui::Scenes;
38
39 //Constants
40 const int W_DIAL_BITMAP = 100;
41 const int H_DIAL_BITMAP = 100;
42 const int W_CREATE_BITMAP = 56;
43 const int H_CREATE_BITMAP = 56;
44 const int X_CREATE_BITMAP = 8;
45 const int Y_CREATE_BITMAP = 8;
46 const int W_MESSAGE_BG_BITMAP = 720;
47 const int H_MESSAGE_BG_BITMAP = 110;
48 const int W_ARROW_BITMAP = 28;
49 const int H_ARROW_BITMAP = 36;
50 const int W_MESSAGE_BITMAP = 50;
51 const int H_MESSAGE_BITMAP = 50;
52 const int X_MESSAGE_BITMAP = 185;
53 const int Y_MESSAGE_BITMAP = 50;
54 const int MESSAGE_TEXT_X_MARGIN = 20;
55 const int MESSAGE_TEXT_Y_MARGIN = 10;
56 const int SEND_TEXT_X_MARGIN = 78;
57 const int SEND_TEXT_Y_MARGIN = 20;
58 const int SEND_BUTTON_ROUND_DIMENSION = 5;
59 const int W_DIAL_LABEL = 188;
60 const int H_DIAL_LABEL = 188;
61 const int DIAL_ICON_X_OFFSET = 44;
62 const int DIAL_ICON_Y_OFFSET = 44;
63 const int REJECT_LABEL_X_OFFSET = 492;
64 const int X_CALL_PANEL = 20;
65 const int Y_CALL_PANEL = 110;
66 const int H_CALL_PANEL = 188;
67 const int Y_ARROW_LABEL = 79;
68 const int W_ARROW_LABEL = 20;
69 const int H_ARROW_LABEL = 32;
70 const int VALID_TOUCH_X_OFFSET = 158;
71 const int VALID_TOUCH_Y_OFFSET = 158;
72 const int X_ARROW_LABEL_STARTPOS = 206; // 188 circle wodth , 18 GUI spec
73 const int X_ARROW_REJECT_LABEL_STARTPOS = 454; // 700 width of panel - 20 offset - 188 circle width - 18 GUI spec - 20 width of image
74 const int ARROW_LABEL_X_MARGIN = 48; //20 width of arrow and 28 GUI spec
75 const int ACCEPT_LABEL_RELATIVE_POS = -384; //relative pos of accept labels right to reject labels left
76 const int MAX_LIST_HEIGHT = 448;//678;
77 const int H_REJECT_VIEW_FOOTER = 98;
78 const int X_LIST_TEXT_ITEM = 16;
79 const int W_LIST_TEXT_ITEM = 452;
80 const int H_LIST_TEXT_ITEM = 111;
81 const int X_SEND_TEXT_ITEM = 484;
82 const int Y_SEND_TEXT_ITEM = 20;
83 const int W_SEND_TEXT_ITEM = 220;
84 const int W_SEND_BUTTON_MARGIN = 14;
85 const int H_SEND_TEXT_ITEM = 72;
86 const int X_PHOTO_LBL = 166;
87 const int Y_PHOTO_LBL = 232;
88 const int W_PHOTO_LBL = 388;
89 const int H_PHOTO_LBL = 388;
90 const int W_PHOTO_LABEL = 720;
91 const int H_PHOTO_LABEL = 720;
92 const int COUNT_ARROW_ELEMENTS = 3;
93
94 const unsigned int COLOR_SEND_BUTTON_PRESSED = Color32<130, 142, 150>::Value;
95 const unsigned int COLOR_SEND_BUTTON_NORMAL = Color32<64, 156, 211>::Value;
96 const unsigned int COLOR_SWIPE_PANEL = Color32<0, 0, 0, 255>::Value;
97 const unsigned int COLOR_LIST_TEXT_NORMAL = Color32<0, 0, 0>::Value;
98 const unsigned int COLOR_LIST_TEXT_PRESSED = Color32<249, 249, 249>::Value;
99
100 const int FONT_SIZE_MSG_TXT = 44;
101
102 static const wchar_t* IDL_INCOMING_CALL_FORM = L"IDL_INCOMING_CALL_FORM";
103 static const wchar_t* IDB_REJECT_MESSAGE_BG = L"C01-1_Reject_message_bg.png";
104 static const wchar_t* IDB_REJECT_MESSAGE_UP_ARROW = L"C01-1_Reject_message_arrow_01.png";
105 static const wchar_t* IDB_REJECT_MESSAGE_DOWN_ARROW = L"C01-1_Reject_message_arrow_02.png";
106 static const wchar_t* IDB_REJECT_MESSAGE_ICON = L"C01-1_icon_Reject_with_Message.png";
107 static const wchar_t* IDB_ACCEPT_CIRCLE_ICON = L"C01-1_accept_left.png";
108 static const wchar_t* IDB_REJECT_CIRCLE_ICON = L"C01-1_reject_right.png";
109 static const wchar_t* IDB_CALL_ACCEPT_ICON = L"C01-1_accept_left_dial_answer.png";
110 static const wchar_t* IDB_CALL_REJECT_ICON = L"C01-1_reject_right_dial_decline.png";
111 static const wchar_t* IDB_ACCEPT_ARROW_ICON = L"C01-1_arrow_g.png";
112 static const wchar_t* IDB_REJECT_ARROW_ICON = L"C01-1_arrow_r.png";
113 static const wchar_t* IDB_CALL_BG = L"C01-1_calling_BG_01.png";
114 static const wchar_t* IDC_REJECT_MESSAGE_BUTTON = L"IDC_REJECT_MESSAGE_BUTTON";
115 static const wchar_t* IDC_REJECT_PANEL = L"IDC_REJECT_PANEL";
116 static const wchar_t* IDC_REJECT_MESSAGE_CANCEL_BUTTON = L"IDC_REJECT_MESSAGE_CANCEL_BUTTON";
117 static const wchar_t* IDC_MSG_TABLEVIEW = L"IDC_MSG_TABLEVIEW";
118 static const wchar_t* IDC_CALLER_LABEL = L"IDC_CALLER_LABEL";
119 static const wchar_t* IDC_NUMBER_LABEL = L"IDC_NUMBER_LABEL";
120 static const wchar_t* IDC_BIG_PHOTO_LABEL = L"IDC_BIG_PHOTO_LABEL";
121 static const wchar_t* IDC_CALLHANDEL_PANEL = L"IDC_CALLHANDEL_PANEL";
122 static const wchar_t* IDC_ACCEPT_LABEL = L"IDC_ACCEPT_LABEL";
123 static const wchar_t* IDC_REJECT_LEBEL = L"IDC_REJECT_LEBEL";
124 static const wchar_t* IDC_ACCEPT_ARROW = L"IDC_ACCEPT_ARROW_";
125 static const wchar_t* IDC_REJECT_ARROW = L"IDC_REJECT_ARROW_";
126 const wchar_t* IDS_REJECT_MESSAGE_BTN = L"IDS_REJECT_MESSAGE_BTN";
127 const wchar_t* IDS_LIST_SEND_BUTTON = L"IDS_LIST_SEND_BUTTON";
128 const wchar_t* IDS_NO_MESSAGE_STR = L"IDS_NO_MESSAGE_STR";
129
130 const wchar_t* IDI_FORM_VISUAL_ELE_NAME = L"FormVisEle";
131 const wchar_t* IDI_PANEL_VISUAL_ELE_NAME = L"PanelVisEle";
132 const wchar_t* IDI_ACCEPT_VISUAL_ELE_NAME = L"AcceptVisEle";
133 const wchar_t* IDI_REJECT_VISUAL_ELE_NAME = L"RejectVisEle";
134 const wchar_t* IDI_ACCEPT_ARROW_VISUAL_ELE_NAME = L"AcceptArrowVisEle";
135 const wchar_t* IDI_REJECT_ARROW_VISUAL_ELE_NAME = L"RejectArrowVisEle";
136 const wchar_t* IDI_REJECT_FINAL_VISUAL_ELE_NAME = L"RejectFinalVisEle";
137 const wchar_t* IDI_ACCEPT_FINAL_VISUAL_ELE_NAME = L"AcceptFinalVisEle";
138
139 IncomingCallForm::IncomingCallForm(void)
140         : BaseForm(FORMTYPE_INCOMINGCALL)
141 {
142         __pActiveContactNo = null;
143         __pRejectMessageList = null;
144         __incomingCallHandle = -1;
145         __isAnswerCallStarted = false;
146         __isRejectCallStarted = false;
147         __pAcceptArrowLabelsList = null;
148         __pRejectArrowLabelsList = null;
149         __pRejectCircle = null;
150         __pAcceptCircle = null;
151         __pAcceptDial = null;
152         __pRejectDial = null;
153         __pAcceptArrow = null;
154         __pRejectArrow = null;
155         __pAcceptLabel = null;
156         __pRejectLabel = null;
157         __pAcceptArrowLabel = null;
158         __pRejectArrowLabel = null;
159         __pCallHandlePanel = null;
160         __pAcceptVisElem = null;
161         __pRejectVisElem = null;
162         __pRejectFinalVisElem = null;
163         __pAcceptFinalVisElem = null;
164         __pAcceptArrowVisElem = null;
165         __pRejectArrowVisElem = null;
166         __pCallPresentor = null;
167         __pOptionPopup = null;
168         __pSmallPhotoLabel = null;
169 }
170
171 IncomingCallForm::~IncomingCallForm(void)
172 {
173 }
174
175 void
176 IncomingCallForm::Initialize(void)
177 {
178         Construct(IDL_INCOMING_CALL_FORM);
179 }
180
181 result
182 IncomingCallForm::OnInitializing(void)
183 {
184         result r = E_SUCCESS;
185         Canvas* pCanvas = null;
186
187         InitializeFooter();
188
189
190         VisualElement* pFormVisElem = new (std::nothrow) VisualElement();
191         r = pFormVisElem->Construct();
192         pFormVisElem->SetBounds(FloatRectangle(GetBounds().x, GetBounds().y, GetBounds().width, GetBounds().height));
193         pFormVisElem->SetShowState(true);
194         pFormVisElem->SetOpacity(1.0f);
195         pFormVisElem->SetName(IDI_FORM_VISUAL_ELE_NAME);
196         GetVisualElement()->AttachChild(*pFormVisElem);
197         pCanvas = pFormVisElem->GetCanvasN();
198         if(pCanvas != null)
199         {
200                 pCanvas->Clear();
201                 pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
202                 pCanvas->SetForegroundColor(COLOR_SWIPE_PANEL);
203                 pCanvas->FillRectangle(COLOR_SWIPE_PANEL, Rectangle(GetBounds().x, GetBounds().y, GetBounds().width, GetBounds().height));
204                 delete pCanvas;
205                 pCanvas = null;
206         }
207         HideRejectPanel();
208
209
210         InitializeTableView();
211
212         __pAcceptCircle = AppUtility::GetBitmapFromResourcesN(IDB_ACCEPT_CIRCLE_ICON, W_DIAL_LABEL, H_DIAL_LABEL);
213         __pRejectCircle = AppUtility::GetBitmapFromResourcesN(IDB_REJECT_CIRCLE_ICON, W_DIAL_LABEL, H_DIAL_LABEL);
214         __pAcceptDial = AppUtility::GetBitmapFromResourcesN(IDB_CALL_ACCEPT_ICON, W_DIAL_BITMAP, H_DIAL_BITMAP);
215         __pRejectDial = AppUtility::GetBitmapFromResourcesN(IDB_CALL_REJECT_ICON, W_DIAL_BITMAP, H_DIAL_BITMAP);
216         __pAcceptArrow = AppUtility::GetBitmapFromResourcesN(IDB_ACCEPT_ARROW_ICON, W_ARROW_LABEL, H_ARROW_LABEL);
217         __pRejectArrow = AppUtility::GetBitmapFromResourcesN(IDB_REJECT_ARROW_ICON, W_ARROW_LABEL, H_ARROW_LABEL);
218
219
220         if(__pRejectDial == null)
221         {
222                 AppLogDebug("Null");
223         }
224         //Panel for showing accept and reject call buttons.
225         Label* pPhotoLbl = static_cast<Label*>(GetControl(IDC_BIG_PHOTO_LABEL, true));
226          int yPos = pPhotoLbl->GetX()+pPhotoLbl->GetHeight()+ Y_CALL_PANEL;
227
228         __pCallHandlePanel = static_cast<Panel*>(GetControl(IDC_CALLHANDEL_PANEL, true));
229         __pCallHandlePanel->AddTouchEventListener(*this);
230         __pCallHandlePanel->SetBackgroundColor(COLOR_SWIPE_PANEL);
231         VisualElement* pCallPanelVisElem = new (std::nothrow) VisualElement();
232         r = pCallPanelVisElem->Construct();
233         pCallPanelVisElem->SetBounds(FloatRectangle(__pCallHandlePanel->GetBoundsF()));
234         pCallPanelVisElem->SetShowState(true);
235         pCallPanelVisElem->SetOpacity(1.0f);
236         pCallPanelVisElem->SetName(IDI_PANEL_VISUAL_ELE_NAME);
237         __pCallHandlePanel->GetVisualElement()->AttachChild(*pCallPanelVisElem);
238         pCanvas = pCallPanelVisElem->GetCanvasN();
239         if(pCanvas != null)
240         {
241                 pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
242                 pCanvas->Clear();
243                 pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
244                 pCanvas->SetForegroundColor(COLOR_SWIPE_PANEL);
245                 pCanvas->FillRectangle(COLOR_SWIPE_PANEL, Rectangle(X_CALL_PANEL, yPos, GetClientAreaBounds().width, H_CALL_PANEL));
246                 delete pCanvas;
247                 pCanvas = null;
248         }
249         //Lock Label for animation
250         __pAcceptLabel = static_cast<Label*>(GetControl(IDC_ACCEPT_LABEL, true));
251         __pAcceptLabel->SetBackgroundColor(COLOR_SWIPE_PANEL);
252         __pAcceptLabel->AddTouchEventListener(*this);
253         //left dial icon
254         __pAcceptVisElem = new (std::nothrow) VisualElement();
255         r = __pAcceptVisElem->Construct();
256         __pAcceptVisElem->SetBounds(FloatRectangle(0, 0, __pAcceptLabel->GetWidth(), __pAcceptLabel->GetHeight()));
257         __pAcceptVisElem->SetShowState(true);
258         __pAcceptVisElem->SetOpacity(1.0f);
259         __pAcceptVisElem->SetName(IDI_ACCEPT_VISUAL_ELE_NAME);
260         __pAcceptLabel->GetVisualElement()->AttachChild(*__pAcceptVisElem);
261         pCanvas = __pAcceptVisElem->GetCanvasN();
262         if(pCanvas != null)
263         {
264                 pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
265                 pCanvas->Clear();
266                 pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
267                 pCanvas->SetForegroundColor(COLOR_SWIPE_PANEL);
268                 pCanvas->FillRectangle(COLOR_SWIPE_PANEL, Rectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL));
269                 pCanvas->DrawBitmap(Rectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL), *__pAcceptCircle);
270                 pCanvas->DrawBitmap(Rectangle(DIAL_ICON_X_OFFSET, DIAL_ICON_Y_OFFSET, W_DIAL_BITMAP, H_DIAL_BITMAP), *__pAcceptDial);
271                 delete pCanvas;
272                 pCanvas = null;
273         }
274         //UnLock Label for animation
275         __pRejectLabel = static_cast<Label*>(GetControl(IDC_REJECT_LEBEL, true));
276         __pRejectLabel->AddTouchEventListener(*this);
277         __pRejectLabel->SetBackgroundColor(COLOR_SWIPE_PANEL);
278         SetControlAlwaysAtBottom(*__pCallHandlePanel, true);
279
280         //Right reject icon
281         __pRejectVisElem = new (std::nothrow) VisualElement();
282         r = __pRejectVisElem->Construct();
283         __pRejectVisElem->SetBounds(FloatRectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL));
284         __pRejectVisElem->SetShowState(true);
285         __pRejectVisElem->SetOpacity(1.00f);
286         __pRejectVisElem->SetName(IDI_REJECT_VISUAL_ELE_NAME);
287         __pRejectLabel->GetVisualElement()->AttachChild(*__pRejectVisElem);
288         pCanvas = __pRejectVisElem->GetCanvasN();
289         if(pCanvas != null)
290         {
291                 pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
292                 pCanvas->Clear();
293                 pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
294                 pCanvas->SetForegroundColor(COLOR_SWIPE_PANEL);
295                 pCanvas->FillRectangle(COLOR_SWIPE_PANEL, Rectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL));
296                 pCanvas->DrawBitmap(Rectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL), *__pRejectCircle);
297                 pCanvas->DrawBitmap(Rectangle(DIAL_ICON_X_OFFSET, DIAL_ICON_Y_OFFSET, W_DIAL_BITMAP, H_DIAL_BITMAP), *__pRejectDial);
298                 delete pCanvas;
299                 pCanvas = null;
300         }
301
302         //! Constructs an array list to store the unlock labels
303         __pAcceptArrowLabelsList = new (std::nothrow) ArrayList();
304         r = __pAcceptArrowLabelsList->Construct();
305
306         //! Constructs the Unlock Labels with the bitmap as background, adds the touch event Listener and adds them to the panel.
307         int x = X_ARROW_LABEL_STARTPOS;
308         for (int index = 0; index < COUNT_ARROW_ELEMENTS; index++)
309         {
310                 String LabelName(IDC_ACCEPT_ARROW);
311                 LabelName.Append(index+1);
312                 __pAcceptArrowLabel = static_cast<Label*>(GetControl(LabelName, true));
313                 __pAcceptArrowLabel->AddTouchEventListener(*this);
314                 __pAcceptArrowLabelsList->Add(*__pAcceptArrowLabel);
315                 __pAcceptArrowVisElem = new (std::nothrow) VisualElement();
316                 r = __pAcceptArrowVisElem->Construct();
317                 __pAcceptArrowVisElem->SetBounds(FloatRectangle(0, 0, W_ARROW_LABEL, H_ARROW_LABEL));
318                 __pAcceptArrowVisElem->SetShowState(true);
319                 __pAcceptArrowVisElem->SetOpacity(0.0f);
320                 String VisualEleName(IDI_ACCEPT_ARROW_VISUAL_ELE_NAME);
321                 VisualEleName.Append(index);
322                 __pAcceptArrowVisElem->SetName(VisualEleName);
323                 __pAcceptArrowLabel->GetVisualElement()->AttachChild(*__pAcceptArrowVisElem);
324                 pCanvas = __pAcceptArrowVisElem->GetCanvasN();
325                 if(pCanvas != null)
326                 {
327                         pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
328                         pCanvas->Clear();
329                         pCanvas->SetForegroundColor(COLOR_SWIPE_PANEL);
330                         pCanvas->SetForegroundColor(COLOR_SWIPE_PANEL);
331                         pCanvas->DrawRectangle(Rectangle(0, 0, W_ARROW_LABEL, H_ARROW_LABEL));
332                         pCanvas->FillRectangle(COLOR_SWIPE_PANEL, Rectangle(0, 0, W_ARROW_LABEL, H_ARROW_LABEL));
333                         pCanvas->DrawBitmap(Rectangle(0, 0, W_ARROW_LABEL, H_ARROW_LABEL), *__pAcceptArrow);
334                         delete pCanvas;
335                         pCanvas = null;
336                 }
337                 x += ARROW_LABEL_X_MARGIN;
338         }
339         //! Constructs an array list to store the unlock labels
340         __pRejectArrowLabelsList = new (std::nothrow) ArrayList();
341         r = __pRejectArrowLabelsList->Construct();
342
343         x = X_ARROW_REJECT_LABEL_STARTPOS;
344         for (int index = 0; index < COUNT_ARROW_ELEMENTS; index++)
345         {
346                 String LabelName(IDC_REJECT_ARROW);
347                 LabelName.Append(index+1);
348                 __pRejectArrowLabel = static_cast<Label*>(GetControl(LabelName, true));
349                 __pRejectArrowLabel->AddTouchEventListener(*this);
350                 __pRejectArrowLabelsList->Add(*__pRejectArrowLabel);
351                 __pRejectArrowVisElem = new (std::nothrow) VisualElement();
352                 r = __pRejectArrowVisElem->Construct();
353                 __pRejectArrowVisElem->SetBounds(FloatRectangle(0, 0, W_ARROW_LABEL, H_ARROW_LABEL));
354                 __pRejectArrowVisElem->SetShowState(true);
355                 __pRejectArrowVisElem->SetOpacity(0.0f);
356                 String VisualEleName(IDI_REJECT_ARROW_VISUAL_ELE_NAME);
357                 VisualEleName.Append(index);
358                 __pRejectArrowVisElem->SetName(VisualEleName);
359                 __pRejectArrowLabel->GetVisualElement()->AttachChild(*__pRejectArrowVisElem);
360                 pCanvas = __pRejectArrowVisElem->GetCanvasN();
361                 if(pCanvas != null)
362                 {
363                         pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
364                         pCanvas->Clear();
365                         pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
366                         pCanvas->SetForegroundColor(COLOR_SWIPE_PANEL);
367                         pCanvas->FillRectangle(COLOR_SWIPE_PANEL, Rectangle(0, 0, W_ARROW_LABEL, H_ARROW_LABEL));
368                         pCanvas->DrawBitmap(Rectangle(0, 0, W_ARROW_LABEL, H_ARROW_LABEL), *__pRejectArrow);
369                         delete pCanvas;
370                         pCanvas = null;
371                 }
372                 x -= ARROW_LABEL_X_MARGIN;
373         }
374
375
376         return r;
377 }
378
379 void
380 IncomingCallForm::InitializeFooter(void)
381 {
382         Footer* pFooter = GetFooter();
383         FooterItem footerItemCreate;
384
385         SetFormBackEventListener(this);
386         if(pFooter != null)
387         {
388                 pFooter->SetStyle(FOOTER_STYLE_BUTTON_TEXT);
389                 pFooter->AddActionEventListener(*this);
390
391                 footerItemCreate.Construct(IDA_CREATE_REJECT_CALL_MESSAGE);
392                 footerItemCreate.SetText(AppUtility::GetResourceString(IDS_REJECT_MESSAGE_CREATE));
393                 pFooter->AddItem(footerItemCreate);
394                 pFooter->SetShowState(false);
395         }
396 }
397
398 void
399 IncomingCallForm::ShowRejectMessageFooter(void)
400 {
401         Footer* pFooter = GetFooter();
402         if(pFooter != null)
403         {
404                 AppLogDebug("SetShowState");
405                 pFooter->SetShowState(true);
406
407         }
408 }
409
410 void
411 IncomingCallForm::HideRejectMessageFooter(void)
412 {
413         Footer* pFooter = GetFooter();
414         if(pFooter != null)
415         {
416                 pFooter->SetShowState(false);
417         }
418 }
419
420 result
421 IncomingCallForm::OnTerminating(void)
422 {
423         result r = E_SUCCESS;
424
425         if (__pRejectMessageList != null)
426         {
427                 delete __pRejectMessageList;
428                 __pRejectMessageList = null;
429         }
430         if (__pActiveContactNo != null)
431         {
432                 delete __pActiveContactNo;
433                 __pActiveContactNo = null;
434         }
435         __incomingCallHandle = -1;
436         __pCallPresentor = null;
437
438         /* Deleting fails in A4RC* SDK. Remove if not necessary
439         if (__pAcceptVisElem != null)
440         {
441                 __pAcceptVisElem->Destroy();
442                 __pAcceptVisElem = null;
443         }
444
445         if (__pRejectVisElem != null)
446         {
447                 __pRejectVisElem->Destroy();
448                 __pRejectVisElem = null;
449         }
450
451         if (__pRejectFinalVisElem != null)
452         {
453                 __pRejectFinalVisElem->Destroy();
454                 __pRejectFinalVisElem = null;
455         }
456
457         if (__pAcceptFinalVisElem != null)
458         {
459                 __pAcceptFinalVisElem->Destroy();
460                 __pAcceptFinalVisElem = null;
461         }
462
463         for (int i = 0; i < 7; i++)
464         {
465                 __pRejectArrowLabel = static_cast<Label*>(__pRejectArrowLabelsList->GetAt(i));
466                 __pRejectArrowVisElem = __pRejectArrowLabel->GetVisualElement();
467                 if (__pRejectArrowVisElem != null)
468                 {
469                         __pRejectArrowVisElem->Destroy();
470                         __pRejectArrowVisElem = null;
471                 }
472
473                 __pAcceptArrowLabel = static_cast<Label*>(__pAcceptArrowLabelsList->GetAt(i));
474                 __pAcceptArrowVisElem = __pAcceptArrowLabel->GetVisualElement();
475                 if (__pAcceptArrowVisElem != null)
476                 {
477                         __pAcceptArrowVisElem->Destroy();
478                         __pAcceptArrowVisElem = null;
479                 }
480         }
481
482         if (__pAcceptArrowVisElem != null)
483         {
484                 __pAcceptArrowVisElem = null;
485         }
486
487         if (__pRejectArrowVisElem != null)
488         {
489                 __pRejectArrowVisElem = null;
490         }
491 */
492         if (__pAcceptArrowLabelsList != null)
493         {
494                 __pAcceptArrowLabelsList->RemoveAll(false);
495                 delete __pAcceptArrowLabelsList;
496                 __pAcceptArrowLabelsList = null;
497         }
498
499         if (__pRejectArrowLabelsList != null)
500         {
501                 __pRejectArrowLabelsList->RemoveAll(false);
502                 delete __pRejectArrowLabelsList;
503                 __pRejectArrowLabelsList = null;
504         }
505
506         if (__pRejectCircle != null)
507         {
508                 delete __pRejectCircle;
509                 __pRejectCircle = null;
510         }
511
512         if (__pAcceptCircle != null)
513         {
514                 delete __pAcceptCircle;
515                 __pAcceptCircle = null;
516         }
517
518         if (__pAcceptDial != null)
519         {
520                 delete __pAcceptDial;
521                 __pAcceptDial = null;
522         }
523
524         if (__pRejectDial != null)
525         {
526                 delete __pRejectDial;
527                 __pRejectDial = null;
528         }
529
530         if (__pAcceptArrow != null)
531         {
532                 delete __pAcceptArrow;
533                 __pAcceptArrow = null;
534         }
535
536         if (__pRejectArrow != null)
537         {
538                 delete __pRejectArrow;
539                 __pRejectArrow = null;
540         }
541         __pCallHandlePanel->RemoveTouchEventListener(*this);
542         __pAcceptLabel->RemoveTouchEventListener(*this);
543         __pRejectLabel->RemoveTouchEventListener(*this);
544         __pAcceptArrowLabel->RemoveTouchEventListener(*this);
545         __pRejectArrowLabel->RemoveTouchEventListener(*this);
546         __pAcceptLabel = null;
547         __pRejectLabel = null;
548         __pAcceptArrowLabel = null;
549         __pRejectArrowLabel = null;
550         __pCallHandlePanel = null;
551         return r;
552 }
553
554 void
555 IncomingCallForm::ShowRejectMessagePanel(void)
556         {
557                 Panel* pKeysPanel = static_cast<Panel*>(GetControl(IDC_REJECT_PANEL));
558                 if (pKeysPanel)
559                 {
560                         pKeysPanel->SetShowState(true);
561                         TableView* pMessageList = static_cast<TableView*>(pKeysPanel->GetControl(IDC_MSG_TABLEVIEW));
562                         Rectangle tmpRect = pMessageList->GetBounds();
563                         SetControlAlwaysOnTop(*pKeysPanel,true);
564
565                         //Set Height to Reject Message Panel
566                         int listHeight = H_LIST_NORMAL_MENU_ITEM; //If no messages
567                         if(__pRejectMessageList != null && __pRejectMessageList->GetCount() > 0)
568                         {
569                                 listHeight = H_LIST_NORMAL_MENU_ITEM * (__pRejectMessageList->GetCount()); //multiply by number of items
570                         }
571                         if (listHeight > MAX_LIST_HEIGHT)
572                         {
573                                 listHeight = MAX_LIST_HEIGHT;
574                         }
575
576                         pMessageList->SetBounds(tmpRect.x, tmpRect.y, tmpRect.width, listHeight);
577                         pMessageList->UpdateTableView();
578                         tmpRect = pKeysPanel->GetBounds();
579                         pKeysPanel->SetBounds(tmpRect.x, tmpRect.y, tmpRect.width, H_MESSAGE_BG_BITMAP /*+ H_REJECT_VIEW_FOOTER*/ + listHeight);
580
581                         Button* pButtonReject = static_cast<Button*>(pKeysPanel->GetControl(IDC_REJECT_MESSAGE_CANCEL_BUTTON));
582                         pButtonReject->SetActionId(IDA_CANCEL_REJECT_CALL_MESSAGE_PANEL);
583                         pButtonReject->AddActionEventListener(*this);
584                         pButtonReject->SetEnabled(true);
585                         //pButtonReject->SetFocus();
586
587                         ShowRejectMessageFooter();
588
589
590                         pKeysPanel->SetFocus();
591                         pKeysPanel->Draw();
592                 }
593                 Button* pButtonRejectMessage = static_cast<Button*>(GetControl(IDC_REJECT_MESSAGE_BUTTON));
594                 if (pButtonRejectMessage)
595                 {
596                         pButtonRejectMessage->SetShowState(false);
597                         pButtonRejectMessage->Invalidate(true);
598                         pButtonRejectMessage->Draw();
599                 }
600         }
601 void
602 IncomingCallForm::HideRejectMessagePanel(void)
603 {
604         HideRejectPanel();
605         Button* pButtonRejectMessage = static_cast<Button*>(GetControl(IDC_REJECT_MESSAGE_BUTTON));
606         if (pButtonRejectMessage)
607         {
608                 pButtonRejectMessage->SetShowState(true);
609                 RelativeLayout* pRelativeLayout = dynamic_cast<RelativeLayout*>(GetLandscapeLayoutN());
610                 if (pRelativeLayout != null)
611                 {
612                         pRelativeLayout->SetRelation(*pButtonRejectMessage,*this,RECT_EDGE_RELATION_BOTTOM_TO_BOTTOM);
613                         pRelativeLayout->Update();
614                         delete pRelativeLayout;
615                 }
616         }
617 }
618
619 void
620 IncomingCallForm::OnActionPerformed(const Control& source, int actionId)
621 {
622         switch (actionId)
623         {
624         case IDA_SHOW_REJECT_CALL_MESSAGE_PANEL: // applicable in all form states
625         {
626                 ShowRejectMessagePanel();
627         }
628         break;
629
630         case IDA_CREATE_REJECT_CALL_MESSAGE:
631         {
632                 if(__pCallPresentor->IsAppControlRunning() == false)
633                 {
634                         __pCallPresentor->RejectCall(__incomingCallHandle, true,*__pActiveContactNo);
635                         ArrayListT<AppCallInfo>* pCallList  = static_cast<ArrayListT<AppCallInfo>*>(__pCallPresentor->GetCallListN());
636                         if(pCallList != null && pCallList->GetCount() > 0)
637                         {
638                                 __pCallPresentor->HandleCallConnected(*pCallList);
639                         }
640                         pCallList = null;
641                 }
642         }
643         break;
644
645         case IDA_CANCEL_REJECT_CALL_MESSAGE_PANEL:
646         {
647                 HideRejectMessagePanel();
648         }
649         break;
650
651         case IDA_SEND_REJECT_MSG1:
652         case IDA_SEND_REJECT_MSG2:
653         case IDA_SEND_REJECT_MSG3:
654         case IDA_SEND_REJECT_MSG4:
655         case IDA_SEND_REJECT_MSG5:
656         case IDA_SEND_REJECT_MSG6:
657         {
658                 __pCallPresentor->RejectCall(__incomingCallHandle, false,*__pActiveContactNo);
659                 String textToBeSent;
660                 //calculate msgIndex
661                 int msgIndex = IDA_SEND_REJECT_MSG1;
662                 msgIndex = actionId - msgIndex;
663                 __pRejectMessageList->GetAt(msgIndex, textToBeSent);
664                 __pCallPresentor->SendMessage(textToBeSent,*__pActiveContactNo);
665         }
666         break;
667
668         default:
669                 break;
670         }
671 }
672
673 void
674 IncomingCallForm::OnSceneActivatedN(const SceneId& previousSceneId,     const SceneId& currentSceneId, IList* pArgs)
675 {
676         AddOrientationEventListener(*this);
677         //Get Reject list from Settings Manager
678         IMapT<int,String>* pMsgMap = SettingsManager::GetInstance()->GetRejectMessageListN();
679         if(pMsgMap != null)
680         {
681                 if (__pRejectMessageList != null)
682                 {
683                         delete __pRejectMessageList;
684                         __pRejectMessageList = null;
685                 }
686                 __pRejectMessageList = pMsgMap->GetValuesN();
687                 delete pMsgMap;
688                 pMsgMap = null;
689         }
690         //No reject messages
691         else
692         {
693                 if (__pRejectMessageList != null)
694                 {
695                         delete __pRejectMessageList;
696                         __pRejectMessageList = null;
697                 }
698         }
699         //listen to Foreground events
700         CallApp* pPhoneApp = static_cast<CallApp*>(CallApp::GetInstance());
701         pPhoneApp->AddAppStateChangeListener(*this);
702         if(__pCallPresentor == null)
703         {
704                 __pCallPresentor = CallPresentationModel::GetInstance();
705         }
706         __pCallPresentor->SetTelEventListener(this);
707         //Abort any AppControl Request running already to show incoming call screen
708         if (__pCallPresentor->IsAppControlRunning() == true)
709         {
710                 __pCallPresentor->AbortAppControlRequest();
711         }
712
713         HideRejectPanel();
714
715         if(__pAcceptLabel->GetVisualElement()->GetChild(IDI_ACCEPT_VISUAL_ELE_NAME,true) == null)
716         {
717                 __pAcceptLabel->GetVisualElement()->AttachChild(*__pAcceptVisElem);
718         }
719         if(__pRejectLabel->GetVisualElement()->GetChild(IDI_REJECT_VISUAL_ELE_NAME,true) == null)
720         {
721                 __pRejectLabel->GetVisualElement()->AttachChild(*__pRejectVisElem);
722         }
723
724         __pAcceptVisElem->SetOpacity(1.0f);
725         __pRejectVisElem->SetOpacity(1.00f);
726         for (int i = 0; i < COUNT_ARROW_ELEMENTS; i++)
727         {
728                 __pRejectArrowLabel = static_cast<Label*>(__pRejectArrowLabelsList->GetAt(i));
729                 String RejectVisualEleName(IDI_REJECT_ARROW_VISUAL_ELE_NAME);
730                 RejectVisualEleName.Append(i);
731                 __pRejectArrowVisElem = __pRejectArrowLabel->GetVisualElement()->GetChild(RejectVisualEleName,true);
732                 __pAcceptArrowLabel = static_cast<Label*>(__pAcceptArrowLabelsList->GetAt(i));
733                 String AcceptVisualEleName(IDI_ACCEPT_ARROW_VISUAL_ELE_NAME);
734                 AcceptVisualEleName.Append(i);
735                 __pAcceptArrowVisElem = __pAcceptArrowLabel->GetVisualElement()->GetChild(AcceptVisualEleName,true);
736                 switch(i)
737                 {
738                         case 0:
739                                 __pAcceptArrowVisElem->SetOpacity(0.6f);
740                                 __pRejectArrowVisElem->SetOpacity(0.6f);
741                         break;
742                         case 1:
743                                 __pAcceptArrowVisElem->SetOpacity(0.8f);
744                                 __pRejectArrowVisElem->SetOpacity(0.8f);
745                         break;
746                         case 2:
747                                 __pAcceptArrowVisElem->SetOpacity(1.0f);
748                                 __pRejectArrowVisElem->SetOpacity(1.0f);
749                         break;
750                 }
751
752         }
753
754
755         if (pArgs != null)
756         {
757                 //get Call Info
758                 AppCallInfo* pIncomingCall = static_cast<AppCallInfo*>(pArgs->GetAt(0));
759                 if (pIncomingCall != null)
760                 {
761                         //start alert with contact's custom ringtone
762                         __pCallPresentor->StartAlert(*pIncomingCall);
763                         //show contact number
764                         String contactNo;
765                         contactNo.Append(pIncomingCall->GetContactNumber());
766                         if (__pActiveContactNo)
767                         {
768                                 delete __pActiveContactNo;
769                                 __pActiveContactNo = null;
770                         }
771                         __incomingCallHandle = pIncomingCall->GetCallHandle()->ToLong();
772                         __pActiveContactNo = new (std::nothrow) String();
773
774                         if(contactNo.IsEmpty())
775                         {
776                                 AppLogDebug("Number empty");
777                                 contactNo.Append(AppUtility::GetResourceString(IDS_NUMBER_UNKNOWN));
778                                 AppLogDebug("%ls",contactNo.GetPointer());
779                         }
780                         __pActiveContactNo->Append(contactNo);
781                         //Show person details
782                         ShowPersonDetails(*__pActiveContactNo, IDC_NUMBER_LABEL, IDC_CALLER_LABEL, pIncomingCall);
783                         //Check if incoming call is hidden call, then do not show "Reject with Message" button
784                         Button* pButtonRejectMessage = static_cast<Button*>(GetControl(IDC_REJECT_MESSAGE_BUTTON));
785                         if (pButtonRejectMessage)
786                         {
787                                 //for hidden call, contact number is not present
788                                 bool showRejectMsgButton = (pIncomingCall->GetContactNumber().IsEmpty() == false);
789                                 pButtonRejectMessage->SetShowState(showRejectMsgButton);
790                                 pButtonRejectMessage->Invalidate(true);
791                         }
792                 }
793                 pArgs->RemoveAll();
794                 delete pArgs;
795                 pArgs = null;
796         }
797         CallApp* pCallApp = static_cast<CallApp*>(CallApp::GetInstance());
798         pCallApp->SetTopMostWindow(true);
799         Button* pButtonRejectMessage = static_cast<Button*>(GetControl(IDC_REJECT_MESSAGE_BUTTON));
800         if (pButtonRejectMessage)
801         {
802                 SetBitmapToRejectMessageButton(IDS_REJECT_MESSAGE_BTN,IDB_REJECT_MESSAGE_BG,
803                                                                            IDB_REJECT_MESSAGE_UP_ARROW, IDB_REJECT_MESSAGE_ICON, false, false);
804                 SetBitmapToRejectMessageButton(IDS_REJECT_MESSAGE_BTN,IDB_REJECT_MESSAGE_BG,
805                                                                            IDB_REJECT_MESSAGE_UP_ARROW, IDB_REJECT_MESSAGE_ICON, false, true);
806                 pButtonRejectMessage->SetActionId(IDA_SHOW_REJECT_CALL_MESSAGE_PANEL);
807                 pButtonRejectMessage->AddActionEventListener(*this);
808         }
809
810         //This called here to handle the case when incoming call comes when
811         // add call is in foreground.
812         //Uncommenting for N_SE-50029
813         __pCallPresentor->OnAppForeground();
814
815 }
816
817 void
818 IncomingCallForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
819 {
820         RemoveOrientationEventListener(*this);
821         if (__pSmallPhotoLabel != null)
822         {
823                 RemoveControl(*__pSmallPhotoLabel);
824                 __pSmallPhotoLabel = null;
825         }
826         for (int i = 0; i < COUNT_ARROW_ELEMENTS; i++)
827         {
828                 __pRejectArrowLabel = static_cast<Label*>(__pRejectArrowLabelsList->GetAt(i));
829                 String RejectVisualEleName(IDI_REJECT_ARROW_VISUAL_ELE_NAME);
830                 RejectVisualEleName.Append(i);
831                 __pRejectArrowVisElem = __pRejectArrowLabel->GetVisualElement()->GetChild(RejectVisualEleName,true);
832                 __pRejectArrowVisElem->SetOpacity(0.0f);
833                 __pAcceptArrowLabel = static_cast<Label*>(__pAcceptArrowLabelsList->GetAt(i));
834                 String AcceptVisualEleName(IDI_ACCEPT_ARROW_VISUAL_ELE_NAME);
835                 AcceptVisualEleName.Append(i);
836                 __pAcceptArrowVisElem = __pAcceptArrowLabel->GetVisualElement()->GetChild(AcceptVisualEleName,true);
837                 __pAcceptArrowVisElem->SetOpacity(0.0f);
838         }
839         if(__pAcceptLabel != null)
840         {
841                 if(__pAcceptLabel->GetVisualElement()->GetChild(IDI_ACCEPT_FINAL_VISUAL_ELE_NAME,true) != null)
842                 {
843                         AppLogDebug("__pAcceptLabel Detatach child");
844                         __pAcceptLabel->GetVisualElement()->DetachChild(*__pAcceptFinalVisElem);
845                 }
846         }
847         if(__pRejectLabel != null)
848         {
849                 if(__pRejectLabel->GetVisualElement()->GetChild(IDI_REJECT_FINAL_VISUAL_ELE_NAME,true) != null)
850                 {
851                         AppLogDebug("__pRejectLabel Detatach child");
852                         __pRejectLabel->GetVisualElement()->DetachChild(*__pRejectFinalVisElem);
853                 }
854
855         }
856         CallApp* pCallApp = static_cast<CallApp*>(CallApp::GetInstance());
857         pCallApp->RemoveAppStateChangeListener(*this);
858 }
859
860 result
861 IncomingCallForm::OnDraw(void)
862 {
863         Bitmap* pBackgroundWp = null;
864         // get a Canvas instance
865         Canvas* pCanvas = GetCanvasN();
866
867         pBackgroundWp = AppResource::GetInstance()->GetBitmapN(IDB_CALL_BG);
868
869         if (pCanvas)
870         {
871
872                 if (pBackgroundWp)
873                 {
874                         pCanvas->DrawBitmap(pCanvas->GetBounds(), *pBackgroundWp);
875                 }
876         }
877
878         delete pBackgroundWp;
879         pBackgroundWp = null;
880
881         delete pCanvas;
882         pCanvas = null;
883
884         return E_SUCCESS;
885 }
886
887 void
888 IncomingCallForm::HideRejectPanel(void)
889 {
890         Panel* pKeysPanel = static_cast<Panel*>(GetControl(IDC_REJECT_PANEL));
891         if (pKeysPanel)
892         {
893                 pKeysPanel->SetShowState(false);
894                 Button* pButtonReject = static_cast<Button*>(pKeysPanel->GetControl(IDC_REJECT_MESSAGE_CANCEL_BUTTON));
895                 pButtonReject->SetActionId(IDA_CANCEL_REJECT_CALL_MESSAGE_PANEL);
896                 pButtonReject->AddActionEventListener(*this);
897                 SetBitmapToRejectMessageButton(IDS_REJECT_MESSAGE_BTN,IDB_REJECT_MESSAGE_BG,
898                                                                            IDB_REJECT_MESSAGE_DOWN_ARROW, IDB_REJECT_MESSAGE_ICON, true, false);
899                 SetBitmapToRejectMessageButton(IDS_REJECT_MESSAGE_BTN,IDB_REJECT_MESSAGE_BG,
900                                                                            IDB_REJECT_MESSAGE_DOWN_ARROW, IDB_REJECT_MESSAGE_ICON, true, true);
901
902                 HideRejectMessageFooter();
903                 pKeysPanel->Invalidate(true);
904         }
905 }
906
907 void
908 IncomingCallForm::InitializeTableView(void)
909 {
910         Panel* pKeysPanel = static_cast<Panel*>(GetControl(IDC_REJECT_PANEL));
911         TableView* pMessageList = static_cast<TableView*>(pKeysPanel->GetControl(IDC_MSG_TABLEVIEW));
912         pMessageList->SetItemProvider(this);
913         pMessageList->AddTableViewItemEventListener(*this);
914 }
915
916 ///////////////////////////////////////////////////////////////////////////////
917 /////                   Table View Functionality supporting functions                    /////
918 //////////////////////////////////////////////////////////////////////////////
919 int
920 IncomingCallForm::GetItemCount(void)
921 {
922         if(__pRejectMessageList != null && __pRejectMessageList->GetCount() > 0)
923         {
924                 return (__pRejectMessageList->GetCount());
925         }
926         return 1;
927 }
928
929 TableViewItem*
930 IncomingCallForm::CreateItem(int itemIndex, int itemWidth)
931 {
932         //create a new item
933         TableViewItem* pItem = new (std::nothrow) TableViewItem();
934         pItem->Construct(Dimension(itemWidth, H_LIST_NORMAL_MENU_ITEM), TABLE_VIEW_ANNEX_STYLE_NORMAL);
935
936         //Message text item rectangle
937         Rectangle itemRect(X_LIST_TEXT_ITEM, 0, W_LIST_TEXT_ITEM, H_LIST_NORMAL_MENU_ITEM);
938
939         //Message
940         String itemName(L"");
941         bool isShowSendButton = true;
942         if(__pRejectMessageList != null && __pRejectMessageList->GetCount() > 0)
943         {
944                 __pRejectMessageList->GetAt(itemIndex, itemName);
945         }
946         else
947         {
948                 itemName.Append(AppUtility::GetResourceString(IDS_NO_MESSAGE_STR));
949                 isShowSendButton = false;
950         }
951
952         Label* pMsgLbl = new (std::nothrow) Label();
953         pMsgLbl->Construct(itemRect, itemName);
954         pMsgLbl->SetTextHorizontalAlignment(ALIGNMENT_LEFT);
955         pMsgLbl->SetTextVerticalAlignment(ALIGNMENT_MIDDLE);
956         pMsgLbl->SetTextConfig(FONT_SIZE_MSG_TXT, LABEL_TEXT_STYLE_NORMAL);
957         pMsgLbl->SetTextColor(COLOR_LIST_TEXT_NORMAL);
958         pItem->AddControl(pMsgLbl);
959
960         //Send Button
961         if(isShowSendButton == true)
962         {
963                 String sendText = AppUtility::GetResourceString(IDS_LIST_SEND_BUTTON);
964                 Button* pSendButton = new (std::nothrow) Button();
965                 pSendButton->Construct(Rectangle(GetClientAreaBounds().width - W_SEND_BUTTON_MARGIN -W_SEND_TEXT_ITEM, Y_SEND_TEXT_ITEM, W_SEND_TEXT_ITEM, H_SEND_TEXT_ITEM), sendText);
966                 //set action id and listener
967                 int actionId = IDA_SEND_REJECT_MSG1;
968                 switch(itemIndex)
969                 {
970                 case 0:
971                         actionId = IDA_SEND_REJECT_MSG1;
972                         break;
973                 case 1:
974                         actionId = IDA_SEND_REJECT_MSG2;
975                         break;
976                 case 2:
977                         actionId = IDA_SEND_REJECT_MSG3;
978                         break;
979                 case 3:
980                         actionId = IDA_SEND_REJECT_MSG4;
981                         break;
982                 case 4:
983                         actionId = IDA_SEND_REJECT_MSG5;
984                         break;
985                 case 5:
986                         actionId = IDA_SEND_REJECT_MSG6;
987                         break;
988                 }
989                 pSendButton->SetActionId(actionId);
990                 pSendButton->AddActionEventListener(*this);
991                 pItem->AddControl(*pSendButton);
992                 pItem->SetIndividualSelectionEnabled(pSendButton, true);
993         }
994         else
995         {
996                 pItem->SetEnabled(false);
997         }
998
999         return pItem;
1000 }
1001
1002 bool
1003 IncomingCallForm::DeleteItem(int itemIndex, TableViewItem* pItem)
1004 {
1005         delete pItem;
1006         pItem = null;
1007         return true;
1008 }
1009
1010 int
1011 IncomingCallForm::GetDefaultItemHeight(void)
1012 {
1013         return H_LIST_NORMAL_MENU_ITEM;
1014 }
1015
1016 void
1017 IncomingCallForm::ShowPersonDetails(const String& phoneNumber, const String& contactLblName, const String& nameLblName, AppCallInfo* pCallInfo)
1018 {
1019         //call individual methods to show contact number, caller name & photo
1020         SetTextToLabel(phoneNumber, contactLblName);
1021
1022         //fetch contact details based on phone number
1023         String* pDisplayName = pCallInfo->FetchLatestCallerNameN(phoneNumber);
1024         Bitmap* pPhotoBitmap = pCallInfo->FetchLatestCallerPhotoN(phoneNumber);
1025         ShowCallerPhoto(pPhotoBitmap);
1026
1027         //free resources
1028         if (pDisplayName)
1029         {
1030                 SetTextToLabel(*pDisplayName, nameLblName);
1031                 delete pDisplayName;
1032                 pDisplayName = null;
1033         }
1034
1035         if (pPhotoBitmap)
1036         {
1037                 delete pPhotoBitmap;
1038                 pPhotoBitmap = null;
1039         }
1040 }
1041
1042 void
1043 IncomingCallForm::SetTextToLabel(const String& textToBeSet, const String& lblName)
1044 {
1045         Label* pContactLbl = static_cast<Label*>(GetControl(lblName));
1046         //passing an empty string to SetText fails in label,
1047         //if previously valid text has been set
1048         if (textToBeSet.IsEmpty() == true && pContactLbl->GetText().IsEmpty() == false)
1049         {
1050                 String stringToBeSet(L"");
1051                 pContactLbl->SetText(stringToBeSet);
1052         }
1053
1054         else
1055         {
1056                 pContactLbl->SetText(textToBeSet);
1057         }
1058 }
1059
1060 void
1061 IncomingCallForm::ShowCallerPhoto(const Bitmap* pPhotoId)
1062 {
1063         bool showSmallPhoto = false;
1064         //show photo - for Big Photo Id, Animated Call Image
1065         if (pPhotoId == null)
1066         {
1067                 pPhotoId = AppUtility::GetBitmapFromResourcesN(IDB_ACTIVE_CALL_DEFAULT_ICON,W_CONFERENCE_PHOTO,W_CONFERENCE_PHOTO);
1068         }
1069         else
1070         {
1071                 //Check the size of photo
1072                 // Now checking the condition with && but actually it should be ||
1073                 //But for now keeping it as && because _pContact->GetThubNail() returns image width as
1074                 // height 270 and width = 480 . So all images set thru gallery is show as small image
1075                 if(pPhotoId->GetHeight() <= H_SMALL_PHOTO
1076                                 && pPhotoId->GetWidth() <= W_SMALL_PHOTO)
1077                 {
1078                         showSmallPhoto = true;
1079                 }
1080         }
1081
1082         Label* pPhotoLbl = static_cast<Label*>(GetControl(IDC_BIG_PHOTO_LABEL));
1083         if(showSmallPhoto == true)
1084         {
1085                 ShowThumbnailImage(pPhotoId);
1086         }
1087         else
1088         {
1089                 if (pPhotoLbl != null && pPhotoId != null)
1090                 {
1091                         Canvas* pCanvas = new (std::nothrow) Canvas;
1092                         Rectangle canvasRect(Rectangle(0, 0, pPhotoLbl->GetBounds().width, pPhotoLbl->GetBounds().height));
1093                         pCanvas->Construct(canvasRect);
1094                         //draw the contact bitmap
1095                         pCanvas->DrawBitmap(canvasRect,*pPhotoId);
1096                         Bitmap* pNewPhotoId = new Bitmap();
1097                         pNewPhotoId->Construct(*pCanvas, pCanvas->GetBounds());
1098                         delete pCanvas;
1099
1100                         pPhotoLbl->SetBackgroundBitmap(*pNewPhotoId);
1101                         pPhotoLbl->Invalidate(true);
1102                         delete pNewPhotoId;
1103                 }
1104         }
1105 }
1106
1107 void
1108 IncomingCallForm::ShowThumbnailImage(const Bitmap* pPhotoId)
1109 {
1110         Label* pPhotoLbl = static_cast<Label*>(GetControl(IDC_BIG_PHOTO_LABEL));
1111
1112         if (pPhotoLbl != null && pPhotoId != null)
1113         {
1114                 Canvas* pCanvas = new (std::nothrow) Canvas;
1115                 Bitmap* pBackground = AppUtility::GetBitmapFromResourcesN(IDB_CALL_THUMBNAIL_BACKGROUND,W_CALL_THUMBNAIL,H_CALL_THUMBNAIL);
1116                 Bitmap* pShadow = AppUtility::GetBitmapFromResourcesN(IDB_CALL_THUMBNAIL_SHADOW,W_CALL_THUMBNAIL_SHADOW,H_CALL_THUMBNAIL_SHADOW);
1117                 Rectangle canvasRect(Rectangle(0, 0, pPhotoLbl->GetBounds().width, pPhotoLbl->GetBounds().height));
1118                 pCanvas->Construct(canvasRect);
1119                 //draw the back ground
1120                 pCanvas->DrawBitmap(canvasRect,*pBackground);
1121                 //draw shadow (to be enabled after correct shadow image is provided )
1122                 //pCanvas->DrawBitmap(Rectangle((pPhotoLbl->GetBounds().width/2)-(W_CALL_THUMBNAIL_SHADOW/2),
1123                         //      (pPhotoLbl->GetBounds().height/2)-(H_CALL_THUMBNAIL_SHADOW/2),W_CALL_THUMBNAIL_SHADOW,H_CALL_THUMBNAIL_SHADOW),*pShadow);
1124                 //draw the contact bitmap
1125                 pCanvas->DrawBitmap(Rectangle((pPhotoLbl->GetBounds().width/2)-(W_SMALL_PHOTO/2),
1126                                 (pPhotoLbl->GetBounds().height/2)-(H_SMALL_PHOTO/2),W_SMALL_PHOTO,H_SMALL_PHOTO),*pPhotoId);
1127                 Bitmap* pNewPhotoId = new Bitmap();
1128                 pNewPhotoId->Construct(*pCanvas, pCanvas->GetBounds());
1129                 delete pCanvas;
1130
1131                 pPhotoLbl->SetBackgroundBitmap(*pNewPhotoId);
1132                 pPhotoLbl->Invalidate(true);
1133                 delete pNewPhotoId;
1134                 delete pBackground;
1135                 delete pShadow;
1136         }
1137
1138 }
1139
1140 void
1141 IncomingCallForm::ShowCallersPhotoThumbnail(const Bitmap& pPhotoId)
1142 {
1143         //Draw Small Photo and show on small photo label
1144         __pSmallPhotoLabel  = new (std::nothrow) Label();//static_cast<Label*>(GetControl(IDC_SMALL_PHOTO_LABEL));
1145         __pSmallPhotoLabel->Construct(Rectangle(X_PHOTO_LBL, Y_PHOTO_LBL, W_PHOTO_LBL, H_PHOTO_LBL), L"");
1146         __pSmallPhotoLabel->SetBackgroundColor(Color(0,0,0));
1147         __pSmallPhotoLabel->SetBackgroundBitmap(pPhotoId);
1148         // Add a Label to the Form
1149         AddControl(*__pSmallPhotoLabel);
1150         __pSmallPhotoLabel->Invalidate(true);
1151 }
1152
1153 void
1154 IncomingCallForm::ShowTimerInfo(const String& timerLblName, const String& textToBeDisplayed)
1155 {
1156         Label* pTimerLbl = static_cast<Label*>(GetControl(timerLblName));
1157         if (pTimerLbl != null)
1158         {
1159                 pTimerLbl->SetText(textToBeDisplayed);
1160         }
1161 }
1162
1163 void
1164 IncomingCallForm::SetBitmapToRejectMessageButton(const String& btnName, const String& bgBitmap
1165                                                                                                 , const String& arrowBitmap, const String& messageIconBitmap, bool isButtonInPanel, bool setButtonPressBitmap)
1166 {
1167
1168         Button* pButton = null;
1169         if (isButtonInPanel == false)
1170         {
1171                 pButton = static_cast<Button*>(GetControl(IDC_REJECT_MESSAGE_BUTTON));
1172         }
1173         else
1174         {
1175                 Panel* pKeysPanel = static_cast<Panel*>(GetControl(IDC_REJECT_PANEL));
1176                 pButton = static_cast<Button*>(pKeysPanel->GetControl(IDC_REJECT_MESSAGE_CANCEL_BUTTON));
1177         }
1178         Bitmap* pHoldBmp = null;
1179         Canvas* pCanvas = null;
1180         pCanvas = new (std::nothrow) Canvas();
1181         pCanvas->Construct(Rectangle(0,0,pButton->GetBounds().width,pButton->GetBounds().height));
1182         //set bitmap to button
1183         pHoldBmp = AppUtility::GetBitmapFromResourcesN(bgBitmap);
1184         if (pHoldBmp)
1185         {
1186                 //scale bitmap to predefined size
1187                 pHoldBmp->SetScalingQuality(BITMAP_SCALING_QUALITY_MID);
1188                 pHoldBmp->Scale(Dimension(pButton->GetBounds().width, H_MESSAGE_BG_BITMAP));
1189                 pCanvas->DrawBitmap(Rectangle(Point(0, 0), Dimension(pHoldBmp->GetWidth(), pHoldBmp->GetHeight())), *pHoldBmp);
1190         }
1191         delete pHoldBmp;
1192         pHoldBmp = null;
1193         pHoldBmp = AppUtility::GetBitmapFromResourcesN(arrowBitmap);
1194         if (pHoldBmp)
1195         {
1196                 //scale bitmap to predefined size
1197                 pHoldBmp->SetScalingQuality(BITMAP_SCALING_QUALITY_MID);
1198                 pHoldBmp->Scale(Dimension(W_ARROW_BITMAP, H_ARROW_BITMAP));
1199                 pCanvas->DrawBitmap(Rectangle(Point((pButton->GetBounds().width / 2 - 17/*Width of arrow / 2*/), 0), Dimension(pHoldBmp->GetWidth(), pHoldBmp->GetHeight())), *pHoldBmp);
1200         }
1201         delete pHoldBmp;
1202         pHoldBmp = null;
1203
1204
1205
1206         //set button name
1207         String holdBtnName = AppUtility::GetResourceString(btnName);
1208         FloatDimension textDimension;
1209         if (!holdBtnName.IsEmpty())
1210         {
1211                 Font font;
1212                 font.Construct(FONT_STYLE_PLAIN, pButton->GetTextSize());
1213                 font.GetTextExtent(holdBtnName, holdBtnName.GetLength(), textDimension);
1214                 textDimension.height = textDimension.height + font.GetDescender();
1215                 TextElement* pTextElement = new (std::nothrow) TextElement();
1216                 pTextElement->Construct(holdBtnName);
1217                 Color textColor(249, 249, 249);
1218                 if (setButtonPressBitmap)
1219                 {
1220                         textColor.SetAlpha(255);
1221                 }
1222                 else
1223                 {
1224                         textColor.SetAlpha(127);
1225                 }
1226
1227                 pTextElement->SetTextColor(textColor);
1228                 pTextElement->SetFont(font);
1229
1230                 EnrichedText* pEnrichedText = new (std::nothrow) EnrichedText();
1231                 pEnrichedText->Construct(textDimension);
1232                 pEnrichedText->Add(*pTextElement);
1233                 //Point textPos((X_MESSAGE_BITMAP + pHoldBmp->GetWidth() + MESSAGE_TEXT_X_MARGIN), Y_MESSAGE_BITMAP + MESSAGE_TEXT_Y_MARGIN);
1234                 Point textPos((pButton->GetWidth()/2)-(textDimension.width/2) + MESSAGE_TEXT_X_MARGIN,Y_MESSAGE_BITMAP + MESSAGE_TEXT_Y_MARGIN);
1235                 pCanvas->DrawText(textPos, *pEnrichedText);
1236                 // Cleans up
1237                 pEnrichedText->RemoveAll(true);
1238                 delete pEnrichedText;
1239         }
1240
1241
1242         pHoldBmp = AppUtility::GetBitmapFromResourcesN(messageIconBitmap);
1243         if (pHoldBmp)
1244         {
1245                 //scale bitmap to predefined size
1246                 pHoldBmp->SetScalingQuality(BITMAP_SCALING_QUALITY_MID);
1247                 pHoldBmp->Scale(Dimension(W_MESSAGE_BITMAP, H_MESSAGE_BITMAP));
1248                 //pCanvas->DrawBitmap(Rectangle(Point(X_MESSAGE_BITMAP, Y_MESSAGE_BITMAP), Dimension(pHoldBmp->GetWidth(), pHoldBmp->GetHeight())), *pHoldBmp);
1249                 pCanvas->DrawBitmap(Rectangle(Point((pButton->GetWidth()/2)-(textDimension.width/2) -pHoldBmp->GetWidth(), Y_MESSAGE_BITMAP), Dimension(pHoldBmp->GetWidth(), pHoldBmp->GetHeight())), *pHoldBmp);
1250         }
1251
1252         //set background bitmpa to button
1253         Bitmap* pActualBgBmp = new (std::nothrow) Bitmap();
1254         pActualBgBmp->Construct(*pCanvas, pCanvas->GetBounds());
1255         if (setButtonPressBitmap)
1256         {
1257                 pButton->SetPressedBackgroundBitmap(*pActualBgBmp);
1258         }
1259         else
1260         {
1261                 pButton->SetNormalBackgroundBitmap(*pActualBgBmp);
1262         }
1263         delete pActualBgBmp;
1264         delete pHoldBmp;
1265         delete pCanvas;
1266 }
1267
1268 /*!In OnTouchPressed, It creates the three visual elements and starts the animation of opacity and rotation variation
1269   */
1270 void
1271 IncomingCallForm::OnTouchPressed(const Control& source, const Point& currentPosition, const TouchEventInfo& touchInfo)
1272 {
1273         //__pCallPresentor->StopAlert();
1274         if (currentPosition.x < VALID_TOUCH_X_OFFSET && currentPosition.y < VALID_TOUCH_Y_OFFSET)
1275         {
1276                 Rectangle rect = source.GetBounds();
1277                 if (source.Equals(*__pAcceptLabel))
1278                 {
1279                         __isAnswerCallStarted = true;
1280                         __isRejectCallStarted = false;
1281                 }
1282                 else if (source.Equals(*__pRejectLabel))
1283                 {
1284                         __isAnswerCallStarted = false;
1285                         __isRejectCallStarted = true;
1286                 }
1287                 else
1288                 {
1289                         // touch event between the 2 labels. So Do nothing
1290                         return;
1291                 }
1292
1293         }
1294 }
1295
1296 // On Touch released, the animation and the visual elements disappear
1297 void
1298 IncomingCallForm::OnTouchReleased(const Control& source, const Point& currentPosition, const TouchEventInfo& touchInfo)
1299 {
1300         AppLogDebug("%d",currentPosition.x);
1301         if (__isAnswerCallStarted == true)
1302         {
1303                 if (currentPosition.x > __pRejectLabel->GetBounds().x)
1304                 {
1305                         //Right reject icon
1306                         if(__pRejectFinalVisElem == null)
1307                         {
1308                                 __pRejectFinalVisElem = new (std::nothrow) VisualElement();
1309                                 __pRejectFinalVisElem->Construct();
1310                                 __pRejectFinalVisElem->SetName(IDI_REJECT_FINAL_VISUAL_ELE_NAME);
1311                         }
1312                         __pRejectFinalVisElem->SetBounds(FloatRectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL));
1313                         __pRejectFinalVisElem->SetShowState(true);
1314                         __pRejectFinalVisElem->SetOpacity(1.00f);
1315                         if(__pRejectLabel->GetVisualElement()->GetChild(IDI_REJECT_FINAL_VISUAL_ELE_NAME,true) == null)
1316                         {
1317                                 AppLogDebug("AttachChild __pRejectFinalVisElem");
1318                                 __pRejectLabel->GetVisualElement()->AttachChild(*__pRejectFinalVisElem);
1319                         }
1320                         Canvas* pCanvas = __pRejectFinalVisElem->GetCanvasN();
1321                         if(pCanvas != null)
1322                         {
1323                                 pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
1324                                 pCanvas->FillRectangle(COLOR_SWIPE_PANEL, Rectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL));
1325                                 pCanvas->DrawBitmap(Rectangle(0, 0, W_DIAL_LABEL, W_DIAL_LABEL), *__pAcceptCircle);
1326                                 pCanvas->DrawBitmap(Rectangle(DIAL_ICON_X_OFFSET, DIAL_ICON_Y_OFFSET, W_DIAL_BITMAP, H_DIAL_BITMAP), *__pAcceptDial);
1327                                 delete pCanvas;
1328                         }
1329
1330                         __pAcceptVisElem->SetOpacity(0.0f);
1331                         //fetch already active call list
1332                         ArrayListT<AppCallInfo>* pCallList  = static_cast<ArrayListT<AppCallInfo>*>(__pCallPresentor->GetCallListN());
1333                         if (pCallList != null && pCallList->GetCount() > 0)
1334                         {
1335                                 //then atleast 1 active call exist.
1336                                 AppCallInfo phnCallInfo;
1337                                 pCallList->GetAt(0,phnCallInfo);
1338                                 //Check if only 1 call exist and it is on Hold
1339                                 if(pCallList->GetCount() == 1 && phnCallInfo.IsOnHold())
1340                                 {
1341                                         //directly accept call
1342                                         __pCallPresentor->AcceptIncomingCall(ANSERWING_OPTION_ACCEPT_CALL,__incomingCallHandle);
1343                                 }
1344                                 else
1345                                 {
1346                                         //Either 1 call exist and not "on Hold".
1347                                         //Or 2 calls exist.
1348                                         if(__pOptionPopup != null)
1349                                         {
1350                                                 delete __pOptionPopup;
1351                                                 __pOptionPopup = null;
1352                                         }
1353                                         __pOptionPopup = new (std::nothrow) CallOptionPopup(*this,*(__pCallPresentor));
1354                                         __pOptionPopup->Initialize();
1355                                         __pOptionPopup->SetShowState(true);
1356                                         __pOptionPopup->Draw();
1357                                         __pOptionPopup->Show();
1358                                 }
1359                                 pCallList->RemoveAll();
1360                         }
1361                         else
1362                         {
1363                                 //no active call - Accept the  incoming call
1364                                 __pCallPresentor->AcceptIncomingCall(ANSERWING_OPTION_ACCEPT_CALL,__incomingCallHandle);
1365                         }
1366                         delete pCallList;
1367                         pCallList = null;
1368                 }
1369                 else
1370                 {
1371                         __pAcceptVisElem->SetOpacity(1.0f);
1372                         __pRejectVisElem->SetOpacity(1.00f);
1373
1374                 }
1375         }
1376         else if (__isRejectCallStarted == true)
1377         {
1378                 if (currentPosition.x < ((__pAcceptLabel->GetBounds().x + __pAcceptLabel->GetWidth())- __pRejectLabel->GetBounds().x))
1379                 {
1380                         //left dial icon
1381                         if(__pAcceptFinalVisElem == null)
1382                         {
1383                                 __pAcceptFinalVisElem = new (std::nothrow) VisualElement();
1384                                 __pAcceptFinalVisElem->Construct();
1385                                 __pAcceptFinalVisElem->SetName(IDI_ACCEPT_FINAL_VISUAL_ELE_NAME);
1386                         }
1387                         __pAcceptFinalVisElem->SetBounds(FloatRectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL));
1388                         __pAcceptFinalVisElem->SetOpacity(1.0f);
1389
1390
1391                         if(__pAcceptLabel->GetVisualElement()->GetChild(IDI_ACCEPT_FINAL_VISUAL_ELE_NAME,true) == null)
1392                         {
1393                                 AppLogDebug("AttachChild __pAcceptFinalVisElem");
1394                                 __pAcceptLabel->GetVisualElement()->AttachChild(*__pAcceptFinalVisElem);
1395                         }
1396                         Canvas* pCanvas = __pAcceptFinalVisElem->GetCanvasN();
1397                         if(pCanvas != null)
1398                         {
1399                                 AppLogDebug("__pAcceptFinalVisElem drawing");
1400                                 pCanvas->SetBackgroundColor(COLOR_SWIPE_PANEL);
1401                                 pCanvas->SetForegroundColor(COLOR_SWIPE_PANEL);
1402                                 pCanvas->FillRectangle(COLOR_SWIPE_PANEL, Rectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL));
1403                                 pCanvas->DrawBitmap(Rectangle(0, 0, W_DIAL_LABEL, H_DIAL_LABEL), *__pRejectCircle);
1404                                 pCanvas->DrawBitmap(Rectangle(DIAL_ICON_X_OFFSET, DIAL_ICON_Y_OFFSET, W_DIAL_BITMAP, H_DIAL_BITMAP), *__pRejectDial);
1405                                 delete pCanvas;
1406                         }
1407                         __pRejectVisElem->SetOpacity(0.0f);
1408                         //Reject the call
1409                         __pCallPresentor->RejectCall(__incomingCallHandle, false,*__pActiveContactNo);
1410                 }
1411                 else
1412                 {
1413                         __pAcceptVisElem->SetOpacity(1.0f);
1414                         __pRejectVisElem->SetOpacity(1.00f);
1415
1416                 }
1417         }
1418         __isAnswerCallStarted = false;
1419         __isRejectCallStarted = false;
1420 }
1421
1422 void
1423 IncomingCallForm::OnTouchMoved(const Control& source, const Point& currentPosition, const TouchEventInfo& touchInfo)
1424 {
1425         if (__isAnswerCallStarted == true)
1426         {
1427                 if (currentPosition.x > 170 && currentPosition.x < 578)
1428                 {
1429                         if (currentPosition.x > REJECT_LABEL_X_OFFSET)
1430                         {
1431                                 __pRejectVisElem->SetOpacity(0.60f);
1432                                 __pAcceptVisElem->SetOpacity(0.60f);
1433                         }
1434                         else
1435                         {
1436                                 __pRejectVisElem->SetOpacity(1.0f);
1437                                 __pAcceptVisElem->SetOpacity(1.0f);
1438                         }
1439
1440                 }
1441         }
1442         if (__isRejectCallStarted == true)
1443         {
1444                 if (currentPosition.x < 0 && currentPosition.x > -522)
1445                 {
1446                         if (currentPosition.x < ACCEPT_LABEL_RELATIVE_POS)
1447                         {
1448                                 __pRejectVisElem->SetOpacity(0.60f);
1449                                 __pAcceptVisElem->SetOpacity(0.60f);
1450                         }
1451                         else
1452                         {
1453                                 __pRejectVisElem->SetOpacity(1.0f);
1454                                 __pAcceptVisElem->SetOpacity(1.0f);
1455                         }
1456                 }
1457         }
1458 }
1459
1460 void
1461 IncomingCallForm::OnItemSelected(int itemIndex)
1462 {
1463         ArrayList* pArgs = new (std::nothrow) ArrayList(SingleObjectDeleter);
1464         pArgs->Construct();
1465
1466         //display name, mobile number
1467         Integer* argIndex = new (std::nothrow) Integer(itemIndex);
1468         pArgs->Add(argIndex);
1469         SendUserEvent(REQUEST_ITEM_SELECTED,pArgs);
1470 }
1471
1472 void
1473 IncomingCallForm::HandleMultipleCallSelection(int itemIndex)
1474 {
1475         if(__pAcceptLabel->GetVisualElement()->GetChild(IDI_ACCEPT_VISUAL_ELE_NAME,true) == null)
1476         {
1477                 __pAcceptLabel->GetVisualElement()->AttachChild(*__pAcceptVisElem);
1478         }
1479         if(__pRejectLabel->GetVisualElement()->GetChild(IDI_REJECT_VISUAL_ELE_NAME,true) == null)
1480         {
1481                 __pRejectLabel->GetVisualElement()->AttachChild(*__pRejectVisElem);
1482         }
1483
1484         __pAcceptVisElem->SetOpacity(1.0f);
1485         __pRejectVisElem->SetOpacity(1.00f);
1486
1487         if (__pRejectFinalVisElem != null)
1488         {
1489                 __pRejectFinalVisElem->Destroy();
1490                 __pRejectFinalVisElem = null;
1491         }
1492         if (__pAcceptFinalVisElem != null)
1493         {
1494                 __pAcceptFinalVisElem->Destroy();
1495                 __pAcceptFinalVisElem = null;
1496         }
1497
1498         if (__pOptionPopup)
1499         {
1500                 delete __pOptionPopup;
1501                 __pOptionPopup = null;
1502         }
1503         //accept call
1504         if(itemIndex != IDA_BUTTON_CANCEL_OPTIONS_POPUP)
1505         {
1506                 __pCallPresentor->AcceptIncomingCall(CallAnsweringOptions(itemIndex),__incomingCallHandle);
1507         }
1508 }
1509
1510 void
1511 IncomingCallForm::OnUserEventReceivedN(RequestId requestId, Tizen::Base::Collection::IList* pArgs)
1512 {
1513         switch(requestId)
1514         {
1515                 case REQUEST_ITEM_SELECTED:
1516                 {
1517                         if(pArgs != null)
1518                         {
1519                                 Integer *index = static_cast<Integer*>(pArgs->GetAt(0));
1520                                 if(index != null)
1521                                 {
1522                                         HandleMultipleCallSelection(index->ToInt());
1523                                 }
1524                         }
1525                 }
1526                 break;
1527         }
1528 }
1529
1530 void
1531 IncomingCallForm::OnFormBackRequested(Tizen::Ui::Controls::Form& source)
1532 {
1533         AppLogDebug("Enter");
1534         HideRejectPanel();
1535         //SetFocus();
1536         Button* pButtonRejectMessage = static_cast<Button*>(GetControl(IDC_REJECT_MESSAGE_BUTTON));
1537         if (pButtonRejectMessage)
1538         {
1539                 pButtonRejectMessage->SetShowState(true);
1540                 pButtonRejectMessage->Invalidate(true);
1541                 pButtonRejectMessage->Draw();
1542         }
1543         RequestRedraw(true);
1544
1545 }
1546
1547 void
1548 IncomingCallForm::OnOrientationChanged(const Control& source, OrientationStatus orientationStatus)
1549 {
1550         Panel* pKeysPanel = static_cast<Panel*>(GetControl(IDC_REJECT_PANEL));
1551         if(pKeysPanel->GetShowState() == true)
1552         {
1553                 HideRejectMessagePanel();
1554                 ShowRejectMessagePanel();
1555         }
1556
1557         Button* pButtonRejectMessage = static_cast<Button*>(GetControl(IDC_REJECT_MESSAGE_BUTTON));
1558         if (pButtonRejectMessage != null)
1559         {
1560                 SetBitmapToRejectMessageButton(IDS_REJECT_MESSAGE_BTN,IDB_REJECT_MESSAGE_BG,
1561                                                                            IDB_REJECT_MESSAGE_UP_ARROW, IDB_REJECT_MESSAGE_ICON, false, false);
1562                 SetBitmapToRejectMessageButton(IDS_REJECT_MESSAGE_BTN,IDB_REJECT_MESSAGE_BG,
1563                                                                            IDB_REJECT_MESSAGE_UP_ARROW, IDB_REJECT_MESSAGE_ICON, false, true);
1564                 pButtonRejectMessage->Invalidate(true);
1565         }
1566
1567         Button* pButtonReject = static_cast<Button*>(pKeysPanel->GetControl(IDC_REJECT_MESSAGE_CANCEL_BUTTON));
1568         if (pButtonReject != null)
1569         {
1570                 SetBitmapToRejectMessageButton(IDS_REJECT_MESSAGE_BTN,IDB_REJECT_MESSAGE_BG,
1571                                                                            IDB_REJECT_MESSAGE_DOWN_ARROW, IDB_REJECT_MESSAGE_ICON, true, false);
1572                 SetBitmapToRejectMessageButton(IDS_REJECT_MESSAGE_BTN,IDB_REJECT_MESSAGE_BG,
1573                                                                            IDB_REJECT_MESSAGE_DOWN_ARROW, IDB_REJECT_MESSAGE_ICON, true, true);
1574                 pButtonReject->Invalidate(true);
1575         }
1576 }
1577
1578 void
1579 IncomingCallForm::OnForeground(void)
1580 {
1581         AppLogDebug("Enter");
1582         //This is done so that when in IncomingCallForm and calloptionpopup is shown , now if
1583         // focus goes away from popup by pressing cancel key from the host keyboard the focus shouldnt get lost
1584         // but should focus the Reject message button immediately.
1585         Button* pButtonRejectMessage = static_cast<Button*>(GetControl(IDC_REJECT_MESSAGE_BUTTON));
1586         pButtonRejectMessage->SetFocus();
1587         pButtonRejectMessage->Invalidate(true);
1588         __pCallPresentor->OnAppForeground();
1589 }
1590
1591 void
1592 IncomingCallForm::OnScreenOff(void)
1593 {
1594         __pCallPresentor->StopAlert();
1595 }
1596
1597 void
1598 IncomingCallForm::CallDisconnected(void)
1599 {
1600         //check if no call option popup is shown, then remain on incoming call screen.
1601         //As user has neither accepted nor rejected incoming call.
1602         if ((__pOptionPopup == null) || (__pOptionPopup->GetShowState() == false))
1603         {
1604                 return;
1605         }
1606
1607         //fetch already active call list and show updated option popup
1608         ArrayListT<AppCallInfo>* pCallList  = static_cast<ArrayListT<AppCallInfo>*>(__pCallPresentor->GetCallListN());
1609         if (pCallList != null && pCallList->GetCount() > 0)
1610         {
1611                 //then atleast 1 active call exist.
1612                 AppCallInfo phnCallInfo;
1613                 pCallList->GetAt(0,phnCallInfo);
1614                 //Check if only 1 call exist and it is on Hold
1615                 if(pCallList->GetCount() == 1 && phnCallInfo.IsOnHold())
1616                 {
1617                         //directly accept call
1618                         __pCallPresentor->AcceptIncomingCall(ANSERWING_OPTION_ACCEPT_CALL,__incomingCallHandle);
1619                 }
1620                 else
1621                 {
1622                         //Either 1 call exist and not "on Hold".
1623                         //Or 2 calls exist.
1624                         if(__pOptionPopup != null)
1625                         {
1626                                 delete __pOptionPopup;
1627                                 __pOptionPopup = null;
1628                         }
1629                         __pOptionPopup = new (std::nothrow) CallOptionPopup(*this,*(__pCallPresentor));
1630                         __pOptionPopup->Initialize();
1631                         __pOptionPopup->SetShowState(true);
1632                         __pOptionPopup->Draw();
1633                         __pOptionPopup->Show();
1634                 }
1635                 pCallList->RemoveAll();
1636         }
1637         else
1638         {
1639                 //no active call - Accept the  incoming call
1640                 __pCallPresentor->AcceptIncomingCall(ANSERWING_OPTION_ACCEPT_CALL,__incomingCallHandle);
1641         }
1642         delete pCallList;
1643         pCallList = null;
1644 }