From df4fa08908fe804269098677328bde390f990b25 Mon Sep 17 00:00:00 2001 From: "cmanske%netscape.com" Date: Wed, 21 Apr 1999 18:59:50 +0000 Subject: [PATCH] New editor interface methods for element insert and properties git-svn-id: svn://10.0.0.236/trunk@28477 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpfe/AppCores/idl/EditorAppCore.idl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mozilla/xpfe/AppCores/idl/EditorAppCore.idl b/mozilla/xpfe/AppCores/idl/EditorAppCore.idl index f44a00209fa..78af499b082 100755 --- a/mozilla/xpfe/AppCores/idl/EditorAppCore.idl +++ b/mozilla/xpfe/AppCores/idl/EditorAppCore.idl @@ -5,8 +5,7 @@ interface EditorAppCore : BaseAppCore readonly attribute wstring contentsAsText; readonly attribute wstring contentsAsHTML; - - readonly attribute Document editorDocument; + readonly attribute Document editorDocument; readonly attribute Selection editorSelection; void EditorAppCore(); @@ -35,6 +34,10 @@ interface EditorAppCore : BaseAppCore void insertLink(); void insertImage(); + + Element getSelectedElement(in wstring tagName); + Element createElementWithDefaults(in wstring tagName); + Element insertElement(in Element element, in boolean deleteSelection); void exit();