Searched refs:window_features (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_window_features.cpp43 * @param window_features the object to decrease reference count
45 EAPI void ewk_window_features_unref(Ewk_Window_Features* window_features) argument
47 EINA_SAFETY_ON_NULL_RETURN(window_features);
48 EINA_SAFETY_ON_FALSE_RETURN(window_features->__ref > 0);
50 if (--window_features->__ref)
53 delete window_features->core;
54 window_features->core = 0;
55 free(window_features);
61 * @param window_features the object to increase reference count
63 EAPI void ewk_window_features_ref(Ewk_Window_Features* window_features) argument
85 ewk_window_features_bool_property_get(Ewk_Window_Features* window_features, Eina_Bool* toolbar_visible, Eina_Bool* statusbar_visible, Eina_Bool* scrollbars_visible, Eina_Bool* menubar_visible, Eina_Bool* locationbar_visible, Eina_Bool* fullscreen) argument
126 ewk_window_features_int_property_get(Ewk_Window_Features* window_features, int* x, int* y, int* w, int* h) argument
157 Ewk_Window_Features* window_features = static_cast<Ewk_Window_Features*>(malloc(sizeof(*window_features))); local
[all...]
H A Dewk_window_features.h40 EAPI void ewk_window_features_unref(Ewk_Window_Features* window_features);
41 EAPI void ewk_window_features_ref(Ewk_Window_Features* window_features);
43 EAPI void ewk_window_features_bool_property_get(Ewk_Window_Features* window_features, Eina_Bool* toolbar_visible, Eina_Bool* statusbar_visible, Eina_Bool* scrollbars_visible, Eina_Bool* menubar_visible, Eina_Bool* locationbar_visible, Eina_Bool* fullscreen);
44 EAPI void ewk_window_features_int_property_get(Ewk_Window_Features* window_features, int* x, int* y, int* w, int* h);
H A Dewk_view.h104 Evas_Object *(*window_create)(Ewk_View_Smart_Data *sd, Eina_Bool javascript, const Ewk_Window_Features *window_features); /**< creates a new window, requested by webkit */
H A Dewk_view.cpp3664 * calling ewk_window_features_ref(window_features). Otherwise this struct will
3670 * @param window_features Features of the new window being created. If it's @c
3685 Ewk_Window_Features* window_features = ewk_window_features_new_from_core(coreFeatures);
3686 Evas_Object* view = sd->api->window_create(sd, javascript, window_features);
3687 ewk_window_features_unref(window_features);

Completed in 157 milliseconds