summaryrefslogtreecommitdiff
path: root/src/lib/elm_panel.h
diff options
context:
space:
mode:
authorGustavo Lima Chaves <glima@profusion.mobi>2012-08-30 16:46:40 +0000
committerGustavo Lima Chaves <glima@profusion.mobi>2012-08-30 16:46:40 +0000
commitb0bc86f0a8b918d2649fbf2100a37c73af3db652 (patch)
tree779dc1abbd2f51faeebcdf43a4a762f04e6228a5 /src/lib/elm_panel.h
parent2fa44125b58f683c03c46b4e0efc332991c19480 (diff)
downloadelementary-b0bc86f0a8b918d2649fbf2100a37c73af3db652.tar.gz
[elm] Panel now a layout (last widget, woo hoo!)
SVN revision: 75898
Diffstat (limited to 'src/lib/elm_panel.h')
-rw-r--r--src/lib/elm_panel.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/lib/elm_panel.h b/src/lib/elm_panel.h
index fabbcc0ae..3f0231217 100644
--- a/src/lib/elm_panel.h
+++ b/src/lib/elm_panel.h
@@ -2,27 +2,27 @@
* @defgroup Panel Panel
* @ingroup Elementary
*
+ * @image html panel_inheritance_tree.png
+ * @image latex panel_inheritance_tree.eps
+ *
* @image html img/widget/panel/preview-00.png
* @image latex img/widget/panel/preview-00.eps
*
- * @brief A panel is a type of animated container that contains subobjects.
- * It can be expanded or contracted by clicking the button on it's edge.
+ * @brief A panel is an animated side-panel that contains a
+ * sub-object. It can be expanded or contracted by clicking the
+ * button on its edge.
*
* Orientations are as follows:
- * @li ELM_PANEL_ORIENT_TOP
- * @li ELM_PANEL_ORIENT_LEFT
- * @li ELM_PANEL_ORIENT_RIGHT
+ * @li @c ELM_PANEL_ORIENT_TOP
+ * @li @c ELM_PANEL_ORIENT_LEFT
+ * @li @c ELM_PANEL_ORIENT_RIGHT
+ * @li @c ELM_PANEL_ORIENT_BOTTOM
*
- * Default content parts of the panel widget that you can use for are:
- * @li "default" - A content of the panel
+ * This widget inherits from the @ref Layout one, so that all the
+ * functions acting on it also work for panel objects.
*
- * Supported elm_object common APIs.
- * @li @ref elm_object_signal_emit
- * @li @ref elm_object_signal_callback_add
- * @li @ref elm_object_signal_callback_del
- * @li @ref elm_object_part_content_set
- * @li @ref elm_object_part_content_get
- * @li @ref elm_object_part_content_unset
+ * Default content parts of the panel widget that you can use are:
+ * @li @c "default" - A content of the panel
*
* @ref tutorial_panel shows one way to use this widget.
* @{
@@ -30,7 +30,7 @@
typedef enum
{
ELM_PANEL_ORIENT_TOP, /**< Panel (dis)appears from the top */
- ELM_PANEL_ORIENT_BOTTOM, /**< Not implemented */
+ ELM_PANEL_ORIENT_BOTTOM, /**< Panel (dis)appears from the bottom */
ELM_PANEL_ORIENT_LEFT, /**< Panel (dis)appears from the left */
ELM_PANEL_ORIENT_RIGHT, /**< Panel (dis)appears from the right */
} Elm_Panel_Orient;