add patch
[framework/osp/web.git] / src / controls / FWebCtrl_AuthenticationChallengeImpl.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_AuthenticationChallengeImpl.h
20  * @brief               This is the header file for the %_AuthenticationChallengeImpl class.
21  *
22  * This header file contains the declarations of the %_AuthenticationChallengeImpl class.
23  */
24 #ifndef _FWEB_CTRL_INTERNAL_AUTHENTICATION_CHALLENGE_IMPL_H_
25 #define _FWEB_CTRL_INTERNAL_AUTHENTICATION_CHALLENGE_IMPL_H_
26
27 #include <EWebKit2.h>
28 #include <FBaseDataType.h>
29 #include <FBaseObject.h>
30 #include <FBaseString.h>
31
32 namespace Tizen { namespace Web { namespace Controls
33 {
34 class AuthenticationChallenge;
35
36
37 class _AuthenticationChallengeImpl
38         : public Tizen::Base::Object
39 {
40 public:
41         _AuthenticationChallengeImpl(void);
42
43         virtual ~_AuthenticationChallengeImpl(void);
44
45         void Process(const UserId& userId, const Tizen::Base::String& password);
46
47         void Cancel(void);
48
49         void SetAuthenticationChallengeHandler(Ewk_Auth_Challenge* pAuthHandler);
50
51         void SetWebEvasObject(Evas_Object* pObj);
52
53         static _AuthenticationChallengeImpl* GetInstance(AuthenticationChallenge* pAuthChallenge);
54
55         static const _AuthenticationChallengeImpl* GetInstance(const AuthenticationChallenge* pAuthChallenge);
56
57 private:
58         Ewk_Auth_Challenge* __pAuthChallengeHandler;
59
60         Evas_Object* __pWebFrame;
61
62 }; // _AuthenticationChallengeImpl
63
64 }}} // Tizen::Web::Controls
65 #endif // _FWEB_CTRL_INTERNAL_AUTHENTICATION_CHALLENGE_IMPL_H_