Fix for issue
[framework/osp/web.git] / src / controls / FWebCtrl_InputPickerPopup.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.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
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
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.
16 //
17
18 /**
19  * @file        FWebCtrl_InputPickerPopup.h
20  * @brief       The file contains the definition of _InputPickerPopup class.
21  */
22
23 #ifndef _FWEB_CTRL_INTERNAL_INPUT_POPUP_H_
24 #define _FWEB_CTRL_INTERNAL_INPUT_POPUP_H_
25
26 #include <unique_ptr.h>
27 #include <ewk_view.h>
28 #include <FBase.h>
29 #include <FBaseString.h>
30 #include <FGrpColor.h>
31 #include <FUi.h>
32 #include <FUiIActionEventListener.h>
33 #include <FUiIPropagatedKeyEventListener.h>
34 #include <FUi_ControlManager.h>
35
36 namespace Tizen { namespace Ui
37 {
38 class IActionEventListener;
39 }} // Tizen::Ui
40
41 namespace Tizen { namespace Ui { namespace Controls
42 {
43 class Popup;
44 class EditDate;
45 class EditTime;
46 }}} // Tizen::Ui::Controls
47
48 namespace Tizen { namespace Web { namespace Controls
49 {
50
51 enum _InputPickerButtonId
52 {
53         ID_BUTTON_INPUT_DATE_SELECTION,
54         ID_BUTTON_INPUT_COLOR_SELECTION
55 };
56
57 enum _InputPickerMode
58 {
59         INPUT_MODE_DATE,
60         INPUT_MODE_COLOR
61 };
62
63
64 class _InputPickerPopup
65         : public Tizen::Base::Object
66         , virtual public Tizen::Ui::IActionEventListener
67         , public Tizen::Ui::IPropagatedKeyEventListener
68 {
69
70 public:
71         /**
72          * Constructor
73          */
74         _InputPickerPopup(void);
75
76         /**
77          * Destructor
78          */
79         virtual ~_InputPickerPopup(void);
80
81         result Construct(const Tizen::Base::String& strDate, Ewk_Input_Type inputType, Tizen::Web::Controls::_WebImpl* pImpl);
82
83         result Construct(const Tizen::Graphics::Color& color, Tizen::Web::Controls::_WebImpl* pImpl);
84
85         void OnActionPerformed(const Tizen::Ui::Control& source, int actionId);
86
87         result ChangeLayout(Tizen::Ui::_ControlOrientation orientation);
88
89         Tizen::Base::String GetDate(void) const;
90         Tizen::Graphics::Color GetColor(void) const;
91
92         result ShowPopup(void);
93         result HidePopup(void);
94
95         virtual bool  OnKeyPressed (Tizen::Ui::Control &source, const Tizen::Ui::KeyEventInfo &keyEventInfo);
96         virtual bool  OnKeyReleased (Tizen::Ui::Control &source, const Tizen::Ui::KeyEventInfo &keyEventInfo);
97         virtual bool  OnPreviewKeyPressed (Tizen::Ui::Control &source, const Tizen::Ui::KeyEventInfo &keyEventInfo);
98         virtual bool  OnPreviewKeyReleased (Tizen::Ui::Control &source, const Tizen::Ui::KeyEventInfo &keyEventInfo);
99         virtual bool  TranslateKeyEventInfo (Tizen::Ui::Control &source, Tizen::Ui::KeyEventInfo &keyEventInfo);
100
101 private:
102         _InputPickerPopup(const _InputPickerPopup& rhs);
103
104         _InputPickerPopup& operator =(const _InputPickerPopup& rhs);
105
106         result CreatePopup(void);
107
108         result AddButton(_InputPickerButtonId buttonId);
109
110         void CalculateColorPickerPopupSize(Tizen::Ui::_ControlOrientation orientation);
111
112         result UpdateDate(void);
113         void UpdateColor(void);
114
115         result Parse(const Tizen::Base::String& strDateTime, Tizen::Base::DateTime& dateTime);
116
117         void GetDateTimeForWeek(int year, int totalDays, Tizen::Base::DateTime& dateTime);
118
119 private:
120
121         std::unique_ptr<Tizen::Ui::Controls::Popup> __pPopup;
122         Tizen::Ui::Controls::EditDate* __pEditDate;
123         Tizen::Ui::Controls::EditTime* __pEditTime;
124         Tizen::Ui::Controls::Button* __pSelectionBtn;
125         Tizen::Ui::Controls::ColorPicker* __pColorPicker;
126
127         int __modal;
128         bool __isModal;
129
130         int __popupHeight;
131         int __popupWidth;
132         int __btnHeight;
133
134         Ewk_Input_Type __inputType;
135         Tizen::Base::String __dateStr;
136         Tizen::Graphics::Color __Color;
137
138         _InputPickerMode __inputPickerMode;
139 }; // _InputPickerPopup
140
141 }}} // Tizen::Web::Controls
142 #endif // _FWEB_CTRL_INTERNAL_INPUT_POPUP_H_