Applied latest source code
[apps/native/preloaded/Clock.git] / inc / ClkMainFrame.h
1 //
2 // Tizen Native SDK
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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        ClkMainFrame.h
20  * @brief       This header file contains the declarations of the MainFrame class.
21  *
22  */
23
24 #ifndef _CLK_MAINFRAME_H_
25 #define _CLK_MAINFRAME_H_
26
27
28 class MainFrame
29         : public Tizen::Ui::Controls::Frame
30 {
31 public:
32         /**
33          * @brief               The Default Constructor
34          */
35         MainFrame(void);
36
37         /**
38          * @brief               The Default Destructor
39          */
40         virtual ~MainFrame(void);
41
42         /**
43          * This function initializes all the controls of the form
44          *
45          * @return      result type
46          * @param               No parameter
47          */
48         virtual result OnInitializing(void);
49
50         /**
51          * This function terminates all the controls
52          *
53          * @return      result type
54          * @param               No parameter
55          */
56         virtual result OnTerminating(void);
57 };
58
59 #endif  //_CLK_MAINFRAME_H_