xbl_docimpl.h
来自「手机浏览器源码程序,功能强大」· C头文件 代码 · 共 31 行
H
31 行
#include "qptrdict.h"
#include "xml/dom_docimpl.h"
namespace DOM {
class DOMString;
}
namespace XBL {
class XBLPrototypeBinding;
// This class represents an XBL document. It subclasses XML documents and holds references to prototype bindings.
// The DOM of an XBL document is optimized to avoid creating full-blown DOM elements for most sections of the various
// bindings. Custom prototype binding data structures are created instead.
class XBLDocumentImpl: public DOM::DocumentImpl
{
public:
XBLDocumentImpl();
~XBLDocumentImpl();
virtual khtml::XMLHandler* createTokenHandler();
void setPrototypeBinding(const DOM::DOMString& id, XBLPrototypeBinding* binding);
XBLPrototypeBinding* prototypeBinding(const DOM::DOMString& id);
private:
// A mapping from URIs to bindings. Used to look up specific prototype binding objects.
QDict<XBLPrototypeBinding> m_prototypeBindingTable;
};
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?