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

12

/external/webkit/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 DHTMLDataGridCellElement.idl33 attribute boolean focused; // Whether or not this cell is currently focused.
H A DHTMLDataGridCellElement.cpp54 bool HTMLDataGridCellElement::focused() const function in class:WebCore::HTMLDataGridCellElement
59 void HTMLDataGridCellElement::setFocused(bool focused) argument
61 setAttribute(focusedAttr, focused ? "" : 0);
H A DHTMLDataGridRowElement.cpp61 bool HTMLDataGridRowElement::focused() const function in class:WebCore::HTMLDataGridRowElement
66 void HTMLDataGridRowElement::setFocused(bool focused) argument
68 setAttribute(focusedAttr, focused ? "" : 0);
H A DHTMLDataGridCellElement.h45 bool focused() const;
H A DHTMLDataGridRowElement.h45 bool focused() const;
H A DHTMLOptGroupElement.cpp182 if (select && !select->focused())
/external/webkit/WebCore/page/
H A DFocusController.cpp59 static inline void dispatchEventsOnWindowAndFocusedNode(Document* document, bool focused) argument
61 // If we have a focused node we should dispatch blur on it before we blur the window.
62 // If we have a focused node we should dispatch focus on it after we focus the window.
64 if (!focused && document->focusedNode())
66 document->dispatchWindowEvent(Event::create(focused ? eventNames().focusEvent : eventNames().blurEvent, false, false));
67 if (focused && document->focusedNode())
91 // Now that the frame is updated, fire events and update the selection focused states of both frames.
112 void FocusController::setFocused(bool focused) argument
114 if (isFocused() == focused)
117 m_isFocused = focused;
[all...]
/external/webkit/WebCore/wml/
H A DWMLAnchorElement.cpp53 else if (event->type() == eventNames().keydownEvent && event->isKeyboardEvent() && focused())
H A DWMLAElement.cpp117 if (isLink() && (event->type() == eventNames().clickEvent || (event->type() == eventNames().keydownEvent && focused()))) {
H A DWMLOptGroupElement.cpp108 if (!select || select->focused())
/external/webkit/WebCore/dom/
H A DNodeRareData.h105 void setFocused(bool focused) { m_isFocused = focused; } argument
H A DInputElement.cpp109 if (!inputElement->isTextField() || !element->focused())
/external/webkit/WebKit/chromium/src/
H A DWebAccessibilityObject.cpp134 RefPtr<AccessibilityObject> focused = m_private->focusedUIElement(); local
135 if (m_private == focused.get() || focused->parentObject() == m_private)
136 return WebAccessibilityObject(focused);
H A DWebViewImpl.cpp342 // Already focused text field was clicked, let's remember this. If
406 // If the event was a middle click, attempt to copy text into the focused
408 // because the page may change what is focused during in its event handler.
423 Frame* focused = focusedWebCoreFrame(); local
427 HitTestResult hitTestResult = focused->eventHandler()->hitTestResultAtPoint(contentPoint, false, false, ShouldHitTestScrollbars);
431 if (!hitTestResult.scrollbar() && !hitTestResult.isLiveLink() && focused && !view->scrollbarAtPoint(clickPoint)) {
432 Editor* editor = focused->editor();
965 // focused, then the focus element shows with a focus ring but
986 // Clear focus on the currently focused frame if any.
1011 Frame* focused local
1096 const Frame* focused = focusedWebCoreFrame(); local
1127 const Frame* focused = focusedWebCoreFrame(); local
[all...]
/external/webkit/WebCore/rendering/
H A DRenderTextControlMultiLine.cpp55 if (!node()->focused())
/external/skia/src/views/
H A DSkWidgets.cpp216 static const char* computeAnimatorState(int enabled, int focused, SkButtonWidget::State state)
222 SkASSERT(focused);
225 if (focused)
226 return "enabled-focused";
/external/webkit/WebCore/svg/
H A DSVGAElement.cpp127 if (isLink() && (evt->type() == eventNames().clickEvent || (evt->type() == eventNames().keydownEvent && focused()))) {
/external/webkit/WebKit/android/nav/
H A DFindCanvas.cpp547 // matches than this, only draw the focused match.
600 bool focused)
604 if (focused) {
620 if (!focused) {
626 if (!focused)
599 drawMatch(const SkRegion& region, SkCanvas* canvas, bool focused) argument
H A DFindCanvas.h228 void drawMatch(const SkRegion& region, SkCanvas* canvas, bool focused);
/external/webkit/WebKitTools/DumpRenderTree/qt/
H A DDumpRenderTreeQt.h92 void switchFocus(bool focused);
/external/webkit/WebCore/platform/chromium/
H A DThemeChromiumMac.mm63 // focusView] (to get the currently focused view) and then calls an NSRect-
65 // no focused view (as there won't be if the destination is a context), the rect
259 bool focused = states & FocusState;
260 if (focused != oldFocused)
261 [cell setShowsFirstResponder:focused];
/external/webkit/WebCore/platform/mac/
H A DThemeMac.mm113 bool focused = states & FocusState;
114 if (focused != oldFocused)
115 [cell setShowsFirstResponder:focused];
/external/webkit/WebCore/platform/gtk/
H A Dgtkdrawing.h60 guint8 focused; member in struct:__anon5698
H A Dgtk2drawing.c786 if (state->focused && !state->disabled)
789 if (!interior_focus && state->focused) {
815 if (state->focused) {
984 if (state->focused) {
1004 if (state->focused) {
1201 if (state->focused) {
1370 if (state->focused)
1547 * smaller when focused if the focus is not interior, then the focus. */
1551 if (state->focused && !state->disabled) {
1552 /* This will get us the lit borders that focused textboxe
[all...]

Completed in 295 milliseconds

12