ewebkit2
1.11.0
Web engine based on WebKit2 for EFL
|
Describes the Ewk navigation data API. More...
Go to the source code of this file.
Typedefs | |
typedef struct EwkObject | Ewk_Navigation_Data |
Functions | |
EAPI const char * | ewk_navigation_data_title_get (const Ewk_Navigation_Data *data) |
EAPI Ewk_Url_Request * | ewk_navigation_data_original_request_get (const Ewk_Navigation_Data *data) |
EAPI const char * | ewk_navigation_data_url_get (const Ewk_Navigation_Data *data) |
Describes the Ewk navigation data API.
typedef struct EwkObject Ewk_Navigation_Data |
Declare Ewk_Navigation_Data as Ewk_Object.
EAPI Ewk_Url_Request* ewk_navigation_data_original_request_get | ( | const Ewk_Navigation_Data * | data) |
Returns the original request for this navigation data.
data | navigation data object to query |
NULL
in case of error. EAPI const char* ewk_navigation_data_title_get | ( | const Ewk_Navigation_Data * | data) |
Returns title for this navigation data.
The title of the navigated page.
data | navigation data object to query |
NULL
in case of error. This pointer is guaranteed to be eina_stringshare, so whenever possible save yourself some cpu cycles and use eina_stringshare_ref() instead of eina_stringshare_add() or strdup(). EAPI const char* ewk_navigation_data_url_get | ( | const Ewk_Navigation_Data * | data) |
Returns URL for this navigation data.
The URL of the navigated page.
data | navigation data object to query |
NULL
in case of error. This pointer is guaranteed to be eina_stringshare, so whenever possible save yourself some cpu cycles and use eina_stringshare_ref() instead of eina_stringshare_add() or strdup()