From 95c234d4e069fd787409f50ce7bc072e16d3c9fd Mon Sep 17 00:00:00 2001 From: woo Date: Wed, 20 Mar 2013 19:32:59 +0900 Subject: [PATCH] remove APIs to apply [ACR][03/30][Remove] Remove APIs in Tizen::Ui namespace Change-Id: Ic14f38be257dc036d5fc1b3f3ea756deeaa8c502 Signed-off-by: woo --- inc/FUiCtrlCustomListItem.h | 17 ------ inc/FUiCtrlGroupedList.h | 18 ------- inc/FUiCtrlListItemBase.h | 39 -------------- inc/FUiCtrlSlidableGroupedList.h | 21 -------- inc/FUiIFastScrollEventListener.h | 30 ----------- src/ui/controls/FUiCtrlCustomListItem.cpp | 11 ---- src/ui/controls/FUiCtrlGroupedList.cpp | 12 ----- src/ui/controls/FUiCtrlListItemBase.cpp | 22 -------- src/ui/controls/FUiCtrlSlidableGroupedList.cpp | 10 ---- src/ui/controls/FUiCtrl_CustomListItemImpl.cpp | 7 --- src/ui/controls/FUiCtrl_GroupedListImpl.cpp | 46 ---------------- src/ui/controls/FUiCtrl_ListItemBaseImpl.cpp | 25 --------- src/ui/controls/FUiCtrl_ListViewItem.cpp | 47 ----------------- .../controls/FUiCtrl_SlidableGroupedListImpl.cpp | 61 ---------------------- src/ui/inc/FUiCtrl_CustomListItemImpl.h | 1 - src/ui/inc/FUiCtrl_GroupedListImpl.h | 2 - src/ui/inc/FUiCtrl_ListItemBaseImpl.h | 4 -- src/ui/inc/FUiCtrl_ListViewItem.h | 4 -- src/ui/inc/FUiCtrl_SlidableGroupedListImpl.h | 2 - 19 files changed, 379 deletions(-) diff --git a/inc/FUiCtrlCustomListItem.h b/inc/FUiCtrlCustomListItem.h index b44408d..85d188b 100644 --- a/inc/FUiCtrlCustomListItem.h +++ b/inc/FUiCtrlCustomListItem.h @@ -262,23 +262,6 @@ public: /** * @if OSPDEPREC - * Sets the percent value of %CustomListItem. - * - * @brief [Deprecated] - * @deprecated This class is deprecated. Instead of using this class, use CustomItem class - * @since 2.0 - * - * @return An error code - * @param[in] value The percent value of %CustomListItem @n - * The valid range of integers is from @c 0 to @c 100 - * @exception E_SUCCESS The method is successful. - * @exception E_SYSTEM A system error has occurred. - * @endif - */ - result SetValue(int value); - - /** - * @if OSPDEPREC * Gets the percentage value of %CustomListItem. * * @brief [Deprecated] diff --git a/inc/FUiCtrlGroupedList.h b/inc/FUiCtrlGroupedList.h index a7c5c53..b268a32 100644 --- a/inc/FUiCtrlGroupedList.h +++ b/inc/FUiCtrlGroupedList.h @@ -960,24 +960,6 @@ public: /** * @if OSPDEPREC - * Sets the second index list of scroll by text. - * - * @brief [Deprecated] - * @deprecated This class is deprecated. Instead of using this class, use GroupedListView class. - * @since 2.0 - * - * @return An error code - * @param[in] text The text of the second index @n - * Separate each second index of the first index by ',';. - * @param[in] indexDigit The index digit count - * @exception E_SUCCESS The method is successful. - * @exception E_SYSTEM A system error has occurred. - * @endif - */ - result SetFastScrollSubIndex(const Tizen::Base::String& text, FastScrollIndexDigit indexDigit = SCROLL_INDEX_DIGIT_NUM_1); - - /** - * @if OSPDEPREC * Adds the fast scroll event listener. * * @brief [Deprecated] diff --git a/inc/FUiCtrlListItemBase.h b/inc/FUiCtrlListItemBase.h index ade9aa9..e4e554b 100644 --- a/inc/FUiCtrlListItemBase.h +++ b/inc/FUiCtrlListItemBase.h @@ -143,45 +143,6 @@ public: result SetDescriptionTextColor(const Tizen::Graphics::Color& color); /** - * Sets the progress value of a list item. - * - * @since 2.0 - * - * @return An error code - * @param[in] value The progress value of the list item @n - * The valid values are integers from @c 0 to @c 100. - * @exception E_SUCCESS The method is successful. - * @exception E_SYSTEM A system error has occurred. - */ - result SetProgressValue(int value); - - /** - * Sets the margin of the progress bar. - * - * @since 2.0 - * - * @return An error code - * @param[in] leftMargin The left margin of the progress bar - * @param[in] rightMargin The right margin of the progress bar - * @exception E_SUCCESS The method is successful. - * @exception E_SYSTEM A system error has occurred. - */ - result SetProgressMargins(int leftMargin, int rightMargin); - - /** - * Sets the margin of the progress bar. - * - * @since 2.1 - * - * @return An error code - * @param[in] leftMargin The left margin of the progress bar - * @param[in] rightMargin The right margin of the progress bar - * @exception E_SUCCESS The method is successful. - * @exception E_SYSTEM A system error has occurred. - */ - result SetProgressMargins(float leftMargin, float rightMargin); - - /** * Gets the width of the annex area. * * @since 2.0 diff --git a/inc/FUiCtrlSlidableGroupedList.h b/inc/FUiCtrlSlidableGroupedList.h index e0b69ec..c1b8122 100644 --- a/inc/FUiCtrlSlidableGroupedList.h +++ b/inc/FUiCtrlSlidableGroupedList.h @@ -806,27 +806,6 @@ public: */ result SetFastScrollMainIndex(const Tizen::Base::String& text); - - /** - * @if OSPDEPREC - * Sets the second index list of the scroll by text. - * - * @brief [Deprecated] - * @deprecated This class is deprecated. Instead of using this class, use the %GroupedListView class. - * @since 2.0 - * - * @return An error code - * @param[in] text The text of the second index @n - * Each second index of the first index has to be separated by ',' - * @param[in] indexDigit The index digit count - * @exception E_SUCCESS The method is successful. - * @exception E_SYSTEM A system error has occurred. - * @remarks The sub-index of fast scroll does not support SCROLL_INDEX_DIGIT_NUM_2. Therefore, when SCROLL_INDEX_DIGIT_NUM_2 is passed to - * @c indexDigit, this method returns E_SYSTEM. - * @endif - */ - result SetFastScrollSubIndex(const Tizen::Base::String& text, FastScrollIndexDigit indexDigit = SCROLL_INDEX_DIGIT_NUM_1); - /** * @if OSPDEPREC * Sets the background color of this control. diff --git a/inc/FUiIFastScrollEventListener.h b/inc/FUiIFastScrollEventListener.h index 442dad1..54d94fd 100755 --- a/inc/FUiIFastScrollEventListener.h +++ b/inc/FUiIFastScrollEventListener.h @@ -84,21 +84,6 @@ public: /** * @if OSPDEPREC - * Called when a sub index is selected. - * - * @brief [Deprecated] - * @deprecated This class is deprecated. Instead of using this class, use the IFastScrollListener class. - * @since 2.0 - * - * @param[in] source The source of the event - * @param[in] mainIndex The main index - * @param[in] subIndex The sub index - * @endif - */ - virtual void OnSubIndexChanged(const Tizen::Ui::Control& source, Tizen::Base::Character& mainIndex, Tizen::Base::Character& subIndex) = 0; - - /** - * @if OSPDEPREC * Called when a main index is expanded. * * @brief [Deprecated] @@ -111,21 +96,6 @@ public: */ virtual void OnMainIndexSelected(const Tizen::Ui::Control& source, Tizen::Base::Character& mainIndex) = 0; - /** - * @if OSPDEPREC - * Called when a sub index is expanded. - * - * @brief [Deprecated] - * @deprecated This class is deprecated. Instead of using this class, use the IFastScrollListener class. - * @since 2.0 - * - * @param[in] source The source of the event - * @param[in] mainIndex The main index - * @param[in] subIndex The sub index - * @endif - */ - virtual void OnSubIndexSelected(const Tizen::Ui::Control& source, Tizen::Base::Character& mainIndex, Tizen::Base::Character& subIndex) = 0; - protected: virtual void IFastScrollEventListener_Reserved1(void) {} diff --git a/src/ui/controls/FUiCtrlCustomListItem.cpp b/src/ui/controls/FUiCtrlCustomListItem.cpp index 343c1d1..1888df0 100644 --- a/src/ui/controls/FUiCtrlCustomListItem.cpp +++ b/src/ui/controls/FUiCtrlCustomListItem.cpp @@ -154,17 +154,6 @@ CustomListItem::SetCheckBox(int elementId) return E_SUCCESS; } -result -CustomListItem::SetValue(int value) -{ - SysAssertf((__pCustomListItemImpl != null), "Not yet constructed. Construct() should be called before use."); - - result r = __pCustomListItemImpl->SetValue(value); - SysTryReturnResult(NID_UI_CTRL, r == E_SUCCESS, E_SYSTEM, "Failed to set the value."); - - return r; -} - int CustomListItem::GetValue(void) const { diff --git a/src/ui/controls/FUiCtrlGroupedList.cpp b/src/ui/controls/FUiCtrlGroupedList.cpp index 131b79f..e198a56 100644 --- a/src/ui/controls/FUiCtrlGroupedList.cpp +++ b/src/ui/controls/FUiCtrlGroupedList.cpp @@ -598,18 +598,6 @@ GroupedList::SetFastScrollMainIndex(const String& text) } result -GroupedList::SetFastScrollSubIndex(const String& text, FastScrollIndexDigit indexDigit) -{ - _GroupedListImpl* pImpl = _GroupedListImpl::GetInstance(*this); - SysAssertf(pImpl != null, "Not yet constructed. Construct() should be called before use."); - - result r = pImpl->SetFastScrollSubIndex(text, indexDigit); - SysTryReturn(NID_UI_CTRL, pImpl, r, r, "[%s] Propagating.", GetErrorMessage(r)); - - return r; -} - -result GroupedList::RefreshItem(int groupIndex, int itemIndex) { _GroupedListImpl* pImpl = _GroupedListImpl::GetInstance(*this); diff --git a/src/ui/controls/FUiCtrlListItemBase.cpp b/src/ui/controls/FUiCtrlListItemBase.cpp index d1bb77a..abe3dff 100644 --- a/src/ui/controls/FUiCtrlListItemBase.cpp +++ b/src/ui/controls/FUiCtrlListItemBase.cpp @@ -116,28 +116,6 @@ ListItemBase::SetDescriptionTextColor(const Color& color) return _pImpl->SetDescriptionTextColor(color); } -result -ListItemBase::SetProgressValue(int value) -{ - SysAssertf(_pImpl != null, "Not yet constructed. Construct() should be called before use."); - - return _pImpl->SetProgressValue(value); -} - -result -ListItemBase::SetProgressMargins(int leftMargin, int rightMargin) -{ - return SetProgressMargins(_CoordinateSystemUtils::ConvertToFloat(leftMargin), _CoordinateSystemUtils::ConvertToFloat(rightMargin)); -} - -result -ListItemBase::SetProgressMargins(float leftMargin, float rightMargin) -{ - SysAssertf(_pImpl != null, "Not yet constructed. Construct() should be called before use."); - - return _pImpl->SetProgressMargins(leftMargin, rightMargin); -} - int ListItemBase::GetAnnexWidth(ListAnnexStyle style) { diff --git a/src/ui/controls/FUiCtrlSlidableGroupedList.cpp b/src/ui/controls/FUiCtrlSlidableGroupedList.cpp index 4602ace..5ea2a64 100644 --- a/src/ui/controls/FUiCtrlSlidableGroupedList.cpp +++ b/src/ui/controls/FUiCtrlSlidableGroupedList.cpp @@ -356,16 +356,6 @@ SlidableGroupedList::SetFastScrollMainIndex(const String& text) return pImpl->SetFastScrollMainIndex(text); } -result -SlidableGroupedList::SetFastScrollSubIndex(const String& text, FastScrollIndexDigit indexDigit) -{ - _SlidableGroupedListImpl* pImpl = _SlidableGroupedListImpl::GetInstance(*this); - - SysAssertf(pImpl != null, "Not yet constructed. Construct() should be called before use."); - - return pImpl->SetFastScrollSubIndex(text, indexDigit); -} - void SlidableGroupedList::SetBackgroundColor(const Color& color) { diff --git a/src/ui/controls/FUiCtrl_CustomListItemImpl.cpp b/src/ui/controls/FUiCtrl_CustomListItemImpl.cpp index 8e1195d..2e9bc5f 100644 --- a/src/ui/controls/FUiCtrl_CustomListItemImpl.cpp +++ b/src/ui/controls/FUiCtrl_CustomListItemImpl.cpp @@ -523,13 +523,6 @@ _CustomListItemImpl::UpdateBitmaps(void) return; } -result -_CustomListItemImpl::SetValue(int value) -{ - __percentValue = value; - return E_SUCCESS; -} - _CheckElementModel* _CustomListItemImpl::GetCheckElement(void) { diff --git a/src/ui/controls/FUiCtrl_GroupedListImpl.cpp b/src/ui/controls/FUiCtrl_GroupedListImpl.cpp index 7bd29ff..c94bba6 100644 --- a/src/ui/controls/FUiCtrl_GroupedListImpl.cpp +++ b/src/ui/controls/FUiCtrl_GroupedListImpl.cpp @@ -1347,17 +1347,6 @@ _GroupedListImpl::OnUiFastScrollIndexSelected(_Control& source, _FastScrollIndex Character mainIndex(mch); pFastScrollListener->OnMainIndexChanged(control, mainIndex); } - else - { - Character subIndex(mch); - pIndexText = __pMainIndex->GetIndexText(); - if (pIndexText != null) - { - pIndexText->GetCharAt(0, mch); - Character mainIndex(mch); - pFastScrollListener->OnSubIndexChanged(control, mainIndex, subIndex); - } - } } SetLastResult(E_SUCCESS); return; @@ -1384,41 +1373,6 @@ _GroupedListImpl::SetFastScrollMainIndex(const String& text) return E_SUCCESS; } -result -_GroupedListImpl::SetFastScrollSubIndex(const String& text, FastScrollIndexDigit indexDigit) -{ - SysTryReturn(NID_UI_CTRL, (text.GetLength() > 0), E_SYSTEM, E_SYSTEM, "[E_SYSTEM] A system error has occurred. Empty string"); - - SysTryReturn(NID_UI_CTRL, (indexDigit == SCROLL_INDEX_DIGIT_NUM_1), E_SYSTEM, E_SYSTEM, "[E_SYSTEM] A system error has occurred. indexDigit is not SCROLL_INDEX_DIGIT_NUM_1"); - - _FastScroll* pFastScroll = GetCore().GetFastScrollBar(); - SysTryReturn(NID_UI_CTRL, pFastScroll, E_SYSTEM, E_SYSTEM, "[E_SYSTEM] A system error has occurred. FastScroll doesn't exist."); - - SysTryReturn(NID_UI_CTRL, (__mainIndexText.GetLength() > 0), E_SYSTEM, E_SYSTEM, "[E_SYSTEM] A system error has occurred. Main index of the fast scroll isn't set"); - - _FastScrollIndex* pRootIndex = pFastScroll->GetIndex(); - SysTryReturn(NID_UI_CTRL, pRootIndex, E_SYSTEM, E_SYSTEM, "[E_SYSTEM] A system error has occurred. RootIndex doesn't exist."); - - int subIndexDigit = 1 ; - String delim(L","); - StringTokenizer strTok(text, delim); - String token; - int i = 0; - - while (strTok.HasMoreTokens()) - { - strTok.GetNextToken(token); - _FastScrollIndex* pSecondaryIndex = pRootIndex->GetChildIndex(i++); - if (pSecondaryIndex != null) - { - pSecondaryIndex->AddChildTextIndexArray(0, token.GetPointer(), subIndexDigit, token.GetLength()); - } - } - pFastScroll->UpdateIndex(); - - return E_SUCCESS; -} - class _GroupedListMaker : public _UiBuilderControlMaker { diff --git a/src/ui/controls/FUiCtrl_ListItemBaseImpl.cpp b/src/ui/controls/FUiCtrl_ListItemBaseImpl.cpp index fc78d46..1979509 100644 --- a/src/ui/controls/FUiCtrl_ListItemBaseImpl.cpp +++ b/src/ui/controls/FUiCtrl_ListItemBaseImpl.cpp @@ -125,7 +125,6 @@ _ListItemBaseImpl::Construct(const FloatDimension& itemSize, ListAnnexStyle styl __pListViewItem->SetSize(itemSize); __pListViewItem->SetBounds(FloatRectangle(0.0f, 0.0f, itemSize.width, itemSize.height)); __pListViewItem->SetBackgroundColor(Color(0, 0, 0, 0)); - __pListViewItem->SetProgressValue(-1); __pListViewItem->SetSelectionStyle(TABLE_VIEW_ITEM_SELECTION_STYLE_WHOLE); __itemSize = itemSize; @@ -272,30 +271,6 @@ _ListItemBaseImpl::SetDescriptionTextColor(const Color& color) return E_SUCCESS; } -result -_ListItemBaseImpl::SetProgressValue(int value) -{ - SysTryReturn(NID_UI_CTRL, (__pListViewItem->SetProgressValue(value) == true), E_SYSTEM, E_SYSTEM, - ("[E_SYSTEM] Unable to set progress value.")); - - return E_SUCCESS; -} - -result -_ListItemBaseImpl::SetProgressMargins(float leftMargin, float rightMargin) -{ - SysTryReturn(NID_UI_CTRL, (leftMargin >= 0.0f) && (rightMargin >= 0.0f), E_INVALID_ARG, E_INVALID_ARG, - ("[E_INVALID_ARG] It is invalid argument.")); - - SysTryReturn(NID_UI_CTRL, (leftMargin < (__itemSize.width - rightMargin)), E_INVALID_ARG, E_INVALID_ARG, - ("[E_INVALID_ARG] It is invalid argument.")); - - SysTryReturn(NID_UI_CTRL, (__pListViewItem->SetProgressMargins(leftMargin, rightMargin) == true), E_SYSTEM, E_SYSTEM, - ("[E_SYSTEM] Unable to set progress bar margin.")); - - return E_SUCCESS; -} - float _ListItemBaseImpl::GetAnnexWidth(ListAnnexStyle style) { diff --git a/src/ui/controls/FUiCtrl_ListViewItem.cpp b/src/ui/controls/FUiCtrl_ListViewItem.cpp index 6ebcab5..80e32eb 100644 --- a/src/ui/controls/FUiCtrl_ListViewItem.cpp +++ b/src/ui/controls/FUiCtrl_ListViewItem.cpp @@ -784,53 +784,6 @@ _ListViewItem::GetTextColor(int elementId, Color& textColor, ListViewItemDrawing return true; } -bool -_ListViewItem::SetProgressValue(int value) -{ - if ((value < 0) || (value > 100)) - { - if (__pProgress != null) - { - __pProgress->SetVisibleState(false); - } - - return false; - } - - if (__pProgress == null) - { - __pProgress = _Progress::CreateProgressN(); - SysTryReturn(NID_UI_CTRL, (__pProgress != null), false, E_SYSTEM, "[%s] Propagating.", GetErrorMessage(GetLastResult())); - - __pProgress->SetRange(0, 100); - - AttachChild(*__pProgress); - - AdjustProgressBounds(); - } - - __pProgress->SetValue(value); - __pProgress->SetVisibleState(true); - - return true; -} - -bool -_ListViewItem::SetProgressMargins(float leftMargin, float rightMargin) -{ - if ((leftMargin < 0.0f) || (rightMargin < 0.0f) || (GetBoundsF().width - leftMargin - rightMargin <= 0.0f)) - { - return false; - } - - __progressLeftMargin = leftMargin; - __progressRightMargin = rightMargin; - - AdjustProgressBounds(); - - return true; -} - void _ListViewItem::AdjustProgressBounds(void) { diff --git a/src/ui/controls/FUiCtrl_SlidableGroupedListImpl.cpp b/src/ui/controls/FUiCtrl_SlidableGroupedListImpl.cpp index f76ac2b..1cd814a 100644 --- a/src/ui/controls/FUiCtrl_SlidableGroupedListImpl.cpp +++ b/src/ui/controls/FUiCtrl_SlidableGroupedListImpl.cpp @@ -784,47 +784,6 @@ _SlidableGroupedListImpl::SetFastScrollMainIndex(const String& text) return E_SUCCESS; } - -result -_SlidableGroupedListImpl::SetFastScrollSubIndex(const String& text, FastScrollIndexDigit indexDigit) -{ - SysTryReturn(NID_UI_CTRL, (text.GetLength() > 0), E_SYSTEM, E_INVALID_ARG, "[E_INVALID_ARG] Invalid argument is used. Text is empty."); - - SysTryReturn(NID_UI_CTRL, (indexDigit == SCROLL_INDEX_DIGIT_NUM_1), E_SYSTEM, E_INVALID_ARG, - "[E_INVALID_ARG] Invalid argument is used. indexDigit is not SCROLL_INDEX_DIGIT_NUM_1."); - - _FastScroll* pFastScroll = GetCore().GetFastScrollBar(); - SysTryReturn(NID_UI_CTRL, pFastScroll, E_SYSTEM, E_SYSTEM, "[E_SYSTEM] A system error has occurred. Failed to get FastScroll Object."); - - SysTryReturn(NID_UI_CTRL, (__mainScrollIndex.GetLength() > 0), E_SYSTEM, E_SYSTEM, - "[E_SYSTEM] A system error has occurred. Main index of the fast scroll is not set."); - - __subScrollIndex = text; - - _FastScrollIndex* pRootIndex = pFastScroll->GetIndex(); - SysTryReturn(NID_UI_CTRL, pRootIndex, E_SYSTEM, E_SYSTEM, "[E_SYSTEM] A system error has occurred. Failed to get rootIndex."); - - int subIndexDigit = 1; - String delim(L","); - StringTokenizer strTok(text, delim); - String token; - int i = 0; - - while (strTok.HasMoreTokens()) - { - strTok.GetNextToken(token); - _FastScrollIndex* pSecondaryIndex = pRootIndex->GetChildIndex(i++); - if (pSecondaryIndex != null) - { - pSecondaryIndex->AddChildTextIndexArray(0, token.GetPointer(), subIndexDigit, token.GetLength()); - } - } - - pFastScroll->UpdateIndex(); - return E_SUCCESS; -} - - result _SlidableGroupedListImpl::GetItemIndexFromPosition(const Point& position, int& groupIndex, int& itemIndex) const { @@ -2150,26 +2109,6 @@ _SlidableGroupedListImpl::OnUiFastScrollIndexSelected(_Control& source, _FastScr __pFastScrollListener->OnMainIndexChanged(control, mainIndex); } } - else - { - // __subScrollIndex - int itemIndex = 0; - result r = __subScrollIndex.IndexOf(*pIndexText, 0, itemIndex); - const Control& control = GetPublic(); - _FastScrollIndex* pMainIndex = index.GetParentIndex(); - - if (!IsFailed(r)) - { - Character subIndex(mch); - pIndexText = pMainIndex->GetIndexText(); - if (pIndexText != null) - { - pIndexText->GetCharAt(0, mch); - Character mainIndex(mch); - __pFastScrollListener->OnSubIndexChanged(control, mainIndex, subIndex); - } - } - } } SetLastResult(E_SUCCESS); } diff --git a/src/ui/inc/FUiCtrl_CustomListItemImpl.h b/src/ui/inc/FUiCtrl_CustomListItemImpl.h index 238c0da..b8bf957 100644 --- a/src/ui/inc/FUiCtrl_CustomListItemImpl.h +++ b/src/ui/inc/FUiCtrl_CustomListItemImpl.h @@ -128,7 +128,6 @@ public: void SetNormalItemBackgroundBitmap(const Tizen::Graphics::Bitmap& bitmap); void SetHighlightedItemBackgroundBitmap(const Tizen::Graphics::Bitmap& bitmap); void UpdateBitmaps(void); - result SetValue(int value); _CheckElementModel* GetCheckElement(void); result SetTextSliding(int elementId, bool enable); diff --git a/src/ui/inc/FUiCtrl_GroupedListImpl.h b/src/ui/inc/FUiCtrl_GroupedListImpl.h index c8dddaa..fed6428 100644 --- a/src/ui/inc/FUiCtrl_GroupedListImpl.h +++ b/src/ui/inc/FUiCtrl_GroupedListImpl.h @@ -141,8 +141,6 @@ public: //@See doxygen result SetFastScrollMainIndex(const Tizen::Base::String& text); //@See doxygen - result SetFastScrollSubIndex(const Tizen::Base::String& text, FastScrollIndexDigit indexDigit); - //@See doxygen void ScrollToBottom(void); //@See doxygen void ScrollToTop(void); diff --git a/src/ui/inc/FUiCtrl_ListItemBaseImpl.h b/src/ui/inc/FUiCtrl_ListItemBaseImpl.h index d41ea34..1b8b001 100644 --- a/src/ui/inc/FUiCtrl_ListItemBaseImpl.h +++ b/src/ui/inc/FUiCtrl_ListItemBaseImpl.h @@ -74,10 +74,6 @@ public: result SetDescriptionTextColor(const Tizen::Graphics::Color& color); - result SetProgressValue(int value); - - result SetProgressMargins(float leftMargin, float rightMargin); - static float GetAnnexWidth(ListAnnexStyle style); ListAnnexStyle GetListItemAnnexStyle(void); diff --git a/src/ui/inc/FUiCtrl_ListViewItem.h b/src/ui/inc/FUiCtrl_ListViewItem.h index 8f3e1ed..b1dec6e 100644 --- a/src/ui/inc/FUiCtrl_ListViewItem.h +++ b/src/ui/inc/FUiCtrl_ListViewItem.h @@ -182,10 +182,6 @@ public: bool GetTextColor(int elementId, Tizen::Graphics::Color& textColor, ListViewItemDrawingStatus status = LISTVIEW_ITEM_STATUS_NORMAL) const; - bool SetProgressValue(int value); - - bool SetProgressMargins(float leftMargin, float rightMargin); - bool SetDescriptionText(const Tizen::Base::String& text); void SetDescriptionTextColor(const Tizen::Graphics::Color& color); diff --git a/src/ui/inc/FUiCtrl_SlidableGroupedListImpl.h b/src/ui/inc/FUiCtrl_SlidableGroupedListImpl.h index dee2f14..0064a6f 100644 --- a/src/ui/inc/FUiCtrl_SlidableGroupedListImpl.h +++ b/src/ui/inc/FUiCtrl_SlidableGroupedListImpl.h @@ -141,8 +141,6 @@ public: //@See doxygen result SetFastScrollMainIndex(const Tizen::Base::String& text); //@See doxygen - result SetFastScrollSubIndex(const Tizen::Base::String& text, FastScrollIndexDigit indexDigit); - //@See doxygen result GetItemIndexFromPosition(int x, int y, int& groupIndex, int& itemIndex) const; //@See doxygen result GetItemIndexFromPosition(const Tizen::Graphics::Point& position, int& groupIndex, int& itemIndex) const; -- 2.7.4