亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? html_list.cpp

?? It is WEB browser core module with source code. Very good!
?? CPP
字號:
/**
 * 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.
 *
 */
// --------------------------------------------------------------------------

#include "dom/html_list.h"
#include "html/html_listimpl.h"
#include "misc/htmlhashes.h"

using namespace DOM;

HTMLDListElement::HTMLDListElement() : HTMLElement()
{
}

HTMLDListElement::HTMLDListElement(const HTMLDListElement &other) : HTMLElement(other)
{
}

HTMLDListElement::HTMLDListElement(HTMLDListElementImpl *impl) : HTMLElement(impl)
{
}

HTMLDListElement &HTMLDListElement::operator = (const Node &other)
{
    assignOther( other, ID_DL );
    return *this;
}

HTMLDListElement &HTMLDListElement::operator = (const HTMLDListElement &other)
{
    HTMLElement::operator = (other);
    return *this;
}

HTMLDListElement::~HTMLDListElement()
{
}

bool HTMLDListElement::compact() const
{
    if(!impl) return 0;
    return !((ElementImpl *)impl)->getAttribute(ATTR_COMPACT).isNull();
}

void HTMLDListElement::setCompact( bool _compact )
{
   if(impl)
    {
	DOMString str;
	if( _compact )
	    str = "";
	((ElementImpl *)impl)->setAttribute(ATTR_COMPACT, str);
    }
}

// --------------------------------------------------------------------------

HTMLDirectoryElement::HTMLDirectoryElement() : HTMLElement()
{
}

HTMLDirectoryElement::HTMLDirectoryElement(const HTMLDirectoryElement &other) : HTMLElement(other)
{
}

HTMLDirectoryElement::HTMLDirectoryElement(HTMLDirectoryElementImpl *impl) : HTMLElement(impl)
{
}

HTMLDirectoryElement &HTMLDirectoryElement::operator = (const Node &other)
{
    assignOther( other, ID_DIR );
    return *this;
}

HTMLDirectoryElement &HTMLDirectoryElement::operator = (const HTMLDirectoryElement &other)
{
    HTMLElement::operator = (other);
    return *this;
}

HTMLDirectoryElement::~HTMLDirectoryElement()
{
}

bool HTMLDirectoryElement::compact() const
{
    if(!impl) return 0;
    return !((ElementImpl *)impl)->getAttribute(ATTR_COMPACT).isNull();
}

void HTMLDirectoryElement::setCompact( bool _compact )
{
   if(impl)
    {
	DOMString str;
	if( _compact )
	    str = "";
	((ElementImpl *)impl)->setAttribute(ATTR_COMPACT, str);
    }
}

// --------------------------------------------------------------------------

HTMLLIElement::HTMLLIElement() : HTMLElement()
{
}

HTMLLIElement::HTMLLIElement(const HTMLLIElement &other) : HTMLElement(other)
{
}

HTMLLIElement::HTMLLIElement(HTMLLIElementImpl *impl) : HTMLElement(impl)
{
}

HTMLLIElement &HTMLLIElement::operator = (const Node &other)
{
    assignOther( other, ID_LI );
    return *this;
}

HTMLLIElement &HTMLLIElement::operator = (const HTMLLIElement &other)
{
    HTMLElement::operator = (other);
    return *this;
}

HTMLLIElement::~HTMLLIElement()
{
}

DOMString HTMLLIElement::type() const
{
    if(!impl) return DOMString();
    return ((ElementImpl *)impl)->getAttribute(ATTR_TYPE);
}

void HTMLLIElement::setType( const DOMString &value )
{
    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_TYPE, value);
}

long HTMLLIElement::value() const
{
    if(!impl) return 0;
    return ((ElementImpl *)impl)->getAttribute(ATTR_VALUE).toInt();
}

void HTMLLIElement::setValue( long _value )
{
    if(impl) {
	DOMString value(QString::number(_value));
        ((ElementImpl *)impl)->setAttribute(ATTR_VALUE,value);
    }
}

// --------------------------------------------------------------------------

HTMLMenuElement::HTMLMenuElement() : HTMLElement()
{
}

HTMLMenuElement::HTMLMenuElement(const HTMLMenuElement &other) : HTMLElement(other)
{
}

HTMLMenuElement::HTMLMenuElement(HTMLMenuElementImpl *impl) : HTMLElement(impl)
{
}

HTMLMenuElement &HTMLMenuElement::operator = (const Node &other)
{
    assignOther( other, ID_MENU );
    return *this;
}

HTMLMenuElement &HTMLMenuElement::operator = (const HTMLMenuElement &other)
{
    HTMLElement::operator = (other);
    return *this;
}

HTMLMenuElement::~HTMLMenuElement()
{
}

bool HTMLMenuElement::compact() const
{
    if(!impl) return 0;
    return !((ElementImpl *)impl)->getAttribute(ATTR_COMPACT).isNull();
}

