Accessibility:FontSize changes
authorabhismita ghosh <g.abhismita@samsung.com>
Thu, 20 Jun 2013 15:42:06 +0000 (21:12 +0530)
committerabhismita ghosh <g.abhismita@samsung.com>
Thu, 20 Jun 2013 15:45:09 +0000 (21:15 +0530)
Change-Id: Iddc8efac350610a8c4cb18ea3f6c3ecaeb275358

src/VpVideoPlayerForm.cpp

index da5481c..6c465b7 100755 (executable)
@@ -68,6 +68,7 @@ static const int MULTI_CONTENT_COUNT = 2;
 
 static const int MESSAGEBOX_DISPLAY_TIME_3_SEC = 3000;
 
+static const int SLIDER_TEXT_FONT_SIZE = 28;
 static const wchar_t* INIT_TIME = L"00:00:00";
 
 static const RequestId REQUEST_UPDATE_WIRED_ACCESSORY_AND_SPEAKER_MENU = 111;
@@ -481,10 +482,12 @@ VideoPlayerForm::InitializeController(void)
        __pCurrenTimeLabel = static_cast<Label*>(__pControllerPanel->GetControl(IDC_LABEL_CURRENTTIME));
        TryCatch(__pCurrenTimeLabel != null, r = E_SYSTEM, "__pCurrenTimeLabel is null");
        __pCurrenTimeLabel->AddTouchEventListener(*this);
+       __pCurrenTimeLabel->SetTextConfig(SLIDER_TEXT_FONT_SIZE, LABEL_TEXT_STYLE_NORMAL);
 
        __pTotalTimeLabel = static_cast<Label*>(__pControllerPanel->GetControl(IDC_LABEL_FULLTIME));
        TryCatch(__pTotalTimeLabel != null, r = E_SYSTEM, "__pTotalTimeLabel is null");
        __pTotalTimeLabel->AddTouchEventListener(*this);
+       __pTotalTimeLabel->SetTextConfig(SLIDER_TEXT_FONT_SIZE, LABEL_TEXT_STYLE_NORMAL);
 
        __pSlider = static_cast<Slider*>(__pControllerPanel->GetControl(IDC_SLIDER));
        TryCatch(__pSlider != null, r = E_SYSTEM, "__pSlider is null");