Searched defs:focusNextPrevChild (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqgraphicswkview.cpp86 connect(d->page, SIGNAL(focusNextPrevChild(bool)), this, SLOT(focusNextPrevChildCallback(bool)));
172 bool focusNextPrevChild(bool next);
192 friendlyWindow->focusNextPrevChild(next);
199 bool QGraphicsWKView::focusNextPrevChild(bool next) function in class:QGraphicsWKView
/external/webkit/Source/WebKit/qt/Api/
H A Dqgraphicswebview.cpp1055 bool QGraphicsWebView::focusNextPrevChild(bool next) function in class:QGraphicsWebView
1058 return d->page->focusNextPrevChild(next);
1060 return QGraphicsWidget::focusNextPrevChild(next);
H A Dqwebview.cpp1141 bool QWebView::focusNextPrevChild(bool next) function in class:QWebView
1143 if (d->page && d->page->focusNextPrevChild(next))
1145 return QWidget::focusNextPrevChild(next);
H A Dqwebpage.cpp3141 Similar to QWidget::focusNextPrevChild() it focuses the next focusable web element
3146 bool QWebPage::focusNextPrevChild(bool next) function in class:QWebPage
3156 //qDebug() << "focusNextPrevChild(" << next << ") =" << ev.isAccepted() << "focusedNode?" << hasFocusedNode;

Completed in 97 milliseconds