Fixed to add the AllWindowList
[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 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  * @if OSPDEPREC
20  * @file                FUiCtrlCustomListTypes.h
21  * @brief               This is the header file for the %CustomListStyle enumeration.
22  *
23  * This header file contains the declarations of the %CustomListStyle enumeration.
24  * This enum defines the styles for the CustomList control.
25  * @endif
26  */
27 #ifndef _FUI_CTRL_CUSTOM_LIST_TYPES_H_
28 #define _FUI_CTRL_CUSTOM_LIST_TYPES_H_
29
30 namespace Tizen { namespace Ui { namespace Controls
31 {
32
33 /**
34  * @if OSPDEPREC
35  * @enum CustomListStyle
36  *
37  * Defines the styles of CustomList.
38  *
39  * @brief <i> [Deprecated] </i>
40  * @deprecated This enum is deprecated. Instead of using this enum, use the ListAnnexStyle enumeration for the CustomItem or SimpleItem class.
41  * @since               2.0
42  * @endif
43  */
44 enum CustomListStyle
45 {
46         CUSTOM_LIST_STYLE_NORMAL = 0,                   /**< @if OSPDEPREC No mark, radio, or On/Off check @endif */
47         CUSTOM_LIST_STYLE_RADIO,                        /**< @if OSPDEPREC The radio style for single selection @endif */
48         CUSTOM_LIST_STYLE_RADIO_WITH_DIVIDER,           /**< @if OSPDEPREC The radio style with divider for single selection @endif */
49         CUSTOM_LIST_STYLE_MARK,                         /**< @if OSPDEPREC The mark style for multiple selection @endif */
50         CUSTOM_LIST_STYLE_MARK_WITH_DIVIDER,            /**< @if OSPDEPREC The mark style with divider for multiple selection @endif */
51         CUSTOM_LIST_STYLE_ONOFF,                        /**< @if OSPDEPREC The On/Off style @endif */
52         CUSTOM_LIST_STYLE_ONOFF_WITH_DIVIDER            /**< @if OSPDEPREC The On/Off style with divider @endif */
53 };
54
55 }}}       // Tizen::Ui::Controls
56
57 #endif //_FUI_CTRL_CUSTOM_LIST_TYPES_H_