📄 html_elementimpl.h
字号:
/** * This file is part of the DOM implementation for KDE. * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * * $Id: html_elementimpl.h,v 1.48 2001/06/12 23:21:34 mueller Exp $ */#ifndef HTML_ELEMENTIMPL_H#define HTML_ELEMENTIMPL_H#include "dom_elementimpl.h"namespace DOM {class DOMString;class CSSStyleDeclarationImpl;class HTMLElementImpl : public ElementImpl{public: HTMLElementImpl(DocumentPtr *doc); virtual ~HTMLElementImpl(); virtual bool isHTMLElement() const { return true; } // make it pure virtual... virtual ushort id() const = 0; virtual void parseAttribute(AttrImpl *token); void addCSSProperty( const DOMString &property, const DOMString &value, bool nonCSSHint = true); void addCSSLength(int id, const DOMString &value); void addCSSProperty(int id, const DOMString &value); void addCSSProperty(int id, int value); void addCSSProperty(const DOMString &property); DOMString getCSSProperty( int id ); void removeCSSProperty(int id); void removeCSSProperty(const DOMString &id); DOMString innerHTML() const; DOMString innerText() const; bool setInnerHTML( const DOMString &html ); bool setInnerText( const DOMString &text );protected: // for IMG, OBJECT and APPLET void addHTMLAlignment( DOMString alignment );};class HTMLGenericElementImpl : public HTMLElementImpl{public: HTMLGenericElementImpl(DocumentPtr *doc, ushort i); virtual ~HTMLGenericElementImpl(); virtual const DOMString nodeName() const; virtual ushort id() const { return _id; };protected: ushort _id;};}; //namespace#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -