2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
5 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 , __pAmPmBgEffectNomralBitmap(null)
66 , __pAmPmBgEffectPressedBitmap(null)
67 , __pAmPmBgEffectDisabledBitmap(null)
68 , __pColonColorReplacementBitmap(null)
69 , __pColonDisabledColorReplacementBitmap(null)
70 , __pContentProvider(null)
74 , __amPmTextSize(0.0f)
75 , __titleFontSize(0.0f)
76 , __timeFontSize(0.0f)
77 , __isAnimating(false)
78 , __isEditTimeInitialized(false)
82 _EditTimePresenter::~_EditTimePresenter(void)
84 __textObject.RemoveAll();
85 __titleObject.RemoveAll();
87 delete __pEditDateTimeModel;
88 __pEditDateTimeModel = null;
90 delete __pAmPmBgNormalColorReplacementBitmap;
91 __pAmPmBgNormalColorReplacementBitmap = null;
93 delete __pAmPmBgDisabledColorReplacementBitmap;
94 __pAmPmBgDisabledColorReplacementBitmap = null;
96 delete __pAmPmBgPressedColorReplacementBitmap;
97 __pAmPmBgPressedColorReplacementBitmap = null;
99 delete __pAmPmBgEffectNomralBitmap;
100 __pAmPmBgEffectNomralBitmap = null;
102 delete __pAmPmBgEffectPressedBitmap;
103 __pAmPmBgEffectPressedBitmap = null;
105 delete __pAmPmBgEffectDisabledBitmap;
106 __pAmPmBgEffectDisabledBitmap = null;
108 delete __pColonColorReplacementBitmap;
109 __pColonColorReplacementBitmap = null;
111 delete __pColonDisabledColorReplacementBitmap;
112 __pColonDisabledColorReplacementBitmap = null;
116 _EditTimePresenter::CreateInstanceN(const _EditTime& editTime, const String& title)
118 _EditTimePresenter* pEditTimePresenter = new (std::nothrow) _EditTimePresenter(title);
119 SysTryReturn(NID_UI_CTRL, pEditTimePresenter, null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
121 pEditTimePresenter->__pEditTime = const_cast <_EditTime*>(&editTime);
123 pEditTimePresenter->__pEditDateTimeModel = new (std::nothrow) _DateTimeModel;
124 SysTryCatch(NID_UI_CTRL, pEditTimePresenter->__pEditDateTimeModel, , E_OUT_OF_MEMORY,
125 "[E_OUT_OF_MEMORY] Memory allocation failed.");
127 return pEditTimePresenter;
130 delete pEditTimePresenter;
135 _EditTimePresenter::GetTime(void) const
138 time.SetValue(DATETIME_YEAR_MIN, DATETIME_MONTH_MIN, DATETIME_DAY_MIN, GetHour(), GetMinute(), 0);
144 _EditTimePresenter::GetHour(void) const
146 return __pEditDateTimeModel->GetHour();
150 _EditTimePresenter::GetMinute(void) const
152 return __pEditDateTimeModel->GetMinute();
156 _EditTimePresenter::SetTime(const DateTime& time)
158 __pEditDateTimeModel->SetDateTime(time);
162 _EditTimePresenter::SetCurrentTime(void)
164 __pEditDateTimeModel->SetCurrentDateTime();
169 _EditTimePresenter::SetHour(int hour)
171 return __pEditDateTimeModel->SetHour(hour);
175 _EditTimePresenter::SetMinute(int minute)
177 return __pEditDateTimeModel->SetMinute(minute);
181 _EditTimePresenter::SetTimePickerEnabled(bool enable)
183 __timePickerEnabled = enable;
188 _EditTimePresenter::IsTimePickerEnabled(void) const
190 return __timePickerEnabled;
194 _EditTimePresenter::Set24HourNotationEnabled(bool enable)
197 __is24hoursSet = true;
202 _EditTimePresenter::Is24HourNotationEnabled(void) const
208 _EditTimePresenter::SetTimeConversion(void)
210 int hour = GetHour();
211 int minute = GetMinute();
213 if (__24hours == false)
215 int max = DATETIME_HOUR_MAX_FOR_24NOTATION;
219 __hourString.Format(10, L"%02d", hour - max);
221 else if (hour == DATETIME_HOUR_MIN)
223 __hourString.Format(10, L"%02d", hour + DATETIME_HOUR_MAX_FOR_24NOTATION);
227 __hourString.Format(10, L"%02d", hour);
230 __minuteString.Format(10, L"%02d", minute);
234 __hourString.Format(10, L"%02d", hour);
235 __minuteString.Format(10, L"%02d", minute);
242 _EditTimePresenter::SetAmEnabled(bool amEnable)
247 GET_STRING_CONFIG(IDS_COM_BODY_AM, textAm);
248 GET_STRING_CONFIG(IDS_COM_POP_PM, textPm);
250 __amEnable = amEnable;
251 int hour = GetHour();
253 if (__amEnable == true)
255 __ampmString = textAm;
256 if (hour >= DATETIME_HOUR_MAX_FOR_24NOTATION)
258 SetHour(hour - DATETIME_HOUR_MAX_FOR_24NOTATION);
263 __ampmString = textPm;
264 if (hour < DATETIME_HOUR_MAX_FOR_24NOTATION)
266 SetHour(hour + DATETIME_HOUR_MAX_FOR_24NOTATION);
274 _EditTimePresenter::GetAmEnabled(void) const
280 _EditTimePresenter::GetDisplayAreaBoundsFromHoursStyle(_DateTimeId displayBoxId) const
282 SysTryReturn(NID_UI_CTRL, displayBoxId >= DATETIME_ID_HOUR && displayBoxId <= DATETIME_ID_AMPM, FloatRectangle(),
283 E_OUT_OF_RANGE, "[E_OUT_OF_RANGE] displayBoxId is out of range.");
285 FloatRectangle bounds(0.0f, 0.0f, 0.0f, 0.0f);
288 float colonWidth = 0.0f;
290 float colonMargin = 0.0f;
291 float timeElementWidth = 0.0f;
292 float amPmHeight = 0.0f;
293 float timeHeight = 0.0f;
294 float titleTimeMargin = 0.0f;
295 float leftMargin = 0.0f;
297 GET_SHAPE_CONFIG(EDITTIME::TIME_WIDTH, __pEditTime->GetOrientation(), width);
298 GET_SHAPE_CONFIG(EDITTIME::HEIGHT, __pEditTime->GetOrientation(), bounds.height);
299 GET_SHAPE_CONFIG(EDITTIME::COLON_WIDTH, __pEditTime->GetOrientation(), colonWidth);
300 GET_SHAPE_CONFIG(EDITTIME::TIME_AMPM_MARGIN, __pEditTime->GetOrientation(), margin);
301 GET_SHAPE_CONFIG(EDITTIME::TIME_TEXT_LEFT_MARGIN, __pEditTime->GetOrientation(), leftMargin);
302 GET_SHAPE_CONFIG(EDITTIME::COLON_MARGIN, __pEditTime->GetOrientation(), colonMargin);
303 GET_SHAPE_CONFIG(EDITTIME::HOUR_MINUTE_WIDTH, __pEditTime->GetOrientation(), timeElementWidth);
304 GET_SHAPE_CONFIG(EDITTIME::AMPM_HEIGHT, __pEditTime->GetOrientation(), amPmHeight);
305 GET_SHAPE_CONFIG(EDITTIME::TITLE_TIME_MARGIN, __pEditTime->GetOrientation(), titleTimeMargin);
306 GET_SHAPE_CONFIG(EDITTIME::TIME_HEIGHT, __pEditTime->GetOrientation(), timeHeight);
308 if (__pEditTime->GetBoundsF().height > bounds.height)
310 bounds.height = __pEditTime->GetBoundsF().height;
313 if (!__title.IsEmpty())
315 if (displayBoxId == DATETIME_ID_AMPM)
317 bounds.y = __titleBounds.y + __titleBounds.height;
321 bounds.y = __titleBounds.y + __titleBounds.height + titleTimeMargin;
322 bounds.height = timeHeight;
326 if (__pEditTime->GetOrientation() == _CONTROL_ORIENTATION_LANDSCAPE)
331 bounds.x = leftMargin + ((width - (2.0f * timeElementWidth + colonWidth + 2.0f * colonMargin)) / 2.0f);
333 if (displayBoxId == DATETIME_ID_HOUR)
335 bounds.width = timeElementWidth;
337 else if (displayBoxId == DATETIME_ID_MINUTE)
339 bounds.x = bounds.x + timeElementWidth + colonWidth + 2.0f * colonMargin;
340 bounds.width = timeElementWidth;
342 else if (displayBoxId == DATETIME_ID_AMPM)
344 bounds.x = leftMargin + width + margin;
346 if (__title.IsEmpty())
348 bounds.y = bounds.y + (bounds.height - amPmHeight) / 2.0f;
351 GET_SHAPE_CONFIG(EDITTIME::AMPM_WIDTH, __pEditTime->GetOrientation(), bounds.width);
352 bounds.height = amPmHeight;
359 _EditTimePresenter::SetTitleBounds(void)
361 GET_SHAPE_CONFIG(EDITTIME::TIME_TEXT_LEFT_MARGIN, __pEditTime->GetOrientation(), __titleBounds.x);
362 GET_SHAPE_CONFIG(EDITTIME::WIDTH, __pEditTime->GetOrientation(), __titleBounds.width);
363 GET_SHAPE_CONFIG(EDITTIME::TITLE_HEIGHT, __pEditTime->GetOrientation(), __titleBounds.height);
369 _EditTimePresenter::GetTitleBounds(void) const
371 return __titleBounds;
375 _EditTimePresenter::LoadResource(void)
377 result r = E_SUCCESS;
379 Color buttonNormalBgColor;
380 Color buttonDisabledBgColor;
381 Color buttonNormalPressedColor;
382 Color colonTextColor;
383 Color colonTextDisabledColor;
384 Bitmap* pTempBitmap = null;
386 GET_COLOR_CONFIG(EDITTIME::BUTTON_BG_NORMAL, buttonNormalBgColor);
387 GET_COLOR_CONFIG(EDITTIME::BUTTON_BG_PRESSED, buttonNormalPressedColor);
388 GET_COLOR_CONFIG(EDITTIME::BUTTON_BG_DISABLED, buttonDisabledBgColor);
389 GET_COLOR_CONFIG(EDITTIME::TEXT_NORMAL, colonTextColor);
390 GET_COLOR_CONFIG(EDITTIME::TEXT_DISABLED, colonTextDisabledColor);
392 GET_SHAPE_CONFIG(EDITTIME::AMPM_FONT_SIZE, __pEditTime->GetOrientation(), __amPmTextSize);
394 r = GET_BITMAP_CONFIG_N(EDITTIME::COLON_BG_NORMAL, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
395 SysTryReturnResult(NID_UI_CTRL, (r == E_SUCCESS), r, "[%s] Propagating.", GetErrorMessage(r));
397 __pColonColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_WHITE),
399 SysTryCatch(NID_UI_CTRL, (__pColonColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
400 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
402 __pColonDisabledColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_WHITE),
403 colonTextDisabledColor);
404 SysTryCatch(NID_UI_CTRL, (__pColonDisabledColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
405 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
410 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_NORMAL, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
411 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
413 __pAmPmBgNormalColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), buttonNormalBgColor);
414 SysTryCatch(NID_UI_CTRL, (__pAmPmBgNormalColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
415 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
420 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_PRESSED, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
421 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
423 __pAmPmBgDisabledColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), buttonDisabledBgColor);
424 SysTryCatch(NID_UI_CTRL, (__pAmPmBgDisabledColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
425 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
430 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_DISABLED, BITMAP_PIXEL_FORMAT_ARGB8888, pTempBitmap);
431 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
433 __pAmPmBgPressedColorReplacementBitmap = _BitmapImpl::GetColorReplacedBitmapN(*pTempBitmap, Color::GetColor(COLOR_ID_MAGENTA), buttonNormalPressedColor);
434 SysTryCatch(NID_UI_CTRL, (__pAmPmBgPressedColorReplacementBitmap != null), r = GetLastResult(), GetLastResult(),
435 "[%s] Propagating.", GetErrorMessage(GetLastResult()));
437 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_EFFECT_NORMAL, BITMAP_PIXEL_FORMAT_ARGB8888, __pAmPmBgEffectNomralBitmap);
438 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
440 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_EFFECT_PRESSED, BITMAP_PIXEL_FORMAT_ARGB8888, __pAmPmBgEffectPressedBitmap);
441 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
443 r = GET_BITMAP_CONFIG_N(EDITTIME::BUTTON_BG_EFFECT_DISABLED, BITMAP_PIXEL_FORMAT_ARGB8888, __pAmPmBgEffectDisabledBitmap);
444 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
456 delete __pAmPmBgNormalColorReplacementBitmap;
457 __pAmPmBgNormalColorReplacementBitmap = null;
459 delete __pAmPmBgPressedColorReplacementBitmap;
460 __pAmPmBgPressedColorReplacementBitmap = null;
462 delete __pAmPmBgEffectNomralBitmap;
463 __pAmPmBgEffectNomralBitmap = null;
465 delete __pAmPmBgEffectPressedBitmap;
466 __pAmPmBgEffectPressedBitmap = null;
468 delete __pColonColorReplacementBitmap;
469 __pColonColorReplacementBitmap = null;
475 _EditTimePresenter::DrawResourceBitmap(Canvas& canvas, const FloatRectangle& bounds, Bitmap* pBitmap)
477 result r = E_SUCCESS;
484 if (_BitmapImpl::CheckNinePatchedBitmapStrictly(*pBitmap))
486 r = canvas.DrawNinePatchedBitmap(bounds, *pBitmap);
487 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
491 r = canvas.DrawBitmap(bounds, *pBitmap);
492 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
499 _EditTimePresenter::InitializeTitleObject(void)
501 result r = E_SUCCESS;
503 Color titleNormalColor;
505 GET_COLOR_CONFIG(EDITTIME::TITLE_TEXT_NORMAL, titleNormalColor);
507 r = __titleObject.Construct();
508 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
510 TextSimple* pSimpleText = null;
512 pSimpleText = new (std::nothrow)TextSimple((const_cast <wchar_t*>(__title.GetPointer())), __title.GetLength(), TEXT_ELEMENT_SOURCE_TYPE_EXTERNAL);
513 SysTryReturn(NID_UI_CTRL, (pSimpleText != null), E_OUT_OF_MEMORY, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
515 __titleObject.AppendElement(*pSimpleText);
517 __titleObject.SetForegroundColor(titleNormalColor, 0, __titleObject.GetTextLength());
518 __titleObject.SetFont(__pFont, 0, __titleObject.GetTextLength());
519 __titleObject.SetAlignment(TEXT_OBJECT_ALIGNMENT_LEFT | TEXT_OBJECT_ALIGNMENT_MIDDLE);
520 __titleObject.SetWrap(TEXT_OBJECT_WRAP_TYPE_NONE);
521 __titleObject.SetAction(TEXT_OBJECT_ACTION_TYPE_ABBREV);
527 _EditTimePresenter::InitializeTextObject(void)
529 result r = E_SUCCESS;
531 r = __textObject.Construct();
532 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
534 TextSimple* pSimpleText = new (std::nothrow)TextSimple(null, 0, TEXT_ELEMENT_SOURCE_TYPE_EXTERNAL);
535 SysTryReturn(NID_UI_CTRL, (pSimpleText != null), E_OUT_OF_MEMORY, E_OUT_OF_MEMORY,
536 "[E_OUT_OF_MEMORY] Memory allocation failed.");
538 __textObject.AppendElement(*pSimpleText);
540 __textObject.SetFont(__pFont, 0, __textObject.GetTextLength());
541 __textObject.SetAlignment(TEXT_OBJECT_ALIGNMENT_CENTER | TEXT_OBJECT_ALIGNMENT_MIDDLE);
542 __textObject.SetWrap(TEXT_OBJECT_WRAP_TYPE_NONE);
543 __textObject.SetAction(TEXT_OBJECT_ACTION_TYPE_ABBREV);
549 _EditTimePresenter::Draw(void)
551 result r = E_SUCCESS;
558 Canvas* pCanvas = __pEditTime->GetCanvasN();
559 SysAssertf((pCanvas != null), "Failed to get canvas.");
561 FloatRectangle colonBounds(0.0f, 0.0f, 0.0f, 0.0f);
563 float colonMargin = 0.0f;
567 pCanvas->SetBackgroundColor(Color(0, 0, 0, 0));
570 FloatRectangle hourBounds(0.0f, 0.0f, 0.0f, 0.0f);
571 FloatRectangle minuteBounds(0.0f, 0.0f, 0.0f, 0.0f);
572 FloatRectangle ampmBounds(0.0f, 0.0f, 0.0f, 0.0f);
573 bool isCustomBitmap = false;
574 Bitmap* pReplacementBitmap = null;
575 Bitmap* pEffectBitmap = null;
577 hourBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_HOUR);
578 minuteBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_MINUTE);
580 if (__24hours == false)
582 ampmBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_AMPM);
584 if (!__pEditTime->IsEnabled())
586 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::BUTTON_BG_DISABLED);
587 pReplacementBitmap = __pAmPmBgDisabledColorReplacementBitmap;
588 pEffectBitmap = __pAmPmBgEffectDisabledBitmap;
590 else if (__selectedId != DATETIME_ID_AMPM)
592 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::BUTTON_BG_NORMAL);
593 pReplacementBitmap = __pAmPmBgNormalColorReplacementBitmap;
594 pEffectBitmap = __pAmPmBgEffectNomralBitmap;
598 isCustomBitmap = IS_CUSTOM_BITMAP(EDITTIME::BUTTON_BG_PRESSED);
599 pReplacementBitmap = __pAmPmBgPressedColorReplacementBitmap;
600 pEffectBitmap = __pAmPmBgEffectPressedBitmap;
603 r = DrawResourceBitmap(*pCanvas, ampmBounds, pReplacementBitmap);
604 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
608 r = DrawResourceBitmap(*pCanvas, ampmBounds, pEffectBitmap);
609 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
613 if (GetHour() >= DATETIME_HOUR_MAX_FOR_24NOTATION)
624 GET_SHAPE_CONFIG(EDITTIME::COLON_WIDTH, __pEditTime->GetOrientation(), colonBounds.width);
625 GET_SHAPE_CONFIG(EDITTIME::COLON_MARGIN, __pEditTime->GetOrientation(), colonMargin);
626 GET_SHAPE_CONFIG(EDITTIME::AMPM_HEIGHT, __pEditTime->GetOrientation(), colonBounds.height);
628 colonBounds.x = hourBounds.x + hourBounds.width + colonMargin;
629 colonBounds.y = hourBounds.y + (hourBounds.height - colonBounds.height) / 2.0f;
631 if (__title.IsEmpty() == false)
633 r = DrawTitle(*pCanvas);
634 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
637 r = DrawText(*pCanvas, hourBounds, __hourString);
638 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
640 r = DrawText(*pCanvas, minuteBounds, __minuteString);
641 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
643 if (__24hours == false)
645 r = DrawText(*pCanvas, ampmBounds, __ampmString, __amPmTextSize);
646 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
649 r = DrawColon(*pCanvas, colonBounds);
650 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
659 _EditTimePresenter::DrawColon(Canvas& canvas, const FloatRectangle& bounds)
661 result r = E_SUCCESS;
663 if (!__pEditTime->IsEnabled())
665 r = DrawResourceBitmap(canvas, bounds, __pColonDisabledColorReplacementBitmap);
669 r = DrawResourceBitmap(canvas, bounds, __pColonColorReplacementBitmap);
674 r = DrawText(canvas, bounds, L":");
675 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
682 _EditTimePresenter::DrawTitle(Canvas& canvas)
684 if (!__pEditTime->IsEnabled())
686 Color titleDisabledColor;
687 GET_COLOR_CONFIG(EDITTIME::TITLE_TEXT_DISABLED, titleDisabledColor);
688 __titleObject.SetForegroundColor(titleDisabledColor, 0, __titleObject.GetTextLength());
691 (_FontImpl::GetInstance(*__pFont))->SetSize(__titleFontSize);
692 __titleObject.SetFont(__pFont, 0, __titleObject.GetTextLength());
694 __titleObject.Draw(*_CanvasImpl::GetInstance(canvas));
700 _EditTimePresenter::DrawText(Canvas& canvas, const FloatRectangle& bounds, const String& text, float textSize)
702 result r = E_SUCCESS;
706 _DateTimeId boxId = DATETIME_ID_NONE;
707 boxId = GetBoxIdFromPosition(FloatPoint(bounds.x + 1.0f, bounds.y));
709 if (!__pEditTime->IsEnabled())
711 if (boxId == DATETIME_ID_AMPM)
713 GET_COLOR_CONFIG(EDITTIME::BUTTON_TEXT_DISABLED, textColor);
717 GET_COLOR_CONFIG(EDITTIME::TEXT_DISABLED, textColor);
722 GET_COLOR_CONFIG(EDITTIME::TEXT_NORMAL, textColor);
724 if (__pEditTime->GetDateTimeBar() != null && __pEditTime->GetDateTimeBar()->IsActivated() &&
725 (GetLastSelectedId() == boxId))
727 GET_COLOR_CONFIG(EDITTIME::TEXT_PRESSED, textColor);
730 if (boxId == DATETIME_ID_AMPM)
732 GET_COLOR_CONFIG(EDITTIME::BUTTON_TEXT_NORMAL, textColor);
735 if (boxId > -1 && boxId == __selectedId)
737 if (boxId == DATETIME_ID_AMPM)
739 GET_COLOR_CONFIG(EDITTIME::BUTTON_TEXT_PRESSED, textColor);
743 GET_COLOR_CONFIG(EDITTIME::TEXT_PRESSED, textColor);
748 FloatRectangle drawAreaBounds(0.0f, 0.0f, 0.0f, 0.0f);
749 drawAreaBounds = bounds;
751 TextSimple* pSimpleText = null;
752 pSimpleText = new (std::nothrow)TextSimple((const_cast <wchar_t*>(text.GetPointer())), text.GetLength(), TEXT_ELEMENT_SOURCE_TYPE_EXTERNAL);
753 SysTryReturn(NID_UI_CTRL, (pSimpleText != null), E_OUT_OF_MEMORY, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
755 __textObject.RemoveAll();
757 (_FontImpl::GetInstance(*__pFont))->SetSize(__timeFontSize);
759 __textObject.AppendElement(*pSimpleText);
761 if (boxId == DATETIME_ID_AMPM)
763 (_FontImpl::GetInstance(*__pFont))->SetSize(textSize);
764 __textObject.SetFont(__pFont, 0, __textObject.GetTextLength());
768 __textObject.SetFont(__pFont, 0, __textObject.GetTextLength());
771 __textObject.SetForegroundColor(textColor, 0, __textObject.GetTextLength());
772 __textObject.SetBounds(drawAreaBounds);
773 __textObject.Draw(*_CanvasImpl::GetInstance(canvas));
779 _EditTimePresenter::GetBoxIdFromPosition(const FloatPoint& point) const
781 _DateTimeId displayBoxId = DATETIME_ID_NONE;
783 FloatRectangle hourBounds(0.0f, 0.0f, 0.0f, 0.0f);
784 FloatRectangle minuteBounds(0.0f, 0.0f, 0.0f, 0.0f);
785 FloatRectangle ampmBounds(0.0f, 0.0f, 0.0f, 0.0f);
787 hourBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_HOUR);
788 minuteBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_MINUTE);
790 if (__24hours == false)
792 ampmBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_AMPM);
795 if (point.y < hourBounds.y || point.y > hourBounds.y + hourBounds.height)
800 if (hourBounds.Contains(point) == true)
802 displayBoxId = DATETIME_ID_HOUR;
804 else if (minuteBounds.Contains(point) == true)
806 displayBoxId = DATETIME_ID_MINUTE;
808 else if (ampmBounds.Contains(point) == true)
810 displayBoxId = DATETIME_ID_AMPM;
817 _EditTimePresenter::SetLastSelectedId(_DateTimeId boxId)
819 __lastSelectedId = boxId;
824 _EditTimePresenter::GetLastSelectedId(void) const
826 return __lastSelectedId;
830 _EditTimePresenter::OnTouchPressed(const _Control& source, const _TouchInfo& touchinfo)
832 SysTryReturn(NID_UI_CTRL, IsTimePickerEnabled() == true, true, E_SYSTEM, "[E_SYSTEM] A system error has occurred. EditTime instance is disabled.");
834 if (&source != __pEditTime)
839 __touchMoveHandled = false;
841 FloatRectangle hourBounds(0.0f, 0.0f, 0.0f, 0.0f);
842 FloatRectangle minuteBounds(0.0f, 0.0f, 0.0f, 0.0f);
843 FloatRectangle ampmBounds(0.0f, 0.0f, 0.0f, 0.0f);
845 hourBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_HOUR);
846 minuteBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_MINUTE);
848 if (__24hours == false)
850 ampmBounds = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_AMPM);
853 FloatPoint point = touchinfo.GetCurrentPosition();
855 _DateTimeId boxId = GetBoxIdFromPosition(point);
859 int displayValue = -1;
861 if (boxId == DATETIME_ID_HOUR)
863 if (__pEditTime->GetDateTimeBar() != null)
865 if (__24hours == false)
869 minValue = DATETIME_HOUR_MIN + 1;
870 maxValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
871 displayValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
873 else if (GetHour() > DATETIME_HOUR_MAX_FOR_24NOTATION)
875 minValue = DATETIME_HOUR_MIN + 1;
876 maxValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
877 displayValue = GetHour() - DATETIME_HOUR_MAX_FOR_24NOTATION;
881 minValue = DATETIME_HOUR_MIN + 1;
882 maxValue = DATETIME_HOUR_MAX_FOR_24NOTATION;
883 displayValue = GetHour();
888 minValue = DATETIME_HOUR_MIN;
889 maxValue = DATETIME_HOUR_MAX;
890 displayValue = GetHour();
893 if (__pEditTime->GetDateTimeBar()->GetItemCount() > 0)
895 __pEditTime->GetDateTimeBar()->RemoveAllItems();
898 __pEditTime->GetDateTimeBar()->SetInitialValue(minValue, maxValue, displayValue, boxId);
901 __bounds = hourBounds;
903 else if (boxId == DATETIME_ID_MINUTE)
905 if (__pEditTime->GetDateTimeBar() != null)
907 minValue = DATETIME_MINUTE_MIN;
908 maxValue = DATETIME_MINUTE_MAX;
909 displayValue = GetMinute();
911 if (__pEditTime->GetDateTimeBar()->GetItemCount() > 0)
913 __pEditTime->GetDateTimeBar()->RemoveAllItems();
916 __pEditTime->GetDateTimeBar()->SetInitialValue(minValue, maxValue, displayValue, boxId);
919 __bounds = minuteBounds;
921 else if (boxId == DATETIME_ID_AMPM)
923 __selectedId = boxId;
924 __bounds = ampmBounds;
929 __selectedId = DATETIME_ID_NONE;
933 __selectedId = boxId;
939 _EditTimePresenter::OnTouchReleased(const _Control& source, const _TouchInfo& touchinfo)
941 SysTryReturn(NID_UI_CTRL, IsTimePickerEnabled() == true, true, E_SYSTEM, "[E_SYSTEM] A system error has occurred. EditTime instance is disabled.");
943 if (&source != __pEditTime)
948 FloatRectangle bounds = __pEditTime->GetBoundsF();
950 FloatPoint startPoint(0.0f, 0.0f);
952 float titleHeight = 0;
953 GET_SHAPE_CONFIG(EDITTIME::TITLE_HEIGHT, __pEditTime->GetOrientation(), titleHeight);
955 __bounds = FloatRectangle(0.0f, titleHeight, bounds.width, bounds.height);
957 FloatPoint point = touchinfo.GetCurrentPosition();
959 _DateTimeId boxId = GetBoxIdFromPosition(point);
961 if (boxId != __selectedId || boxId == DATETIME_ID_NONE)
963 if (__pEditTime->GetDateTimeBar() != null && __pEditTime->GetDateTimeBar()->IsActivated())
965 __pEditTime->GetDateTimeBar()->SetVisibleState(false);
966 __pEditTime->GetDateTimeBar()->Close();
969 __selectedId = DATETIME_ID_NONE;
970 SetLastSelectedId(__selectedId);
977 SetLastSelectedId(__selectedId);
979 __lastSelectedValue = "";
980 _DateTimeUtils dateTimeUtils;
982 if (GetLastSelectedId() == DATETIME_ID_HOUR)
984 int hours = GetHour();
986 if (!Is24HourNotationEnabled())
990 if (hours == DATETIME_HOUR_MIN)
992 hours = hours + DATETIME_HOUR_MAX_FOR_24NOTATION;
995 __lastSelectedValue.Format(10, L"%02d", hours);
996 PLAY_FEEDBACK(_RESOURCE_FEEDBACK_PATTERN_TAP);
998 else if (GetLastSelectedId() == DATETIME_ID_MINUTE)
1000 __lastSelectedValue.Format(10, L"%02d", GetMinute());
1001 PLAY_FEEDBACK(_RESOURCE_FEEDBACK_PATTERN_TAP);
1003 else if (GetLastSelectedId() == DATETIME_ID_AMPM)
1005 SetAmEnabled(!GetAmEnabled());
1006 __pEditTime->FireTimeChangeEvent(TIME_INTERNAL_CHANGE_SAVED);
1007 __pEditTime->UpdateAccessibilityElement();
1008 PLAY_FEEDBACK(_RESOURCE_FEEDBACK_PATTERN_TAP);
1010 __selectedId = DATETIME_ID_NONE;
1012 if (__pEditTime->GetDateTimeBar() != null && __pEditTime->GetDateTimeBar()->IsActivated())
1014 __pEditTime->GetDateTimeBar()->SetVisibleState(false);
1015 __pEditTime->GetDateTimeBar()->Close();
1025 if ((__pEditTime->GetDateTimeBar() != null) && (boxId != DATETIME_ID_AMPM) && (GetLastSelectedId() != DATETIME_ID_NONE))
1027 FloatRectangle bounds(0.0f, 0.0f, 0.0f, 0.0f);
1028 bounds = GetDisplayAreaBoundsFromHoursStyle(GetLastSelectedId());
1029 FloatRectangle absoluteBounds(0.0f, 0.0f, 0.0f, 0.0f);
1030 absoluteBounds = __pEditTime->GetAbsoluteBoundsF();
1031 bounds.x += absoluteBounds.x;
1033 __pEditTime->GetDateTimeBar()->CalculateArrowBounds(bounds);
1035 if (__pEditTime->GetDateTimeBar()->IsActivated())
1037 __pEditTime->GetDateTimeBar()->RefreshItems();
1041 __pEditTime->GetDateTimeBar()->SetVisibleState(true);
1042 __pEditTime->GetDateTimeBar()->Open();
1046 __selectedId = DATETIME_ID_NONE;
1051 _EditTimePresenter::OnTouchCanceled(const _Control& source, const _TouchInfo& touchinfo)
1053 if (&source != __pEditTime)
1058 __selectedId = DATETIME_ID_NONE;
1064 _EditTimePresenter::OnTouchMoved(const _Control& source, const _TouchInfo& touchinfo)
1066 if (&source != __pEditTime)
1071 if (__pEditTime->GetDateTimeBar() != null && __pEditTime->GetDateTimeBar()->IsActivated())
1080 _EditTimePresenter::OnTouchMoveHandled(const _Control& control)
1082 __touchMoveHandled = true;
1083 __selectedId = DATETIME_ID_NONE;
1089 _EditTimePresenter::OnFontChanged(Font* pFont)
1093 if (__pEditTime->GetDateTimeBar() != null)
1095 __pEditTime->GetDateTimeBar()->SetFont(*pFont);
1102 _EditTimePresenter::OnFontInfoRequested(unsigned long& style, float& size)
1104 style = FONT_STYLE_PLAIN;
1105 size = __timeFontSize;
1111 _EditTimePresenter::Initialize(void)
1113 result r = E_SUCCESS;
1115 float titleTimeMargin = 0;
1116 float timeHeight = 0;
1117 float editTimeHeight = 0;
1119 GET_SHAPE_CONFIG(EDITTIME::TEXT_FONT_SIZE, __pEditTime->GetOrientation(), __titleFontSize);
1120 GET_SHAPE_CONFIG(EDITTIME::TIME_FONT_SIZE, __pEditTime->GetOrientation(), __timeFontSize);
1121 GET_SHAPE_CONFIG(EDITTIME::TITLE_TIME_MARGIN, __pEditTime->GetOrientation(), titleTimeMargin);
1122 GET_SHAPE_CONFIG(EDITTIME::TIME_HEIGHT, __pEditTime->GetOrientation(), timeHeight);
1123 GET_SHAPE_CONFIG(EDITTIME::HEIGHT, __pEditTime->GetOrientation(), editTimeHeight);
1125 if (__pEditTime->GetBoundsF().height > editTimeHeight)
1127 editTimeHeight = __pEditTime->GetBoundsF().height;
1130 if (__title.IsEmpty() == false)
1133 if (!__isEditTimeInitialized)
1135 r = InitializeTitleObject();
1136 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
1139 __titleBounds.y = (editTimeHeight - (__titleBounds.height + titleTimeMargin + timeHeight)) / 2.0f;
1140 __titleObject.SetBounds(__titleBounds);
1143 __pFont = __pEditTime->GetFallbackFont();
1144 r = GetLastResult();
1145 SysTryReturn(NID_UI_CTRL, __pFont != null, r, r, "[%s] Propagating.", GetErrorMessage(r));
1147 if (!__isEditTimeInitialized)
1150 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1152 r = InitializeTextObject();
1153 SysTryReturn(NID_UI_CTRL, (r == E_SUCCESS), r, r, "[%s] Propagating.", GetErrorMessage(r));
1156 __isEditTimeInitialized = true;
1163 _EditTimePresenter::UpdateTimeFormat(void)
1165 if (!__is24hoursSet)
1167 String key(L"http://tizen.org/setting/locale.time.format.24hour");
1168 SettingInfo::GetValue(key , __24hours);
1175 _EditTimePresenter::Animate(void)
1177 SysAssertf((__pFont != null), "Font instance must not be null.");
1179 (_FontImpl::GetInstance(*__pFont))->SetSize(__timeFontSize);
1181 result r = E_SUCCESS;
1182 FloatRectangle rect;
1184 String minuteString;
1187 _DateTimeUtils dateTimeUtils;
1188 int hours = GetHour();
1189 if (!Is24HourNotationEnabled())
1193 if (hours == DATETIME_HOUR_MIN)
1195 hours = hours + DATETIME_HOUR_MAX_FOR_24NOTATION;
1198 hourString.Format(10, L"%02d", hours);
1199 minuteString.Format(10, L"%02d", GetMinute());
1201 if (GetLastSelectedId() == DATETIME_ID_HOUR)
1203 SysTryReturnVoidResult(NID_UI_CTRL, (__lastSelectedValue.Equals(hourString) == false), E_SUCCESS, "[E_SUCCESS] Hour string matched.");
1205 newValue = hourString;
1206 rect = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_HOUR);
1208 else if (GetLastSelectedId() == DATETIME_ID_MINUTE)
1210 SysTryReturnVoidResult(NID_UI_CTRL, (__lastSelectedValue.Equals(minuteString) == false), E_SUCCESS, "[E_SUCCESS] Minute string matched.");
1212 newValue = minuteString;
1213 rect = GetDisplayAreaBoundsFromHoursStyle(DATETIME_ID_MINUTE);
1216 FloatDimension newTextDim;
1217 FloatDimension oldTextDim;
1218 FloatPoint textPoint;
1219 VisualElement* pNewVisualElement = null;
1220 VisualElement* pOldVisualElement = null;
1221 VisualElement* pEditTimeElement = null;
1222 VisualElementPropertyAnimation* pNewBoundsAnimation = null;
1223 VisualElementPropertyAnimation* pOldBoundsAnimation = null;
1224 Canvas *pCanvas = null;
1226 __pFont->GetTextExtent(newValue, newValue.GetLength(), newTextDim);
1227 __pFont->GetTextExtent(__lastSelectedValue, __lastSelectedValue.GetLength(), oldTextDim);
1229 if (newTextDim.width > oldTextDim.width)
1231 textPoint.x = (rect.width - newTextDim.width) / 2.0f;
1235 textPoint.x = (rect.width - oldTextDim.width) / 2.0f;
1238 SysTryReturnVoidResult(NID_UI_CTRL, (rect.x + textPoint.x < __pEditTime->GetBounds().width), E_SUCCESS, "Rolling animation cann't be played.");
1240 __isAnimating = true;
1242 __pContentProvider = new (std::nothrow) VisualElement();
1243 SysTryReturnVoidResult(NID_UI_CTRL, (__pContentProvider != null), E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1245 r = __pContentProvider->Construct();
1246 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
1248 __pContentProvider->SetShowState(true);
1249 __pContentProvider->SetClipChildrenEnabled(true);
1250 __pContentProvider->SetImplicitAnimationEnabled(false);
1252 pEditTimeElement = __pEditTime->GetVisualElement();
1253 r = GetLastResult();
1254 SysTryCatch(NID_UI_CTRL, (pEditTimeElement != null), , r, "[%s] Propagating.", GetErrorMessage(r));
1256 pNewVisualElement = new (std::nothrow) VisualElement();
1257 SysTryCatch(NID_UI_CTRL, (pNewVisualElement != null), , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1259 r = pNewVisualElement->Construct();
1262 pNewVisualElement->Destroy();
1264 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
1266 pNewVisualElement->SetShowState(true);
1268 pOldVisualElement = new (std::nothrow) VisualElement();
1269 if (pOldVisualElement == null)
1271 pNewVisualElement->Destroy();
1273 SysTryCatch(NID_UI_CTRL, (pOldVisualElement != null), , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1275 r = pOldVisualElement->Construct();
1278 pNewVisualElement->Destroy();
1279 pOldVisualElement->Destroy();
1281 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , r, "[%s] Propagating.", GetErrorMessage(r));
1283 pOldVisualElement->SetShowState(true);
1285 if (newTextDim.width > oldTextDim.width)
1287 textPoint.x = (rect.width - newTextDim.width) / 2.0f;
1288 textPoint.y = (rect.height - newTextDim.height) / 2.0f;
1289 __pContentProvider->SetBounds(FloatRectangle((rect.x + textPoint.x) * 1.0f, (rect.y + textPoint.y) * 1.0f, newTextDim.width * 1.0f, newTextDim.height * 1.0f));
1290 pNewVisualElement->SetBounds(FloatRectangle(0.0f, newTextDim.height * 1.0f, newTextDim.width * 1.0f, newTextDim.height * 1.0f));
1292 rect.x = __pContentProvider->GetBounds().x;
1293 rect.y = __pContentProvider->GetBounds().y;
1294 rect.width = __pContentProvider->GetBounds().width;
1295 rect.height = __pContentProvider->GetBounds().height;
1297 textPoint.x = (rect.width - oldTextDim.width) / 2.0f;
1298 textPoint.y = (rect.height - oldTextDim.height) / 2.0f;
1300 pOldVisualElement->SetBounds(FloatRectangle(textPoint.x * 1.0f, 0.0f, oldTextDim.width * 1.0f, oldTextDim.height * 1.0f));
1304 textPoint.x = (rect.width - oldTextDim.width) / 2.0f;
1305 textPoint.y = (rect.height - oldTextDim.height) / 2.0f;
1306 __pContentProvider->SetBounds(FloatRectangle((rect.x + textPoint.x) * 1.0f, (rect.y + textPoint.y) * 1.0f, oldTextDim.width * 1.0f, oldTextDim.height * 1.0f));
1307 pOldVisualElement->SetBounds(FloatRectangle(0.0f, 0.0f, oldTextDim.width * 1.0f, oldTextDim.height * 1.0f));
1309 rect.x = __pContentProvider->GetBounds().x;
1310 rect.y = __pContentProvider->GetBounds().y;
1311 rect.width = __pContentProvider->GetBounds().width;
1312 rect.height = __pContentProvider->GetBounds().height;
1314 textPoint.x = (rect.width - newTextDim.width) / 2.0f;
1315 textPoint.y = (rect.height - newTextDim.height) / 2.0f;
1317 pNewVisualElement->SetBounds(FloatRectangle(textPoint.x * 1.0f, newTextDim.height * 1.0f, newTextDim.width * 1.0f, newTextDim.height * 1.0f));
1320 pCanvas = pEditTimeElement->GetCanvasN(rect);
1321 pCanvas->SetBackgroundColor(Color(0, 0, 0, 0));
1325 pEditTimeElement->AttachChild(*__pContentProvider);
1327 __pContentProvider->AttachChild(*pOldVisualElement);
1328 __pContentProvider->AttachChild(*pNewVisualElement);
1330 pNewBoundsAnimation = new (std::nothrow) VisualElementPropertyAnimation();
1331 SysTryCatch(NID_UI_CTRL, (pNewBoundsAnimation != null), , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1333 pNewBoundsAnimation->SetDuration(300);
1334 pNewBoundsAnimation->SetPropertyName("bounds.position");
1335 pNewBoundsAnimation->SetStartValue(Variant(FloatPoint(pNewVisualElement->GetBounds().x * 1.0f, newTextDim.height * 1.0f)));
1336 pNewBoundsAnimation->SetEndValue(Variant(FloatPoint(pNewVisualElement->GetBounds().x * 1.0f, 0.0f)));
1337 pNewBoundsAnimation->SetVisualElementAnimationStatusEventListener(this);
1339 pOldBoundsAnimation = new (std::nothrow) VisualElementPropertyAnimation();
1340 SysTryCatch(NID_UI_CTRL, (pOldBoundsAnimation != null), , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
1342 pOldBoundsAnimation->SetDuration(300);
1343 pOldBoundsAnimation->SetPropertyName("bounds.position");
1344 pOldBoundsAnimation->SetStartValue(Variant(FloatPoint(pOldVisualElement->GetBounds().x * 1.0f, 0.0f)));
1345 pOldBoundsAnimation->SetEndValue(Variant(FloatPoint(pOldVisualElement->GetBounds().x * 1.0f, oldTextDim.height * -1.0f)));
1346 pOldBoundsAnimation->SetVisualElementAnimationStatusEventListener(this);
1348 pCanvas = pOldVisualElement->GetCanvasN();
1349 r = GetLastResult();
1350 SysTryCatch(NID_UI_CTRL, (pCanvas != null), , r, "[%s] Propagating.", GetErrorMessage(r));
1352 pCanvas->SetBackgroundColor(Color(0, 0, 0, 0));
1354 pCanvas->SetFont(*__pFont);
1355 pCanvas->DrawText(FloatPoint(0.0f, 0.0f), __lastSelectedValue);
1360 pCanvas = pNewVisualElement->GetCanvasN();
1361 r = GetLastResult();
1362 SysTryCatch(NID_UI_CTRL, (pCanvas != null), , r, "[%s] Propagating.", GetErrorMessage(r));
1364 pCanvas->SetBackgroundColor(Color(0, 0, 0, 0));
1366 pCanvas->SetFont(*__pFont);
1367 pCanvas->DrawText(FloatPoint(0.0f, 0.0f), newValue);
1372 pOldVisualElement->SetImplicitAnimationEnabled(false);
1373 pOldVisualElement->AddAnimation(*pOldBoundsAnimation);
1375 pNewVisualElement->SetImplicitAnimationEnabled(false);
1376 pNewVisualElement->AddAnimation(*pNewBoundsAnimation);
1378 delete pOldBoundsAnimation;
1379 delete pNewBoundsAnimation;
1384 __isAnimating = false;
1385 __pContentProvider->Destroy();
1387 delete pNewBoundsAnimation;
1388 pNewBoundsAnimation = null;
1390 delete pOldBoundsAnimation;
1391 pOldBoundsAnimation = null;
1400 _EditTimePresenter::OnVisualElementAnimationFinished (const VisualElementAnimation &animation, const String &keyName, VisualElement &target, bool completedNormally)
1402 result r = E_SUCCESS;
1403 __isAnimating = false;
1405 VisualElement* pEditTimeElement = __pEditTime->GetVisualElement();
1406 r = GetLastResult();
1407 SysTryReturnVoidResult(NID_UI_CTRL, (pEditTimeElement != null), r, "[%s] Propagating.", GetErrorMessage(r));
1409 pEditTimeElement->DetachChild(*__pContentProvider);
1410 __pContentProvider->Destroy();
1416 }}} // Tizen::Ui::Controls