HomeSort by relevance Sort by last modified time
    Searched refs:window_features (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebKit/efl/ewk/
ewk_window_features.cpp 43 * @param window_features the object to decrease reference count
45 EAPI void ewk_window_features_unref(Ewk_Window_Features* window_features)
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)
157 Ewk_Window_Features* window_features = static_cast<Ewk_Window_Features*>(malloc(sizeof(*window_features))); local
    [all...]
ewk_window_features.h 40 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);
ewk_view.h 104 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 */
ewk_view.cpp     [all...]

Completed in 196 milliseconds