void HTMLMenuElement::setCompact( bool _compact )
{
   if(impl)
    {
	DOMString str;
	if( _compact )
	    str = "";
	((ElementImpl *)impl)->setAttribute(ATTR_COMPACT, str);
    }
}

// --------------------------------------------------------------------------

HTMLOListElement::HTMLOListElement() : HTMLElement()
{
}

HTMLOListElement::HTMLOListElement(const HTMLOListElement &other) : HTMLElement(other)
{
}

HTMLOListElement::HTMLOListElement(HTMLOListElementImpl *impl) : HTMLElement(impl)
{
}

HTMLOListElement &HTMLOListElement::operator = (const Node &other)
{
    assignOther( other, ID_OL );
    return *this;
}

HTMLOListElement &HTMLOListElement::operator = (const HTMLOListElement &other)
{
    HTMLElement::operator = (other);
    return *this;
}

HTMLOListElement::~HTMLOListElement()
{
}

bool HTMLOListElement::compact() const
{
    if(!impl) return 0;
    return !((ElementImpl *)impl)->getAttribute(ATTR_COMPACT).isNull();
}

void HTMLOListElement::setCompact( bool _compact )
{
   if(impl)
    {
	DOMString str;
	if( _compact )
	    str = "";
	((ElementImpl *)impl)->setAttribute(ATTR_COMPACT, str);
    }
}

long HTMLOListElement::start() const
{
    if(!impl) return 0;
    return ((ElementImpl *)impl)->getAttribute(ATTR_START).toInt();
}

void HTMLOListElement::setStart( long _start )
{

    if(impl) {
	DOMString value(QString::number(_start));
        ((ElementImpl *)impl)->setAttribute(ATTR_START,value);
    }
}

DOMString HTMLOListElement::type() const
{
    if(!impl) return DOMString();
    return ((ElementImpl *)impl)->getAttribute(ATTR_TYPE);
}

void HTMLOListElement::setType( const DOMString &value )
{
    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_TYPE, value);
}

// --------------------------------------------------------------------------

HTMLUListElement::HTMLUListElement() : HTMLElement()
{
}

HTMLUListElement::HTMLUListElement(const HTMLUListElement &other) : HTMLElement(other)
{
}

HTMLUListElement::HTMLUListElement(HTMLUListElementImpl *impl) : HTMLElement(impl)
{
}

HTMLUListElement &HTMLUListElement::operator = (const Node &other)
{
    assignOther( other, ID_UL );
    return *this;
}

HTMLUListElement &HTMLUListElement::operator = (const HTMLUListElement &other)
{
    HTMLElement::operator = (other);
    return *this;
}

HTMLUListElement::~HTMLUListElement()
{
}

bool HTMLUListElement::compact() const
{
    if(!impl) return 0;
    return !((ElementImpl *)impl)->getAttribute(ATTR_COMPACT).isNull();
}

void HTMLUListElement::setCompact( bool _compact )
{
   if(impl)
    {
	DOMString str;
	if( _compact )
	    str = "";
	((ElementImpl *)impl)->setAttribute(ATTR_COMPACT, str);
    }
}

DOMString HTMLUListElement::type() const
{
    if(!impl) return DOMString();
    return ((ElementImpl *)impl)->getAttribute(ATTR_TYPE);
}

