+enum Elm.Bubble.Pos
+{
+ [[
+ @addtogroup Bubble
+ Defines the corner values for a bubble.
+
+ The corner will be used to determine where the arrow of the
+ bubble points to.
+ ]]
+ invalid = -1, [[Invalid corner.]]
+ top_left, [[The arrow of the bubble points to the top left corner.]]
+ top_right, [[The arrow of the bubble points to the top right corner.]]
+ bottom_left, [[The arrow of the bubble points to the bottom left corner.]]
+ bottom_right [[The arrow of the bubble points to the bottom right corner.]]
+}
+
class Elm.Bubble (Elm.Layout, Evas.Clickable_Interface)
{
eo_prefix: elm_obj_bubble;
@ingroup Bubble */
}
values {
- pos: Elm_Bubble_Pos; /*@ The given corner for the bubble. */
+ pos: Elm.Bubble.Pos; /*@ The given corner for the bubble. */
}
}
}
+++ /dev/null
-/**
- * @addtogroup Bubble
- *
- * @{
- */
-
-/**
- * Defines the corner values for a bubble.
- *
- * The corner will be used to determine where the arrow of the
- * bubble points to.
- */
-typedef enum
-{
- ELM_BUBBLE_POS_INVALID = -1, /**< invalid corner */
- ELM_BUBBLE_POS_TOP_LEFT, /**< the arrow of the bubble points to the top left corner. */
- ELM_BUBBLE_POS_TOP_RIGHT, /**< the arrow of the bubble points to the top right corner. */
- ELM_BUBBLE_POS_BOTTOM_LEFT, /**< the arrow of the bubble points to the bottom left corner. */
- ELM_BUBBLE_POS_BOTTOM_RIGHT, /**< the arrow of the bubble points to the bottom right corner. */
-} Elm_Bubble_Pos;
-
-/**
- * @}
- */