From 23632250233f217c6bac856795bfc8f93bf9d7cb Mon Sep 17 00:00:00 2001 From: "keonpyo.kong" Date: Tue, 14 May 2013 10:34:37 +0900 Subject: [PATCH] Add Remarks to Panel,ScrollPanel,Popup Construct Change-Id: I403eeb391940555031e20613ca475146138dea6c Signed-off-by: keonpyo.kong --- inc/FUiCtrlPanel.h | 2 ++ inc/FUiCtrlPopup.h | 2 ++ inc/FUiCtrlScrollPanel.h | 2 ++ 3 files changed, 6 insertions(+) diff --git a/inc/FUiCtrlPanel.h b/inc/FUiCtrlPanel.h index b7a60ca..148bbdc 100644 --- a/inc/FUiCtrlPanel.h +++ b/inc/FUiCtrlPanel.h @@ -176,6 +176,8 @@ public: * @exception E_FILE_NOT_FOUND The specified file cannot be found. * @exception E_INVALID_FORMAT The specified XML format is invalid. * @exception E_OPERATION_FAILED The operation has failed. + * @remarks If SetBounds(), SetSize(), SetPosition() methods are called before the control is added to the parent via AddControl(), then the new value is applied + * to both orientations because the current orientation is not known. After AddControl() is called, then the values are applied only to the current orientation. */ result Construct(const Tizen::Base::String& resourceId); diff --git a/inc/FUiCtrlPopup.h b/inc/FUiCtrlPopup.h index 9bdf0f7..efc2da5 100644 --- a/inc/FUiCtrlPopup.h +++ b/inc/FUiCtrlPopup.h @@ -246,6 +246,8 @@ public: * @exception E_OPERATION_FAILED The operation has failed. * @remarks The default owner will be the current Form (or Frame). It is possible that this control may not be visible * due to this ownership relationship. @n In this case, use the SetOwner() method to change the ownership to the top-most window. + * @remarks If SetBounds(), SetSize(), SetPosition() methods are called before Show(), then the new value is applied to both orientations + * because the current orientation is not known. After Show() is called, then the values are applied only to the current orientation. */ result Construct(const Tizen::Base::String& resourceId); diff --git a/inc/FUiCtrlScrollPanel.h b/inc/FUiCtrlScrollPanel.h index c288037..1b9d017 100644 --- a/inc/FUiCtrlScrollPanel.h +++ b/inc/FUiCtrlScrollPanel.h @@ -184,6 +184,8 @@ public: * @exception E_FILE_NOT_FOUND The specified file cannot be found. * @exception E_INVALID_FORMAT The specified XML format is invalid. * @exception E_OPERATION_FAILED The operation has failed. + * @remarks If SetBounds(), SetSize(), SetPosition() methods are called before the control is added to the parent via AddControl(), then the new value is applied + * to both orientations because the current orientation is not known. After AddControl() is called, then the values are applied only to the current orientation. */ result Construct(const Tizen::Base::String& resourceId); -- 2.7.4