Merge "custom eail widget implementation" into tizen
[platform/core/uifw/eail.git] / eail / eail_multibuttonentry.h
1 /*
2  * Copyright (c) 2013 Samsung Electronics Co., Ltd.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this library; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 /**
21  * @file eail_multibuttonentry.h
22  *
23  * @brief Header for EailMultibuttonentry implementation
24  */
25
26 #ifndef EAIL_MULTIBUTTONENTRY_H
27 #define EAIL_MULTIBUTTONENTRY_H
28
29 #include "eail_action_widget.h"
30 /**
31  * @brief Returns a value corresponding to the type of EailMultibuttonentry class
32  */
33 #define EAIL_TYPE_MULTIBUTTONENTRY             (eail_multibuttonentry_get_type())
34 /**
35  * @brief Macro upcasts an instance (obj) of a subclass to the EailMultibuttonentry
36  * type
37  *
38  * @param obj AtkObject instance
39  */
40 #define EAIL_MULTIBUTTONENTRY(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj), \
41                                                 EAIL_TYPE_MULTIBUTTONENTRY, EailMultibuttonentry))
42 /**
43  * @brief Macro upcasts a subclass (klass) to the EailMultibuttonentry class
44  *
45  * @param klass subclass object
46  */
47 #define EAIL_MULTIBUTTONENTRY_CLASS(klass)     (G_TYPE_MULTIBUTTONENTRY_CLASS_CAST((klass), \
48                                                 EAIL_TYPE_MULTIBUTTONENTRY, EailMultibuttonentryClass))
49 /**
50  * @brief Tests whether object (obj) is an instance of EailMultibuttonentry class
51  *
52  * @param obj AtkObject instance
53  */
54 #define EAIL_IS_MULTIBUTTONENTRY(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
55                                                 EAIL_TYPE_MULTIBUTTONENTRY))
56 /**
57  * @brief Tests whether given klass is a subclass of EailMultibuttonentry
58  *
59  * @param klass klass object
60  */
61 #define EAIL_IS_MULTIBUTTONENTRY_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass), \
62                                                 EAIL_TYPE_MULTIBUTTONENTRY))
63 /**
64  * @brief Gets EailMultibuttonentry class structure from an obj (class instance)
65  *
66  * @param obj object instance to get EailMultibuttonentry class from
67  */
68 #define EAIL_MULTIBUTTONENTRY_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj), \
69                                                 EAIL_TYPE_MULTIBUTTONENTRY, EailMultibuttonentryClass))
70
71 #ifdef __cplusplus
72 extern "C" {
73 #endif
74
75 /** @brief Definition of object structure for Atk EailMultibuttonentry*/
76 typedef struct _EailMultibuttonentry      EailMultibuttonentry;
77 /** @brief Definition of object class for Atk EailMultibuttonentry*/
78 typedef struct _EailMultibuttonentryClass EailMultibuttonentryClass;
79
80 /** @brief Definition of object structure for Atk EailMultibuttonentry*/
81 struct _EailMultibuttonentry
82 {
83    /** @brief Parent widget whose functionality is being extended*/
84    EailActionWidget parent;
85    /** @brief Selection region start */
86    gint selection_start;
87    /** @brief Selection region end */
88    gint selection_end;
89 };
90
91 /** @brief Definition of object class for Atk EailMultibuttonentry*/
92 struct _EailMultibuttonentryClass
93 {
94    /** @brief class that is being extended*/
95    EailActionWidgetClass parent_class;
96 };
97
98 /**
99  * @brief Getter for EailMultibuttonentry GType
100  * @returns GType for EailMultibuttonentry implementation
101  */
102 GType eail_multibuttonentry_get_type(void);
103
104 #ifdef __cplusplus
105 }
106 #endif
107
108 #endif