fix focus issue for popups
authorSeongjun Yim <se201.yim@samsung.com>
Wed, 17 Jul 2013 07:05:55 +0000 (16:05 +0900)
committerSeongjun Yim <se201.yim@samsung.com>
Wed, 17 Jul 2013 07:05:55 +0000 (16:05 +0900)
Change-Id: I5ef24e5f2a30abdd10ebc7d32fc7ebd9c3e1dd88
Signed-off-by: Seongjun Yim <se201.yim@samsung.com>
src/controls/FWebCtrl_AuthConfirmPopup.cpp
src/controls/FWebCtrl_CertificateConfirmPopup.cpp
src/controls/FWebCtrl_InputPickerPopup.cpp
src/controls/FWebCtrl_PromptPopup.cpp
src/controls/FWebCtrl_SelectBox.cpp
src/controls/FWebCtrl_UserConfirmPopup.cpp

index 271c78b..5101ad1 100755 (executable)
@@ -214,7 +214,7 @@ _AuthConfirmPopup::OnActionPerformed(const Control& source, int actionId)
 bool
 _AuthConfirmPopup::OnKeyPressed(Control& source, const KeyEventInfo& keyEventInfo)
 {
-       return true;
+       return false;
 }
 
 bool
@@ -231,7 +231,7 @@ _AuthConfirmPopup::OnKeyReleased(Control& source, const KeyEventInfo& keyEventIn
                }
        }
 
-       return true;
+       return false;
 }
 
 bool
index e49cb4b..2ed73a3 100755 (executable)
@@ -258,7 +258,7 @@ _CertificateConfirmPopup::OnActionPerformed(const Control& source, int actionId)
 bool
 _CertificateConfirmPopup::OnKeyPressed(Control& source, const KeyEventInfo& keyEventInfo)
 {
-       return true;
+       return false;
 }
 
 bool
@@ -282,7 +282,7 @@ _CertificateConfirmPopup::OnKeyReleased(Control& source, const KeyEventInfo& key
                }
        }
 
-       return true;
+       return false;
 }
 
 bool
index c652f10..e4bcc5a 100755 (executable)
@@ -511,7 +511,7 @@ _InputPickerPopup::HidePopup(void)
 bool
 _InputPickerPopup::OnKeyPressed(Control& source, const KeyEventInfo& keyEventInfo)
 {
-       return true;
+       return false;
 }
 
 bool
@@ -522,7 +522,7 @@ _InputPickerPopup::OnKeyReleased(Control& source, const KeyEventInfo& keyEventIn
                HidePopup();
        }
 
-       return true;
+       return false;
 }
 
 bool
index d59c671..faf8ddc 100755 (executable)
@@ -205,7 +205,7 @@ _PromptPopup::OnActionPerformed(const Control& source, int actionId)
 bool
 _PromptPopup::OnKeyPressed(Control& source, const KeyEventInfo& keyEventInfo)
 {
-       return true;
+       return false;
 }
 
 bool
@@ -218,7 +218,7 @@ _PromptPopup::OnKeyReleased(Control& source, const KeyEventInfo& keyEventInfo)
                __pImpl->SendUserEvent(ID_PROMPT_POPUP_CLOSE, null);
        }
 
-       return true;
+       return false;
 }
 
 bool
index 0a6e241..8a23a30 100755 (executable)
@@ -473,7 +473,7 @@ _SelectBox::OnActionPerformed(const Control& source, int actionId)
 bool
 _SelectBox::OnKeyPressed(Control& source, const KeyEventInfo& keyEventInfo)
 {
-       return true;
+       return false;
 }
 
 bool
@@ -496,7 +496,7 @@ _SelectBox::OnKeyReleased(Control& source, const KeyEventInfo& keyEventInfo)
                }
        }
 
-       return true;
+       return false;
 }
 
 bool
index 0f79b18..9eb5049 100755 (executable)
@@ -500,7 +500,7 @@ _UserConfirmPopup::RegisterHandler(bool checkHandler, Eina_Bool allow)
 bool
 _UserConfirmPopup::OnKeyPressed(Control& source, const KeyEventInfo& keyEventInfo)
 {
-       return true;
+       return false;
 }
 
 bool
@@ -550,7 +550,7 @@ _UserConfirmPopup::OnKeyReleased(Control& source, const KeyEventInfo& keyEventIn
                        SysAssert(false);
                }
        }
-       return true;
+       return false;
 }
 
 bool