Searched defs:window_features (Results 1 - 1 of 1) 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...]

Completed in 290 milliseconds