void HTMLUListElement::setType( const DOMString &value )
{
    if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_TYPE, value);
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美在线观看你懂的| 日韩久久精品一区| 欧美群妇大交群中文字幕| 久久色.com| 天天综合色天天| 91香蕉视频污在线| 国产农村妇女毛片精品久久麻豆| 日韩黄色免费电影| 欧美视频第二页| 国产精品久久久久久久久搜平片| 看片网站欧美日韩| 欧美一区在线视频| 亚洲国产精品一区二区www在线 | 91.成人天堂一区| 成人欧美一区二区三区视频网页| 韩国精品主播一区二区在线观看 | 亚洲综合色视频| 成人免费电影视频| 亚洲国产精品av| 国产精品亚洲第一区在线暖暖韩国| 日韩女优av电影| 日本亚洲免费观看| 91精品在线免费观看| 日韩制服丝袜av| 欧美一区二区三区四区五区 | 亚洲一区二区三区中文字幕在线| 99这里只有久久精品视频| 中文字幕欧美激情| 国产99久久久久| 国产欧美一区二区精品性色超碰| 国产精品18久久久久久久久 | 精品国产髙清在线看国产毛片| 日韩激情在线观看| 欧美videos大乳护士334| 日韩av中文字幕一区二区| 91麻豆精品久久久久蜜臀| 青娱乐精品视频| 日韩视频中午一区| 久草在线在线精品观看| 久久久精品影视| av在线播放不卡| 亚洲成av人片在线观看| 7777女厕盗摄久久久| 黑人巨大精品欧美黑白配亚洲| 久久久美女毛片| 成人午夜av在线| 亚洲乱码日产精品bd| 欧美日韩视频在线观看一区二区三区| 午夜精品一区二区三区三上悠亚| 日韩欧美一区二区不卡| 国产成人精品免费一区二区| 亚洲人成小说网站色在线| 欧美日韩一区精品| 极品少妇xxxx精品少妇偷拍| 国产精品久久二区二区| 欧美日韩在线一区二区| 久久99国产精品麻豆| 亚洲天堂网中文字| 91精品国产综合久久国产大片| 国产一区二区在线看| 日韩理论片一区二区| 日韩一二三区不卡| www.欧美日韩| 日韩激情av在线| 中文字幕中文乱码欧美一区二区| 欧美日韩精品一区二区在线播放| 激情深爱一区二区| 一区二区三区中文字幕精品精品| 日韩一区二区精品在线观看| 色综合天天做天天爱| 日本午夜一区二区| 依依成人综合视频| 久久精品视频免费观看| 欧美精品在线一区二区三区| 国产999精品久久| 日韩精品三区四区| 亚洲日本va在线观看| 精品成人a区在线观看| 在线看不卡av| 国产成人在线视频网址| 奇米色一区二区三区四区| 一区二区成人在线| 欧美极品美女视频| 日韩免费看的电影| 欧美精品久久一区二区三区| av中文字幕亚洲| 国产69精品久久777的优势| 日产国产欧美视频一区精品| 亚洲丝袜自拍清纯另类| 国产午夜精品美女毛片视频| 欧美一级二级三级蜜桃| 欧美性色黄大片| 色哟哟国产精品| 93久久精品日日躁夜夜躁欧美| 国产在线观看一区二区| 久久国产精品区| 奇米在线7777在线精品| 视频在线在亚洲| 亚洲.国产.中文慕字在线| 国产精品成人在线观看| 国产午夜精品久久久久久久 | 色综合中文综合网| 亚洲午夜av在线| 亚洲男女一区二区三区| 国产欧美日产一区| 中文字幕欧美区| 国产精品久久久久久久岛一牛影视 | 亚洲午夜免费视频| 亚洲精品中文在线| 亚洲精选在线视频| 亚洲一区二区欧美激情| 亚洲bt欧美bt精品777| 亚洲成人先锋电影| 日韩中文字幕亚洲一区二区va在线| 一区二区三区在线视频观看| 亚洲乱码一区二区三区在线观看| 亚洲欧美aⅴ...| 亚洲一级二级三级在线免费观看| 亚洲夂夂婷婷色拍ww47| 亚洲国产精品麻豆| 无码av免费一区二区三区试看| 亚洲1区2区3区4区| 另类调教123区| 国产精品 日产精品 欧美精品| 成人aa视频在线观看| 91丝袜美腿高跟国产极品老师| 欧美亚洲自拍偷拍| 91精品国产综合久久小美女| www国产成人免费观看视频 深夜成人网| 精品日本一线二线三线不卡| 国产色婷婷亚洲99精品小说| 中文字幕一区二区三区视频| 一区二区三区电影在线播| 日韩vs国产vs欧美| 国产成人综合自拍| 色欧美片视频在线观看在线视频| 欧美日韩国产综合一区二区 | 99久久er热在这里只有精品15| 91在线一区二区| 欧美美女一区二区三区| 久久综合一区二区| 日韩伦理av电影| 麻豆91免费看| av福利精品导航| 欧美疯狂做受xxxx富婆| 久久久精品国产免大香伊| 夜夜精品浪潮av一区二区三区| 人人狠狠综合久久亚洲| 成人午夜免费av| 欧美精品在线观看播放| 中文字幕久久午夜不卡| 日韩中文字幕1| 91在线视频在线| 精品日韩av一区二区| 伊人性伊人情综合网| 国产成人精品免费网站| 欧美精品三级在线观看| 国产精品久久久久久久久图文区| 蜜桃视频一区二区| 91麻豆精品一区二区三区| 26uuu国产电影一区二区| 亚洲午夜羞羞片| av亚洲精华国产精华精华| 日韩片之四级片| 亚洲资源中文字幕| 成人国产精品视频| 精品国产第一区二区三区观看体验| 一区二区在线免费观看| 高清av一区二区| 久久综合九色综合久久久精品综合| 亚洲国产精品嫩草影院| 97国产一区二区| 国产精品免费免费| 国产精品996| 日韩你懂的在线观看| 午夜精品久久久久影视| 色综合天天视频在线观看| 国产亚洲成aⅴ人片在线观看| 日韩不卡一二三区| 欧美精品v国产精品v日韩精品| 亚洲人妖av一区二区| 成人av中文字幕| 国产亚洲综合在线| 国模大尺度一区二区三区| 欧美一级精品在线| 蜜桃视频免费观看一区| 在线综合视频播放| 日韩国产一二三区| 这里是久久伊人| 日韩电影在线看| 69堂成人精品免费视频| 日韩激情一二三区| 91精品在线一区二区| 日本亚洲三级在线| 日韩欧美国产不卡| 国产一区二区三区免费在线观看| 26uuu亚洲综合色欧美| 国产成人av一区二区三区在线观看| 欧美不卡在线视频| 国产精品夜夜嗨|