summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elc_combobox.h
diff options
context:
space:
mode:
authorCedric BAIL <cedric@osg.samsung.com>2016-03-23 12:56:14 -0700
committerCedric BAIL <cedric@osg.samsung.com>2016-03-23 13:24:41 -0700
commitc2a1c49ab2042f559b28e840e54feb8494888e0e (patch)
treec6eb110b7c479499854eede9d0c3ab0a80c9a11a /src/lib/elementary/elc_combobox.h
parent9340855597e7e465435c69b6278650346688da14 (diff)
downloadefl-c2a1c49ab2042f559b28e840e54feb8494888e0e.tar.gz
elementary: move all legacy files to their expected new location.
Diffstat (limited to 'src/lib/elementary/elc_combobox.h')
-rw-r--r--src/lib/elementary/elc_combobox.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/lib/elementary/elc_combobox.h b/src/lib/elementary/elc_combobox.h
new file mode 100644
index 0000000000..006280b716
--- /dev/null
+++ b/src/lib/elementary/elc_combobox.h
@@ -0,0 +1,64 @@
+/**
+ * @defgroup Elm_Combobox Combobox
+ * @ingroup Elementary
+ *
+ * @image html combobox_inheritance_tree.png
+ * @image latex combobox_inheritance_tree.eps
+ *
+ * @image html img/widget/combobox/preview-00.png
+ * @image latex img/widget/combobox/preview-00.eps
+ *
+ * A combobox is a button displaying an entry that pops up a list of items
+ * (automatically choosing the direction to display). It is a convenience
+ * widget to avoid the need to do all the piecing together yourself. It is
+ * intended for manipulating a large number of items in the combobox menu.
+ *
+ * This widget inherits from the @ref Button, @ref Genlist and @ref Entry
+ * one, so that all the functions acting on it also work for combobox objects.
+ *
+ * This widget emits the following signals, besides the ones sent from
+ * @ref Button:
+ * - @c "clicked" - the user clicked the combobox button and popped up
+ * the sel
+ * - @c "selected" - an item in the combobox list is selected. event_info
+ * is the selected item
+ * - @c "dismissed" - the hover is dismissed
+ * - @c "expanded" - This is called on clicking combobox and elm_combobox_hover_begin().
+ * - @c "language,changed" - the program's language changed.
+ * - @c "item,pressed" - When the combobox item is pressed.
+ * - @c "filter,done" - When the combobox completes the filter process.
+ *
+ * Default content parts of the combobox widget that you can use are the
+ * the same that you use with the @ref Button
+ *
+ * Default text parts of the combobox widget that you can use are the
+ * the same that you use with the @ref Entry
+ *
+ * Supported elm_object common APIs.
+ * @li @ref elm_object_disabled_set
+ * @li @ref elm_object_disabled_get
+ * @li @ref elm_object_part_text_set
+ * @li @ref elm_object_part_text_get
+ * @li @ref elm_object_part_content_set
+ * @li @ref elm_object_part_content_unset
+ *
+ * Supported elm_object_item common APIs.
+ * @li elm_object_item_del
+ * @li elm_object_item_part_text_get
+ * @li elm_object_item_signal_emit - this works only when the item is created.
+ * @li elm_object_item_style_set - this works only when the item is created.
+ * @li elm_object_item_style_get - this works only when the item is created.
+ *
+ * See @ref tutorial_combobox for an example.
+ * @{
+ */
+
+#ifdef EFL_EO_API_SUPPORT
+#include "elm_combobox.eo.h"
+#endif
+#ifndef EFL_NOLEGACY_API_SUPPORT
+#include "elc_combobox_legacy.h"
+#endif
+/**
+ * @}
+ */