Tizen Native API  5.5
Popup

popup_inheritance_tree.png

This widget is an enhancement of Notify. In addition to content area, there are two optional sections, namely title area and action area.

The popup widget displays its content with a particular orientation in the parent area. This orientation can be one among top, center, bottom, left, top-left, top-right, bottom-left and bottom-right. Content part of Popup can be an Evas Object set by application or it can be Text set by application or set of items containing an icon and/or text. The content/item-list can be removed using elm_object_content_set with second parameter passed as NULL.

The following figures show the textual layouts of popup in which Title Area and Action area are optional ones. Action area can have up to 3 buttons handled using elm_object common APIs mentioned below. If user wants to have more than 3 buttons then these buttons can be put inside the items of a list as content. User needs to handle the clicked signal of these action buttons if required. No event is processed by the widget automatically when clicked on these action buttons.

|---------------------|    |---------------------|    |---------------------|
|     Title Area      |    |     Title Area      |    |     Title Area      |
|Icon|    Text        |    |Icon|    Text        |    |Icon|    Text        |
|---------------------|    |---------------------|    |---------------------|
|       Item 1        |    |                     |    |                     |
|---------------------|    |                     |    |                     |
|       Item 2        |    |                     |    |    Description      |
|---------------------|    |       Content       |    |                     |
|       Item 3        |    |                     |    |                     |
|---------------------|    |                     |    |                     |
|         .           |    |---------------------|    |---------------------|
|         .           |    |     Action Area     |    |     Action Area     |
|         .           |    | Btn1  |Btn2|. |Btn3 |    | Btn1  |Btn2|  |Btn3 |
|---------------------|    |---------------------|    |---------------------|
|       Item N        |     Content Based Layout     Description based Layout
|---------------------|
|     Action Area     |
| Btn1  |Btn2|. |Btn3 |
|---------------------|
   Item Based Layout
 

Timeout can be set on expiry of which popup instance hides and sends a smart signal "timeout" to the user. The visible region of popup is surrounded by a translucent region called Blocked Event area. By clicking on Blocked Event area, the signal "block,clicked" is sent to the application. This block event area can be avoided by using API elm_popup_allow_events_set. When gets hidden, popup does not get destroyed automatically, application should destroy the popup instance after use. To control the maximum height of the internal scroller for item, we use the height of the action area which is passed by theme based on the number of buttons currently set to popup.

Popup sets the focus to itself when evas_object_show is called on popup. To set the focus into popup's contents and buttons automatically, evas_object_show on popup should be called after setting all the contents and buttons of popup.

This widget inherits from the Layout one, so that all the functions acting on it also work for popup objects (since 1.8).

This widget emits the following signals, besides the ones sent from Layout:

Styles available for Popup

Default contents parts of the popup widget that you can use are:

Default text parts of the popup widget that you can use are:

Default contents parts of the popup items that you can use are:

Default text parts of the popup items that you can use are:

Supported elm_object_item common APIs.

supported elm_object common APIs.

Here are some sample code to illustrate Popup usage:

Functions

Evas_Objectelm_popup_add (Evas_Object *parent)
 Adds a new Popup to the parent.

Enumeration Type Documentation

Possible orient values for popup.

These values should be used in conjunction to elm_popup_orient_set() to set the position in which the popup should appear(relative to its parent) and in conjunction with elm_popup_orient_get() to know where the popup is appearing.

Enumerator:
ELM_POPUP_ORIENT_TOP 

Popup should appear in the top of parent, default.

ELM_POPUP_ORIENT_CENTER 

Popup should appear in the center of parent.

ELM_POPUP_ORIENT_BOTTOM 

Popup should appear in the bottom of parent.

ELM_POPUP_ORIENT_LEFT 

Popup should appear in the left of parent.

ELM_POPUP_ORIENT_RIGHT 

Popup should appear in the right of parent.

ELM_POPUP_ORIENT_TOP_LEFT 

Popup should appear in the top left of parent.

ELM_POPUP_ORIENT_TOP_RIGHT 

Popup should appear in the top right of parent.

ELM_POPUP_ORIENT_BOTTOM_LEFT 

Popup should appear in the bottom left of parent.

ELM_POPUP_ORIENT_BOTTOM_RIGHT 

Notify should appear in the bottom right of parent.

ELM_POPUP_ORIENT_LAST 

Sentinel value to indicate last enum field during iteration


Function Documentation

Adds a new Popup to the parent.

Parameters:
parentThe parent object
Returns:
The new object or NULL if it cannot be created
Since :
2.3
Examples:
popup_example_01.c, popup_example_02.c, and popup_example_03.c.