Rollback code for releasing RC12.
authorKeuckdo Bang <keuckdo.bang@samsung.net>
Wed, 20 Mar 2013 07:04:00 +0000 (16:04 +0900)
committerKeuckdo Bang <keuckdo.bang@samsung.net>
Wed, 20 Mar 2013 07:05:52 +0000 (16:05 +0900)
Change-Id: Ib4e78f82ea8da20b6ac2060a2350959c848442a5

src/ui/controls/FUiCtrl_Form.cpp
src/ui/inc/FUiCtrl_Form.h

index c787553..ac9d0e6 100644 (file)
@@ -2687,78 +2687,5 @@ _Form::GetFocusList(void) const
        return __pFocusControlList.get();
 }
 
-void
-_Form::UpdateClientBounds(const FloatDimension& size)
-{
-       FloatRectangle clientBounds(0.0f, 0.0f, size.width, size.height);
-
-       if (__deflated)
-       {
-               clientBounds.height -= __deflatedHeight;
-       }
-
-       FloatRectangle indicatorBounds = GetIndicatorBoundsF();
-
-       _Control* pParent = GetParent();
-       _Frame* pFrame = dynamic_cast<_Frame*>(pParent);
-       if (pFrame)
-       {
-               FrameShowMode mode = pFrame->GetShowMode();
-               if (mode == FRAME_SHOW_MODE_FULL_SCREEN)
-               {
-                       if (FORM_STYLE_INDICATOR & __formStyle)
-                       {
-                               if (IsIndicatorVisible() && !IsIndicatorTranslucent())
-                               {
-                                       clientBounds.y += indicatorBounds.height;
-                                       clientBounds.height -= indicatorBounds.height;
-                               }
-                       }
-               }
-       }
-       else
-       {
-               if (FORM_STYLE_INDICATOR & __formStyle)
-               {
-                       if (IsIndicatorVisible() && !IsIndicatorTranslucent())
-                       {
-                               clientBounds.y += indicatorBounds.height;
-                               clientBounds.height -= indicatorBounds.height;
-                       }
-               }
-       }
-
-       if (__pHeader)
-       {
-               if (__pHeader->GetVisibleState() && !IsHeaderTranslucent())
-               {
-                       clientBounds.y += GetToolbarHeightF(true);
-                       clientBounds.height -= GetToolbarHeightF(true);
-               }
-       }
-
-       if (__pTab)
-       {
-               if (__pTab->GetVisibleState()) //&& !IsHeaderTranslucent())
-               {
-                       clientBounds.y += GetTabHeightF();
-                       clientBounds.height -= GetTabHeightF();
-               }
-       }
-
-       if (__pFooter)
-       {
-               if (FORM_STYLE_FOOTER & __formStyle || FORM_STYLE_SOFTKEY_0 & __formStyle || FORM_STYLE_SOFTKEY_1 & __formStyle
-                               || FORM_STYLE_OPTIONKEY & __formStyle)
-               {
-                       if (__pFooter->GetVisibleState() && !IsFooterTranslucent())
-                       {
-                                       clientBounds.height -= GetToolbarHeightF(false);
-                       }
-               }
-       }
-
-       SetClientBounds(clientBounds);
-}
 
 }}} // Tizen::Ui::Controls
index 2395d65..a8efdb4 100644 (file)
@@ -193,8 +193,6 @@ public:
        result SetNotificationTrayOpenEnabled(bool enable);
        bool IsNotificationTrayOpenEnabled(void) const;
 
-       void UpdateClientBounds(const Tizen::Graphics::FloatDimension& size);
-
 //callback
        virtual void OnDraw(void);
        virtual void OnActionPerformed(const Tizen::Ui::_Control& source, int actionId);