2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
9 // http://www.apache.org/licenses/LICENSE-2.0/
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
19 * @file FUiCtrl_EditTimePresenter.cpp
20 * @brief This is the implementation file for the _EditTimePresenter class.
23 #include <FSysSettingInfo.h>
24 #include <FGrp_BitmapImpl.h>
25 #include <FGrp_TextTextObject.h>
26 #include <FGrp_TextTextSimple.h>
27 #include <FGrp_FontImpl.h>
28 #include "FUi_CoordinateSystemUtils.h"
29 #include "FUi_ResourceManager.h"
30 #include "FUiCtrl_EditTimePresenter.h"
31 #include "FUiCtrl_EditTime.h"
32 #include "FUiCtrl_DateTimeModel.h"
33 #include "FUiCtrl_DateTimeUtils.h"
34 #include "FUiAnim_VisualElement.h"
35 #include "FUiAnimVisualElementPropertyAnimation.h"
36 #include "FGrpColor.h"
38 using namespace Tizen::Graphics;
39 using namespace Tizen::Base;
40 using namespace Tizen::Graphics::_Text;
41 using namespace Tizen::Ui::Animations;
42 using namespace Tizen::System;
44 namespace Tizen { namespace Ui { namespace Controls
46 _EditTimePresenter::_EditTimePresenter(const String& title)
47 : __pEditDateTimeModel(null)
49 , __bounds(FloatRectangle())
50 , __titleBounds(FloatRectangle())
51 , __ampmString(String())
52 , __hourString(String())
53 , __minuteString(String())
56 , __is24hoursSet(false)
58 , __timePickerEnabled(true)
59 , __selectedId(DATETIME_ID_NONE)
60 , __lastSelectedId(DATETIME_ID_NONE)
61 , __touchMoveHandled(false)
62 , __pAmPmBgNormalColorReplacementBitmap(null)
63 , __pAmPmBgDisabledColorReplacementBitmap(null)
64 , __pAmPmBgPressedColorReplacementBitmap(null)
65 , __pAmPmBgHighlightedColorReplacementBitmap(null)
66 , __pAmPmBgEffectNomralBitmap(null)
67 , __pAmPmBgEffectPressedBitmap(null)
68 , __pAmPmBgEffectDisabledBitmap(null)
69 , __pColonColorReplacementBitmap(null)
70 , __pColonDisabledColorReplacementBitmap(null)
71 , __pContentBgNormalColorReplacementBitmap(null)
72 , __pContentBgDisabledColorReplacementBitmap(null)
73 , __pContentBgPressedColorReplacementBitmap(null)
74 , __pContentBgHighlightedColorReplacementBitmap(null)
75 , __pContentBgEffectNormalBitmap(null)
76 , __pContentBgEffectPressedBitmap(null)
77 , __pContentBgEffectDisabledBitmap(null)
78 , __pContentProvider(null)
82 , __amPmTextSize(0.0f)
83 , __titleFontSize(0.0f)
84 , __timeFontSize(0.0f)
85 , __isAnimating(false)
86 , __isEditTimeInitialized(false)
87 , __focusStatus(FOCUS_NONE)
88 , __isEnterKeyPressed(false)
93 _EditTimePresenter::~_EditTimePresenter(void)
95 __textObject.RemoveAll();
96 __titleObject.RemoveAll();
98 delete __pEditDateTimeModel;
99 __pEditDateTimeModel = null;
101 delete __pAmPmBgNormalColorReplacementBitmap;
102 __pAmPmBgNormalColorReplacementBitmap = null;
104 delete __pAmPmBgDisabledColorReplacementBitmap;
105 __pAmPmBgDisabledColorReplacementBitmap = null;
107 delete __pAmPmBgPressedColorReplacementBitmap;
108 __pAmPmBgPressedColorReplacementBitmap = null;
110 delete __pAmPmBgHighlightedColorReplacementBitmap;
111 __pAmPmBgHighlightedColorReplacementBitmap = null;
113 delete __pAmPmBgEffectNomralBitmap;
114 __pAmPmBgEffectNomralBitmap = null;
116 delete __pAmPmBgEffectPressedBitmap;
117 __pAmPmBgEffectPressedBitmap = null;
119 delete __pAmPmBgEffectDisabledBitmap;
120 __pAmPmBgEffectDisabledBitmap = null;
122 delete __pColonColorReplacementBitmap;
123 __pColonColorReplacementBitmap = null;
125 delete __pColonDisabledColorReplacementBitmap;
126 __pColonDisabledColorReplacementBitmap = null;
128 delete __pContentBgNormalColorReplacementBitmap;
129 __pContentBgNormalColorReplacementBitmap = null;
131 delete __pContentBgDisabledColorReplacementBitmap;
132 __pContentBgDisabledColorReplacementBitmap = null;
134 delete __pContentBgPressedColorReplacementBitmap;
135 __pContentBgPressedColorReplacementBitmap = null;
137 delete __pContentBgHighlightedColorReplacementBitmap;
138 __pContentBgHighlightedColorReplacementBitmap = null;
140 delete __pContentBgEffectNormalBitmap;
141 __pContentBgEffectNormalBitmap = null;
143 delete __pContentBgEffectPressedBitmap;
144 __pContentBgEffectPressedBitmap = null;
146 delete __pContentBgEffectDisabledBitmap;
147 __pContentBgEffectDisabledBitmap = null;
151 _EditTimePresenter::CreateInstanceN(const _EditTime& editTime, const String& title)
153 _EditTimePresenter* pEditTimePresenter = new (std::nothrow) _EditTimePresenter(title);
154 SysTryReturn(NID_UI_CTRL, pEditTimePresenter, null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
156 pEditTimePresenter->__pEditTime = const_cast <_EditTime*>(&editTime);
158 pEditTimePresenter->__pEditDateTimeModel = new (std::nothrow) _DateTimeModel;
159 SysTryCatch(NID_UI_CTRL, pEditTimePresenter->__pEditDateTimeModel, , E_OUT_OF_MEMORY,
160 "[E_OUT_OF_MEMORY] Memory allocation failed.");
162 return pEditTimePresenter;
165 delete pEditTimePresenter;
170 _EditTimePresenter::GetTime(void) const
173 time.SetValue(DATETIME_YEAR_MIN, DATETIME_MONTH_MIN, DATETIME_DAY_MIN, GetHour(), GetMinute(), 0);
179 _EditTimePresenter::GetHour(void) const
181 return __pEditDateTimeModel->GetHour();
185 _EditTimePresenter::GetMinute(void) const
187 return __pEditDateTimeModel->GetMinute();
191 _EditTimePresenter::SetTime(const DateTime& time)
193 __pEditDateTimeModel->SetDateTime(time);
197 _EditTimePresenter::SetCurrentTime(void)
199 __pEditDateTimeModel->SetCurrentDateTime();
204 _EditTimePresenter::SetHour(int hour)
206 return __pEditDateTimeModel->SetHour(hour);
210 _EditTimePresenter::SetMinute(int minute)
212 return __pEditDateTimeModel->SetMinute(minute);
216 _EditTimePresenter::SetTimePickerEnabled(bool enable)
218 __timePickerEnabled = enable;
223 _EditTimePresenter::IsTimePickerEnabled(void) const
225 return __timePickerEnabled;
229 _EditTimePresenter::Set24HourNotationEnabled(bool enable)
232 __is24hoursSet = true;
237 _EditTimePresenter::Is24HourNotationEnabled(void) const
243 _EditTimePresenter::SetTimeConversion(void)
245 int hour = GetHour();
246 int minute = GetMinute();
248 if (__24hours == false)
250 int max = DATETIME_HOUR_MAX_FOR_24NOTATION;
254 __hourString.Format(10, L"%02d", hour - max);
256 else if (hour == DATETIME_HOUR_MIN)
258 __hourString.Format(10, L"%02d", hour + DATETIME_HOUR_MAX_FOR_24NOTATION);
262 __hourString.Format(10, L"%02d", hour);
265 __minuteString.Format(10, L"%02d", minute);
269 __hourString.Format(10, L"%02d", hour);
270 __minuteString.Format(10, L"%02d", minute);
277 _EditTimePresenter::SetAmEnabled(bool amEnable)
282 _DateTimeUtils dateTimeUtils;
283 dateTimeUtils.GetAmPm(textAm, AM_TYPE);
284 dateTimeUtils.GetAmPm(textPm, PM_TYPE);
286 __amEnable = amEnable;
287 int hour = GetHour();
289 if (__amEnable == true)
291 __ampmString = textAm;
292 if (hour >= DATETIME_HOUR_MAX_FOR_24NOTATION)
294 SetHour(hour - DATETIME_HOUR_MAX_FOR_24NOTATION);
299 __ampmString = textPm;
300 if (hour < DATETIME_HOUR_MAX_FOR_24NOTATION)
302 SetHour(hour + DATETIME_HOUR_MAX_FOR_24NOTATION);
310 _EditTimePresenter::GetAmEnabled(void) const
316 _EditTimePresenter::GetDisplayAreaBoundsFromHoursStyle(_DateTimeId displayBoxId) const
318 SysTryReturn(NID_UI_CTRL, displayBoxId >= DATETIME_ID_HOUR && displayBoxId <= DATETIME_ID_AMPM, FloatRectangle(),
319 E_OUT_OF_RANGE, "[E_OUT_OF_RANGE] displayBoxId is out of range.");
321 FloatRectangle bounds(0.0f, 0.0f, 0.0f, 0.0f);
323 float editTimeHeight = 0.0f;
324 float colonWidth = 0.0f;
325 float timeAmPmMargin = 0.0f;
326 float colonMargin = 0.0f;
327 float timeElementWidth = 0.0f;
328 float amPmHeight = 0.0f;
329 float timeHeight = 0.0f;
330 float titleTimeMargin = 0.0f;
331 float leftMargin = 0.0f;
333 GET_SHAPE_CONFIG(EDITTIME::HEIGHT, __pEditTime->GetOrientation(), editTimeHeight);
334 GET_SHAPE_CONFIG(EDITTIME::COLON_WIDTH, __pEditTime->GetOrientation(), colonWidth);
335 GET_SHAPE_CONFIG(EDITTIME::TIME_AMPM_MARGIN, __pEditTime->GetOrientation(), timeAmPmMargin);
336 GET_SHAPE_CONFIG(EDITTIME::COLON_MARGIN, __pEditTime->GetOrientation(), colonMargin);
337 GET_SHAPE_CONFIG(EDITTIME::AMPM_HEIGHT, __pEditTime->GetOrientation(), amPmHeight);
338 GET_SHAPE_CONFIG(EDITTIME::TITLE_TIME_MARGIN, __pEditTime->GetOrientation(), titleTimeMargin);
339 GET_SHAPE_CONFIG(EDITTIME::TIME_HEIGHT, __pEditTime->GetOrientation(), timeHeight);
341 GET_SHAPE_CONFIG(EDITTIME::TIME_TEXT_LEFT_MARGIN, __pEditTime->GetOrientation(), leftMargin);
343 if (__pEditTime->GetBoundsF().height > bounds.height)
345 editTimeHeight = __pEditTime->GetBoundsF().height;
348 bounds.y = (editTimeHeight - timeHeight) / 2.0f;
350 if (!__title.IsEmpty())
352 if (displayBoxId == DATETIME_ID_AMPM)
354 bounds.y = __titleBounds.y + __titleBounds.height;
358 bounds.y = __titleBounds.y + __titleBounds.height + titleTimeMargin;
362 bounds.x = leftMargin;
363 bounds.height = timeHeight;
365 timeElementWidth = GetTimeElementWidth();
367 if (displayBoxId == DATETIME_ID_HOUR)
369 bounds.width = timeElementWidth;
371 else if (displayBoxId == DATETIME_ID_MINUTE)
373 bounds.x = bounds.x + timeElementWidth + colonWidth + (2.0f * colonMargin);
374 bounds.width = timeElementWidth;
376 else if (displayBoxId == DATETIME_ID_AMPM)
378 bounds.x = leftMargin + (2.0f * timeElementWidth) + colonWidth + (2.0f * colonMargin) + timeAmPmMargin;
380 if (__title.IsEmpty())
382 bounds.y = (editTimeHeight - amPmHeight) / 2.0f;
385 GET_SHAPE_CONFIG(EDITTIME::AMPM_WIDTH, __pEditTime->GetOrientation(), bounds.width);
386 bounds.height = amPmHeight;
393 _EditTimePresenter::GetTextWidth(_DateTimeId boxId) const
395 result r = E_SUCCESS;
397 TextObject dateObject;
401 hourString.Format(10, L"%02d", GetHour());
402 minuteString.Format(10, L"%02d", GetMinute());
404 r = dateObject.Construct();
405 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
407 TextSimple* pSimpleText = null;
409 if (boxId == DATETIME_ID_HOUR)
411 pSimpleText = new (std::nothrow)TextSimple((const_cast <wchar_t*>(hourString.GetPointer())), hourString.GetLength(), TEXT_ELEMENT_SOURCE_TYPE_EXTERNAL);
413 else if (boxId == DATETIME_ID_MINUTE)
415 pSimpleText = new (std::nothrow)TextSimple((const_cast <wchar_t*>(minuteString.GetPointer())), minuteString.GetLength(), TEXT_ELEMENT_SOURCE_TYPE_EXTERNAL);
418 SysTryReturn(NID_UI_CTRL, (pSimpleText != null), dim.width, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
420 (_FontImpl::GetInstance(*__pFont))->SetSize(__timeFontSize);
422 dateObject.AppendElement(*pSimpleText);
423 dateObject.SetFont(__pFont, 0, dateObject.GetTextLength());
424 dim = dateObject.GetTextExtentF(0, dateObject.GetTextLength());
426 dateObject.RemoveAll();
431 _EditTimePresenter::SetTitleBounds(void)
433 GET_SHAPE_CONFIG(EDITTIME::TITLE_TEXT_LEFT_MARGIN, __pEditTime->GetOrientation(), __titleBounds.x);
434 GET_SHAPE_CONFIG(EDITTIME::TITLE_HEIGHT, __pEditTime->GetOrientation(), __titleBounds.height);
436 __titleBounds.width = __pEditTime->GetBoundsF().width - __titleBounds.x;
441 _EditTimePresenter::GetTitleBounds(void) const
443 return __titleBounds;
447 _EditTimePresenter::LoadResource(void)
449 result r = E_SUCCESS;
451 Color buttonNormalBgColor;
452 Color buttonDisabledBgColor;
453 Color buttonPressedColor;
454 Color buttonHighlightedColor;
455 Color contentNormalBgColor;
456 Color contentDisabledBgColor;
457 Color contentPressedColor;
458 Color contentHighlightedColor;
459 Color colonTextColor;
460 Color colonTextDisabledColor;
461 Bitmap* pTempBitmap = null;
463 GET_COLOR_CONFIG(EDITTIME::BUTTON_BG_NORMAL, buttonNormalBgColor);
464 GET_COLOR_CONFIG(EDITTIME::BUTTON_BG_PRESSED, buttonPressedColor);
465 GET_COLOR_CONFIG(EDITTIME::BUTTON_BG_DISABLED, buttonDisabledBgColor);
466 GET_COLOR_CONFIG(EDITTIME::BUTTON_BG_HIGHLIGHTED, buttonHighlightedColor);
468 GET_COLOR_CONFIG(EDITTIME::CONTENT_BG_NORMAL, contentNormalBgColor);
469 GET_COLOR_CONFIG(EDITTIME::CONTENT_BG_DISABLED, contentDisabledBgColor);
470 GET_COLOR_CONFIG(EDITTIME::CONTENT_BG_PRESSED, contentPressedColor);
471 GET_COLOR_CONFIG(EDITTIME::CONTENT_BG_HIGHLIGHTED, contentHighlightedColor);
473 GET_COLOR_CONFIG(EDITTIME::TEXT_NORMAL, colonTextColor);
474 GET_COLOR_CONFIG(EDITTIME::TEXT_DISABLED, colonTextDisabledColor);
476 GET_SHAPE_CONFIG(EDITTIME::AMPM_FONT_SIZE, __pEditTime->GetOrientation(), __amPmTextSize);
478 r = GET_BITMAP_CONFIG_N(EDITTIME::COLON_BG_NORMAL, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
479 SysTryReturnResult(NID_UI_CTRL, (r == E_SUCCESS), r, "[%s] Propagating.", GetErrorMessage(r));
481 __pColonColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA),
483 SysTryCatch(NID_UI_CTRL, (__pColonColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
484 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
486 __pColonDisabledColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA),
487 colonTextDisabledColor);
488 SysTryCatch(NID_UI_CTRL, (__pColonDisabledColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
489 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
494 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_NORMAL, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
495 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
497 __pAmPmBgNormalColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), buttonNormalBgColor);
498 SysTryCatch(NID_UI_CTRL, (__pAmPmBgNormalColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
499 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
504 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_DISABLED, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
505 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
507 __pAmPmBgDisabledColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), buttonDisabledBgColor);
508 SysTryCatch(NID_UI_CTRL, (__pAmPmBgDisabledColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
509 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
514 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_PRESSED, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
515 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
517 __pAmPmBgPressedColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), buttonPressedColor);
518 SysTryCatch(NID_UI_CTRL, (__pAmPmBgPressedColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
519 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
524 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_HIGHLIGHTED, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
525 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
527 __pAmPmBgHighlightedColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), buttonHighlightedColor);
528 SysTryCatch(NID_UI_CTRL, (__pAmPmBgHighlightedColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
529 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
534 r = GET_BITMAP_CONFIG_N(EDITTIME::CONTENT_BG_NORMAL, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
535 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
537 __pContentBgNormalColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), contentNormalBgColor);
538 SysTryCatch(NID_UI_CTRL, (__pContentBgNormalColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
539 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
544 r = GET_BITMAP_CONFIG_N(EDITTIME::CONTENT_BG_PRESSED, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
545 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
547 __pContentBgPressedColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), contentPressedColor);
548 SysTryCatch(NID_UI_CTRL, (__pContentBgPressedColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
549 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
554 r = GET_BITMAP_CONFIG_N(EDITTIME::CONTENT_BG_DISABLED, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
555 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
557 __pContentBgDisabledColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), contentDisabledBgColor);
558 SysTryCatch(NID_UI_CTRL, (__pContentBgDisabledColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
559 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
564 r = GET_BITMAP_CONFIG_N(EDITTIME::CONTENT_BG_HIGHLIGHTED, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
565 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
567 __pContentBgHighlightedColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), contentHighlightedColor);
568 SysTryCatch(NID_UI_CTRL, (__pContentBgHighlightedColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
569 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
571 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_EFFECT_NORMAL, BITMAP_PIXEL_FORMAT_ARGB8888, __pAmPmBgEffectNomralBitmap);
572 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
574 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_EFFECT_PRESSED, BITMAP_PIXEL_FORMAT_ARGB8888, __pAmPmBgEffectPressedBitmap);
575 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
577 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_EFFECT_DISABLED, BITMAP_PIXEL_FORMAT_ARGB8888, __pAmPmBgEffectDisabledBitmap);
578 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
580 r = GET_BITMAP_CONFIG_N(EDITTIME::CONTENT_BG_EFFECT_NORMAL, BITMAP_PIXEL_FORMAT_ARGB8888, __pContentBgEffectNormalBitmap);
581 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
583 r = GET_BITMAP_CONFIG_N(EDITTIME::CONTENT_BG_EFFECT_PRESSED, BITMAP_PIXEL_FORMAT_ARGB8888, __pContentBgEffectPressedBitmap);
584 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
586 r = GET_BITMAP_CONFIG_N(EDITTIME::CONTENT_BG_EFFECT_DISABLED, BITMAP_PIXEL_FORMAT_ARGB8888, __pContentBgEffectDisabledBitmap);
587 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
599 delete __pAmPmBgNormalColorReplacementBitmap;
600 __pAmPmBgNormalColorReplacementBitmap = null;
602 delete __pAmPmBgPressedColorReplacementBitmap;
603 __pAmPmBgPressedColorReplacementBitmap = null;
605 delete __pAmPmBgDisabledColorReplacementBitmap;
606 __pAmPmBgDisabledColorReplacementBitmap = null;
608 delete __pAmPmBgHighlightedColorReplacementBitmap;
609 __pAmPmBgHighlightedColorReplacementBitmap = null;
611 delete __pContentBgNormalColorReplacementBitmap;
612 __pContentBgNormalColorReplacementBitmap = null;
614 delete __pContentBgPressedColorReplacementBitmap;
615 __pContentBgPressedColorReplacementBitmap = null;
617 delete __pContentBgDisabledColorReplacementBitmap;
618 __pContentBgDisabledColorReplacementBitmap = null;
620 delete __pContentBgHighlightedColorReplacementBitmap;
621 __pContentBgHighlightedColorReplacementBitmap = null;
623 delete __pAmPmBgEffectNomralBitmap;
624 __pAmPmBgEffectNomralBitmap = null;
626 delete __pAmPmBgEffectPressedBitmap;
627 __pAmPmBgEffectPressedBitmap = null;
629 delete __pAmPmBgEffectDisabledBitmap;
630 __pAmPmBgEffectDisabledBitmap = null;
632 delete __pContentBgEffectNormalBitmap;
633 __pContentBgEffectNormalBitmap = null;
635 delete __pContentBgEffectPressedBitmap;
636 __pContentBgEffectPressedBitmap = null;
638 delete __pContentBgEffectDisabledBitmap;
639 __pContentBgEffectDisabledBitmap = null;
641 delete __pColonColorReplacementBitmap;
642 __pColonColorReplacementBitmap = null;
644 delete __pColonDisabledColorReplacementBitmap;
645 __pColonDisabledColorReplacementBitmap = null;
651 _EditTimePresenter::DrawResourceBitmap(Canvas& canvas, const FloatRectangle& bounds, Bitmap* pBitmap)
653 result r = E_SUCCESS;
660 if (_BitmapImpl::CheckNinePatchedBitmapStrictly(*pBitmap))
662 r = canvas.DrawNinePatchedBitmap(bounds, *pBitmap);
663 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
667 r = canvas.DrawBitmap(bounds, *pBitmap);
668 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
675 _EditTimePresenter::GetTimeElementWidth(void) const
677 FloatRectangle bounds;
678 FloatDimension minSize;
679 bounds = __pEditTime->GetBoundsF();
681 float timeElementWidth = 0.0f;
682 float timeElementMinWidth = 0.0f;
683 float editTimeWidth = 0.0f;
685 GET_SHAPE_CONFIG(EDITTIME::HOUR_MINUTE_WIDTH, __pEditTime->GetOrientation(), timeElementWidth);
686 GET_SHAPE_CONFIG(EDITTIME::HOUR_MINUTE_MIN_WIDTH, __pEditTime->GetOrientation(), timeElementMinWidth);
687 GET_SHAPE_CONFIG(EDITTIME::WIDTH, __pEditTime->GetOrientation(), editTimeWidth);
689 GET_DIMENSION_CONFIG(EDITTIME::MIN_SIZE, __pEditTime->GetOrientation(), minSize);
691 if (bounds.width >= editTimeWidth)
693 return timeElementWidth;
696 if (bounds.width <= minSize.width)
698 timeElementWidth = timeElementMinWidth;
700 else if (bounds.width < editTimeWidth && bounds.width > minSize.width)
702 timeElementWidth = timeElementWidth -
703 ((timeElementWidth - timeElementMinWidth) / (editTimeWidth - minSize.width)) * (editTimeWidth - bounds.width);
706 return timeElementWidth;
710 _EditTimePresenter::InitializeTitleObject(void)
712 result r = E_SUCCESS;
714 Color titleNormalColor;
716 GET_COLOR_CONFIG(EDITTIME::TITLE_TEXT_NORMAL, titleNormalColor);
718 r = __titleObject.Construct();
719 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
721 TextSimple* pSimpleText = null;
723 pSimpleText = new (std::nothrow)TextSimple((const_cast <wchar_t*>(__title.GetPointer())), __title.GetLength(), TEXT_ELEMENT_SOURCE_TYPE_EXTERNAL);
724 SysTryReturn(NID_UI_CTRL, (pSimpleText != null), E_OUT_OF_MEMORY, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
726 __titleObject.AppendElement(*pSimpleText);
728 __titleObject.SetForegroundColor(titleNormalColor, 0, __titleObject.GetTextLength());
729 __titleObject.SetFont(__pFont, 0, __titleObject.GetTextLength());
730 __titleObject.SetAlignment(TEXT_OBJECT_ALIGNMENT_LEFT | TEXT_OBJECT_ALIGNMENT_MIDDLE);
731 __titleObject.SetWrap(TEXT_OBJECT_WRAP_TYPE_NONE);
732 __titleObject.SetAction(TEXT_OBJECT_ACTION_TYPE_ABBREV);
733 __titleObject.SetTextObjectEllipsisType(TEXT_OBJECT_ELLIPSIS_TYPE_TAIL);
739 _EditTimePresenter::InitializeTextObject(void)
741 result r = E_SUCCESS;
743 r = __textObject.Construct();
744 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
746 TextSimple* pSimpleText = new (std::nothrow)TextSimple(null, 0, TEXT_ELEMENT_SOURCE_TYPE_EXTERNAL);
747 SysTryReturn(NID_UI_CTRL, (pSimpleText != null), E_OUT_OF_MEMORY, E_OUT_OF_MEMORY,
748 "[E_OUT_OF_MEMORY] Memory allocation failed.");
750 __textObject.AppendElement(*pSimpleText);
752 __textObject.SetFont(__pFont, 0, __textObject.GetTextLength());
753 __textObject.SetAlignment(TEXT_OBJECT_ALIGNMENT_CENTER | TEXT_OBJECT_ALIGNMENT_MIDDLE);
754 __textObject.SetWrap(TEXT_OBJECT_WRAP_TYPE_NONE);
755 __textObject.SetAction(TEXT_OBJECT_ACTION_TYPE_ABBREV);
761 _EditTimePresenter::Draw(void)
763 result r = E_SUCCESS;
770 Canvas* pCanvas = __pEditTime->GetCanvasN();
771 SysAssertf((pCanvas != null), "Failed to get canvas.");
773 FloatRectangle colonBounds(0.0f, 0.0f, 0.0f, 0.0f);
775 float colonMargin = 0.0f;
779 pCanvas->SetBackgroundColor(Color(0, 0, 0, 0));
782 FloatRectangle hourBounds(0.0f, 0.0f, 0.0f, 0.0f);
783 FloatRectangle minuteBounds(0.0f, 0.0f, 0.0f, 0.0f);
784 FloatRectangle ampmBounds(0.0f, 0.0f, 0.0f, 0.0f);
785 bool isCustomBitmap = false;
786 Bitmap* pReplacementBitmap = null;
787 Bitmap* pEffectBitmap = null;
789 hourBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_HOUR);
790 minuteBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_MINUTE);
792 if (__24hours == false)
794 ampmBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_AMPM);
796 if (!__pEditTime->IsEnabled())
798 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::BUTTON_BG_DISABLED);
799 pReplacementBitmap = __pAmPmBgDisabledColorReplacementBitmap;
800 pEffectBitmap = __pAmPmBgEffectDisabledBitmap;
802 else if (__selectedId != DATETIME_ID_AMPM)
804 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::BUTTON_BG_NORMAL);
805 pReplacementBitmap = __pAmPmBgNormalColorReplacementBitmap;
806 pEffectBitmap = __pAmPmBgEffectNomralBitmap;
810 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::BUTTON_BG_PRESSED);
811 pReplacementBitmap = __pAmPmBgPressedColorReplacementBitmap;
812 pEffectBitmap = __pAmPmBgEffectPressedBitmap;
816 if (GetHour() >= DATETIME_HOUR_MAX_FOR_24NOTATION)
827 GET_SHAPE_CONFIG(EDITTIME::COLON_WIDTH, __pEditTime->GetOrientation(), colonBounds.width);
828 GET_SHAPE_CONFIG(EDITTIME::COLON_MARGIN, __pEditTime->GetOrientation(), colonMargin);
829 GET_SHAPE_CONFIG(EDITTIME::AMPM_HEIGHT, __pEditTime->GetOrientation(), colonBounds.height);
831 colonBounds.x = hourBounds.x + hourBounds.width + colonMargin;
832 colonBounds.y = hourBounds.y + (hourBounds.height - colonBounds.height) / 2.0f;
834 if (__title.IsEmpty() == false)
836 r = DrawTitle(*pCanvas);
837 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
840 r = DrawText(*pCanvas, hourBounds, __hourString, DATETIME_ID_HOUR);
841 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
843 r = DrawText(*pCanvas, minuteBounds, __minuteString, DATETIME_ID_MINUTE);
844 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
846 r = DrawColon(*pCanvas, colonBounds);
847 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
849 if (__24hours == false)
851 r = DrawResourceBitmap(*pCanvas, ampmBounds, pReplacementBitmap);
852 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
856 r = DrawResourceBitmap(*pCanvas, ampmBounds, pEffectBitmap);
857 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
860 r = DrawText(*pCanvas, ampmBounds, __ampmString, DATETIME_ID_AMPM, __amPmTextSize);
861 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
864 if (__pEditTime->IsFocused())
875 _EditTimePresenter::DrawFocus(void)
877 FloatRectangle bounds(0.0f, 0.0f, 0.0f, 0.0f);
879 Canvas* pCanvas = __pEditTime->GetCanvasN();
880 SysTryReturnResult(NID_UI_CTRL, (pCanvas != null), E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Unable to create canvas.");
882 if (__focusStatus == FOCUS_HOUR)
884 bounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_HOUR);
886 else if (__focusStatus == FOCUS_MINUTE)
888 bounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_MINUTE);
890 else if (__focusStatus == FOCUS_AMPM)
892 bounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_AMPM);
894 result r = E_SUCCESS;
896 bounds.y = bounds.y - (__adjustFocusHeight / 2.0f);
897 bounds.height = bounds.height + __adjustFocusHeight;
899 if (_BitmapImpl::CheckNinePatchedBitmapStrictly(*__pContentBgHighlightedColorReplacementBitmap))
901 r = pCanvas->DrawNinePatchedBitmap(bounds, *__pContentBgHighlightedColorReplacementBitmap);
902 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
906 r = pCanvas->DrawBitmap(bounds, *__pContentBgHighlightedColorReplacementBitmap);
907 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
919 _EditTimePresenter::DrawColon(Canvas& canvas, const FloatRectangle& bounds)
921 result r = E_SUCCESS;
923 if (!__pEditTime->IsEnabled())
925 r = DrawResourceBitmap(canvas, bounds, __pColonDisabledColorReplacementBitmap);
929 r = DrawResourceBitmap(canvas, bounds, __pColonColorReplacementBitmap);
936 _EditTimePresenter::DrawTitle(Canvas& canvas)
938 if (!__pEditTime->IsEnabled())
940 Color titleDisabledColor;
941 GET_COLOR_CONFIG(EDITTIME::TITLE_TEXT_DISABLED, titleDisabledColor);
942 __titleObject.SetForegroundColor(titleDisabledColor, 0, __titleObject.GetTextLength());
945 (_FontImpl::GetInstance(*__pFont))->SetSize(__titleFontSize);
946 (_FontImpl::GetInstance(*__pFont))->SetStyle(FONT_STYLE_BOLD);
947 __titleObject.SetFont(__pFont, 0, __titleObject.GetTextLength());
949 __titleObject.Draw(*_CanvasImpl::GetInstance(canvas));
955 _EditTimePresenter::DrawContentBitmap(Canvas& canvas, const FloatRectangle& bounds, _DateTimeId boxId)
957 result r = E_SUCCESS;
959 bool isCustomBitmap = false;
960 Bitmap* pReplacementBitmap = null;
961 Bitmap* pEffectBitmap = null;
963 if (!__pEditTime->IsEnabled())
965 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::CONTENT_BG_DISABLED);
966 pReplacementBitmap = __pContentBgDisabledColorReplacementBitmap;
967 pEffectBitmap = __pContentBgEffectDisabledBitmap;
969 else if (__selectedId != boxId)
971 if (__pEditTime->GetDateTimeBar() != null && __pEditTime->GetDateTimeBar()->IsActivated() &&
972 (GetLastSelectedId() == boxId))
974 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::CONTENT_BG_PRESSED);
975 pReplacementBitmap = __pContentBgPressedColorReplacementBitmap;
976 pEffectBitmap = __pContentBgEffectPressedBitmap;
980 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::CONTENT_BG_NORMAL);
981 pReplacementBitmap = __pContentBgNormalColorReplacementBitmap;
982 pEffectBitmap = __pContentBgEffectNormalBitmap;
987 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::CONTENT_BG_PRESSED);
988 pReplacementBitmap = __pContentBgPressedColorReplacementBitmap;
989 pEffectBitmap = __pContentBgEffectPressedBitmap;
992 r = DrawResourceBitmap(canvas, bounds, pReplacementBitmap);
993 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
997 r = DrawResourceBitmap(canvas, bounds, pEffectBitmap);
998 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
1005 _EditTimePresenter::DrawText(Canvas& canvas, const FloatRectangle& bounds, const String& text, _DateTimeId boxId, float textSize)
1007 result r = E_SUCCESS;
1010 (_FontImpl::GetInstance(*__pFont))->SetStyle(FONT_STYLE_PLAIN);
1012 if (!__pEditTime->IsEnabled())
1014 if (boxId == DATETIME_ID_AMPM)
1016 GET_COLOR_CONFIG(EDITTIME::BUTTON_TEXT_DISABLED, textColor);
1020 GET_COLOR_CONFIG(EDITTIME::TEXT_DISABLED, textColor);
1025 GET_COLOR_CONFIG(EDITTIME::TEXT_NORMAL, textColor);
1027 if (__pEditTime->GetDateTimeBar() != null && __pEditTime->GetDateTimeBar()->IsActivated() &&
1028 (GetLastSelectedId() == boxId))
1030 GET_COLOR_CONFIG(EDITTIME::TEXT_PRESSED, textColor);
1031 (_FontImpl::GetInstance(*__pFont))->SetStyle(FONT_STYLE_BOLD);
1034 if (boxId == DATETIME_ID_AMPM)
1036 GET_COLOR_CONFIG(EDITTIME::BUTTON_TEXT_NORMAL, textColor);
1039 if (boxId > -1 && boxId == __selectedId)
1041 if (boxId == DATETIME_ID_AMPM)
1043 GET_COLOR_CONFIG(EDITTIME::BUTTON_TEXT_PRESSED, textColor);
1047 GET_COLOR_CONFIG(EDITTIME::TEXT_PRESSED, textColor);
1048 (_FontImpl::GetInstance(*__pFont))->SetStyle(FONT_STYLE_BOLD);
1053 if (boxId != DATETIME_ID_AMPM)
1055 DrawContentBitmap(canvas, bounds, boxId);
1058 FloatRectangle drawAreaBounds(0.0f, 0.0f, 0.0f, 0.0f);
1059 drawAreaBounds = bounds;
1061 TextSimple* pSimpleText = null;
1062 pSimpleText = new (std::nothrow)TextSimple((const_cast <wchar_t*>(text.GetPointer())), text.GetLength(), TEXT_ELEMENT_SOURCE_TYPE_EXTERNAL);
1063 SysTryReturn(NID_UI_CTRL, (pSimpleText != null), E_OUT_OF_MEMORY, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1065 __textObject.RemoveAll();
1067 (_FontImpl::GetInstance(*__pFont))->SetSize(__timeFontSize);
1068 __textObject.AppendElement(*pSimpleText);
1070 if (boxId == DATETIME_ID_AMPM)
1072 (_FontImpl::GetInstance(*__pFont))->SetSize(textSize);
1075 __textObject.SetFont(__pFont, 0, __textObject.GetTextLength());
1077 __textObject.SetForegroundColor(textColor, 0, __textObject.GetTextLength());
1078 __textObject.SetBounds(drawAreaBounds);
1079 __textObject.Draw(*_CanvasImpl::GetInstance(canvas));
1085 _EditTimePresenter::GetBoxIdFromPosition(const FloatPoint& point) const
1087 _DateTimeId displayBoxId = DATETIME_ID_NONE;
1089 FloatRectangle ampmBounds(0.0f, 0.0f, 0.0f, 0.0f);
1090 FloatRectangle hoursBounds(0.0f, 0.0f, 0.0f, 0.0f);
1091 FloatRectangle minutesBounds(0.0f, 0.0f, 0.0f, 0.0f);
1093 if (__24hours == false)
1095 ampmBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_AMPM);
1098 hoursBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_HOUR);
1099 minutesBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_MINUTE);
1101 if (point.y < hoursBounds.y || point.y > hoursBounds.y + hoursBounds.height)
1103 return displayBoxId;
1106 if (hoursBounds.Contains(point) == true)
1108 displayBoxId = DATETIME_ID_HOUR;
1110 else if (minutesBounds.Contains(point) == true)
1112 displayBoxId = DATETIME_ID_MINUTE;
1114 else if (ampmBounds.Contains(point) == true)
1116 displayBoxId = DATETIME_ID_AMPM;
1119 return displayBoxId;
1123 _EditTimePresenter::SetLastSelectedId(_DateTimeId boxId)
1125 __lastSelectedId = boxId;
1130 _EditTimePresenter::GetLastSelectedId(void) const
1132 return __lastSelectedId;
1136 _EditTimePresenter::SetFocusedElement()
1138 if (__focusStatus == FOCUS_NONE || __focusStatus == FOCUS_AMPM)
1140 __focusStatus = FOCUS_HOUR;
1147 _EditTimePresenter::SetFocusState(bool isFocused)
1149 __isFocused = isFocused;
1154 _EditTimePresenter::OnFocusLost(const _Control &source)
1156 if (!__isEnterKeyPressed || __focusStatus == FOCUS_AMPM)
1158 __focusStatus = FOCUS_NONE;
1162 __isEnterKeyPressed = false;
1164 __pEditTime->Invalidate();
1169 _EditTimePresenter::OnKeyPressed(const _Control& source, const _KeyInfo& keyInfo)
1175 _KeyCode keyCode = keyInfo.GetKeyCode();
1179 int displayValue = -1;
1181 _DateTimeId boxId = DATETIME_ID_HOUR;
1187 __isEnterKeyPressed = false;
1188 if (__focusStatus == FOCUS_HOUR)
1190 __focusStatus = FOCUS_MINUTE;
1192 else if (__focusStatus == FOCUS_MINUTE)
1194 if (!Is24HourNotationEnabled())
1196 __focusStatus = FOCUS_AMPM;
1200 __pEditTime->Invalidate();
1206 __isEnterKeyPressed = false;
1207 if (__focusStatus == FOCUS_MINUTE)
1209 __focusStatus = FOCUS_HOUR;
1211 else if (__focusStatus == FOCUS_AMPM)
1213 __focusStatus = FOCUS_MINUTE;
1215 __pEditTime->Invalidate();
1221 __isEnterKeyPressed = true;
1222 if (__focusStatus == FOCUS_HOUR)
1224 boxId = DATETIME_ID_HOUR;
1225 if (__pEditTime->GetDateTimeBar() != null)
1227 if (!Is24HourNotationEnabled())
1231 minValue = DATETIME_HOUR_MIN + 1;
1232 maxValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
1233 displayValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
1235 else if (GetHour() > DATETIME_HOUR_MAX_FOR_24NOTATION)
1237 minValue = DATETIME_HOUR_MIN + 1;
1238 maxValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
1239 displayValue = __pEditTime->GetHour() - DATETIME_HOUR_MAX_FOR_24NOTATION;
1243 minValue = DATETIME_HOUR_MIN + 1;
1244 maxValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
1245 displayValue = __pEditTime->GetHour();
1250 minValue = DATETIME_HOUR_MIN;
1251 maxValue = DATETIME_HOUR_MAX;
1252 displayValue = __pEditTime->GetHour();
1255 if (__pEditTime->GetDateTimeBar()->GetItemCount() > 0)
1257 __pEditTime->GetDateTimeBar()->RemoveAllItems();
1261 else if (__focusStatus == FOCUS_MINUTE)
1263 if (__pEditTime->GetDateTimeBar() != null)
1265 minValue = DATETIME_MINUTE_MIN;
1266 maxValue = DATETIME_MINUTE_MAX;
1267 displayValue = __pEditTime->GetMinute();
1269 if (__pEditTime->GetDateTimeBar()->GetItemCount() > 0)
1271 __pEditTime->GetDateTimeBar()->RemoveAllItems();
1274 boxId = DATETIME_ID_MINUTE;
1276 else if (__focusStatus == FOCUS_AMPM)
1278 SetAmEnabled(!GetAmEnabled());
1279 __pEditTime->FireTimeChangeEvent(TIME_INTERNAL_CHANGE_SAVED);
1280 boxId = DATETIME_ID_AMPM;
1285 if ((__pEditTime->GetDateTimeBar() != null) && (boxId != DATETIME_ID_AMPM))
1287 FloatRectangle absoluteBounds = __pEditTime->GetAbsoluteBoundsF();
1289 FloatRectangle bounds(0.0f, 0.0f, 0.0f, 0.0f);
1290 bounds = GetDisplayAreaBoundsFromHoursStyle(boxId);
1291 bounds.x += absoluteBounds.x;
1293 __pEditTime->GetDateTimeBar()->SetInitialValue(minValue, maxValue, displayValue, boxId);
1294 __pEditTime->GetDateTimeBar()->CalculateArrowBounds(bounds);
1295 __pEditTime->GetDateTimeBar()->SetVisibleState(true);
1296 __pEditTime->GetDateTimeBar()->Open();
1297 UpdateLastSelectedValue(boxId, false);
1311 _EditTimePresenter::OnTouchPressed(const _Control& source, const _TouchInfo& touchinfo)
1313 SysTryReturn(NID_UI_CTRL, IsTimePickerEnabled() == true, true, E_SYSTEM, "[E_SYSTEM] A system error has occurred. EditTime instance is disabled.");
1315 if (&source != __pEditTime)
1320 __touchMoveHandled = false;
1322 FloatRectangle hourBounds(0.0f, 0.0f, 0.0f, 0.0f);
1323 FloatRectangle minuteBounds(0.0f, 0.0f, 0.0f, 0.0f);
1324 FloatRectangle ampmBounds(0.0f, 0.0f, 0.0f, 0.0f);
1326 hourBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_HOUR);
1327 minuteBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_MINUTE);
1329 if (__24hours == false)
1331 ampmBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_AMPM);
1334 FloatPoint point = touchinfo.GetCurrentPosition();
1336 _DateTimeId boxId = GetBoxIdFromPosition(point);
1340 int displayValue = -1;
1342 if (boxId == DATETIME_ID_HOUR)
1344 if (__pEditTime->GetDateTimeBar() != null)
1346 if (__24hours == false)
1350 minValue = DATETIME_HOUR_MIN + 1;
1351 maxValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
1352 displayValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
1354 else if (GetHour() > DATETIME_HOUR_MAX_FOR_24NOTATION)
1356 minValue = DATETIME_HOUR_MIN + 1;
1357 maxValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
1358 displayValue = GetHour() - DATETIME_HOUR_MAX_FOR_24NOTATION;
1362 minValue = DATETIME_HOUR_MIN + 1;
1363 maxValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
1364 displayValue = GetHour();
1369 minValue = DATETIME_HOUR_MIN;
1370 maxValue = DATETIME_HOUR_MAX;
1371 displayValue = GetHour();
1374 if (__pEditTime->GetDateTimeBar()->GetItemCount() > 0)
1376 __pEditTime->GetDateTimeBar()->RemoveAllItems();
1379 __pEditTime->GetDateTimeBar()->SetInitialValue(minValue, maxValue, displayValue, boxId);
1382 __bounds = hourBounds;
1384 else if (boxId == DATETIME_ID_MINUTE)
1386 if (__pEditTime->GetDateTimeBar() != null)
1388 minValue = DATETIME_MINUTE_MIN;
1389 maxValue = DATETIME_MINUTE_MAX;
1390 displayValue = GetMinute();
1392 if (__pEditTime->GetDateTimeBar()->GetItemCount() > 0)
1394 __pEditTime->GetDateTimeBar()->RemoveAllItems();
1397 __pEditTime->GetDateTimeBar()->SetInitialValue(minValue, maxValue, displayValue, boxId);
1400 __bounds = minuteBounds;
1402 else if (boxId == DATETIME_ID_AMPM)
1404 __selectedId = boxId;
1405 __bounds = ampmBounds;
1410 __selectedId = DATETIME_ID_NONE;
1414 __selectedId = boxId;
1420 _EditTimePresenter::OnTouchReleased(const _Control& source, const _TouchInfo& touchinfo)
1422 SysTryReturn(NID_UI_CTRL, IsTimePickerEnabled() == true, true, E_SYSTEM, "[E_SYSTEM] A system error has occurred. EditTime instance is disabled.");
1424 if (&source != __pEditTime)
1429 FloatRectangle bounds = __pEditTime->GetBoundsF();
1431 FloatPoint startPoint(0.0f, 0.0f);
1433 float titleHeight = 0;
1434 GET_SHAPE_CONFIG(EDITTIME::TITLE_HEIGHT, __pEditTime->GetOrientation(), titleHeight);
1436 __bounds = FloatRectangle(0.0f, titleHeight, bounds.width, bounds.height);
1438 FloatPoint point = touchinfo.GetCurrentPosition();
1440 _DateTimeId boxId = GetBoxIdFromPosition(point);
1442 if ((boxId == GetLastSelectedId() && boxId != DATETIME_ID_AMPM) || boxId != __selectedId || boxId == DATETIME_ID_NONE)
1444 if (__pEditTime->GetDateTimeBar() != null && __pEditTime->GetDateTimeBar()->IsActivated())
1446 __pEditTime->GetDateTimeBar()->SetVisibleState(false);
1447 __pEditTime->GetDateTimeBar()->Close();
1450 __selectedId = DATETIME_ID_NONE;
1451 SetLastSelectedId(__selectedId);
1457 UpdateLastSelectedValue(__selectedId, true);
1458 if (GetLastSelectedId() == DATETIME_ID_AMPM)
1465 if ((__pEditTime->GetDateTimeBar() != null) && (boxId != DATETIME_ID_AMPM) && (GetLastSelectedId() != DATETIME_ID_NONE))
1467 FloatRectangle bounds(0.0f, 0.0f, 0.0f, 0.0f);
1468 bounds = GetDisplayAreaBoundsFromHoursStyle(GetLastSelectedId());
1469 FloatRectangle absoluteBounds(0.0f, 0.0f, 0.0f, 0.0f);
1470 absoluteBounds = __pEditTime->GetAbsoluteBoundsF();
1471 bounds.x += absoluteBounds.x;
1473 __pEditTime->GetDateTimeBar()->CalculateArrowBounds(bounds);
1475 if (__pEditTime->GetDateTimeBar()->IsActivated())
1477 __pEditTime->GetDateTimeBar()->RefreshItems();
1481 __pEditTime->GetDateTimeBar()->SetVisibleState(true);
1482 __pEditTime->GetDateTimeBar()->Open();
1486 __selectedId = DATETIME_ID_NONE;
1491 _EditTimePresenter::UpdateLastSelectedValue(_DateTimeId boxId, bool isTouchPressed)
1493 __selectedId = boxId;
1494 SetLastSelectedId(boxId);
1496 __lastSelectedValue = "";
1498 if (GetLastSelectedId() == DATETIME_ID_HOUR)
1500 int hours = GetHour();
1502 if (!Is24HourNotationEnabled())
1506 if (hours == DATETIME_HOUR_MIN)
1508 hours = hours + DATETIME_HOUR_MAX_FOR_24NOTATION;
1511 __lastSelectedValue.Format(10, L"%02d", hours);
1514 PLAY_FEEDBACK(_RESOURCE_FEEDBACK_PATTERN_TAP);
1517 else if (GetLastSelectedId() == DATETIME_ID_MINUTE)
1519 __lastSelectedValue.Format(10, L"%02d", GetMinute());
1522 PLAY_FEEDBACK(_RESOURCE_FEEDBACK_PATTERN_TAP);
1525 else if (GetLastSelectedId() == DATETIME_ID_AMPM)
1527 SetAmEnabled(!GetAmEnabled());
1528 __pEditTime->FireTimeChangeEvent(TIME_INTERNAL_CHANGE_SAVED);
1531 __pEditTime->UpdateAccessibilityElement();
1532 PLAY_FEEDBACK(_RESOURCE_FEEDBACK_PATTERN_TAP);
1534 __selectedId = DATETIME_ID_NONE;
1536 if (__pEditTime->GetDateTimeBar() != null && __pEditTime->GetDateTimeBar()->IsActivated())
1538 __pEditTime->GetDateTimeBar()->SetVisibleState(false);
1539 __pEditTime->GetDateTimeBar()->Close();
1543 __selectedId = DATETIME_ID_NONE;
1544 __pEditTime->Invalidate();
1549 _EditTimePresenter::OnTouchCanceled(const _Control& source, const _TouchInfo& touchinfo)
1551 if (&source != __pEditTime)
1556 __selectedId = DATETIME_ID_NONE;
1562 _EditTimePresenter::OnTouchMoved(const _Control& source, const _TouchInfo& touchinfo)
1564 if (&source != __pEditTime)
1569 if (__pEditTime->GetDateTimeBar() != null && __pEditTime->GetDateTimeBar()->IsActivated())
1578 _EditTimePresenter::OnTouchMoveHandled(const _Control& control)
1580 __touchMoveHandled = true;
1581 __selectedId = DATETIME_ID_NONE;
1587 _EditTimePresenter::OnFontChanged(Font* pFont)
1591 if (__pEditTime->GetDateTimeBar() != null)
1593 __pEditTime->GetDateTimeBar()->SetFont(*pFont);
1600 _EditTimePresenter::OnFontInfoRequested(unsigned long& style, float& size)
1602 style = FONT_STYLE_PLAIN;
1603 size = __timeFontSize;
1609 _EditTimePresenter::Initialize(void)
1611 result r = E_SUCCESS;
1613 float titleTimeMargin = 0;
1614 float timeHeight = 0;
1615 float editTimeHeight = 0;
1617 GET_SHAPE_CONFIG(EDITTIME::TEXT_FONT_SIZE, __pEditTime->GetOrientation(), __titleFontSize);
1618 GET_SHAPE_CONFIG(EDITTIME::TIME_FONT_SIZE, __pEditTime->GetOrientation(), __timeFontSize);
1619 GET_SHAPE_CONFIG(EDITTIME::TITLE_TIME_MARGIN, __pEditTime->GetOrientation(), titleTimeMargin);
1620 GET_SHAPE_CONFIG(EDITTIME::TIME_HEIGHT, __pEditTime->GetOrientation(), timeHeight);
1621 GET_SHAPE_CONFIG(EDITTIME::HEIGHT, __pEditTime->GetOrientation(), editTimeHeight);
1623 if (__pEditTime->GetBoundsF().height > editTimeHeight)
1625 editTimeHeight = __pEditTime->GetBoundsF().height;
1628 if (__title.IsEmpty() == false)
1631 if (!__isEditTimeInitialized)
1633 r = InitializeTitleObject();
1634 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
1637 __titleBounds.y = (editTimeHeight - (__titleBounds.height + titleTimeMargin + timeHeight)) / 2.0f;
1638 __titleObject.SetBounds(__titleBounds);
1641 __pFont = __pEditTime->GetFallbackFont();
1642 r = GetLastResult();
1643 SysTryReturn(NID_UI_CTRL, __pFont != null, r, r, "[%s] Propagating.", GetErrorMessage(r));
1645 if (!__isEditTimeInitialized)
1648 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1650 r = InitializeTextObject();
1651 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
1654 __isEditTimeInitialized = true;
1661 _EditTimePresenter::UpdateTimeFormat(void)
1663 if (!__is24hoursSet)
1665 String key(L"http://tizen.org/setting/locale.time.format.24hour");
1666 SettingInfo::GetValue(key , __24hours);
1673 _EditTimePresenter::Animate(void)
1675 SysAssertf((__pFont != null), "Font instance must not be null.");
1677 (_FontImpl::GetInstance(*__pFont))->SetSize(__timeFontSize);
1679 result r = E_SUCCESS;
1680 FloatRectangle rect;
1682 String minuteString;
1685 _DateTimeUtils dateTimeUtils;
1686 int hours = GetHour();
1687 if (!Is24HourNotationEnabled())
1691 if (hours == DATETIME_HOUR_MIN)
1693 hours = hours + DATETIME_HOUR_MAX_FOR_24NOTATION;
1696 hourString.Format(10, L"%02d", hours);
1697 minuteString.Format(10, L"%02d", GetMinute());
1699 if (GetLastSelectedId() == DATETIME_ID_HOUR)
1701 SysTryReturnVoidResult(NID_UI_CTRL, (__lastSelectedValue.Equals(hourString) == false), E_SUCCESS, "[E_SUCCESS] Hour string matched.");
1703 newValue = hourString;
1704 rect = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_HOUR);
1706 else if (GetLastSelectedId() == DATETIME_ID_MINUTE)
1708 SysTryReturnVoidResult(NID_UI_CTRL, (__lastSelectedValue.Equals(minuteString) == false), E_SUCCESS, "[E_SUCCESS] Minute string matched.");
1710 newValue = minuteString;
1711 rect = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_MINUTE);
1714 FloatDimension newTextDim;
1715 FloatDimension oldTextDim;
1716 FloatPoint textPoint;
1717 VisualElement* pNewVisualElement = null;
1718 VisualElement* pOldVisualElement = null;
1719 VisualElement* pEditTimeElement = null;
1720 VisualElementPropertyAnimation* pNewBoundsAnimation = null;
1721 VisualElementPropertyAnimation* pOldBoundsAnimation = null;
1722 Canvas *pCanvas = null;
1723 Color contentBgColor;
1724 Color textNormalColor;
1725 Color textPressedColor;
1727 GET_COLOR_CONFIG(EDITTIME::CONTENT_BG_PRESSED, contentBgColor);
1728 GET_COLOR_CONFIG(EDITTIME::TEXT_PRESSED, textPressedColor);
1730 __pFont->GetTextExtent(newValue, newValue.GetLength(), newTextDim);
1731 __pFont->GetTextExtent(__lastSelectedValue, __lastSelectedValue.GetLength(), oldTextDim);
1733 if (newTextDim.width > oldTextDim.width)
1735 textPoint.x = (rect.width - newTextDim.width) / 2.0f;
1739 textPoint.x = (rect.width - oldTextDim.width) / 2.0f;
1742 SysTryReturnVoidResult(NID_UI_CTRL, (rect.x + textPoint.x < __pEditTime->GetBounds().width), E_SUCCESS, "Rolling animation cann't be played.");
1744 __isAnimating = true;
1746 __pContentProvider = new (std::nothrow) VisualElement();
1747 SysTryReturnVoidResult(NID_UI_CTRL, (__pContentProvider != null), E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1749 r = __pContentProvider->Construct();
1750 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
1752 __pContentProvider->SetShowState(true);
1753 __pContentProvider->SetClipChildrenEnabled(true);
1754 __pContentProvider->SetImplicitAnimationEnabled(false);
1756 pEditTimeElement = __pEditTime->GetVisualElement();
1757 r = GetLastResult();
1758 SysTryCatch(NID_UI_CTRL, (pEditTimeElement != null), , r, "[%s] Propagating.", GetErrorMessage(r));
1760 pNewVisualElement = new (std::nothrow) VisualElement();
1761 SysTryCatch(NID_UI_CTRL, (pNewVisualElement != null), , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1763 r = pNewVisualElement->Construct();
1766 pNewVisualElement->Destroy();
1768 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
1770 pNewVisualElement->SetShowState(true);
1772 pOldVisualElement = new (std::nothrow) VisualElement();
1773 if (pOldVisualElement == null)
1775 pNewVisualElement->Destroy();
1777 SysTryCatch(NID_UI_CTRL, (pOldVisualElement != null), , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1779 r = pOldVisualElement->Construct();
1782 pNewVisualElement->Destroy();
1783 pOldVisualElement->Destroy();
1785 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
1787 pOldVisualElement->SetShowState(true);
1789 if (newTextDim.width > oldTextDim.width)
1791 textPoint.x = (rect.width - newTextDim.width) / 2.0f;
1792 textPoint.y = (rect.height - newTextDim.height) / 2.0f;
1793 __pContentProvider->SetBounds(FloatRectangle((rect.x + textPoint.x) * 1.0f, (rect.y + textPoint.y) * 1.0f, newTextDim.width * 1.0f, newTextDim.height * 1.0f));
1794 pNewVisualElement->SetBounds(FloatRectangle(0.0f, newTextDim.height * 1.0f, newTextDim.width * 1.0f, newTextDim.height * 1.0f));
1796 rect.x = __pContentProvider->GetBounds().x;
1797 rect.y = __pContentProvider->GetBounds().y;
1798 rect.width = __pContentProvider->GetBounds().width;
1799 rect.height = __pContentProvider->GetBounds().height;
1801 textPoint.x = (rect.width - oldTextDim.width) / 2.0f;
1802 textPoint.y = (rect.height - oldTextDim.height) / 2.0f;
1804 pOldVisualElement->SetBounds(FloatRectangle(textPoint.x * 1.0f, 0.0f, oldTextDim.width * 1.0f, oldTextDim.height * 1.0f));
1808 textPoint.x = (rect.width - oldTextDim.width) / 2.0f;
1809 textPoint.y = (rect.height - oldTextDim.height) / 2.0f;
1810 __pContentProvider->SetBounds(FloatRectangle((rect.x + textPoint.x) * 1.0f, (rect.y + textPoint.y) * 1.0f, oldTextDim.width * 1.0f, oldTextDim.height * 1.0f));
1811 pOldVisualElement->SetBounds(FloatRectangle(0.0f, 0.0f, oldTextDim.width * 1.0f, oldTextDim.height * 1.0f));
1813 rect.x = __pContentProvider->GetBounds().x;
1814 rect.y = __pContentProvider->GetBounds().y;
1815 rect.width = __pContentProvider->GetBounds().width;
1816 rect.height = __pContentProvider->GetBounds().height;
1818 textPoint.x = (rect.width - newTextDim.width) / 2.0f;
1819 textPoint.y = (rect.height - newTextDim.height) / 2.0f;
1821 pNewVisualElement->SetBounds(FloatRectangle(textPoint.x * 1.0f, newTextDim.height * 1.0f, newTextDim.width * 1.0f, newTextDim.height * 1.0f));
1824 pCanvas = pEditTimeElement->GetCanvasN(rect);
1825 pCanvas->SetBackgroundColor(contentBgColor);
1829 pEditTimeElement->AttachChild(*__pContentProvider);
1831 __pContentProvider->AttachChild(*pOldVisualElement);
1832 __pContentProvider->AttachChild(*pNewVisualElement);
1834 pNewBoundsAnimation = new (std::nothrow) VisualElementPropertyAnimation();
1835 SysTryCatch(NID_UI_CTRL, (pNewBoundsAnimation != null), , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1837 pNewBoundsAnimation->SetDuration(300);
1838 pNewBoundsAnimation->SetPropertyName("bounds.position");
1839 pNewBoundsAnimation->SetStartValue(Variant(FloatPoint(pNewVisualElement->GetBounds().x * 1.0f, newTextDim.height * 1.0f)));
1840 pNewBoundsAnimation->SetEndValue(Variant(FloatPoint(pNewVisualElement->GetBounds().x * 1.0f, 0.0f)));
1841 pNewBoundsAnimation->SetVisualElementAnimationStatusEventListener(this);
1843 pOldBoundsAnimation = new (std::nothrow) VisualElementPropertyAnimation();
1844 SysTryCatch(NID_UI_CTRL, (pOldBoundsAnimation != null), , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1846 pOldBoundsAnimation->SetDuration(300);
1847 pOldBoundsAnimation->SetPropertyName("bounds.position");
1848 pOldBoundsAnimation->SetStartValue(Variant(FloatPoint(pOldVisualElement->GetBounds().x * 1.0f, 0.0f)));
1849 pOldBoundsAnimation->SetEndValue(Variant(FloatPoint(pOldVisualElement->GetBounds().x * 1.0f, oldTextDim.height * -1.0f)));
1850 pOldBoundsAnimation->SetVisualElementAnimationStatusEventListener(this);
1852 pCanvas = pOldVisualElement->GetCanvasN();
1853 r = GetLastResult();
1854 SysTryCatch(NID_UI_CTRL, (pCanvas != null), , r, "[%s] Propagating.", GetErrorMessage(r));
1856 pCanvas->SetBackgroundColor(Color(0, 0, 0, 0));
1858 pCanvas->SetForegroundColor(textPressedColor);
1859 (_FontImpl::GetInstance(*__pFont))->SetStyle(FONT_STYLE_BOLD);
1860 pCanvas->SetFont(*__pFont);
1861 pCanvas->DrawText(FloatPoint(0.0f, 0.0f), __lastSelectedValue);
1866 pCanvas = pNewVisualElement->GetCanvasN();
1867 r = GetLastResult();
1868 SysTryCatch(NID_UI_CTRL, (pCanvas != null), , r, "[%s] Propagating.", GetErrorMessage(r));
1870 pCanvas->SetBackgroundColor(Color(0, 0, 0, 0));
1872 pCanvas->SetForegroundColor(textPressedColor);
1873 (_FontImpl::GetInstance(*__pFont))->SetStyle(FONT_STYLE_BOLD);
1874 pCanvas->SetFont(*__pFont);
1875 pCanvas->DrawText(FloatPoint(0.0f, 0.0f), newValue);
1880 pOldVisualElement->SetImplicitAnimationEnabled(false);
1881 pOldVisualElement->AddAnimation(*pOldBoundsAnimation);
1883 pNewVisualElement->SetImplicitAnimationEnabled(false);
1884 pNewVisualElement->AddAnimation(*pNewBoundsAnimation);
1886 delete pOldBoundsAnimation;
1887 delete pNewBoundsAnimation;
1892 __isAnimating = false;
1893 __pContentProvider->Destroy();
1895 delete pNewBoundsAnimation;
1896 pNewBoundsAnimation = null;
1898 delete pOldBoundsAnimation;
1899 pOldBoundsAnimation = null;
1908 _EditTimePresenter::OnVisualElementAnimationFinished (const VisualElementAnimation &animation, const String &keyName, VisualElement &target, bool completedNormally)
1910 result r = E_SUCCESS;
1911 __isAnimating = false;
1913 VisualElement* pEditTimeElement = __pEditTime->GetVisualElement();
1914 r = GetLastResult();
1915 SysTryReturnVoidResult(NID_UI_CTRL, (pEditTimeElement != null), r, "[%s] Propagating.", GetErrorMessage(r));
1917 pEditTimeElement->DetachChild(*__pContentProvider);
1918 __pContentProvider->Destroy();
1924 }}} // Tizen::Ui::Controls