css_stylesheetimpl.h
来自「将konqueror浏览器移植到ARM9 2410中」· C头文件 代码 · 共 171 行
H
171 行
/** * 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: css_stylesheetimpl.h,v 1.15 2001/06/12 00:56:00 mueller Exp $ */#ifndef _CSS_css_stylesheetimpl_h_#define _CSS_css_stylesheetimpl_h_#include <qlist.h>#include <qvaluelist.h>#include <dom_string.h>#include "cssparser.h"#include "misc/loader_client.h"namespace khtml { class CachedCSSStyleSheet; class DocLoader;};namespace DOM {class StyleSheet;class CSSStyleSheet;class MediaListImpl;class CSSRuleImpl;class CSSRuleList;class CSSStyleRuleImpl;class CSSValueImpl;class NodeImpl;class DocumentImpl;class StyleSheetImpl : public StyleListImpl{public: StyleSheetImpl(DOM::NodeImpl *ownerNode, DOM::DOMString href = 0); StyleSheetImpl(StyleSheetImpl *parentSheet, DOM::DOMString href = 0); StyleSheetImpl(StyleBaseImpl *owner, DOM::DOMString href = 0); StyleSheetImpl(khtml::CachedCSSStyleSheet *cached, DOM::DOMString href = 0); virtual ~StyleSheetImpl(); virtual bool isStyleSheet() { return true; } virtual bool deleteMe(); virtual DOM::DOMString type() const { return 0; } bool disabled() const; void setDisabled( bool ); DOM::NodeImpl *ownerNode() const; StyleSheetImpl *parentStyleSheet() const; DOM::DOMString href() const; DOM::DOMString title() const; MediaListImpl *media() const;protected: DOM::NodeImpl *m_parentNode; DOM::DOMString m_strHref; DOM::DOMString m_strTitle; MediaListImpl *m_media; bool m_disabled;};class CSSStyleSheetImpl : public StyleSheetImpl{public: CSSStyleSheetImpl(DOM::NodeImpl *parentNode, DOM::DOMString href = 0, bool _implicit = false); CSSStyleSheetImpl(CSSStyleSheetImpl *parentSheet, DOM::DOMString href = 0); CSSStyleSheetImpl(CSSRuleImpl *ownerRule, DOM::DOMString href = 0); // clone from a cached version of the sheet CSSStyleSheetImpl(DOM::NodeImpl *parentNode, CSSStyleSheetImpl *orig); CSSStyleSheetImpl(CSSRuleImpl *ownerRule, CSSStyleSheetImpl *orig); virtual ~CSSStyleSheetImpl(); virtual bool isCSSStyleSheet() { return true; } virtual DOM::DOMString type() const { return "text/css"; } CSSRuleImpl *ownerRule() const; CSSRuleList cssRules(); unsigned long insertRule ( const DOM::DOMString &rule, unsigned long index, int &exceptioncode ); void deleteRule ( unsigned long index, int &exceptioncode ); virtual bool parseString( const DOMString &string, bool strict = true ); bool isLoading(); void setNonCSSHints(); virtual void checkLoaded(); khtml::DocLoader *docLoader(); DocumentImpl *doc() { return m_doc; } bool implicit() { return m_implicit; }protected: DocumentImpl *m_doc; bool m_implicit;};// ----------------------------------------------------------------------------class StyleSheetListImpl : public DomShared{public: StyleSheetListImpl(); virtual ~StyleSheetListImpl(); // the following two ignore implicit stylesheets unsigned long length() const; StyleSheetImpl *item ( unsigned long index ); void add(StyleSheetImpl* s); void remove(StyleSheetImpl* s); QList<StyleSheetImpl> styleSheets;};// ----------------------------------------------------------------------------// ### This has different methods from the MediaList class because MediaList has// been adjusted to fit to the spec - this class needs to be updatedclass MediaListImpl : public StyleBaseImpl{public: MediaListImpl(CSSStyleSheetImpl *parentSheet); MediaListImpl(CSSRuleImpl *parentRule); virtual ~MediaListImpl(); virtual bool isMediaList() { return true; } CSSStyleSheetImpl *parentStyleSheet() const; CSSRuleImpl *parentRule() const; unsigned long length() const; DOM::DOMString item ( unsigned long index ); void del ( const DOM::DOMString &oldMedium ); void append ( const DOM::DOMString &newMedium ); DOM::DOMString mediaText() const; void setMediaText(const DOM::DOMString &value);protected: QValueList<DOM::DOMString> m_lstMedia;};}; // namespace#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?