3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 // Licensed under the Flora License, Version 1.1 (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 EditHomePageForm class
19 /*@file: EditHomePageForm.h
20 *@brief: Allow user to set any page as Home page.
24 #include <FAppUiApp.h>
27 #include "IntBookmarkData.h"
28 #include "IntCommonLib.h"
29 #include "IntEditHomePageForm.h"
30 #include "IntMultipleWindowPresentationModel.h"
31 #include "IntSceneRegister.h"
32 #include "IntSettingPresentationModel.h"
35 using namespace Tizen::App;
36 using namespace Tizen::Base;
37 using namespace Tizen::Base::Collection;
38 using namespace Tizen::Base::Utility;
39 using namespace Tizen::Graphics;
40 using namespace Tizen::Ui;
41 using namespace Tizen::Ui::Controls;
42 using namespace Tizen::Ui::Scenes;
44 const int EditHomePageForm::IDA_BUTTON_DONE = 101;
45 const int EditHomePageForm::IDA_BUTTON_CANCEL = 102;
47 EditHomePageForm::EditHomePageForm(void)
48 :__pUrlEditField(null)
50 , __modalMsgBoxResult(0)
55 EditHomePageForm::~EditHomePageForm(void)
61 EditHomePageForm::Initialize(void)
63 Construct(L"IDL_EDIT_HOME_PAGE");
64 SetOrientation(ORIENTATION_AUTOMATIC);
69 EditHomePageForm::OnInitializing(void)
72 SetFormBackEventListener(this);
73 SceneManager* pSceneManager = SceneManager::GetInstance();
74 AppAssert(pSceneManager);
75 pSceneManager->AddSceneEventListener(IDSCN_EDIT_HOMEPAGE_VIEW, *this);
77 GetHeader()->AddActionEventListener(*this);
79 __pUrlEditField = static_cast<EditField*>(GetControl(L"IDC_EDITFIELD"));
80 if (__pUrlEditField != null)
82 __pUrlEditField->AddTextEventListener(*this);
83 __pUrlEditField->SetOverlayKeypadCommandButtonVisible(false);
89 EditHomePageForm::OnTerminating(void)
96 EditHomePageForm::OnSceneActivatedN(const SceneId& previousSceneId, const SceneId& currentSceneId, IList* pArgs)
98 if (__pUrlEditField != null)
100 String favURL = SettingPresentationModel::GetInstance()->GetFavoriteUrl();
101 AppLogDebug("EditHomePageForm::OnSceneActivatedN favURL %ls",favURL.GetPointer());
102 __pUrlEditField->SetText(SettingPresentationModel::GetInstance()->GetFavoriteUrl());
103 __pUrlEditField->SetFocus();
104 __pUrlEditField->SetCursorPosition(__pUrlEditField->GetTextLength());
105 __pUrlEditField->ShowKeypad();
106 __pUrlEditField->Invalidate(true);
115 EditHomePageForm::OnSceneDeactivated(const SceneId& currentSceneId, const SceneId& nextSceneId)
121 EditHomePageForm::OnFormBackRequested(Form& source)
127 EditHomePageForm::OnActionPerformed(const Control& source, int actionId)
129 ArrayList* pArgList = null;
130 pArgList = new(std::nothrow) ArrayList();
133 case IDA_BUTTON_DONE:
135 pArgList->Add(*new(std::nothrow) String(CommonUtil::GetString(L"IDS_BR_SK_DONE")));
136 String urlText = __pUrlEditField->GetText();
138 AppLogDebug("set url text is %ls",urlText.GetPointer());
142 String firstPattern(L"((https?|ftp|gopher|telnet|file|notes|ms-help):((//)|(\\\\))+[\w\d:#@%/;$()~_?\+-=\\\.&]*)");//[\w\d:#@%/;$()~_?\+-=\\\.&]*
143 String secondPattern(L"^[A-Za-z0-9\.\+-:#@%/;$~?]+\\.[A-Za-z0-9 !\+-=:#@%/;$~()_?\\\.&]{2,}$"); // URL of type abc.com (i.e without protocol in front of it)
144 RegularExpression firstRegex;
145 RegularExpression secondRegex;
147 firstRegex.Construct(firstPattern, REGEX_CASELESS);
148 secondRegex.Construct(secondPattern, REGEX_CASELESS);
151 // uri.SetUri(urlText);
152 // urlText = uri.GetEncodedString();
155 ret = firstRegex.Match(urlText, false); // This returns true value
156 flag = secondRegex.Match(urlText, false); // Checks whether URL typed is of type abc.com (i.e without protocol in front of it)
162 SettingPresentationModel::GetInstance()->SetHomepage(urlText);
163 SettingPresentationModel::GetInstance()->SetFavoriteValue(urlText);
164 result r = SceneManager::GetInstance()->GoBackward(BackwardSceneTransition(), pArgList);
165 TryCatch(!IsFailed(r), "EditHomePageForm::OnActionPerformed Failed to GoBackward %s",GetErrorMessage(r));
172 validUrl = L"http://";
173 validUrl.Append(urlText);
175 SettingPresentationModel::GetInstance()->SetHomepage(validUrl);
176 SettingPresentationModel::GetInstance()->SetFavoriteValue(validUrl);
177 result r = SceneManager::GetInstance()->GoBackward(BackwardSceneTransition(), pArgList);
178 TryCatch(!IsFailed(r), "EditHomePageForm::OnActionPerformed Failed to GoBackward %s",GetErrorMessage(r));
182 // show pop up , not a valid URL
183 String msg = CommonUtil::GetString(L"IDS_COM_POP_INVALID_URL");
190 case IDA_BUTTON_CANCEL:
192 pArgList->Add(*new(std::nothrow) String(CommonUtil::GetString(L"IDS_BR_SK_CANCEL")));
193 result r = SceneManager::GetInstance()->GoBackward(BackwardSceneTransition(), pArgList);
194 TryCatch(!IsFailed(r), "EditHomePageForm::OnActionPerformed Failed to GoBackward %s",GetErrorMessage(r));
202 pArgList->RemoveAll(true);
208 EditHomePageForm::OnTextValueChanged(const Control& source)
211 Header* pHeader = GetHeader();
218 if (__pUrlEditField == NULL)
223 title = __pUrlEditField->GetText();
226 // To disable done button when folder title edit-field is empty
227 if (__pUrlEditField && title.IsEmpty() == true)
229 pHeader->SetButtonEnabled(BUTTON_POSITION_LEFT, false);
233 pHeader->SetButtonEnabled(BUTTON_POSITION_LEFT, true);
235 pHeader->Invalidate(true);
240 EditHomePageForm::OnTextValueChangeCanceled(const Control& source)
246 EditHomePageForm::OnOrientationChanged(const Control& source, OrientationStatus orientationStatus)
252 EditHomePageForm::CreateMessage(String& message)
255 if (__pMsgBox != null)
259 __modalMsgBoxResult = 0;
262 __pMsgBox = new(std::nothrow) MessageBox;
263 if (__pMsgBox != null)
265 __pMsgBox->Construct(L"", message, MSGBOX_STYLE_OK, 3000);
268 if (__pMsgBox != null)
270 __pMsgBox->ShowAndWait(__modalMsgBoxResult);
271 if (__modalMsgBoxResult == MSGBOX_RESULT_OK)
273 if (__pMsgBox != null)
279 __modalMsgBoxResult = 0;