This commit is contained in:
jfrancis%netscape.com 1999-08-09 21:43:53 +00:00
Родитель 49b63463ff
Коммит 9f2cfc31fe
2 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@ -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);