2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 // Licensed under the Flora License, Version 1.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
8 // http://floralicense.org/license/
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
18 /*@file: IntAddressbar
19 *@brief: This class defines common behaviour of Addressbar control.
23 #ifndef _INT_ADDRESSBAR_H_
24 #define _INT_ADDRESSBAR_H_
27 #include <FGraphics.h>
29 #include "IntIAddressbarEventListener.h"
33 ADDRESSBAR_MODE_INVALID = -1,
34 ADDRESSBAR_MODE_READER = 0,
35 ADDRESSBAR_MODE_LOADING,
36 ADDRESSBAR_MODE_LOADING_COMPLETE,
41 : public Tizen::Ui::Controls::Panel
42 , public Tizen::Ui::IActionEventListener
43 , public Tizen::Ui::IKeypadEventListener
44 , public Tizen::Ui::IFocusEventListener
48 * @brief This is the default constructor for this class.
53 * @brief This is the default destructor for this class.
55 virtual ~Addressbar(void);
57 // IActionEventListener
58 void OnActionPerformed(const Tizen::Ui::Control& source, int actionId);
60 //IKeypadActionEventListener
61 void OnKeypadActionPerformed(Tizen::Ui::Control& source, Tizen::Ui::KeypadAction keypadAction);
62 void OnKeypadClosed(Tizen::Ui::Control& source);
63 void OnKeypadOpened(Tizen::Ui::Control& source);
64 void OnKeypadWillOpen(Tizen::Ui::Control& source);
66 void OnFocusGained(const Tizen::Ui::Control& source);
67 void OnFocusLost(const Tizen::Ui::Control& source){}
70 * @brief Initializes this instance of Addressbar with the specified parameters.
72 result Initialize(const Tizen::Graphics::Rectangle& rect);
75 * @brief Gets the current addressbar Mode.
77 AddressBarMode GetAddressbarMode(void);
80 * brief To remove the Http from the Url editfield
82 Tizen::Graphics::Bitmap* GetLockedImageN(void);
85 * @brief Gets the current progress value Addressbar control in percentage
87 int GetProgress(void);
90 * @brief Gets the currently displayed Url for the Addressbar control.
92 Tizen::Base::String GetUrl(void);
95 * @brief Event when orientationChanged
97 void OrientationChanged(void);
100 * brief To remove the Http from the Url editfield
102 Tizen::Base::String RemoveHttpTextFromDisplayURL(void);
105 * @brief Save the text of address bar
107 void SaveAddressbarEditText();
110 * @brief Sets the specified Url for the Addressbar control.
113 void SetUrl(const Tizen::Base::String& url);
116 * @brief Sets the event listener for the Addressbar control.
119 void SetAddressbarEventListener(IAddressbarEventListener* pListener);
122 * @brief Sets the current addressbar Mode.
124 void SetAddressbarMode(AddressBarMode addMode);
127 * brief Sets the backward Button enable or disable as per the input parameter isEnabled.
129 void SetBackButtonEnabled(bool isEnabled);
132 * @brief Sets the favicon bitmap.
134 void SetFaviconBitmap(const Tizen::Graphics::Bitmap& favicon);
137 * @brief Sets the Forward Button enable or disable as per the input parameter isEnabled.
139 void SetForwardButtonEnabled(bool isEnabled);
142 * @brief Updates the favicon bitmap/image depending on browsing mode.
144 void UpdateFaviconBitmap(bool isPrivateOn);
147 * @brief Updates the progressbar Value.
149 void UpdateProgress(const int percentage);
153 * @brief Updates the progressbar Value.
155 void UpdateProgressBitmap(void);
158 static const int IDA_REFRESH_BTN_CLICKED;
159 static const int IDA_READER_BTN_CLICKED;
160 static const int IDA_STOP_BTN_CLICKED;
161 static const int IDA_GO_BACK;
162 static const int IDA_GO_FORWARD;
163 static const int IDA_CANCEL;
164 static const int IDA_CLEAR_URL;
167 AddressBarMode __currentAddMode;
168 Tizen::Base::String __displayUrl;
169 Tizen::Base::String __editTextUrl;
171 bool __isLoadingData;
172 bool __isLoadingCompleted;
173 int __progressPercentage;
175 Tizen::Ui::Controls::Label* __pAddressbarBg;
176 Tizen::Ui::Controls::Panel* __pBgPanel;
177 Tizen::Ui::Controls::Button* __pCancelBtn;
178 Tizen::Ui::Controls::Button* __pClearBtn;
179 Tizen::Graphics::Bitmap* __pFavIcon;
180 Tizen::Ui::Controls::Label* __pFaviconLabel;
181 Tizen::Ui::Controls::Button* __pGoBackBtn;
182 Tizen::Ui::Controls::Button* __pGoForwardBtn;
183 Tizen::Ui::Controls::Label* __pLabelPrivateOn;
184 IAddressbarEventListener* __pListener;
185 Tizen::Ui::Controls::Label* __pPrivateIconLabel;
186 Tizen::Ui::Controls::Label* __pProgressbarLabel;
187 Tizen::Ui::Controls::Button* __pReaderBtn;
188 Tizen::Ui::Controls::Button* __pRefreshBtn;
189 Tizen::Ui::Controls::Button* __pStopBtn;
190 Tizen::Ui::Controls::Label* __pSearchLabel;
191 Tizen::Ui::Controls::EditField* __pUrlField;
194 #endif /* _INT_ADDRESSBAR_H_ */