?? xbl_protobinding.h
字號:
#include "dom/dom_string.h"
namespace DOM
{
class ElementImpl;
class DOMString;
}
namespace XBL
{
class XBLDocumentImpl;
class XBLPrototypeHandler;
class XBLPrototypeBinding
OOM_MODIFIED
{
public:
XBLPrototypeBinding(const DOM::DOMString& bindingID, DOM::ElementImpl* bindingElt);
void initialize(); // Called once the binding and all its child elements have been parsed.
XBLDocumentImpl* document() const;
DOM::ElementImpl* element() const { return m_element; }
void setHandler(XBLPrototypeHandler* handler) { m_handler = handler; }
XBLPrototypeHandler* handler() const { return m_handler; }
void addResource(const DOM::DOMString& type, const DOM::DOMString& src);
private:
DOM::DOMString m_id;
DOM::ElementImpl* m_element;
XBLPrototypeHandler* m_handler; // Our event handlers (prototypes).
};
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -