зеркало из https://github.com/mozilla/gecko-dev.git
adding InsertHeader()
This commit is contained in:
Родитель
49b63463ff
Коммит
9f2cfc31fe
|
@ -610,6 +610,24 @@ nsJSEditorLog::InsertList(const nsString& aListType)
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsJSEditorLog::InsertHeader(const nsString& aHeaderType)
|
||||
{
|
||||
if (mLocked)
|
||||
return NS_OK;
|
||||
|
||||
PrintSelection();
|
||||
|
||||
Write("window.editorShell.InsertHeader(\"");
|
||||
PrintUnicode(aHeaderType);
|
||||
Write("\");\n");
|
||||
Flush();
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsJSEditorLog::Indent(const nsString& aIndent)
|
||||
{
|
||||
|
|
|
@ -117,6 +117,7 @@ public:
|
|||
NS_IMETHOD RemoveParagraphStyle();
|
||||
NS_IMETHOD RemoveParent(const nsString &aParentTag);
|
||||
NS_IMETHOD InsertList(const nsString& aListType);
|
||||
NS_IMETHOD InsertHeader(const nsString& aHeaderType);
|
||||
NS_IMETHOD Indent(const nsString& aIndent);
|
||||
NS_IMETHOD Align(const nsString& aAlign);
|
||||
NS_IMETHOD GetElementOrParentByTagName(const nsString& aTagName, nsIDOMNode *aNode, nsIDOMElement** aReturn);
|
||||
|
|
Загрузка…
Ссылка в новой задаче