Apply changed capitalization concept and disble Editfield effect for Image label.
authordukan.kim <dukan.kim@samsung.com>
Mon, 24 Jun 2013 13:04:17 +0000 (22:04 +0900)
committerdukan.kim <dukan.kim@samsung.com>
Mon, 24 Jun 2013 13:04:17 +0000 (22:04 +0900)
Change-Id: Idd9474eff147de52ceeb1435852196228830d1fa
Signed-off-by: dukan.kim <dukan.kim@samsung.com>
project/src/FriendListForm.cpp
project/src/MainForm.cpp
project/src/ProfileForm.cpp

index 6c2ec44..0e9e037 100755 (executable)
@@ -74,7 +74,7 @@ FriendListForm::OnInitializing(void)
        if (pHeader != null)
        {
                pHeader->SetStyle(HEADER_STYLE_TITLE);
-               pHeader->SetTitleText(L"FIND FRIENDS");
+               pHeader->SetTitleText(L"Find friends");
        }
 
        pFooter = GetFooter();
index 286791c..a492cb7 100755 (executable)
@@ -85,7 +85,7 @@ MainForm::OnInitializing(void)
        if (pHeader != null)
        {
                pHeader->SetStyle(HEADER_STYLE_TITLE);
-               pHeader->SetTitleText(L"Friend Finder");
+               pHeader->SetTitleText(L"Friend finder");
        }
 
        Footer* pFooter = GetFooter();
@@ -267,6 +267,8 @@ MainForm::ShowFriendProfile(const Tizen::Base::String& friendName, const Tizen::
                                                         INPUT_STYLE_FULLSCREEN, true, 1, GROUP_STYLE_SINGLE);
        pImageBoundry->SetKeypadEnabled(false);
        pImageBoundry->SetViewModeEnabled(true);
+       pImageBoundry->SetFocusable(false);
+       pImageBoundry->SetEffectSoundEnabled(false);
        __pProfilePanel->AddControl(*pImageBoundry);
 
        currentHeight += 10;
index 4a56244..d466af1 100755 (executable)
@@ -54,7 +54,7 @@ ProfileForm::Initialize(void)
        if (pHeader != null)
        {
                pHeader->SetStyle(HEADER_STYLE_TITLE);
-               pHeader->SetTitleText(L"MY PROFILE");
+               pHeader->SetTitleText(L"My profile");
        }
 
        SetFormBackEventListener(this);
@@ -104,6 +104,9 @@ ProfileForm::OnInitializing(void)
                                                           true, 1, GROUP_STYLE_SINGLE);
        __pImageBoundry->SetTitleText(L"My Photo");
        __pImageBoundry->SetKeypadEnabled(false);
+       __pImageBoundry->SetViewModeEnabled(true);
+       __pImageBoundry->SetFocusable(false);
+       __pImageBoundry->SetEffectSoundEnabled(false);
        __pProfilePanel->AddControl(*__pImageBoundry);
 
        if (ShowProfileImage(profileFilePath))