Fix to adjust the position of the partial Frame
[platform/framework/native/uifw.git] / inc / FUiCtrlCustomListTypes.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.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://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                FUiCtrlCustomListTypes.h
20  * @brief               This is the header file for the %CustomListStyle enumeration.
21  *
22  * This header file contains the declarations of the %CustomListStyle enumeration.
23  * This enum defines the styles for the CustomList control.
24  */
25 #ifndef _FUI_CTRL_CUSTOM_LIST_TYPES_H_
26 #define _FUI_CTRL_CUSTOM_LIST_TYPES_H_
27
28 namespace Tizen { namespace Ui { namespace Controls
29 {
30
31 /**
32  * @if OSPDEPREC        
33  * @enum CustomListStyle
34  *
35  * Defines the styles of CustomList.
36  *
37  * @brief <i> [Deprecated] </i>
38  * @deprecated This enum is deprecated. Instead of using this enum, use the ListAnnexStyle enumeration for the CustomItem or SimpleItem class.
39  * @since               2.0
40  * @endif
41  */
42 enum CustomListStyle
43 {
44         CUSTOM_LIST_STYLE_NORMAL = 0,                   /**< @if OSPDEPREC No mark, radio, or On/Off check @endif */
45         CUSTOM_LIST_STYLE_RADIO,                        /**< @if OSPDEPREC The radio style for single selection @endif */
46         CUSTOM_LIST_STYLE_RADIO_WITH_DIVIDER,           /**< @if OSPDEPREC The radio style with divider for single selection @endif */
47         CUSTOM_LIST_STYLE_MARK,                         /**< @if OSPDEPREC The mark style for multiple selection @endif */
48         CUSTOM_LIST_STYLE_MARK_WITH_DIVIDER,            /**< @if OSPDEPREC The mark style with divider for multiple selection @endif */
49         CUSTOM_LIST_STYLE_ONOFF,                        /**< @if OSPDEPREC The On/Off style @endif */
50         CUSTOM_LIST_STYLE_ONOFF_WITH_DIVIDER            /**< @if OSPDEPREC The On/Off style with divider @endif */
51 };
52
53 }}}       // Tizen::Ui::Controls
54
55 #endif //_FUI_CTRL_CUSTOM_LIST_TYPES_H_