Searched refs:focused (Results 1 - 25 of 63) sorted by relevance

123

/external/webkit/Source/WebCore/html/
H A DHTMLDataGridRowElement.idl32 attribute boolean focused; // Whether or not the row is the current object in the tree for keyboard navigation (or as the principal item of a multiple selection).
H A DHTMLDataGridRowElement.cpp58 bool HTMLDataGridRowElement::focused() const function in class:WebCore::HTMLDataGridRowElement
63 void HTMLDataGridRowElement::setFocused(bool focused) argument
65 setAttribute(focusedAttr, focused ? "" : 0);
H A DHTMLDataGridCellElement.idl33 attribute boolean focused; // Whether or not this cell is currently focused.
H A DHTMLDataGridCellElement.cpp58 bool HTMLDataGridCellElement::focused() const function in class:WebCore::HTMLDataGridCellElement
63 void HTMLDataGridCellElement::setFocused(bool focused) argument
65 setAttribute(focusedAttr, focused ? "" : 0);
H A DHTMLDataGridCellElement.h42 bool focused() const;
H A DHTMLDataGridRowElement.h42 bool focused() const;
H A DTextFieldInputType.cpp62 if (!element()->focused())
88 if (element()->disabled() || element()->readOnly() || !element()->focused())
H A DHTMLOptGroupElement.cpp140 if (select && !select->focused())
/external/webkit/Source/WebCore/platform/chromium/
H A DWidgetChromium.cpp69 void Widget::setFocus(bool focused) argument
/external/webkit/Source/WebCore/platform/win/
H A DWidgetWin.cpp83 void Widget::setFocus(bool focused) argument
/external/webkit/Source/WebCore/platform/gtk/
H A DWidgetGtk.cpp55 void Widget::setFocus(bool focused) argument
57 if (focused)
/external/webkit/Source/WebCore/platform/haiku/
H A DWidgetHaiku.cpp83 void Widget::setFocus(bool focused) argument
85 if (focused) {
/external/webkit/Source/WebCore/platform/wx/
H A DWidgetWx.cpp49 void Widget::setFocus(bool focused) argument
51 if (focused) {
/external/webkit/Source/WebCore/platform/qt/
H A DWidgetQt.cpp74 void Widget::setFocus(bool focused) argument
/external/webkit/Source/WebCore/wml/
H A DWMLAnchorElement.cpp58 else if (event->type() == eventNames().keydownEvent && event->isKeyboardEvent() && focused())
H A DWMLOptGroupElement.cpp73 if (!select || select->focused())
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DEmbeddedWidget.cpp136 void EmbeddedWidget::setFocus(bool focused) argument
138 if (m_window && focused)
141 Widget::setFocus(focused);
188 // clear it to prevent the web view window from being focused because that can
/external/webkit/Source/WebCore/dom/
H A DNodeRareData.h124 void setFocused(bool focused) { m_isFocused = focused; } argument
/external/webkit/Source/WebCore/platform/android/
H A DWidgetAndroid.cpp57 void Widget::setFocus(bool focused) argument
/external/webkit/Source/WebCore/page/
H A DFocusController.cpp65 static inline void dispatchEventsOnWindowAndFocusedNode(Document* document, bool focused) argument
67 // If we have a focused node we should dispatch blur on it before we blur the window.
68 // If we have a focused node we should dispatch focus on it after we focus the window.
77 if (!focused && document->focusedNode())
79 document->dispatchWindowEvent(Event::create(focused ? eventNames().focusEvent : eventNames().blurEvent, false, false));
80 if (focused && document->focusedNode())
105 // Now that the frame is updated, fire events and update the selection focused states of both frames.
128 void FocusController::setFocused(bool focused) argument
130 if (isFocused() == focused)
133 m_isFocused = focused;
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebViewImpl.cpp452 // Already focused text field was clicked, let's remember this. If
525 // If the event was a middle click, attempt to copy text into the focused
527 // because the page may change what is focused during in its event handler.
542 Frame* focused = focusedWebCoreFrame(); local
546 HitTestResult hitTestResult = focused->eventHandler()->hitTestResultAtPoint(contentPoint, false, false, ShouldHitTestScrollbars);
550 if (!hitTestResult.scrollbar() && !hitTestResult.isLiveLink() && focused && !view->scrollbarAtPoint(clickPoint)) {
551 Editor* editor = focused->editor();
628 // Suppress the next keypress event unless the focused node is a plug-in node.
1250 // focused, then the focus element shows with a focus ring but
1272 // Clear focus on the currently focused fram
1297 Frame* focused = focusedWebCoreFrame(); local
1352 Frame* focused = focusedWebCoreFrame(); local
1384 const Frame* focused = focusedWebCoreFrame(); local
1413 const Frame* focused = focusedWebCoreFrame(); local
1478 const Frame* focused = focusedWebCoreFrame(); local
[all...]
H A DWebAccessibilityObject.cpp156 RefPtr<AccessibilityObject> focused = m_private->focusedUIElement(); local
157 if (m_private == focused.get() || focused->parentObject() == m_private)
158 return WebAccessibilityObject(focused);
/external/webkit/Source/WebCore/plugins/mac/
H A DPluginViewMac.mm341 void PluginView::setFocus(bool focused)
343 LOG(Plugins, "PluginView::setFocus(%d)", focused);
344 if (!focused) {
345 Widget::setFocus(focused);
356 Widget::setFocus(focused);
369 LOG(Events, "PluginView::setFocus(%d): Focus event not accepted", focused);
/external/webkit/Source/WebCore/plugins/symbian/
H A DPluginViewSymbian.cpp108 void PluginView::setFocus(bool focused) argument
111 if (focused)
114 Widget::setFocus(focused);
/external/webkit/Source/WebCore/rendering/
H A DRenderTextControlMultiLine.cpp56 if (!node()->focused())

Completed in 1951 milliseconds

123