Lines Matching refs:view

21 // Uncomment to view frame regions and debug messages
64 Evas_Object* view;
302 * by a view. Usually one operates on the view and not directly on the
317 * @param o frame object to get view from.
319 * @return view object or @c NULL if errors.
324 return sd->view;
341 if (sd->frame && sd->frame->view()) {
342 sd->frame->view()->setEdjeTheme(WTF::String(path));
1123 WebCore::FrameView* view = sd->frame->view();
1124 EINA_SAFETY_ON_NULL_RETURN_VAL(view, 0);
1128 (view->windowToContents(WebCore::IntPoint(x, y)),
1189 EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame->view(), EINA_FALSE);
1190 sd->frame->view()->scrollBy(WebCore::IntSize(dx, dy));
1211 EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame->view(), EINA_FALSE);
1212 sd->frame->view()->setScrollPosition(WebCore::IntPoint(x, y));
1240 EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame->view(), EINA_FALSE);
1241 WebCore::IntPoint point = sd->frame->view()->maximumScrollPosition();
1268 EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame->view(), EINA_FALSE);
1269 WebCore::IntPoint pos = sd->frame->view()->scrollPosition();
1302 EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame->view(), EINA_FALSE);
1303 WebCore::IntRect rect = sd->frame->view()->visibleContentRect(include_scrollbars);
1330 EINA_SAFETY_ON_NULL_RETURN_VAL(sd->frame->view(), EINA_FALSE);
1331 return sd->frame->view()->paintsEntireContents();
1348 EINA_SAFETY_ON_NULL_RETURN(sd->frame->view());
1349 sd->frame->view()->setPaintsEntireContents(flag);
1394 WebCore::FrameView* view = sd->frame->view();
1395 DBG("o=%p, view=%p, direction=%d, z=%d, pos=%d,%d",
1396 o, view, ev->direction, ev->z, ev->canvas.x, ev->canvas.y);
1397 EINA_SAFETY_ON_NULL_RETURN_VAL(view, EINA_FALSE);
1417 WebCore::FrameView* view = sd->frame->view();
1418 DBG("o=%p, view=%p, button=%d, pos=%d,%d",
1419 o, view, ev->button, ev->canvas.x, ev->canvas.y);
1420 EINA_SAFETY_ON_NULL_RETURN_VAL(view, EINA_FALSE);
1423 evas_object_geometry_get(sd->view, &x, &y, 0, 0);
1443 WebCore::FrameView* view = sd->frame->view();
1444 DBG("o=%p, view=%p, button=%d, pos=%d,%d",
1445 o, view, ev->button, ev->canvas.x, ev->canvas.y);
1446 EINA_SAFETY_ON_NULL_RETURN_VAL(view, EINA_FALSE);
1449 evas_object_geometry_get(sd->view, &x, &y, 0, 0);
1469 WebCore::FrameView* view = sd->frame->view();
1470 DBG("o=%p, view=%p, pos: old=%d,%d, new=%d,%d, buttons=%d",
1471 o, view, ev->cur.canvas.x, ev->cur.canvas.y,
1473 EINA_SAFETY_ON_NULL_RETURN_VAL(view, EINA_FALSE);
1476 evas_object_geometry_get(sd->view, &x, &y, 0, 0);
1490 if (!sd || !sd->frame || !ewk_view_need_touch_events_get(sd->view)) {
1497 evas_object_geometry_get(sd->view, &x, &y, 0, 0);
1583 frame->view()->scroll(direction, granularity);
1641 Eina_Bool ewk_frame_init(Evas_Object* o, Evas_Object* view, WebCore::Frame* frame)
1648 sd->view = view;
1678 if (!ewk_frame_init(frame, sd->view, cf)) {
1800 ewk_view_load_started(sd->view);
1802 main_frame = ewk_view_frame_main_get(sd->view);
1804 ewk_view_frame_main_load_started(sd->view);
1890 ewk_view_load_finished(sd->view, error);
1917 ewk_view_load_error(sd->view, &error);
1937 ewk_view_load_progress_changed(sd->view);
1974 void ewk_frame_view_create_for_view(Evas_Object* o, Evas_Object* view)
1976 DBG("o=%p, view=%p", o, view);
1981 if (sd->frame->view())
1984 evas_object_geometry_get(view, 0, 0, &w, &h);
1990 ewk_view_bg_color_get(view, &r, &g, &b, &a);
1999 if (!sd->frame->view())
2002 const char* theme = ewk_view_theme_get(view);
2003 sd->frame->view()->setEdjeTheme(theme);
2004 sd->frame->view()->setEvasObject(o);
2035 WebCore::FrameView* view = sd->frame->view();
2036 if (view)
2037 view->forceLayout(true);