Apply tizen coding rules
[platform/core/security/ode.git] / tools / apps / ode / src / interface / page.h
1 /*
2  *
3  * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef __ODE_PAGE_H__
20 #define __ODE_PAGE_H__
21
22 #include <memory>
23 #include <vector>
24
25 #include "../widgets/signal.h"
26 #include "../widgets/layout.h"
27 #include "../widgets/button.h"
28 #include "../widgets/naviframe.h"
29 #include "../language.h"
30
31 class Page : public Layout {
32 public:
33         enum Type {
34                 SetOneButton = (1 << 0),
35                 SetTwoButton = (1 << 1),
36         };
37
38         Page(Widget *parent, const std::string &name, int type);
39         virtual ~Page();
40
41 public:
42         std::unique_ptr<Button> nextButton;
43         std::unique_ptr<Button> prevButton;
44 protected:
45         void setEDJPath(const std::string &name);
46         virtual void setPartContent(void);
47 protected:
48         std::unique_ptr<Layout> content;
49         std::unique_ptr<Layout> bottom;
50         std::string edjFile;
51         Widget *frame;
52 private:
53         void initialize(const std::string &name, int type);
54 };
55
56 #endif