a04e351d3c5780d7d1daa26d52b7723969d7f798
[platform/framework/native/uifw.git] / src / ui / inc / FUiCtrl_DateTimeUtils.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 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                FUiCtrl_DateTimeUtils.h
20  * @brief               This is the header file for the _DateTimeUtils class.
21  */
22
23 #ifndef _FUI_CTRL_INTERNAL_DATETIME_UTILS_H_
24 #define _FUI_CTRL_INTERNAL_DATETIME_UTILS_H_
25
26 #include "FUi_Control.h"
27
28 namespace Tizen { namespace Ui { namespace Controls
29 {
30
31 enum _AmPmType
32 {
33         AM_TYPE,
34         PM_TYPE
35 };
36
37 class _DateTimeUtils
38         : public Tizen::Base::Object
39 {
40 // Lifecycle
41 public:
42         _DateTimeUtils(void);
43
44         virtual ~_DateTimeUtils(void);
45
46 // Operations
47 public:
48         const Tizen::Base::String GetMonthString(int month) const;
49         const Tizen::Base::String GetFullMonthString(int month) const;
50         int CalculateMaxDay(int displayYear, int month) const ;
51         bool IsLeapYear(int year) const;
52         void GetAmPm(Tizen::Base::String& timeFormat, _AmPmType amPmType) const;
53
54 private:
55         _DateTimeUtils(const _DateTimeUtils&);
56
57         _DateTimeUtils& operator =(const _DateTimeUtils&);
58
59 };
60
61 }}} // Tizen::Ui::Controls
62
63 #endif  // _FUI_CTRL_INTERNAL_DATETIME_UTILS_H_