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_SearchBar.cpp
20 * @brief This is the implementation file for the _SearchBar class.
23 #include <FBaseErrorDefine.h>
24 #include <FBaseSysLog.h>
25 #include <FGrp_BitmapImpl.h>
26 #include "FUiAnim_VisualElement.h"
27 #include "FUi_ResourceManager.h"
28 #include "FUiCtrl_SearchBar.h"
29 #include "FUiCtrl_SearchBarPresenter.h"
30 #include "FUiCtrl_Form.h"
31 #include "FUiCtrl_Edit.h"
32 #include "FUiCtrl_Panel.h"
33 #include "FUiCtrl_OverlayPanel.h"
34 #include "FUiCtrl_Keypad.h"
35 #include "FUiCtrl_ColorPicker.h"
36 #include "FUiCtrl_ActionEvent.h"
37 #include "FUiCtrl_TextBlockEvent.h"
38 #include "FUiCtrl_TextEvent.h"
39 #include "FUi_AccessibilityContainer.h"
40 #include "FUi_AccessibilityElement.h"
41 #include "FUi_AccessibilityManager.h"
42 #include "FUi_CoordinateSystemUtils.h"
44 using namespace Tizen::Graphics;
45 using namespace Tizen::Ui;
46 using namespace Tizen::Ui::Animations;
47 using namespace Tizen::Base;
48 using namespace Tizen::Base::Runtime;
49 using namespace Tizen::Locales;
51 namespace Tizen { namespace Ui { namespace Controls
54 IMPLEMENT_PROPERTY(_SearchBar);
56 _SearchBar::_SearchBar(void)
57 : __pSearchBarPresenter(null)
58 , __pClippedGroupControl(null)
60 , __pCancelButton(null)
62 , __pContentControl(null)
65 , __isButtonEnabled(true)
66 , __isUsableCancelButton(false)
67 , __isUserContainerBounds(false)
68 , __isCancelActionInProgress(false)
69 , __isUserGuideTextColor(false)
70 , __isKeypadOpening(false)
71 , __isupdateContentBounds(false)
72 , __keypadAction(CORE_KEYPAD_ACTION_SEARCH)
73 , __pBackgroundBitmap(null)
74 , __backgroundColor(Color())
75 , __contentColor(Color())
76 , __pActionEvent(null)
77 , __pKeypadEvent(null)
78 , __pTextBlockEvent(null)
80 , __pSearchBarEvent(null)
81 , __pLanguageEvent(null)
82 , __pAccessibilitySearchBarElement(null)
84 for (int i = 0; i < SEARCHBAR_BUTTON_COLOR_MAX; i++)
86 __buttonColor[i] = Color(0);
87 __buttonTextColor[i] = Color(0);
90 for (int i = 0; i < SEARCHBAR_COLOR_MAX; i++)
92 __color[i] = Color(0);
93 __textColor[i] = Color(0);
94 __guideTextColor[i] = Color(0);
97 _AccessibilityContainer* pContainer = GetAccessibilityContainer();
100 pContainer->Activate(true);
104 _SearchBar::~_SearchBar(void)
107 delete __pSearchBarPresenter;
108 __pSearchBarPresenter = null;
112 __pEdit->HideKeypad();
114 __pClippedGroupControl->DetachChild(*__pEdit);
122 __pClippedGroupControl->DetachChild(*__pCancelButton);
124 delete __pCancelButton;
125 __pCancelButton = null;
128 if (__pClippedGroupControl)
130 DetachChild(*__pClippedGroupControl);
132 delete __pClippedGroupControl;
133 __pClippedGroupControl = null;
138 DetachChild(*__pContainer);
146 delete __pActionEvent;
147 __pActionEvent = null;
152 delete __pKeypadEvent;
153 __pKeypadEvent = null;
156 if (__pTextBlockEvent)
158 delete __pTextBlockEvent;
159 __pTextBlockEvent = null;
168 if (__pSearchBarEvent)
170 delete __pSearchBarEvent;
171 __pSearchBarEvent = null;
174 if (__pAccessibilitySearchBarElement)
176 __pAccessibilitySearchBarElement->Activate(false);
177 __pAccessibilitySearchBarElement = null;
180 delete __pBackgroundBitmap;
181 __pBackgroundBitmap = null;
185 _SearchBar::CreateSearchBarN(void)
187 _SearchBar* pSearchBar = new (std::nothrow) _SearchBar;
188 SysTryReturn(NID_UI_CTRL, pSearchBar, null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
189 if (GetLastResult() != E_SUCCESS)
195 pSearchBar->AcquireHandle();
196 pSearchBar->SetTouchPressThreshold(_TOUCH_PRESS_THRESHOLD_INSENSITIVE);
202 _SearchBar::Initialize(bool enableSearchBarButton, CoreKeypadAction keypadAction)
204 result r = E_SUCCESS;
206 // Setting Button color
207 GET_COLOR_CONFIG(SEARCHBAR::BUTTON_BG_NORMAL, __buttonColor[SEARCH_BAR_BUTTON_STATUS_NORMAL]);
208 GET_COLOR_CONFIG(SEARCHBAR::BUTTON_BG_PRESSED, __buttonColor[SEARCH_BAR_BUTTON_STATUS_PRESSED]);
209 GET_COLOR_CONFIG(SEARCHBAR::BUTTON_BG_HIGHLIGHTED, __buttonColor[SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED]);
210 GET_COLOR_CONFIG(SEARCHBAR::BUTTON_BG_DISABLED, __buttonColor[SEARCH_BAR_BUTTON_STATUS_DISABLED]);
212 GET_COLOR_CONFIG(SEARCHBAR::BUTTON_TEXT_NORMAL, __buttonTextColor[SEARCH_BAR_BUTTON_STATUS_NORMAL]);
213 GET_COLOR_CONFIG(SEARCHBAR::BUTTON_TEXT_PRESSED, __buttonTextColor[SEARCH_BAR_BUTTON_STATUS_PRESSED]);
214 GET_COLOR_CONFIG(SEARCHBAR::BUTTON_TEXT_HIGHLIGHTED, __buttonTextColor[SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED]);
215 GET_COLOR_CONFIG(SEARCHBAR::BUTTON_TEXT_DISABLED, __buttonTextColor[SEARCH_BAR_BUTTON_STATUS_DISABLED]);
217 GET_COLOR_CONFIG(SEARCHBAR::CONTENT_AREA_BG_NORMAL, __contentColor);
219 for (int i = 0; i < SEARCHBAR_COLOR_MAX; i++)
223 case SEARCH_FIELD_STATUS_DISABLED:
224 GET_COLOR_CONFIG(SEARCHBAR::EDIT_BG_DISABLED, __color[i]);
225 GET_COLOR_CONFIG(SEARCHBAR::EDIT_TEXT_DISABLED, __textColor[i]);
226 GET_COLOR_CONFIG(SEARCHBAR::GUIDE_TEXT_DISABLED, __guideTextColor[i]);
229 case SEARCH_FIELD_STATUS_HIGHLIGHTED:
230 GET_COLOR_CONFIG(SEARCHBAR::EDIT_BG_NORMAL, __color[i]);
231 GET_COLOR_CONFIG(SEARCHBAR::EDIT_TEXT_HIGHLIGHTED, __textColor[i]);
232 GET_COLOR_CONFIG(SEARCHBAR::GUIDE_TEXT_HIGHLIGHTED, __guideTextColor[i]);
235 GET_COLOR_CONFIG(SEARCHBAR::EDIT_BG_NORMAL, __color[i]);
236 GET_COLOR_CONFIG(SEARCHBAR::EDIT_TEXT_NORMAL, __textColor[i]);
237 GET_COLOR_CONFIG(SEARCHBAR::GUIDE_TEXT_NORMAL, __guideTextColor[i]);
242 __isUsableCancelButton = enableSearchBarButton;
243 __keypadAction = keypadAction;
245 GetVisualElement()->SetClipChildrenEnabled(false);
247 r = CreateClippedGroupControl();
248 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
249 "[E_SYSTEM] A system error has occurred. The construction of parent control for clipped group control failed.");
251 r = CreateSearchField();
252 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
253 "[E_SYSTEM] A system error has occurred. The edit construction failed.");
254 r = CreateCancelButton();
255 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
256 "[E_SYSTEM] A system error has occurred. The cancel button construction failed.");
259 r = CreateContentsArea();
260 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
261 "[E_SYSTEM] A system error has occurred. The construction of parent for content failed.");
263 _SearchBarPresenter* pPresenter = new (std::nothrow) _SearchBarPresenter;
264 SysTryReturn(NID_UI_CTRL, pPresenter, E_OUT_OF_MEMORY, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory allocation failed.");
266 r = pPresenter->Construct(*this);
267 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
269 r = pPresenter->Install();
270 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
272 __pSearchBarPresenter = pPresenter;
274 CreateAccessibilityElement();
285 _SearchBar::CreateSearchField(void)
287 result r = E_SUCCESS;
289 FloatRectangle editBounds;
290 float horizontalMargin = 0.0f;
291 float verticalMargin = 0.0f;
292 float iconHorizontalMargin = 0.0f;
293 float textHorizontalMargin = 0.0f;
294 float iconWidth = 0.0f;
295 float textSize = 0.0f;
296 float searchBarMinHeight = 0.0f;
297 float searchBarMinWidthModeNormal = 0.0f;
299 FloatRectangle searchBarBounds = GetBoundsF();
300 _ControlOrientation orientation = _ControlManager::GetInstance()->GetOrientation();
302 GET_SHAPE_CONFIG(SEARCHBAR::HORIZONTAL_MARGIN, orientation, horizontalMargin);
303 GET_SHAPE_CONFIG(SEARCHBAR::VERTICAL_MARGIN, orientation, verticalMargin);
304 GET_SHAPE_CONFIG(SEARCHBAR::ICON_HORIZONTAL_MARGIN, orientation, iconHorizontalMargin);
305 GET_SHAPE_CONFIG(SEARCHBAR::ICON_WIDTH, orientation, iconWidth);
306 GET_SHAPE_CONFIG(SEARCHBAR::TEXT_HORIZONTAL_MARGIN, orientation, textHorizontalMargin);
307 GET_SHAPE_CONFIG(SEARCHBAR::SEARCH_FIELD_MIN_WIDTH_NORMAL_MODE, orientation, searchBarMinWidthModeNormal);
308 GET_SHAPE_CONFIG(SEARCHBAR::MIN_HEIGHT, orientation, searchBarMinHeight);
310 float searchFieldMinHeight = searchBarMinHeight - (verticalMargin * 2.0f);
312 editBounds.x = horizontalMargin;
314 if (searchBarBounds.height < searchBarMinHeight)
316 verticalMargin = (searchBarBounds.height - searchFieldMinHeight)/2.0f;
317 if (verticalMargin < 0.0f)
319 verticalMargin = 0.0f;
323 editBounds.y = verticalMargin;
325 editBounds.width = searchBarBounds.width - (editBounds.x * 2.0f);
326 editBounds.height = searchBarBounds.height - (editBounds.y * 2.0f);
328 editBounds.width = (editBounds.width > searchBarMinWidthModeNormal) ? editBounds.width : searchBarMinWidthModeNormal;
329 editBounds.height = (editBounds.height > searchFieldMinHeight) ? editBounds.height : searchFieldMinHeight;
331 __pEdit = _Edit::CreateEditN();
333 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
335 r = __pEdit->Initialize(EDIT_STYLE_NORMAL | EDIT_STYLE_SINGLE_LINE | EDIT_STYLE_CLEAR | EDIT_STYLE_NOSCROLL, INPUT_STYLE_OVERLAY,
336 SEARCHBAR_TEXT_LENGTH_MAX);
337 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
339 __pEdit->SetKeypadCommandButtonVisible(false);
340 __pEdit->SetBounds(editBounds);
341 __pEdit->AddKeypadEventListener(*this);
342 __pEdit->AddTextBlockEventListener(*this);
343 __pEdit->AddTextEventListener(*this);
345 GET_SHAPE_CONFIG(SEARCHBAR::EDIT_TEXT_SIZE, orientation, textSize);
346 __pEdit->SetTextSize(textSize);
348 __pEdit->SetHorizontalMargin(iconHorizontalMargin + iconWidth + textHorizontalMargin, EDIT_TEXT_LEFT_MARGIN);
349 __pEdit->SetHorizontalMargin(textHorizontalMargin, EDIT_TEXT_RIGHT_MARGIN);
350 __pEdit->SetLimitLength(SEARCHBAR_TEXT_LENGTH_MAX);
352 for (int status = 0; status < SEARCHBAR_COLOR_MAX; status++)
354 EditStatus editStatus = ConvertSearchBarStatus((SearchFieldStatus) status);
355 __pEdit->SetColor(editStatus, __color[status]);
358 __pEdit->SetTextColor(EDIT_TEXT_COLOR_NORMAL, __textColor[SEARCH_FIELD_STATUS_NORMAL]);
359 __pEdit->SetTextColor(EDIT_TEXT_COLOR_DISABLED, __textColor[SEARCH_FIELD_STATUS_DISABLED]);
360 __pEdit->SetTextColor(EDIT_TEXT_COLOR_HIGHLIGHTED, __textColor[SEARCH_FIELD_STATUS_HIGHLIGHTED]);
362 __pEdit->ReplaceDefaultBackgroundBitmapForSearchBar();
364 __pEdit->SetKeypadAction(__keypadAction);
366 r = __pClippedGroupControl->AttachChild(*__pEdit);
367 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , E_SYSTEM,
368 "[E_SYSTEM] A system error has occurred. Failed to attach edit as child.");
380 _SearchBar::CreateCancelButton(void)
382 result r = E_SUCCESS;
384 float textSize = 0.0f;
385 String cancelButtonText;
387 _ControlOrientation orientation = _ControlManager::GetInstance()->GetOrientation();
389 __pCancelButton = _Button::CreateButtonN();
391 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
393 r = ResizeCancelButton();
394 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
396 GET_STRING_CONFIG(IDS_COM_SK_CANCEL, cancelButtonText);
397 r = __pCancelButton->SetText(cancelButtonText);
398 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
400 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_TEXT_SIZE, orientation, textSize);
401 r = __pCancelButton->SetTextSize(textSize);
402 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
404 __pCancelButton->SetTextHorizontalAlignment(ALIGNMENT_CENTER);
405 __pCancelButton->SetTextVerticalAlignment(ALIGNMENT_MIDDLE);
407 r = __pCancelButton->SetActionId(__actionId);
408 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
410 r = __pCancelButton->AddActionEventListener(*this);
411 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
413 __pCancelButton->SetVisibleState(false);
415 for (int status = 0; status < SEARCHBAR_BUTTON_COLOR_MAX; status++)
417 _ButtonStatus buttonStatus = ConvertSearchBarButtonStatus((SearchBarButtonStatus) status);
419 r = __pCancelButton->SetColor(buttonStatus, __buttonColor[status]);
420 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
422 r = __pCancelButton->SetTextColor(buttonStatus, __buttonTextColor[status]);
423 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
426 r = __pClippedGroupControl->AttachChild(*__pCancelButton);
427 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , E_SYSTEM,
428 "[E_SYSTEM] A system error has occurred. Failed to attach button as child.");
433 delete __pCancelButton;
434 __pCancelButton = null;
440 _SearchBar::CreateContentsArea(void)
442 result r = E_SUCCESS;
444 __pContainer = _Control::CreateControlN();
447 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
449 __pContainer->SetVisibleState(false);
451 r = AttachChild(*__pContainer);
452 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , E_SYSTEM,
453 "[E_SYSTEM] A system error has occurred. Failed to attach the parent of content.");
465 _SearchBar::SetContentsArea(void)
467 if (__isUserContainerBounds)
472 FloatDimension screenSize = _ControlManager::GetInstance()->GetScreenSizeF();
473 float width = screenSize.width;
474 float height = screenSize.height;
476 _Control* pParent = GetParentForm();
479 width = pParent->GetClientBoundsF().width;
480 height = pParent->GetClientBoundsF().height;
483 FloatRectangle controlBounds = GetBoundsF();
484 controlBounds = CoordinateSystem::AlignToDevice(FloatRectangle(controlBounds));
486 __contentAreaBounds.x = 0.0f;
487 __contentAreaBounds.y = controlBounds.height;
488 __contentAreaBounds.width = width - controlBounds.x;
489 __contentAreaBounds.height = height - (controlBounds.y + controlBounds.height);
493 result r = E_SUCCESS;
494 r = __pContainer->SetBounds(__contentAreaBounds);
495 SysTryReturnVoidResult(NID_UI_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
501 _SearchBar::GetContent(void) const
503 return __pContentControl;
507 _SearchBar::SetContent(const _Control* pContent)
509 __pContentControl = const_cast <_Control*>(pContent);
510 result r = E_SUCCESS;
514 r = __pContainer->AttachChild(*__pContentControl);
515 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating");
522 _SearchBar::UpdateContentArea(bool invalidate)
524 return __pSearchBarPresenter->UpdateContentArea(invalidate);
528 _SearchBar::SetContentAreaVisible(bool visible)
530 SysTryReturn(NID_UI_CTRL, __pContainer, E_SYSTEM, E_SYSTEM,
531 "[E_SYSTEM] A system error has occurred. The instance of parent to content is null.");
533 SearchBarMode searchBarMode = GetMode();
534 if (searchBarMode == SEARCH_BAR_MODE_INPUT)
536 __pContainer->SetVisibleState(visible);
539 return __pSearchBarPresenter->SetContentAreaVisible(visible);
543 _SearchBar::IsContentAreaVisible(void) const
545 return __pSearchBarPresenter->IsContentAreaVisible();
549 _SearchBar::SetContentAreaSize(const Dimension& size)
551 return SetProperty("contentAreaSize", Variant(size));
555 _SearchBar::GetContentAreaSize(void) const
557 Variant size = GetProperty("contentAreaSize");
559 return size.ToDimension();
563 _SearchBar::GetMode(void) const
565 return __pSearchBarPresenter->GetMode();
569 _SearchBar::IsModeLocked(void) const
571 return __pSearchBarPresenter->IsModeLocked();
575 _SearchBar::SetMode(SearchBarMode mode)
577 return __pSearchBarPresenter->SetMode(mode);
581 _SearchBar::SetModeLocked(bool modeLocked)
583 if (modeLocked == true && GetMode() == SEARCH_BAR_MODE_NORMAL)
585 __pEdit->SetViewModeEnabled(true);
588 if (modeLocked == false && __pEdit->IsViewModeEnabled())
590 __pEdit->SetViewModeEnabled(false);
593 return __pSearchBarPresenter->SetModeLocked(modeLocked);
597 _SearchBar::GetButtonActionId(void) const
599 Variant actionId = GetProperty("buttonActionId");
601 return actionId.ToInt();
605 _SearchBar::GetButtonColor(SearchBarButtonStatus status) const
611 case SEARCH_BAR_BUTTON_STATUS_NORMAL:
612 buttonColor = GetProperty("buttonNormalColor");
614 case SEARCH_BAR_BUTTON_STATUS_PRESSED:
615 buttonColor = GetProperty("buttonPressedColor");
617 case SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED:
618 buttonColor = GetProperty("buttonHighlightedColor");
620 case SEARCH_BAR_BUTTON_STATUS_DISABLED:
621 buttonColor = GetProperty("buttonDisabledColor");
627 return buttonColor.ToColor();
631 _SearchBar::GetButtonTextColor(SearchBarButtonStatus status) const
633 Variant buttonTextColor;
637 case SEARCH_BAR_BUTTON_STATUS_NORMAL:
638 buttonTextColor = GetProperty("buttonNormalTextColor");
640 case SEARCH_BAR_BUTTON_STATUS_PRESSED:
641 buttonTextColor = GetProperty("buttonPressedTextColor");
643 case SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED:
644 buttonTextColor = GetProperty("buttonHighlightedTextColor");
646 case SEARCH_BAR_BUTTON_STATUS_DISABLED:
647 buttonTextColor = GetProperty("buttonDisabledTextColor");
653 return buttonTextColor.ToColor();
656 SearchBarButtonStatus
657 _SearchBar::GetButtonStatus(void) const
659 SysTryReturn(NID_UI_CTRL, __pCancelButton, SEARCH_BAR_BUTTON_STATUS_NORMAL, E_SYSTEM,
660 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
662 SearchBarButtonStatus buttonStatus = SEARCH_BAR_BUTTON_STATUS_NORMAL;
664 if (__isButtonEnabled == false)
666 buttonStatus = SEARCH_BAR_BUTTON_STATUS_DISABLED;
673 _SearchBar::SetButtonText(const String& text)
675 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
676 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
678 result r = E_SUCCESS;
680 r = __pCancelButton->SetText(text);
681 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
682 "[E_SYSTEM] A system error has occurred. Failed to set text.");
688 _SearchBar::SetButtonActionId(int actionId)
690 return SetProperty("buttonActionId", Variant(actionId));
694 _SearchBar::SetButtonEnabled(bool enabled)
696 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
697 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
699 __pCancelButton->SetEnableState(enabled);
701 __isButtonEnabled = enabled;
707 _SearchBar::SetButtonColor(SearchBarButtonStatus status, const Color& color)
709 result r = E_SUCCESS;
713 case SEARCH_BAR_BUTTON_STATUS_NORMAL:
714 r = SetProperty("buttonNormalColor", Variant(color));
716 case SEARCH_BAR_BUTTON_STATUS_PRESSED:
717 r = SetProperty("buttonPressedColor", Variant(color));
719 case SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED:
720 r = SetProperty("buttonHighlightedColor", Variant(color));
722 case SEARCH_BAR_BUTTON_STATUS_DISABLED:
723 r = SetProperty("buttonDisabledColor", Variant(color));
733 _SearchBar::SetButtonTextColor(SearchBarButtonStatus status, const Color& color)
735 result r = E_SUCCESS;
739 case SEARCH_BAR_BUTTON_STATUS_NORMAL:
740 r = SetProperty("buttonNormalTextColor", Variant(color));
742 case SEARCH_BAR_BUTTON_STATUS_PRESSED:
743 r = SetProperty("buttonPressedTextColor", Variant(color));
745 case SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED:
746 r = SetProperty("buttonHighlightedTextColor", Variant(color));
748 case SEARCH_BAR_BUTTON_STATUS_DISABLED:
749 r = SetProperty("buttonDisabledTextColor", Variant(color));
759 _SearchBar::AppendCharacter(const Character& character)
761 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
762 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
763 SysTryReturn(NID_UI_CTRL, character.CompareTo(null), E_SYSTEM, E_SYSTEM,
764 "[E_SYSTEM] A system error has occurred. The character is null.");
766 result r = E_SUCCESS;
768 r = __pEdit->AppendCharacter(character);
769 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
770 "[E_SYSTEM] A system error has occurred. Failed to set character.");
776 _SearchBar::AppendText(const String& text)
778 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
779 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
780 SysTryReturn(NID_UI_CTRL, text.IsEmpty() == false, E_SYSTEM, E_SYSTEM,
781 "[E_SYSTEM] A system error has occurred. The text is empty.");
783 result r = E_SUCCESS;
785 r = __pEdit->AppendText(text);
786 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
787 "[E_SYSTEM] A system error has occurred. Failed to set text.");
793 _SearchBar::SetText(const String& text)
795 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
796 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
798 result r = E_SUCCESS;
800 int limitLength = __pEdit->GetTextLimitLength();
801 int textLength = text.GetLength();
802 SysTryReturn(NID_UI_CTRL, limitLength >= textLength, E_SYSTEM, E_SYSTEM,
803 "[E_SYSTEM] A system error has occurred. textLength exceeds the limitLength");
805 r = __pEdit->SetText(text);
806 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
807 "[E_SYSTEM] A system error has occurred. Failed to set text.");
813 _SearchBar::InsertCharacterAt(int index, const Character& character)
815 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
816 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
817 SysTryReturn(NID_UI_CTRL, index > -1, E_OUT_OF_RANGE, E_OUT_OF_RANGE,
818 "[E_OUT_OF_RANGE] index(%d) is out of range.", index);
819 SysTryReturn(NID_UI_CTRL, character.CompareTo(null), E_SYSTEM, E_SYSTEM,
820 "[E_SYSTEM] A system error has occurred. The character is null.");
822 result r = E_SUCCESS;
826 limitLength = __pEdit->GetTextLimitLength();
827 textLength = __pEdit->GetTextLength() + 1;
829 SysTryReturn(NID_UI_CTRL, limitLength >= textLength, E_MAX_EXCEEDED, E_MAX_EXCEEDED,
830 "[E_MAX_EXCEEDED] limitLength(%d) exceeds the maximum limit textLength(%d).", limitLength, textLength);
832 SysTryReturn(NID_UI_CTRL, index <= __pEdit->GetTextLength(), E_OUT_OF_RANGE, E_OUT_OF_RANGE,
833 "[E_OUT_OF_RANGE] index(%d) is out of range of current textLength(%d).", index, __pEdit->GetTextLength());
835 r = __pEdit->InsertCharacterAt(index, character);
836 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
837 "[E_SYSTEM] A system error has occurred. Failed to set text.");
843 _SearchBar::InsertTextAt(int index, const String& text)
845 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
846 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
847 SysTryReturn(NID_UI_CTRL, index > -1, E_OUT_OF_RANGE, E_OUT_OF_RANGE,
848 "[E_OUT_OF_RANGE] index(%d) is out of range.", index);
850 result r = E_SUCCESS;
854 limitLength = __pEdit->GetTextLimitLength();
855 textLength = __pEdit->GetTextLength() + text.GetLength();
857 SysTryReturn(NID_UI_CTRL, limitLength >= textLength, E_MAX_EXCEEDED, E_MAX_EXCEEDED,
858 "[E_MAX_EXCEEDED] limitLength(%d) exceeds the maximum limit textLength(%d).", limitLength, textLength);
859 SysTryReturn(NID_UI_CTRL, index <= __pEdit->GetTextLength(), E_OUT_OF_RANGE, E_OUT_OF_RANGE,
860 "[E_OUT_OF_RANGE] index(%d) is out of range of current textLength(%d).", index, __pEdit->GetTextLength());
862 r = __pEdit->InsertTextAt(index, text);
863 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
864 "[E_SYSTEM] A system error has occurred. Failed to insert text.");
870 _SearchBar::DeleteCharacterAt(int index)
872 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
873 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
874 SysTryReturn(NID_UI_CTRL, index > -1, E_INVALID_ARG, E_INVALID_ARG,
875 "[E_INVALID_ARG] Invalid argument(s) is used. index = %d", index);
877 result r = E_SUCCESS;
879 textLength = __pEdit->GetTextLength();
881 SysTryReturn(NID_UI_CTRL, textLength > index, E_OUT_OF_RANGE, E_OUT_OF_RANGE,
882 "[E_OUT_OF_RANGE] index(%d) is out of range. textLength(%d)", index, textLength);
884 r = __pEdit->DeleteCharacterAt(index);
885 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM,
886 "[E_SYSTEM] A system error has occured. Failed to delete character.");
892 _SearchBar::Clear(void)
894 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
895 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
897 return __pEdit->ClearText();
901 _SearchBar::GetTextLength(void) const
903 SysTryReturn(NID_UI_CTRL, __pEdit, -1, E_SYSTEM,
904 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
906 return __pEdit->GetTextLength();
910 _SearchBar::GetText(void) const
912 SysTryReturn(NID_UI_CTRL, __pEdit, String(), E_SYSTEM,
913 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
915 return __pEdit->GetText();
919 _SearchBar::GetText(int start, int end) const
921 SysTryReturn(NID_UI_CTRL, __pEdit, String(), E_SYSTEM,
922 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
924 return __pEdit->GetText(start, end);
928 _SearchBar::GetLimitLength(void) const
930 SysTryReturn(NID_UI_CTRL, __pEdit, -1, E_SYSTEM,
931 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
933 return __pEdit->GetTextLimitLength();
937 _SearchBar::SetLimitLength(int limitLength)
939 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
940 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
941 SysTryReturn(NID_UI_CTRL, limitLength > 0, E_INVALID_ARG, E_INVALID_ARG,
942 "[E_INVALID_ARG] Invalid argument(s) is used.limitLength = %d", limitLength);
944 String tempString = GetText();
946 int textLength = tempString.GetLength();
947 SysTryReturn(NID_UI_CTRL, limitLength >= textLength, E_INVALID_ARG, E_INVALID_ARG,
948 "[E_INVALID_ARG] Invalid argument(s) is used. limitLength = %d, textLength = %d", limitLength, textLength);
950 result r = __pEdit->SetLimitLength(limitLength);
951 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
953 r = SetText(tempString);
954 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, r, "[%s] Propagating.", GetErrorMessage(r));
960 _SearchBar::ShowKeypad(void) const
962 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
963 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
965 SearchBarMode mode = __pSearchBarPresenter->GetMode();
966 SysTryReturn(NID_UI_CTRL, mode == SEARCH_BAR_MODE_INPUT, E_INVALID_STATE, E_INVALID_STATE,
967 "[E_INVALID_STATE] The SearchBar is currently in Normal mode.");
968 return __pEdit->ShowKeypad();
972 _SearchBar::HideKeypad(void)
974 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
975 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
977 SearchBarMode mode = __pSearchBarPresenter->GetMode();
978 SysTryReturn(NID_UI_CTRL, mode == SEARCH_BAR_MODE_INPUT, E_SYSTEM, E_SYSTEM,
979 "[E_SYSTEM] A system error has occurred. The SearchBar is currently in Normal mode.");
981 result r = __pEdit->HideKeypad();
989 _SearchBar::GetSearchFieldTextSizeF(void) const
991 SysTryReturn(NID_UI_CTRL, __pEdit, -1, E_SYSTEM,
992 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
994 return __pEdit->GetTextSizeF();
998 _SearchBar::SetSearchFieldTextSize(float size)
1000 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1001 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1003 return __pEdit->SetTextSize(size);
1007 _SearchBar::GetBlockRange(int& start, int& end) const
1009 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1010 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1012 int startIndex = -1;
1015 __pEdit->GetBlockRange(startIndex, endIndex);
1016 SysTryReturn(NID_UI_CTRL, (startIndex > -1 && endIndex > 0), E_SYSTEM, E_SYSTEM,
1017 "[E_SYSTEM] A system error has occurred. Failed to get text block range.");
1026 _SearchBar::ReleaseBlock(void)
1028 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1029 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1031 result r = E_SUCCESS;
1036 r = GetBlockRange(start, end);
1037 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1039 return __pEdit->ReleaseTextBlock();
1043 _SearchBar::SetBlockRange(int start, int end)
1045 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1046 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1048 result r = E_SUCCESS;
1051 textLength = __pEdit->GetTextLength();
1053 SysTryReturn(NID_UI_CTRL, (start < end && start >= 0 && textLength >= end), E_OUT_OF_RANGE, E_OUT_OF_RANGE,
1054 "[E_OUT_OF_RANGE] start (%d) and end (%d) is out of range.", start, end - 1);
1056 r = SetCursorPosition(start);
1057 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1059 r = __pEdit->BeginTextBlock();
1060 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
1061 "[E_SYSTEM] A system error has occurred. Failed to set text block range.");
1063 r = SetCursorPosition(end);
1064 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
1065 "[E_SYSTEM] A system error has occurred. Failed to set cursor position.");
1071 _SearchBar::RemoveTextBlock(void)
1073 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1074 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1076 result r = E_SUCCESS;
1078 r = __pEdit->RemoveTextBlock();
1079 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
1085 _SearchBar::GetColor(void) const
1087 Variant backgroundColor = GetProperty("color");
1089 return backgroundColor.ToColor();
1093 _SearchBar::GetSearchFieldColor(SearchFieldStatus status) const
1095 Variant searchFieldColor;
1099 case SEARCH_FIELD_STATUS_NORMAL:
1100 searchFieldColor = GetProperty("searchFieldNormalColor");
1102 case SEARCH_FIELD_STATUS_HIGHLIGHTED:
1103 searchFieldColor = GetProperty("searchFieldHighlightedColor");
1105 case SEARCH_FIELD_STATUS_DISABLED:
1106 searchFieldColor = GetProperty("searchFieldDisabledColor");
1112 return searchFieldColor.ToColor();
1117 _SearchBar::GetSearchFieldTextColor(SearchFieldStatus status) const
1119 Variant searchFieldTextColor;
1123 case SEARCH_FIELD_STATUS_NORMAL:
1124 searchFieldTextColor = GetProperty("searchFieldNormalTextColor");
1126 case SEARCH_FIELD_STATUS_HIGHLIGHTED:
1127 searchFieldTextColor = GetProperty("searchFieldHighlightedTextColor");
1129 case SEARCH_FIELD_STATUS_DISABLED:
1130 searchFieldTextColor = GetProperty("searchFieldDisabledTextColor");
1136 return searchFieldTextColor.ToColor();
1141 _SearchBar::SetBackgroundBitmap(const Bitmap& bitmap)
1143 Bitmap* pNewBitmap = _BitmapImpl::CloneN(bitmap);
1144 SysTryReturn(NID_UI_CTRL, pNewBitmap, E_SYSTEM, E_SYSTEM,
1145 "[E_SYSTEM] A system error has occurred. The creation of bitmap failed.");
1147 delete __pBackgroundBitmap;
1148 __pBackgroundBitmap = null;
1150 __pBackgroundBitmap = pNewBitmap;
1156 _SearchBar::GetBackgroundBitmap(void) const
1158 return __pBackgroundBitmap;
1162 _SearchBar::SetColor(const Color& color)
1164 return SetProperty("color", Variant(color));
1168 _SearchBar::SetSearchFieldColor(SearchFieldStatus status, const Color& color)
1170 result r = E_SUCCESS;
1174 case SEARCH_FIELD_STATUS_NORMAL:
1175 r = SetProperty("searchFieldNormalColor", Variant(color));
1177 case SEARCH_FIELD_STATUS_HIGHLIGHTED:
1178 r = SetProperty("searchFieldHighlightedColor", Variant(color));
1180 case SEARCH_FIELD_STATUS_DISABLED:
1181 r = SetProperty("searchFieldDisabledColor", Variant(color));
1192 _SearchBar::SetSearchFieldTextColor(SearchFieldStatus status, const Color& color)
1194 result r = E_SUCCESS;
1198 case SEARCH_FIELD_STATUS_NORMAL:
1199 r = SetProperty("searchFieldNormalTextColor", Variant(color));
1201 case SEARCH_FIELD_STATUS_HIGHLIGHTED:
1202 r = SetProperty("searchFieldHighlightedTextColor", Variant(color));
1204 case SEARCH_FIELD_STATUS_DISABLED:
1205 r = SetProperty("searchFieldDisabledTextColor", Variant(color));
1216 _SearchBar::GetGuideText(void) const
1218 SysTryReturn(NID_UI_CTRL, __pEdit, String(), E_SYSTEM,
1219 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1221 return __pEdit->GetGuideText();
1225 _SearchBar::SetGuideText(const String& guideText)
1227 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1228 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1230 __pEdit->SetGuideText(guideText);
1236 _SearchBar::GetGuideTextColor(void) const
1238 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1239 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1241 return __pEdit->GetGuideTextColor();
1245 _SearchBar::SetGuideTextColor(const Color& color)
1247 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1248 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1250 __isUserGuideTextColor = true;
1251 return __pEdit->SetGuideTextColor(color);
1255 _SearchBar::GetCursorPosition(void) const
1257 SysTryReturn(NID_UI_CTRL, __pEdit, -1, E_SYSTEM,
1258 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1260 return __pEdit->GetCursorPosition();
1264 _SearchBar::SetCursorPosition(int index)
1266 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1267 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1268 SysTryReturn(NID_UI_CTRL, index > -1, E_OUT_OF_RANGE, E_OUT_OF_RANGE,
1269 "[E_OUT_OF_RANGE] index(%d) is out of range.", GetErrorMessage(E_OUT_OF_RANGE), index);
1271 int textLength = -1;
1272 textLength = __pEdit->GetTextLength();
1274 SysTryReturn(NID_UI_CTRL, (index > -1 && index <= textLength), E_OUT_OF_RANGE, E_OUT_OF_RANGE,
1275 "[E_OUT_OF_RANGE] index(%d) is out of range.", index);
1277 return __pEdit->SetCursorPosition(index);
1281 _SearchBar::IsLowerCaseModeEnabled(void) const
1283 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1284 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1286 return __pEdit->IsLowerCaseModeEnabled();
1290 _SearchBar::SetLowerCaseModeEnabled(bool enable)
1292 SysTryReturnVoidResult(NID_UI_CTRL, __pEdit, E_SYSTEM,
1293 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1295 __pEdit->SetLowerCaseModeEnabled(enable);
1299 _SearchBar::GetEllipsisPosition(void) const
1301 SysTryReturn(NID_UI_CTRL, __pEdit, ELLIPSIS_POSITION_START, E_SYSTEM,
1302 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1304 return __pEdit->GetEllipsisPosition();
1308 _SearchBar::SetEllipsisPosition(EllipsisPosition position)
1310 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1311 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1312 __pEdit->SetEllipsisPosition(position);
1318 _SearchBar::GetKeypadAction(void) const
1320 return __keypadAction;
1324 _SearchBar::IsTextPredictionEnabled(void) const
1326 SysTryReturn(NID_UI_CTRL, __pEdit, false, E_SYSTEM,
1327 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1328 return __pEdit->IsTextPredictionEnabled();
1332 _SearchBar::SetTextPredictionEnabled(bool enable)
1334 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
1335 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
1336 return __pEdit->SetTextPredictionEnabled(enable);
1340 _SearchBar::SetCurrentLanguage(LanguageCode languageCode)
1342 return __pEdit->SetCurrentLanguage(languageCode);
1346 _SearchBar::GetCurrentLanguage(LanguageCode& language) const
1348 return __pEdit->GetCurrentLanguage(language);
1352 _SearchBar::AddActionEventListener(const _IActionEventListener& listener)
1354 result r = E_SUCCESS;
1356 if (__pActionEvent == null)
1358 __pActionEvent = _ActionEvent::CreateInstanceN(*this);
1359 r = GetLastResult();
1360 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1362 __pActionEvent->AddListener(listener);
1369 _SearchBar::RemoveActionEventListener(const _IActionEventListener& listener)
1371 SysTryReturn(NID_UI_CTRL, __pActionEvent, E_SYSTEM, E_SYSTEM,
1372 "[E_SYSTEM] A system error has occurred. The action event instance is null.");
1373 result r = E_SUCCESS;
1375 r = __pActionEvent->RemoveListener(listener);
1376 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1382 _SearchBar::AddKeypadEventListener(const _IKeypadEventListener& listener)
1384 result r = E_SUCCESS;
1386 if (__pKeypadEvent == null)
1388 __pKeypadEvent = _KeypadEvent::CreateInstanceN(*this);
1389 r = GetLastResult();
1390 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1392 r = __pKeypadEvent->AddListener(listener);
1393 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1400 _SearchBar::RemoveKeypadEventListener(const _IKeypadEventListener& listener)
1402 SysTryReturn(NID_UI_CTRL, __pKeypadEvent, E_SYSTEM, E_SYSTEM,
1403 "[E_SYSTEM] A system error has occurred. The keypad event instance is null.");
1404 result r = E_SUCCESS;
1406 r = __pKeypadEvent->RemoveListener(listener);
1407 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1413 _SearchBar::AddTextBlockEventListener(const _ITextBlockEventListener& listener)
1415 result r = E_SUCCESS;
1417 if (__pTextBlockEvent == null)
1419 __pTextBlockEvent = _TextBlockEvent::CreateInstanceN(*this);
1420 r = GetLastResult();
1421 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1423 r = __pTextBlockEvent->AddListener(listener);
1424 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1432 _SearchBar::RemoveTextBlockEventListener(const _ITextBlockEventListener& listener)
1434 SysTryReturn(NID_UI_CTRL, __pTextBlockEvent, E_SYSTEM, E_SYSTEM,
1435 "[E_SYSTEM] A system error has occurred. The text block event instance is null.");
1436 result r = E_SUCCESS;
1438 r = __pTextBlockEvent->RemoveListener(listener);
1439 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1446 _SearchBar::AddTextEventListener(const _ITextEventListener& listener)
1448 result r = E_SUCCESS;
1450 if (__pTextEvent == null)
1452 __pTextEvent = _TextEvent::CreateInstanceN(*this);
1453 r = GetLastResult();
1454 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1456 r = __pTextEvent->AddListener(listener);
1457 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1464 _SearchBar::RemoveTextEventListener(const _ITextEventListener& listener)
1466 SysTryReturn(NID_UI_CTRL, __pTextEvent, E_SYSTEM, E_SYSTEM,
1467 "[E_SYSTEM] A system error has occurred. The text event instance is null.");
1468 result r = E_SUCCESS;
1470 r = __pTextEvent->RemoveListener(listener);
1471 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1477 _SearchBar::AddSearchBarEventListener(const _ISearchBarEventListener& listener)
1479 result r = E_SUCCESS;
1481 if (__pSearchBarEvent == null)
1483 __pSearchBarEvent = _SearchBarEvent::CreateInstanceN(*this);
1484 r = GetLastResult();
1485 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1487 r = __pSearchBarEvent->AddListener(listener);
1488 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1495 _SearchBar::RemoveSearchBarEventListener(const _ISearchBarEventListener& listener)
1497 SysTryReturn(NID_UI_CTRL, __pSearchBarEvent, E_SYSTEM, E_SYSTEM,
1498 "[E_SYSTEM] A system error has occurred. The searchbar event instance is null.");
1499 result r = E_SUCCESS;
1501 r = __pSearchBarEvent->RemoveListener(listener);
1502 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1508 _SearchBar::AddLanguageEventListener(const _ILanguageEventListener& listener)
1510 result r = E_SUCCESS;
1512 if (__pLanguageEvent == null)
1514 __pLanguageEvent = _LanguageEvent::CreateInstanceN(*this);
1515 r = GetLastResult();
1516 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1518 r = __pLanguageEvent->AddListener(listener);
1519 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1526 _SearchBar::RemoveLanguageEventListener(const _ILanguageEventListener& listener)
1528 SysTryReturn(NID_UI_CTRL, __pLanguageEvent, E_SYSTEM, E_SYSTEM, "[E_SYSTEM] This instance isn't constructed.");
1529 result r = E_SUCCESS;
1531 __pLanguageEvent->RemoveListener(listener);
1532 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
1538 _SearchBar::OnBoundsChanged(void)
1540 if (__pSearchBarPresenter != null)
1542 __isupdateContentBounds = true;
1543 __pSearchBarPresenter->OnBoundsChanged();
1546 if (__pAccessibilitySearchBarElement)
1548 __pAccessibilitySearchBarElement->SetBounds(FloatRectangle(0.0f, 0.0f, GetBoundsF().width, GetBoundsF().height));
1554 _SearchBar::OnChangeLayout(_ControlOrientation orientation)
1556 __isupdateContentBounds = true;
1561 _SearchBar::OnDraw(void)
1563 if (!__isUserGuideTextColor)
1565 SearchFieldStatus status = GetCurrentStatus();
1566 __pEdit->SetGuideTextColor(__guideTextColor[status]);
1569 if (__isupdateContentBounds)
1572 __isupdateContentBounds = false;
1574 __pSearchBarPresenter->Draw();
1578 _UiTouchEventDelivery
1579 _SearchBar::OnPreviewTouchReleased(const _Control& source, const _TouchInfo& touchinfo)
1581 _Edit* pEdit = dynamic_cast <_Edit*>(const_cast <_Control*>(&source));
1584 return _UI_TOUCH_EVENT_DELIVERY_YES;
1587 if (GetMode() == SEARCH_BAR_MODE_INPUT)
1589 return _UI_TOUCH_EVENT_DELIVERY_YES;
1592 SetMode(SEARCH_BAR_MODE_INPUT);
1594 return _UI_TOUCH_EVENT_DELIVERY_YES;
1598 _SearchBar::OnActionPerformed(const _Control& source, int actionId)
1600 if (__actionId == actionId)
1602 __isCancelActionInProgress = true;
1603 SetMode(SEARCH_BAR_MODE_NORMAL);
1607 IEventArg* pEventArg = _ActionEvent::CreateActionEventArgN(__actionId);
1608 result r = GetLastResult();
1609 SysTryReturnVoidResult(NID_UI_CTRL, pEventArg, r, "[%s] Propagating.", GetErrorMessage(r));
1611 __pActionEvent->Fire(*pEventArg);
1613 __isCancelActionInProgress = false;
1620 _SearchBar::OnKeypadWillOpen(void)
1622 if (!__isKeypadOpening)
1626 IEventArg* pEventArg = _KeypadEvent::CreateKeypadEventArgN(CORE_KEYPAD_ACTION_SEARCH, CORE_KEYPAD_EVENT_STATUS_CREATED);
1627 result r = GetLastResult();
1628 SysTryReturnVoidResult(NID_UI_CTRL, pEventArg, r, "[%s] Propagating.", GetErrorMessage(r));
1630 __pKeypadEvent->Fire(*pEventArg);
1634 __isKeypadOpening = true;
1639 _SearchBar::OnKeypadOpened(void)
1643 IEventArg* pEventArg = _KeypadEvent::CreateKeypadEventArgN(CORE_KEYPAD_ACTION_SEARCH, CORE_KEYPAD_EVENT_STATUS_OPEN);
1644 result r = GetLastResult();
1645 SysTryReturnVoidResult(NID_UI_CTRL, pEventArg, r, "[%s] Propagating.", GetErrorMessage(r));
1647 __pKeypadEvent->Fire(*pEventArg);
1650 __isKeypadOpening = false;
1656 _SearchBar::OnKeypadClosed(void)
1660 IEventArg* pEventArg = _KeypadEvent::CreateKeypadEventArgN(CORE_KEYPAD_ACTION_SEARCH, CORE_KEYPAD_EVENT_STATUS_CLOSE);
1661 result r = GetLastResult();
1662 SysTryReturnVoidResult(NID_UI_CTRL, pEventArg, r, "[%s] Propagating.", GetErrorMessage(r));
1664 __pKeypadEvent->Fire(*pEventArg);
1672 _SearchBar::OnKeypadBoundsChanged(void)
1676 IEventArg* pEventArg = _KeypadEvent::CreateKeypadEventArgN(CORE_KEYPAD_ACTION_SEARCH, CORE_KEYPAD_EVENT_STATUS_BOUNDS_CHANGED);
1677 result r = GetLastResult();
1678 SysTryReturnVoidResult(NID_UI_CTRL, pEventArg, r, "[%s] Propagating.", GetErrorMessage(r));
1680 __pKeypadEvent->Fire(*pEventArg);
1688 _SearchBar::OnKeypadActionPerformed(CoreKeypadAction keypadAction)
1692 IEventArg* pEventArg = _KeypadEvent::CreateKeypadEventArgN(keypadAction, CORE_KEYPAD_EVENT_STATUS_ENTERACTION);
1693 result r = GetLastResult();
1694 SysTryReturnVoidResult(NID_UI_CTRL, pEventArg, r, "[%s] Propagating.", GetErrorMessage(r));
1696 __pKeypadEvent->Fire(*pEventArg);
1701 // TextBlock callbacks
1703 _SearchBar::OnTextBlockSelected(_Control& source, int start, int end)
1705 if (__pTextBlockEvent)
1707 IEventArg* pEventArg = _TextBlockEvent::CreateTextBlockEventArgN(start, end);
1708 result r = GetLastResult();
1709 SysTryReturnVoidResult(NID_UI_CTRL, pEventArg, r, "[%s] Propagating.", GetErrorMessage(r));
1711 __pTextBlockEvent->Fire(*pEventArg);
1718 _SearchBar::OnTextValueChanged(const _Control& source)
1720 if (!__isCancelActionInProgress)
1722 SetContentDimming();
1723 if (__pTextEvent != null)
1725 IEventArg* pEventArg = _TextEvent::CreateTextEventArgN(CORE_TEXT_EVENT_CHANGED);
1726 result r = GetLastResult();
1727 SysTryReturnVoidResult(NID_UI_CTRL, pEventArg, r, "[%s] Propagating.", GetErrorMessage(r));
1729 __pTextEvent->Fire(*pEventArg);
1736 _SearchBar::OnTextValueChangeCanceled(const _Control& source)
1738 if (__pTextEvent != null)
1740 IEventArg* pEventArg = _TextEvent::CreateTextEventArgN(CORE_TEXT_EVENT_CANCELED);
1741 result r = GetLastResult();
1742 SysTryReturnVoidResult(NID_UI_CTRL, pEventArg, r, "[%s] Propagating.", GetErrorMessage(r));
1744 __pTextEvent->Fire(*pEventArg);
1750 _SearchBar::OnAttachedToMainTree(void)
1757 _SearchBar::OnFontChanged(Font* pFont)
1759 __pCancelButton->SetFont(pFont->GetFaceName());
1760 __pEdit->SetFont(*pFont);
1765 _SearchBar::OnFontInfoRequested(unsigned long& style, int& size)
1767 style = FONT_STYLE_PLAIN;
1768 size = __pCancelButton->GetTextSize();
1774 _SearchBar::OnFocusGained(const _Control& source)
1776 if (GetVisibleState() == true)
1778 SetMode(SEARCH_BAR_MODE_INPUT);
1779 __pEdit->SetFocused();
1786 _SearchBar::OnFocusLost(const _Control& source)
1792 _SearchBar::OnKeyPressed(const _Control& source, const _KeyInfo& keyInfo)
1794 if (!__pEdit->IsUsbKeyboardConnected())
1799 _KeyCode keyCode = keyInfo.GetKeyCode();
1801 if (keyCode == _KEY_RIGHT)
1803 if (__isButtonEnabled)
1805 __pEdit->SetFocused(false);
1806 __pCancelButton->SetButtonStatus(_BUTTON_STATUS_HIGHLIGHTED);
1807 __pCancelButton->SetFocused();
1808 __pCancelButton->Invalidate(true);
1814 if (keyCode == _KEY_LEFT)
1816 if (__pCancelButton->GetButtonStatus() == _BUTTON_STATUS_HIGHLIGHTED)
1818 __pCancelButton->SetButtonStatus(_BUTTON_STATUS_NORMAL);
1819 __pCancelButton->SetFocused(false);
1820 __pCancelButton->Invalidate();
1824 if (__pCancelButton->GetButtonStatus() == _BUTTON_STATUS_DISABLED) //Searchbar Button is disabled, left arrow key is pressed
1826 __pCancelButton->SetButtonStatus(_BUTTON_STATUS_NORMAL);
1827 SetButtonEnabled(false);
1830 __pEdit->SetFocused();
1839 _SearchBar::OnKeyReleased(const _Control& source, const _KeyInfo& keyInfo)
1845 _SearchBar::GetParentForm(void) const
1847 _Form* pForm = null;
1848 _Control* pControlCore = GetParent();
1852 if (pControlCore == null)
1854 SysLog(NID_UI_CTRL,"[E_SYSTEM] The parent form is null.");
1859 pForm = dynamic_cast <_Form*>(pControlCore);
1866 pControlCore = pControlCore->GetParent();
1869 return pControlCore;
1873 _SearchBar::GetSearchBarButton(void) const
1875 return __pCancelButton;
1879 _SearchBar::GetSearchField(void)
1885 _SearchBar::GetSearchBarContainer(void) const
1887 return __pContainer;
1891 _SearchBar::GetClippedGroupControl(void) const
1893 return __pClippedGroupControl;
1897 _SearchBar::IsUsableCancelButton(void) const
1899 return __isUsableCancelButton;
1903 _SearchBar::ConvertSearchBarStatus(SearchFieldStatus status)
1905 EditStatus editStatus = EDIT_STATUS_NORMAL;
1908 case SEARCH_FIELD_STATUS_NORMAL:
1909 editStatus = EDIT_STATUS_NORMAL;
1912 case SEARCH_FIELD_STATUS_DISABLED:
1913 editStatus = EDIT_STATUS_DISABLED;
1916 case SEARCH_FIELD_STATUS_HIGHLIGHTED:
1917 editStatus = EDIT_STATUS_HIGHLIGHTED;
1927 _SearchBar::ConvertSearchBarButtonStatus(SearchBarButtonStatus status)
1929 _ButtonStatus buttonStatus = _BUTTON_STATUS_NORMAL;
1933 case SEARCH_BAR_BUTTON_STATUS_NORMAL:
1934 buttonStatus = _BUTTON_STATUS_NORMAL;
1937 case SEARCH_BAR_BUTTON_STATUS_PRESSED:
1938 buttonStatus = _BUTTON_STATUS_PRESSED;
1941 case SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED:
1942 buttonStatus = _BUTTON_STATUS_HIGHLIGHTED;
1945 case SEARCH_BAR_BUTTON_STATUS_DISABLED:
1946 buttonStatus = _BUTTON_STATUS_DISABLED;
1952 return buttonStatus;
1956 _SearchBar::SendSearchBarEvent(_SearchBarEventStatus status)
1958 result r = E_SUCCESS;
1959 if (__pSearchBarEvent)
1961 IEventArg* pEventArg = _SearchBarEvent::CreateSearchBarEventArgN(status);
1962 r = GetLastResult();
1963 SysTryReturn(NID_UI_CTRL, pEventArg, r, r, "[%s] Propagating.", GetErrorMessage(r));
1965 if (IsContentAreaVisible() == false)
1967 SetContentAreaVisible(false);
1970 __pSearchBarEvent->Fire(*pEventArg);
1977 _SearchBar::SetHeaderVisibleState(bool visible)
1979 if (__pSearchBarPresenter != null)
1981 __pSearchBarPresenter->SetHeaderVisibleState(visible);
1987 _SearchBar::SetPropertyButtonActionId(const Variant& actionId)
1989 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
1990 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
1991 SysTryReturn(NID_UI_CTRL, actionId.ToInt() > -1, E_INVALID_ARG, E_INVALID_ARG,
1992 "[E_INVALID_ARG] Invalid argument(s) is used. actionId.ToInt() = %d", actionId.ToInt());
1994 result r = E_SUCCESS;
1996 r = __pCancelButton->SetPropertyActionId(actionId);
1997 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
1998 "[%s] A system error has occurred. Failed to set actionId.", GetErrorMessage(E_SYSTEM));
2000 __actionId = actionId.ToInt();
2006 _SearchBar::GetPropertyButtonActionId(void) const
2008 SysTryReturn(NID_UI_CTRL, __pCancelButton, Variant(-1), E_SYSTEM,
2009 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2011 return Variant(__actionId);
2015 _SearchBar::SetPropertyButtonDisabledColor(const Variant& color)
2017 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
2018 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2020 result r = E_SUCCESS;
2022 r = __pCancelButton->SetPropertyDisabledColor(color);
2023 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2024 "[E_SYSTEM] A system error has occurred. Failed to set button color.");
2026 __buttonColor[SEARCH_BAR_BUTTON_STATUS_DISABLED] = color.ToColor();
2032 _SearchBar::GetPropertyButtonDisabledColor(void) const
2034 SysTryReturn(NID_UI_CTRL, __pCancelButton, Variant(Color()), E_SYSTEM,
2035 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2037 return Variant(__buttonColor[SEARCH_BAR_BUTTON_STATUS_DISABLED]);
2041 _SearchBar::SetPropertyButtonHighlightedColor(const Variant& color)
2043 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
2044 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2046 result r = E_SUCCESS;
2048 r = __pCancelButton->SetPropertyHighlightedColor(color);
2049 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2050 "[E_SYSTEM] A system error has occurred. Failed to set button color.");
2052 __buttonColor[SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED] = color.ToColor();
2058 _SearchBar::GetPropertyButtonHighlightedColor(void) const
2060 SysTryReturn(NID_UI_CTRL, __pCancelButton, Variant(Color()), E_SYSTEM,
2061 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2063 return Variant(__buttonColor[SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED]);
2067 _SearchBar::SetPropertyButtonNormalColor(const Variant& color)
2069 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
2070 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2072 result r = E_SUCCESS;
2074 r = __pCancelButton->SetPropertyNormalColor(color);
2075 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2076 "[E_SYSTEM] A system error has occurred. Failed to set button color.");
2078 __buttonColor[SEARCH_BAR_BUTTON_STATUS_NORMAL] = color.ToColor();
2084 _SearchBar::GetPropertyButtonNormalColor(void) const
2086 SysTryReturn(NID_UI_CTRL, __pCancelButton, Variant(Color()), E_SYSTEM,
2087 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2089 return Variant(__buttonColor[SEARCH_BAR_BUTTON_STATUS_NORMAL]);
2093 _SearchBar::SetPropertyButtonPressedColor(const Variant& color)
2095 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
2096 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2098 result r = E_SUCCESS;
2100 r = __pCancelButton->SetPropertyPressedColor(color);
2101 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2102 "[E_SYSTEM] A system error has occurred. Failed to set button color.");
2104 __buttonColor[SEARCH_BAR_BUTTON_STATUS_PRESSED] = color.ToColor();
2110 _SearchBar::GetPropertyButtonPressedColor(void) const
2112 SysTryReturn(NID_UI_CTRL, __pCancelButton, Variant(Color()), E_SYSTEM,
2113 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2115 return Variant(__buttonColor[SEARCH_BAR_BUTTON_STATUS_PRESSED]);
2119 _SearchBar::SetPropertyButtonDisabledTextColor(const Variant& textColor)
2121 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
2122 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2124 result r = E_SUCCESS;
2126 r = __pCancelButton->SetPropertyDisabledTextColor(textColor);
2127 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2128 "[E_SYSTEM] A system error has occurred. Failed to set button text color.");
2130 __buttonTextColor[SEARCH_BAR_BUTTON_STATUS_DISABLED] = textColor.ToColor();
2136 _SearchBar::GetPropertyButtonDisabledTextColor(void) const
2138 SysTryReturn(NID_UI_CTRL, __pCancelButton, Variant(Color()), E_SYSTEM,
2139 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2141 return Variant(__buttonTextColor[SEARCH_BAR_BUTTON_STATUS_DISABLED]);
2145 _SearchBar::SetPropertyButtonHighlightedTextColor(const Variant& textColor)
2147 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
2148 "[E_SYSTEM]] A system error has occurred. The cancel button instance is null.");
2150 result r = E_SUCCESS;
2152 r = __pCancelButton->SetPropertyHighlightedTextColor(textColor);
2153 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2154 "[E_SYSTEM] A system error has occurred. Failed to set button text color.");
2156 __buttonTextColor[SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED] = textColor.ToColor();
2162 _SearchBar::GetPropertyButtonHighlightedTextColor(void) const
2164 SysTryReturn(NID_UI_CTRL, __pCancelButton, Variant(Color()), E_SYSTEM,
2165 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2167 return Variant(__buttonTextColor[SEARCH_BAR_BUTTON_STATUS_HIGHLIGHTED]);
2171 _SearchBar::SetPropertyButtonNormalTextColor(const Variant& textColor)
2173 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
2174 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2176 result r = E_SUCCESS;
2178 r = __pCancelButton->SetPropertyNormalTextColor(textColor);
2179 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2180 "[E_SYSTEM] A system error has occurred. Failed to set button text color.");
2182 __buttonTextColor[SEARCH_BAR_BUTTON_STATUS_NORMAL] = textColor.ToColor();
2188 _SearchBar::GetPropertyButtonNormalTextColor(void) const
2190 SysTryReturn(NID_UI_CTRL, __pCancelButton, Variant(Color()), E_SYSTEM,
2191 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2193 return Variant(__buttonTextColor[SEARCH_BAR_BUTTON_STATUS_NORMAL]);
2197 _SearchBar::SetPropertyButtonPressedTextColor(const Variant& textColor)
2199 SysTryReturn(NID_UI_CTRL, __pCancelButton, E_SYSTEM, E_SYSTEM,
2200 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2202 result r = E_SUCCESS;
2204 r = __pCancelButton->SetPropertyPressedTextColor(textColor);
2205 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2206 "[E_SYSTEM] A system error has occurred. Failed to set button text color.");
2208 __buttonTextColor[SEARCH_BAR_BUTTON_STATUS_PRESSED] = textColor.ToColor();
2214 _SearchBar::GetPropertyButtonPressedTextColor(void) const
2216 SysTryReturn(NID_UI_CTRL, __pCancelButton, Variant(Color()), E_SYSTEM,
2217 "[E_SYSTEM] A system error has occurred. The cancel button instance is null.");
2219 return Variant(__buttonTextColor[SEARCH_BAR_BUTTON_STATUS_PRESSED]);
2223 _SearchBar::SetPropertySearchFieldDisabledColor(const Variant& color)
2225 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
2226 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2228 result r = E_SUCCESS;
2230 r = __pEdit->SetPropertyDisabledColor(color);
2231 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2232 "[E_SYSTEM] A system error has occurred. Failed to set the edit disabled color.");
2234 __color[SEARCH_FIELD_STATUS_DISABLED] = color.ToColor();
2240 _SearchBar::GetPropertySearchFieldDisabledColor(void) const
2242 SysTryReturn(NID_UI_CTRL, __pEdit, Variant(Color()), E_SYSTEM,
2243 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2245 return Variant(__color[SEARCH_FIELD_STATUS_DISABLED]);
2249 _SearchBar::SetPropertySearchFieldHighlightedColor(const Variant& color)
2251 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
2252 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2254 result r = E_SUCCESS;
2256 r = __pEdit->SetPropertyHighlightedColor(color);
2257 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2258 "[E_SYSTEM] A system error has occurred. Failed to set the edit highlighted color.");
2260 __color[SEARCH_FIELD_STATUS_HIGHLIGHTED] = color.ToColor();
2266 _SearchBar::GetPropertySearchFieldHighlightedColor(void) const
2268 SysTryReturn(NID_UI_CTRL, __pEdit, Variant(Color()), E_SYSTEM,
2269 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2271 return Variant(__color[SEARCH_FIELD_STATUS_HIGHLIGHTED]);
2275 _SearchBar::SetPropertySearchFieldNormalColor(const Variant& color)
2277 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
2278 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2280 result r = E_SUCCESS;
2282 r = __pEdit->SetPropertyNormalColor(color);
2283 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2284 "[E_SYSTEM] A system error has occurred. Failed to set edit normal color.");
2286 __color[SEARCH_FIELD_STATUS_NORMAL] = color.ToColor();
2292 _SearchBar::GetPropertySearchFieldNormalColor(void) const
2294 SysTryReturn(NID_UI_CTRL, __pEdit, Variant(Color()), E_SYSTEM,
2295 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2297 return Variant(__color[SEARCH_FIELD_STATUS_NORMAL]);
2301 _SearchBar::SetPropertySearchFieldDisabledTextColor(const Variant& textColor)
2303 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
2304 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2306 result r = E_SUCCESS;
2308 r = __pEdit->SetPropertyDisabledTextColor(textColor);
2309 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2310 "[E_SYSTEM] A system error has occurred. Failed to set edit disabled text color.");
2312 __textColor[SEARCH_FIELD_STATUS_DISABLED] = textColor.ToColor();
2318 _SearchBar::GetPropertySearchFieldDisabledTextColor(void) const
2320 SysTryReturn(NID_UI_CTRL, __pEdit, Variant(Color()), E_SYSTEM,
2321 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2323 return Variant(__textColor[SEARCH_FIELD_STATUS_DISABLED]);
2327 _SearchBar::SetPropertySearchFieldHighlightedTextColor(const Variant& textColor)
2329 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
2330 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2332 result r = E_SUCCESS;
2334 r = __pEdit->SetPropertyHighlightedTextColor(textColor);
2335 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2336 "[E_SYSTEM] A system error has occurred. Failed to set edit highlighted text color.");
2338 __textColor[SEARCH_FIELD_STATUS_HIGHLIGHTED] = textColor.ToColor();
2344 _SearchBar::GetPropertySearchFieldHighlightedTextColor(void) const
2346 SysTryReturn(NID_UI_CTRL, __pEdit, Variant(Color()), E_SYSTEM,
2347 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2349 return Variant(__textColor[SEARCH_FIELD_STATUS_HIGHLIGHTED]);
2353 _SearchBar::SetPropertySearchFieldNormalTextColor(const Variant& textColor)
2355 SysTryReturn(NID_UI_CTRL, __pEdit, E_SYSTEM, E_SYSTEM,
2356 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2358 result r = E_SUCCESS;
2360 r = __pEdit->SetPropertyNormalTextColor(textColor);
2361 SysTryReturn(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, E_SYSTEM,
2362 "[E_SYSTEM] A system error has occurred. Failed to set edit normal text color.");
2364 __textColor[SEARCH_FIELD_STATUS_NORMAL] = textColor.ToColor();
2370 _SearchBar::GetPropertySearchFieldNormalTextColor(void) const
2372 SysTryReturn(NID_UI_CTRL, __pEdit, Variant(Color()), E_SYSTEM,
2373 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2375 return Variant(__textColor[SEARCH_FIELD_STATUS_NORMAL]);
2379 _SearchBar::SetPropertyColor(const Variant& color)
2381 __backgroundColor = color.ToColor();
2387 _SearchBar::GetPropertyColor(void) const
2389 return Variant(__backgroundColor);
2393 _SearchBar::SetPropertyContentAreaSize(const Variant& size)
2395 FloatDimension contentAreaSize = size.ToFloatDimension();
2396 SysTryReturn(NID_UI_CTRL, contentAreaSize.width >= 0 && contentAreaSize.height >= 0, E_INVALID_ARG, E_INVALID_ARG,
2397 "[E_INVALID_ARG] Invalid argument(s) is used. contentAreaSize.width = %f, contenAreaSize.height = %f",
2398 contentAreaSize.width, contentAreaSize.height);
2400 result r = E_SUCCESS;
2403 FloatRectangle bounds = GetBoundsF();
2404 FloatRectangle contentAreaBounds(0.0f, 0.0f, 0.0f, 0.0f);
2406 contentAreaBounds.x = 0.0f;
2407 contentAreaBounds.y = bounds.height;
2408 contentAreaBounds.width = contentAreaSize.width;
2409 contentAreaBounds.height = contentAreaSize.height;
2411 __contentAreaBounds = contentAreaBounds;
2412 __isUserContainerBounds = true;
2417 r = __pContainer->SetBounds(__contentAreaBounds);
2418 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
2425 _SearchBar::GetPropertyContentAreaSize(void) const
2427 FloatDimension contentAreaSize(__contentAreaBounds.width, __contentAreaBounds.height);
2429 return Variant(contentAreaSize);
2433 _SearchBar::CreateClippedGroupControl(void)
2435 result r = E_SUCCESS;
2436 FloatRectangle clippedGroupControlBounds(FloatPoint(0.0f, 0.0f), GetSizeF());
2437 __pClippedGroupControl = _Control::CreateControlN();
2438 r = GetLastResult();
2439 SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, r, "Propagating.");
2441 r = AttachChild(*__pClippedGroupControl);
2442 SysTryCatch(NID_UI_CTRL, (r == E_SUCCESS), , E_SYSTEM,
2443 "[E_SYSTEM] A system error has occurred. Failed to attach the parent of clipped control.");
2445 r = __pClippedGroupControl->SetBounds(clippedGroupControlBounds);
2446 SysTryCatch(NID_UI_CTRL, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
2448 __pClippedGroupControl->SetBackgroundColor(Color(0));
2450 __pClippedGroupControl->SetClipChildrenEnabled(true);
2455 delete __pClippedGroupControl;
2456 __pClippedGroupControl = null;
2463 _SearchBar::CreateAccessibilityElement(void)
2465 if (__pAccessibilitySearchBarElement != null)
2469 _AccessibilityContainer* pContainer = null;
2470 pContainer = GetAccessibilityContainer();
2474 __pAccessibilitySearchBarElement = new (std::nothrow) _AccessibilityElement(true);
2475 SysTryReturnVoidResult(NID_UI_CTRL, __pAccessibilitySearchBarElement, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Failed to allocate memory.");
2476 __pAccessibilitySearchBarElement->SetBounds(FloatRectangle(0.0f, 0.0f, GetBoundsF().width, GetBoundsF().height));
2477 __pAccessibilitySearchBarElement->SetTrait(ACCESSIBILITY_TRAITS_NONE);
2478 __pAccessibilitySearchBarElement->SetName("SearchBar");
2479 pContainer->AddElement(*__pAccessibilitySearchBarElement);
2486 _SearchBar::SetContentDimming(void)
2488 if (__pContainer != NULL)
2490 if (!GetTextLength())
2492 __contentColor.SetAlpha(_SEARCH_CONTENT_DIM_OPACITY);
2496 __contentColor.SetAlpha(0);
2498 __pContainer->SetBackgroundColor(__contentColor);
2504 _SearchBar::IsContentAttachable(const _Control* pContent)
2506 const _Window* pWindow = dynamic_cast <const _Window*>(pContent);
2507 const _ColorPicker* pColorPicker = dynamic_cast <const _ColorPicker*>(pContent);
2508 const _Form* pForm = dynamic_cast <const _Form*>(pContent);
2509 const _Keypad* pKeypad = dynamic_cast <const _Keypad*>(pContent);
2510 const _OverlayPanel* pOverlayPanel = dynamic_cast <const _OverlayPanel*>(pContent);
2512 bool isContentAttachable = true;
2514 isContentAttachable = ((pWindow == null) && (pColorPicker == null) &&
2515 (pForm == null) && (pKeypad == null) && (pOverlayPanel == null));
2516 return isContentAttachable;
2520 _SearchBar::ResizeCancelButton(void)
2522 result r = E_SUCCESS;
2524 float horizontalMargin = 0.0f;
2525 float buttonLeftMargin = 0.0f;
2526 float buttonRightMargin = 0.0f;
2527 float buttonMinWidth = 0.0f;
2528 float searchFieldMinWidth = 0.0f;
2529 float buttonVerticalMargin = 0.0f;
2530 float searchBarMinHeight = 0.0f;
2531 float buttonWidth = 0.0f;
2532 float buttonHeight = 0.0f;
2534 FloatRectangle cancelButtonBounds;
2535 FloatRectangle searchBarBounds = GetBoundsF();
2537 _ControlOrientation orientation = _ControlManager::GetInstance()->GetOrientation();
2539 GET_SHAPE_CONFIG(SEARCHBAR::HORIZONTAL_MARGIN, orientation, horizontalMargin);
2540 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_LEFT_MARGIN, orientation, buttonLeftMargin);
2541 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_RIGHT_MARGIN, orientation, buttonRightMargin);
2542 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_WIDTH, orientation, buttonWidth);
2543 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_HEIGHT, orientation, buttonHeight);
2544 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_MIN_WIDTH, orientation, buttonMinWidth);
2545 GET_SHAPE_CONFIG(SEARCHBAR::SEARCH_FIELD_MIN_WIDTH, orientation, searchFieldMinWidth);
2546 GET_SHAPE_CONFIG(SEARCHBAR::VERTICAL_MARGIN, orientation, buttonVerticalMargin);
2547 GET_SHAPE_CONFIG(SEARCHBAR::MIN_HEIGHT, orientation, searchBarMinHeight);
2549 cancelButtonBounds.width = buttonWidth;
2550 cancelButtonBounds.height = buttonHeight;
2552 float buttonResizableSearchBarWidth = (horizontalMargin + searchFieldMinWidth +
2553 cancelButtonBounds.width + buttonLeftMargin + buttonRightMargin);
2555 if (searchBarBounds.width < buttonResizableSearchBarWidth)
2557 cancelButtonBounds.width = searchBarBounds.width -(searchFieldMinWidth + buttonLeftMargin
2558 + buttonRightMargin + horizontalMargin);
2561 cancelButtonBounds.x = searchBarBounds.width - cancelButtonBounds.width - buttonRightMargin;
2562 cancelButtonBounds.y = (searchBarBounds.height - cancelButtonBounds.height)/2.0f;
2564 cancelButtonBounds.y = cancelButtonBounds.y < 0.0f ? 0.0f:cancelButtonBounds.y;
2566 if (cancelButtonBounds.width < buttonMinWidth)
2568 cancelButtonBounds.width = buttonMinWidth;
2571 cancelButtonBounds.width = (cancelButtonBounds.width > 0.0f) ? cancelButtonBounds.width : 0.0f;
2572 cancelButtonBounds.height = (cancelButtonBounds.height > 0.0f) ? cancelButtonBounds.height : 0.0f;
2573 r = __pCancelButton->SetBounds(cancelButtonBounds);
2579 _SearchBar::RecalculateButtonBounds(void)
2581 result r = E_SUCCESS;
2583 float horizontalMargin = 0.0f;
2584 float verticalMargin = 0.0f;
2585 float buttonLeftMargin = 0.0f;
2586 float buttonRightMargin = 0.0f;
2587 float buttonMinWidth = 0.0f;
2588 float searchFieldMinWidth = 0.0f;
2589 float buttonVerticalMargin = 0.0f;
2590 float searchBarMinHeight = 0.0f;
2591 float buttonWidth = 0.0f;
2592 float buttonHeight = 0.0f;
2593 float cancelButtonWidth = 0.0f;
2595 FloatRectangle cancelButtonBounds;
2596 FloatRectangle editBounds;
2597 FloatRectangle searchBarBounds = GetBoundsF();
2599 _ControlOrientation orientation = _ControlManager::GetInstance()->GetOrientation();
2601 GET_SHAPE_CONFIG(SEARCHBAR::HORIZONTAL_MARGIN, orientation, horizontalMargin);
2602 GET_SHAPE_CONFIG(SEARCHBAR::VERTICAL_MARGIN, orientation, verticalMargin);
2603 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_LEFT_MARGIN, orientation, buttonLeftMargin);
2604 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_RIGHT_MARGIN, orientation, buttonRightMargin);
2605 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_WIDTH, orientation, buttonWidth);
2606 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_HEIGHT, orientation, buttonHeight);
2607 GET_SHAPE_CONFIG(SEARCHBAR::BUTTON_MIN_WIDTH, orientation, buttonMinWidth);
2608 GET_SHAPE_CONFIG(SEARCHBAR::SEARCH_FIELD_MIN_WIDTH, orientation, searchFieldMinWidth);
2609 GET_SHAPE_CONFIG(SEARCHBAR::VERTICAL_MARGIN, orientation, buttonVerticalMargin);
2610 GET_SHAPE_CONFIG(SEARCHBAR::MIN_HEIGHT, orientation, searchBarMinHeight);
2612 cancelButtonBounds.height = buttonHeight;
2614 float searchFieldMinHeight = searchBarMinHeight - (verticalMargin * 2.0f);
2615 cancelButtonWidth = __pCancelButton->GetTextExtentSizeF() + __pCancelButton->GetRightTouchMarginF() + __pCancelButton->GetLeftTouchMarginF() + __pCancelButton->GetRightMarginF() + __pCancelButton->GetLeftMarginF();
2616 editBounds.x = horizontalMargin;
2618 if (searchBarBounds.height < searchBarMinHeight)
2620 verticalMargin = (searchBarBounds.height - searchFieldMinHeight)/2.0f;
2621 if (verticalMargin < 0.0f)
2623 verticalMargin = 0.0f;
2627 editBounds.y = verticalMargin;
2628 editBounds.height = searchBarBounds.height - (editBounds.y * 2.0f);
2630 editBounds.height = (editBounds.height > searchFieldMinHeight) ? editBounds.height : searchFieldMinHeight;
2632 editBounds.width = searchBarBounds.width - cancelButtonWidth - horizontalMargin - buttonLeftMargin - buttonRightMargin;
2634 if (editBounds.width < searchFieldMinWidth)
2636 editBounds.width = searchFieldMinWidth;
2639 cancelButtonBounds.x = editBounds.width + horizontalMargin + buttonLeftMargin;
2640 cancelButtonBounds.y = (searchBarBounds.height - cancelButtonBounds.height)/2.0f;
2642 cancelButtonBounds.y = cancelButtonBounds.y < 0.0f ? 0.0f:cancelButtonBounds.y;
2644 float remainingWidth = searchBarBounds.width - editBounds.width - horizontalMargin - buttonLeftMargin - buttonRightMargin;
2646 if (remainingWidth < buttonMinWidth)
2648 cancelButtonBounds.width = buttonMinWidth;
2652 cancelButtonBounds.width = searchBarBounds.width - cancelButtonBounds.x - buttonRightMargin;
2655 cancelButtonBounds.width = (cancelButtonBounds.width > 0.0f) ? cancelButtonBounds.width : 0.0f;
2656 cancelButtonBounds.height = (cancelButtonBounds.height > 0.0f) ? cancelButtonBounds.height : 0.0f;
2658 r = __pCancelButton->SetBounds(cancelButtonBounds);
2659 SysTryReturnVoidResult(NID_UI_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
2660 r = __pEdit->SetBounds(editBounds);
2661 SysTryReturnVoidResult(NID_UI_CTRL, r == E_SUCCESS, r, "[%s] Propagating.", GetErrorMessage(r));
2667 _SearchBar::GetCurrentStatus(void)
2669 SearchFieldStatus searchFieldStatus = SEARCH_FIELD_STATUS_NORMAL;
2673 if (__pEdit->IsFocused())
2675 searchFieldStatus = SEARCH_FIELD_STATUS_HIGHLIGHTED;
2680 searchFieldStatus = SEARCH_FIELD_STATUS_DISABLED;
2683 return searchFieldStatus;
2687 _SearchBar::SetEditTextFilter(IEditTextFilter* pFilter)
2689 SysTryReturnVoidResult(NID_UI_CTRL, __pEdit, E_SYSTEM,
2690 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2692 __pEdit->SetEditTextFilter(pFilter);
2698 _SearchBar::SendOpaqueCommand(const String& command)
2700 SysTryReturnVoidResult(NID_UI_CTRL, __pEdit, E_SYSTEM,
2701 "[E_SYSTEM] A system error has occurred. The edit instance is null.");
2703 __pEdit->SendOpaqueCommand(command);
2708 }}} // Tizen::Ui::Controls