EWebKit  1.0
Typedefs | Functions
ewk_navigation_data.h File Reference

Describes the Ewk navigation data API. More...

#include "ewk_url_request.h"
#include <Eina.h>

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_Requestewk_navigation_data_original_request_get (const Ewk_Navigation_Data *data)
 
EAPI const char * ewk_navigation_data_url_get (const Ewk_Navigation_Data *data)
 

Detailed Description

Describes the Ewk navigation data API.

Typedef Documentation

Declare Ewk_Navigation_Data as Ewk_Object.

See also
Ewk_Object

Function Documentation

EAPI Ewk_Url_Request* ewk_navigation_data_original_request_get ( const Ewk_Navigation_Data data)

Returns the original request for this navigation data.

Parameters
datanavigation data object to query
Returns
The URL request pointer or 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.

Parameters
datanavigation data object to query
Returns
the title or 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.

Parameters
datanavigation data object to query
Returns
the URL of the data or 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()