/external/webkit/Source/WebKit/wx/ |
WebDOMSelection.cpp | 47 m_selection = other.m_selection; 52 if (m_selection) 53 return new WebDOMElement(m_selection->rootEditableElement()); 60 if (m_selection) { 61 WTF::RefPtr<WebCore::Range> range = m_selection->toNormalizedRange();
|
WebDOMSelection.h | 55 : m_selection(selection) 59 ~wxWebKitSelection() { m_selection = 0; } 65 WebCore::SelectionController* m_selection; member in class:wxWebKitSelection
|
/external/webkit/Source/WebCore/editing/chromium/ |
SelectionControllerChromium.cpp | 42 if (AXObjectCache::accessibilityEnabled() && m_selection.start().isNotNull() && m_selection.end().isNotNull()) { 44 document->axObjectCache()->postNotification(m_selection.start().deprecatedNode()->renderer(), AXObjectCache::AXSelectedTextChanged, false);
|
/external/webkit/Source/WebCore/editing/ |
SelectionController.h | 67 Element* rootEditableElement() const { return m_selection.rootEditableElement(); } 68 bool isContentEditable() const { return m_selection.isContentEditable(); } 69 bool isContentRichlyEditable() const { return m_selection.isContentRichlyEditable(); } 70 Node* shadowTreeRootNode() const { return m_selection.shadowTreeRootNode(); } 78 const VisibleSelection& selection() const { return m_selection; } 90 VisibleSelection::SelectionType selectionType() const { return m_selection.selectionType(); } 92 EAffinity affinity() const { return m_selection.affinity(); } 106 Position base() const { return m_selection.base(); } 107 Position extent() const { return m_selection.extent(); } 108 Position start() const { return m_selection.start(); 226 VisibleSelection m_selection; member in class:WebCore::SelectionController [all...] |
SelectionController.cpp | 145 m_selection = s; 152 m_selection = s; 172 if (m_selection == s) { 178 VisibleSelection oldSelection = m_selection; 180 m_selection = s; 235 respondToNodeModification(node, removingNodeRemovesPosition(node, m_selection.base()), removingNodeRemovesPosition(node, m_selection.extent()), 236 removingNodeRemovesPosition(node, m_selection.start()), removingNodeRemovesPosition(node, m_selection.end())); 253 if (m_selection.isBaseFirst() [all...] |
/external/webkit/Source/WebCore/editing/gtk/ |
SelectionControllerGtk.cpp | 84 if (!m_selection.start().isNotNull() || !m_selection.end().isNotNull()) 87 RenderObject* focusedNode = m_selection.end().deprecatedNode()->renderer(); 101 emitTextSelectionChange(object.get(), m_selection, offset);
|
/external/webkit/Source/WebCore/editing/mac/ |
SelectionControllerMac.mm | 53 if (AXObjectCache::accessibilityEnabled() && m_selection.start().isNotNull() && m_selection.end().isNotNull()) 54 document->axObjectCache()->postNotification(m_selection.start().deprecatedNode()->renderer(), AXObjectCache::AXSelectedTextChanged, false); 57 if (!UAZoomEnabled() || !m_selection.isCaret())
|
/external/webkit/Source/WebCore/page/ |
DOMWindow.h | 345 DOMSelection* optionalSelection() const { return m_selection.get(); } 458 mutable RefPtr<DOMSelection> m_selection; member in class:WebCore::DOMWindow
|
DOMWindow.cpp | 433 if (m_selection) 434 m_selection->disconnectFrame(); 435 m_selection = 0; 859 if (!m_selection) 860 m_selection = DOMSelection::create(m_frame); 861 return m_selection.get(); [all...] |