Changeset 13726 for trunk/WebCore/dom/Element.h
- Timestamp:
- 04/07/06 01:31:17 (3 years ago)
- Files:
-
- 1 modified
-
trunk/WebCore/dom/Element.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/dom/Element.h
r13555 r13726 31 31 #include "Attr.h" 32 32 #include "QualifiedName.h" 33 #include "KWQScrollBar.h" 33 34 34 35 namespace WebCore { … … 69 70 void scrollIntoViewIfNeeded(bool centerIfNeeded); 70 71 72 void scrollByUnits(int units, KWQScrollGranularity granularity); 73 void scrollByLines(int lines); 74 void scrollByPages(int pages); 75 76 int offsetLeft(); 77 int offsetTop(); 78 int offsetWidth(); 79 int offsetHeight(); 80 Element* offsetParent(); 81 int clientWidth(); 82 int clientHeight(); 83 int scrollLeft(); 84 int scrollTop(); 85 void setScrollLeft(int); 86 void setScrollTop(int); 87 int scrollWidth(); 88 int scrollHeight(); 89 71 90 void removeAttribute(const String &name, ExceptionCode& ec); 72 91 void removeAttributeNS(const String &namespaceURI, const String& localName, ExceptionCode&); … … 80 99 virtual CSSStyleDeclaration *style(); 81 100 82 virtual const QualifiedName& tagName() const { return m_tagName; } 101 const QualifiedName& tagQName() const { return m_tagName; } 102 String tagName() const { return nodeName(); } 83 103 virtual bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); } 84 104