gecko-dev/editor/idl/nsIEditorShell.idl

174 строки
5.4 KiB
Plaintext
Исходник Обычный вид История

1999-06-10 23:52:49 +04:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#include "nsISupports.idl"
#include "domstubs.idl"
#include "nsIFileSpec.idl"
#include "nsISupportsArray.idl"
1999-06-10 23:52:49 +04:00
%{C++
class nsIDOMWindow;
class nsIDOMDocument;
class nsIDOMSelection;
class nsIDOMElement;
class nsIDOMNode;
1999-06-10 23:52:49 +04:00
%}
interface nsIFileSpec;
1999-06-10 23:52:49 +04:00
[scriptable, uuid(9afff72b-ca9a-11d2-96c9-0060b0fb9956)]
interface nsIEditorShell : nsISupports
{
readonly attribute nsIDOMDocument editorDocument;
readonly attribute nsIDOMSelection editorSelection;
%{C++
enum {
eDocumentStatusUnmodified,
eDocumentStatusModified
};
%}
1999-07-28 06:53:48 +04:00
readonly attribute boolean documentModified;
1999-06-10 23:52:49 +04:00
attribute wstring paragraphFormat;
attribute long wrapColumn;
/* Setup */
void SetEditorType(in wstring editorType);
void SetToolbarWindow(in nsIDOMWindow win);
void SetContentWindow(in nsIDOMWindow win);
void SetWebShellWindow(in nsIDOMWindow win);
void LoadUrl(in wstring url);
void Init();
/* Commands */
void NewWindow();
void Open();
void Save();
void SaveAs();
void CloseWindow();
void Print();
void Exit();
void Undo();
void Redo();
void Cut();
void Copy();
void Paste();
void PasteAsQuotation();
void PasteAsCitedQuotation(in wstring cite);
void InsertAsQuotation(in wstring quotedText);
void InsertAsCitedQuotation(in wstring quotedText, in wstring cite);
void SelectAll();
void DeleteSelection(in PRInt32 action);
1999-06-10 23:52:49 +04:00
void Find();
void FindNext();
/* Structure change */
void InsertText(in wstring textToInsert);
void InsertSource(in wstring textToInsert);
1999-06-10 23:52:49 +04:00
void InsertBreak();
void InsertList(in wstring listType);
void Indent(in wstring indent);
void Align(in wstring align);
/* Element insert and property editing */
1999-06-10 23:52:49 +04:00
nsIDOMElement GetSelectedElement(in wstring tagName);
/* returns the element conversion of supplied node or a parent of required type */
nsIDOMElement GetElementOrParentByTagName(in wstring tagName, in nsIDOMNode node);
1999-06-10 23:52:49 +04:00
nsIDOMElement CreateElementWithDefaults(in wstring tagName);
void InsertElement(in nsIDOMElement element, in boolean deleteSelection);
void SaveHLineSettings(in nsIDOMElement element);
void InsertLinkAroundSelection(in nsIDOMElement anchorElement);
void SelectElement(in nsIDOMElement element);
void SetSelectionAfterElement(in nsIDOMElement element);
1999-06-10 23:52:49 +04:00
/***** Table editing *****/
/* Get the indexes from layout's cellmap */
PRInt32 GetRowIndex(in nsIDOMElement cellElement);
PRInt32 GetColumnIndex(in nsIDOMElement cellElement);
/** Get the number of rows in a table from the layout's cellmap
* If tableElement is null, it will try to find enclosing table of selection anchor
*/
PRInt32 GetTableRowCount(in nsIDOMElement tableElement);
/* Get the number of columns in a table from the layout's cellmap
* If tableElement is null, it will try to find enclosing table of selection anchor
*/
PRInt32 GetTableColumnCount(in nsIDOMElement tableElement);
/* Get cell at a location in the layout's cellmap
returns null when past last cell in a row or column */
nsIDOMElement GetCellAt(in nsIDOMElement tableElement, in PRInt32 rowIndex, in PRInt32 colIndex);
/* Get cell at a location in the layout's cellmap with associated data
returns null when past last cell in a row or column */
nsIDOMElement GetCellDataAt(in nsIDOMElement tableElement, in PRInt32 rowIndex, in PRInt32 colIndex,
out PRInt32 startRowIndex, out PRInt32 startColIndex,
out PRInt32 rowSpan, out PRInt32 colSpan, out boolean isSelected);
/**** end of table editing *****/
/* Get list of embedded objects, e.g. for mail compose */
nsISupportsArray GetEmbeddedObjects();
1999-06-10 23:52:49 +04:00
/* Formatting */
void SetTextProperty(in wstring prop, in wstring attr, in wstring value);
void RemoveTextProperty(in wstring prop, in wstring attr);
void GetTextProperty(in wstring prop, in wstring attr, in wstring value, out boolean firstHas, out boolean anyHas, out boolean allHas);
1999-06-10 23:52:49 +04:00
void SetBodyAttribute(in wstring attr, in wstring value);
void SetBackgroundColor(in wstring color);
void ApplyStyleSheet(in wstring url);
1999-06-10 23:52:49 +04:00
/* Output.
* format is mime type, e.g. text/html;
* See nsIEditor.h for legal flag values.
*/
wstring GetContentsAs(in wstring format, in PRUint32 flags);
/* For debugging, dump the content tree: */
void DumpContentTree();
1999-06-10 23:52:49 +04:00
/* Utility */
wstring GetLocalFileURL(in nsIDOMWindow parent, in wstring filterType);
void BeginBatchChanges();
void EndBatchChanges();
void RunUnitTests();
void StartLogging(in nsIFileSpec logFile);
void StopLogging();
1999-06-10 23:52:49 +04:00
};
%{C++
extern nsresult
NS_NewEditorShell(nsIEditorShell** aEditorShell);
%}