sync with master
[platform/framework/native/certificate-selector.git] / src / CertificateSelectorFrame.cpp
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        CertificateSelectorFrame.cpp
20  * @brief       This is the implementation for the %CertificateSelectorFrame class.
21  */
22
23 #include <unique_ptr.h>
24 #include "CertificateSelectorForm.h"
25 #include "CertificateSelectorFrame.h"
26
27 using namespace Tizen::Base;
28 using namespace Tizen::Ui;
29 using namespace Tizen::Ui::Controls;
30
31 CertificateSelectorFrame::CertificateSelectorFrame(void)
32         : __reqId(-1)
33 {
34 }
35
36 CertificateSelectorFrame::~CertificateSelectorFrame(void)
37 {
38 }
39
40 void
41 CertificateSelectorFrame::SetRequestId(RequestId reqId)
42 {
43         __reqId = reqId;
44 }
45
46 result
47 CertificateSelectorFrame::OnInitializing(void)
48 {
49         result r = E_SUCCESS;
50         Form* pForm = null;
51         
52         std::unique_ptr<CertificateSelectorForm> pCertificateSelectorForm(new (std::nothrow) CertificateSelectorForm());
53         TryReturnResult(pCertificateSelectorForm, E_OUT_OF_MEMORY, E_OUT_OF_MEMORY
54                 , "[%s] Memory allocation failed.", GetErrorMessage(E_OUT_OF_MEMORY));
55
56         AppAssertf(__reqId > -1, "The request ID is invalid.");
57         r = pCertificateSelectorForm->Initialize(__reqId);
58         TryReturnResult(!IsFailed(r), r, r, "[%s] Propagating.", GetErrorMessage(r));
59
60         pForm = pCertificateSelectorForm.release();
61
62         r = AddControl(*pForm);
63         TryReturnResult(!IsFailed(r), r, r, "[%s] Propagating.", GetErrorMessage(r));
64         
65         r = SetCurrentForm(*pForm);
66         TryReturnResult(!IsFailed(r), r, r, "[%s] Propagating.", GetErrorMessage(r));
67
68         pForm->Invalidate(true);
69
70         return r;
71 }
72
73 result
74 CertificateSelectorFrame::OnTerminating(void)
75 {
76         return E_SUCCESS;
77 }
78
79