3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 // Licensed under the Flora License, Version 1.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
9 // http://floralicense.org/license/
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
18 //!Internet IntBrightness class
19 /*@file: IntBrightness.cpp
20 *@brief: This class defines IntBrightness used to change the brightness
25 #include <FAppUiApp.h>
27 #include "IntBrightnessForm.h"
28 #include "IntCommonLib.h"
29 #include "IntMultipleWindowPresentationModel.h"
30 #include "IntSceneRegister.h"
32 using namespace Tizen::App;
33 using namespace Tizen::Base;
34 using namespace Tizen::Base::Collection;
35 using namespace Tizen::Graphics;
36 using namespace Tizen::System;
37 using namespace Tizen::Ui;
38 using namespace Tizen::Ui::Controls;
39 using namespace Tizen::Ui::Scenes;
41 const int IDA_AUTOBTN_CLICKED = 101;
42 const int IDA_MANUALBTN_CLICKED = 102;
44 BrightnessForm::BrightnessForm(void)
46 __manualBrightness = true;
47 __pBrightnessSlider = null;
51 BrightnessForm::~BrightnessForm(void)
57 BrightnessForm::Initialize()
59 Form::Construct(L"IDL_BRIGHTNESS");
65 BrightnessForm::OnInitializing(void)
68 WindowInfo* pWindowInfo = null;
70 SceneManager* pSceneManager = SceneManager::GetInstance();
71 if (pSceneManager != null)
73 r = pSceneManager->AddSceneEventListener(IDSCN_BRIGHTNESS, *this);
76 AppLogException("OnInitialized failed with %s", GetErrorMessage(r));
80 AddOrientationEventListener(*this);
81 SetFormBackEventListener(this);
83 __pLabel = static_cast< Label* >(GetControl(L"IDC_LABEL", true));
85 pWindowInfo = MultipleWindowPresentationModel::GetInstance()->GetActiveWindowInfo();
86 if (pWindowInfo != null && pWindowInfo->pWebCanvasBitmap != null && __pLabel != null)
88 int labelWidth = __pLabel->GetWidth();
89 int labelHeigth = __pLabel->GetHeight();
91 if(GetOrientationStatus() == ORIENTATION_STATUS_LANDSCAPE || GetOrientationStatus() == ORIENTATION_STATUS_LANDSCAPE_REVERSE)
93 labelWidth = pWindowInfo->pWebCanvasBitmap->GetWidth() * labelHeigth / pWindowInfo->pWebCanvasBitmap->GetHeight();
94 __pLabel->SetBounds(__pLabel->GetX() + (__pLabel->GetWidth() - labelWidth)/2, __pLabel->GetY(), labelWidth, labelHeigth);
98 labelHeigth = pWindowInfo->pWebCanvasBitmap->GetHeight() * labelWidth / pWindowInfo->pWebCanvasBitmap->GetWidth();
99 __pLabel->SetBounds(__pLabel->GetX(), __pLabel->GetY() + (__pLabel->GetHeight() - labelHeigth)/2, labelWidth, labelHeigth);
101 __pLabel->SetBackgroundBitmap(*pWindowInfo->pWebCanvasBitmap);
104 AppRegistry* pAppRegistry = App::GetInstance()->GetAppRegistry();
105 String sliderKey("SliderValue");
106 String tabKey("TabButton");
107 int sliderValue = 10;
110 r = pAppRegistry->Get(sliderKey, sliderValue);
111 if (r == E_KEY_NOT_FOUND)
113 pAppRegistry->Add(sliderKey, sliderValue);
114 pAppRegistry->Set(sliderKey,sliderValue);
117 r = pAppRegistry->Get(tabKey, tabValue);
118 if (r == E_KEY_NOT_FOUND)
120 pAppRegistry->Add(tabKey, tabValue);
121 pAppRegistry->Set(tabKey,tabValue);
123 r = pAppRegistry->Save();
126 // Failed to save data to registry
127 AppLogDebug("OnInitialized failed to save data to registry with %s", GetErrorMessage(r));
132 __pBrightnessSlider = static_cast< Slider* >(GetControl(L"IDC_FONT_SLIDER", true));
133 if (__pBrightnessSlider == null)
137 __pBrightnessSlider->SetRange(1,10);
138 __pBrightnessSlider->SetValue(sliderValue);
139 __pBrightnessSlider->AddSliderEventListener(*this);
141 GetFooter()->AddActionEventListener(*this);
146 BrightnessForm::OnSceneActivatedN(const SceneId& previousSceneId, const SceneId& currentSceneId, IList* pArgs)
148 result r = E_FAILURE;
149 AppRegistry* pAppRegistry = App::GetInstance()->GetAppRegistry();
150 String sliderKey("SliderValue");
151 String tabKey("TabButton");
155 r = pAppRegistry->Get(sliderKey, sliderValue);
156 r = pAppRegistry->Get(tabKey, tabValue);
158 AppLog("BrightnessForm tab value is %d",tabValue);
159 AppLog("BrightnessForm slider value is %d",sliderValue);
161 if(__pBrightnessSlider == null)
168 __pBrightnessSlider->SetEnabled(false);
169 __pBrightnessSlider->Invalidate(true);
173 __pBrightnessSlider->SetEnabled(true);
174 AppLog("BatteryLvl %d",PowerManager::GetScreenBrightness());
175 __pBrightnessSlider->SetValue(PowerManager::GetScreenBrightness());
176 __pBrightnessSlider->Invalidate(true);
179 GetFooter()->SetItemSelected(tabValue);
181 __pBrightnessSlider->SetRange(1,10);
182 // __pBrightnessSlider->SetValue(sliderValue);
185 AppLog("slider value is %d",PowerManager::GetScreenBrightness());
192 BrightnessForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
194 AppLog("slider value is %d",PowerManager::GetScreenBrightness());
195 __pBrightnessSlider->SetValue(PowerManager::GetScreenBrightness());
200 BrightnessForm::OnSliderBarMoved(Slider& source, int value)
202 AppLog("coming to OnSliderBarMoved");
203 if (__manualBrightness == true)
205 PowerManager::SetScreenBrightness(value);
210 BrightnessForm::OnFormBackRequested(Form& source)
213 result r = E_FAILURE;
214 SceneManager* pSceneManager = SceneManager::GetInstance();
215 if (pSceneManager != null)
217 // save the slider value
218 // save the tab button
219 AppRegistry* pAppRegistry = App::GetInstance()->GetAppRegistry();
220 String sliderKey("SliderValue");
221 String tabKey("TabButton");
222 int sliderValue = __pBrightnessSlider->GetValue();
223 r = pAppRegistry->Set(sliderKey,sliderValue);
224 FooterItemStatus footerStatus;
225 GetFooter()->GetItemStatus(0,footerStatus);
226 if (footerStatus == FOOTER_ITEM_STATUS_SELECTED)
228 r = pAppRegistry->Set(tabKey,0);
232 r = pAppRegistry->Set(tabKey,1);
234 pAppRegistry->Save();
235 r = pSceneManager->GoBackward(BackwardSceneTransition());
238 AppLogException("OnFormBackRequested failed with %s", GetErrorMessage(r));
245 BrightnessForm::OnActionPerformed(const Control& source, int actionId)
249 case IDA_AUTOBTN_CLICKED:
250 __manualBrightness = false;
251 // __pBrightnessSlider->SetValue(6);
252 // __pBrightnessSlider->SetShowState(false);
253 PowerManager::SetScreenBrightness(6);
254 __pBrightnessSlider->SetEnabled(false);
255 __pBrightnessSlider->Invalidate(true);
257 case IDA_MANUALBTN_CLICKED:
258 PowerManager::SetScreenBrightness(__pBrightnessSlider->GetValue());
259 //__pBrightnessSlider->SetValue(__pBrightnessSlider->GetValue());
260 __pBrightnessSlider->SetEnabled(true);
261 __pBrightnessSlider->SetShowState(true);
262 __pBrightnessSlider->Invalidate(true);
264 __manualBrightness = true;
272 BrightnessForm::OnOrientationChanged(const Control& source, OrientationStatus orientationStatus)
274 WindowInfo* pWindowInfo = MultipleWindowPresentationModel::GetInstance()->GetActiveWindowInfo();
276 if (pWindowInfo != null)
278 if(pWindowInfo->pWebCanvasBitmap != null)
280 int labelWidth = __pLabel->GetWidth();
281 int labelHeigth = __pLabel->GetHeight();
283 if(orientationStatus == ORIENTATION_STATUS_LANDSCAPE || orientationStatus == ORIENTATION_STATUS_LANDSCAPE_REVERSE)
285 labelWidth = pWindowInfo->pWebCanvasBitmap->GetWidth() * labelHeigth / pWindowInfo->pWebCanvasBitmap->GetHeight();
286 __pLabel->SetBounds(__pLabel->GetX() + (__pLabel->GetWidth() - labelWidth)/2, __pLabel->GetY(), labelWidth, labelHeigth);
290 labelHeigth = pWindowInfo->pWebCanvasBitmap->GetHeight() * labelWidth / pWindowInfo->pWebCanvasBitmap->GetWidth();
291 __pLabel->SetBounds(__pLabel->GetX(), __pLabel->GetY() + (__pLabel->GetHeight() - labelHeigth)/2, labelWidth, labelHeigth);