diff options
author | hyun lee <hyunn.lee@samsung.com> | 2013-06-24 16:54:41 +0900 |
---|---|---|
committer | hyun lee <hyunn.lee@samsung.com> | 2013-06-24 16:54:41 +0900 |
commit | d664129a93fae4a2d172713ab42516fc844db9f9 (patch) | |
tree | b1ab6611b1f46435be424493a70ff7fe8d451cbd | |
parent | 4e7f115d4862dbee83a5c7923a8932ff7cf9f33c (diff) | |
download | WebViewer-d664129a93fae4a2d172713ab42516fc844db9f9.tar.gz WebViewer-d664129a93fae4a2d172713ab42516fc844db9f9.tar.bz2 WebViewer-d664129a93fae4a2d172713ab42516fc844db9f9.zip |
Remove back button
Change-Id: I2411c2978e71fcbf5d27cae7b3b03197561af33b
Signed-off-by: hyun lee <hyunn.lee@samsung.com>
-rw-r--r-- | project/manifest.xml | 1 | ||||
-rw-r--r--[-rwxr-xr-x] | project/src/WebViewer.cpp | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/project/manifest.xml b/project/manifest.xml index 1b2894b..642cdcc 100644 --- a/project/manifest.xml +++ b/project/manifest.xml @@ -11,6 +11,7 @@ <Feature Name="http://tizen.org/feature/platform.core.cpu.arch">x86</Feature> <Feature Name="http://tizen.org/feature/platform.core.fpu.arch">vfpv3</Feature> <Feature Name="http://tizen.org/feature/screen.coordinate_system.logical">Normal</Feature> + <Feature Name="http://tizen.org/feature/screen.size.normal">true</Feature> </Requirements> <Apps> <ApiVersion>2.1</ApiVersion> diff --git a/project/src/WebViewer.cpp b/project/src/WebViewer.cpp index 04f4913..04f6173 100755..100644 --- a/project/src/WebViewer.cpp +++ b/project/src/WebViewer.cpp @@ -124,7 +124,7 @@ WebViewer::CreateWebForm(void) //form __pMainForm = new (std::nothrow) Form(); - r = __pMainForm->Construct(FORM_STYLE_NORMAL | FORM_STYLE_INDICATOR | FORM_STYLE_HEADER | FORM_STYLE_FOOTER); + r = __pMainForm->Construct(FORM_STYLE_NORMAL | FORM_STYLE_PORTRAIT_INDICATOR | FORM_STYLE_LANDSCAPE_INDICATOR_AUTO_HIDE | FORM_STYLE_HEADER | FORM_STYLE_FOOTER); TryReturn(r == E_SUCCESS, r, "Form Construct() has failed. \n "); __pMainForm->AddOrientationEventListener(*this); @@ -154,7 +154,6 @@ WebViewer::CreateWebForm(void) //footer pFooter = __pMainForm->GetFooter(); pFooter->SetStyle(FOOTER_STYLE_BUTTON_TEXT); - pFooter->SetBackButton(); pFooter->AddActionEventListener(*this); __pMainForm->SetFormBackEventListener(this); |