html_image.cpp

来自「将konqueror浏览器移植到ARM9 2410中」· C++ 代码 · 共 400 行

CPP
400
字号
/** * This file is part of the DOM implementation for KDE. * * (C) 1999 Lars Knoll (knoll@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_image.cpp,v 1.10 2001/07/15 19:57:09 mueller Exp $ */// --------------------------------------------------------------------------#include "dom_string.h"#include "html_image.h"#include "html_imageimpl.h"#include "html_misc.h"#include "html_miscimpl.h"using namespace DOM;#include "htmlhashes.h"HTMLAreaElement::HTMLAreaElement() : HTMLElement(){}HTMLAreaElement::HTMLAreaElement(const HTMLAreaElement &other) : HTMLElement(other){}HTMLAreaElement::HTMLAreaElement(HTMLAreaElementImpl *impl) : HTMLElement(impl){}HTMLAreaElement &HTMLAreaElement::operator = (const Node &other){    if(other.elementId() != ID_AREA)    {	impl = 0;	return *this;    }    Node::operator = (other);    return *this;}HTMLAreaElement &HTMLAreaElement::operator = (const HTMLAreaElement &other){    HTMLElement::operator = (other);    return *this;}HTMLAreaElement::~HTMLAreaElement(){}DOMString HTMLAreaElement::accessKey() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_ACCESSKEY);}void HTMLAreaElement::setAccessKey( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ACCESSKEY, value);}DOMString HTMLAreaElement::alt() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_ALT);}void HTMLAreaElement::setAlt( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ALT, value);}DOMString HTMLAreaElement::coords() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_COORDS);}void HTMLAreaElement::setCoords( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_COORDS, value);}DOMString HTMLAreaElement::href() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_HREF);}void HTMLAreaElement::setHref( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HREF, value);}bool HTMLAreaElement::noHref() const{    if(!impl) return 0;    return !((ElementImpl *)impl)->getAttribute(ATTR_NOHREF).isNull();}void HTMLAreaElement::setNoHref( bool _noHref ){    if(impl)    {	DOMString str;	if( _noHref )	    str = "";	((ElementImpl *)impl)->setAttribute(ATTR_NOHREF, str);    }}DOMString HTMLAreaElement::shape() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_SHAPE);}void HTMLAreaElement::setShape( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_SHAPE, value);}long HTMLAreaElement::tabIndex() const{    if(!impl) return 0;    return ((ElementImpl *)impl)->getAttribute(ATTR_TABINDEX).toInt();}void HTMLAreaElement::setTabIndex( long _tabIndex ){    if(impl) {	DOMString value(QString::number(_tabIndex));        ((ElementImpl *)impl)->setAttribute(ATTR_TABINDEX,value);    }}DOMString HTMLAreaElement::target() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_TARGET);}void HTMLAreaElement::setTarget( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_TARGET, value);}// --------------------------------------------------------------------------HTMLImageElement::HTMLImageElement() : HTMLElement(){}HTMLImageElement::HTMLImageElement(const HTMLImageElement &other) : HTMLElement(other){}HTMLImageElement::HTMLImageElement(HTMLImageElementImpl *impl) : HTMLElement(impl){}HTMLImageElement &HTMLImageElement::operator = (const Node &other){    if(other.elementId() != ID_IMG)    {	impl = 0;	return *this;    }    Node::operator = (other);    return *this;}HTMLImageElement &HTMLImageElement::operator = (const HTMLImageElement &other){    HTMLElement::operator = (other);    return *this;}HTMLImageElement::~HTMLImageElement(){}DOMString HTMLImageElement::lowSrc() const{    // DOM specs says URI for low resolution output...    // too bad you can't specfy it by an attribute...    return DOMString();}void HTMLImageElement::setLowSrc( const DOMString &/*value*/ ){}DOMString HTMLImageElement::name() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_NAME);}void HTMLImageElement::setName( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_NAME, value);}DOMString HTMLImageElement::align() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_ALIGN);}void HTMLImageElement::setAlign( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ALIGN, value);}DOMString HTMLImageElement::alt() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_ALT);}void HTMLImageElement::setAlt( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ALT, value);}DOMString HTMLImageElement::border() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_BORDER);}void HTMLImageElement::setBorder( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_BORDER, value);}DOMString HTMLImageElement::height() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_HEIGHT);}void HTMLImageElement::setHeight( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HEIGHT, value);}DOMString HTMLImageElement::hspace() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_HSPACE);}void HTMLImageElement::setHspace( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HSPACE, value);}bool HTMLImageElement::isMap() const{    if(!impl) return 0;    return !((ElementImpl *)impl)->getAttribute(ATTR_DISABLED).isNull();}void HTMLImageElement::setIsMap( bool _isMap ){    if(impl)    {	DOMString str;	if( _isMap )	    str = "";	((ElementImpl *)impl)->setAttribute(ATTR_ISMAP, str);    }}DOMString HTMLImageElement::longDesc() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_LONGDESC);}void HTMLImageElement::setLongDesc( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_LONGDESC, value);}DOMString HTMLImageElement::src() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_SRC);}void HTMLImageElement::setSrc( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_SRC, value);}DOMString HTMLImageElement::useMap() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_USEMAP);}void HTMLImageElement::setUseMap( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_USEMAP, value);}DOMString HTMLImageElement::vspace() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_VSPACE);}void HTMLImageElement::setVspace( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_VSPACE, value);}DOMString HTMLImageElement::width() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_WIDTH);}void HTMLImageElement::setWidth( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_WIDTH, value);}// --------------------------------------------------------------------------HTMLMapElement::HTMLMapElement() : HTMLElement(){}HTMLMapElement::HTMLMapElement(const HTMLMapElement &other) : HTMLElement(other){}HTMLMapElement::HTMLMapElement(HTMLMapElementImpl *impl) : HTMLElement(impl){}HTMLMapElement &HTMLMapElement::operator = (const Node &other){    if(other.elementId() != ID_MAP)    {	impl = 0;	return *this;    }    Node::operator = (other);    return *this;}HTMLMapElement &HTMLMapElement::operator = (const HTMLMapElement &other){    HTMLElement::operator = (other);    return *this;}HTMLMapElement::~HTMLMapElement(){}HTMLCollection HTMLMapElement::areas() const{    if(!impl) return HTMLCollection();    return HTMLCollection(impl, HTMLCollectionImpl::MAP_AREAS);}DOMString HTMLMapElement::name() const{    if(!impl) return DOMString();    return ((ElementImpl *)impl)->getAttribute(ATTR_NAME);}void HTMLMapElement::setName( const DOMString &value ){    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_NAME, value);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?