2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-03-28 20:51:59 +04:00
|
|
|
|
|
|
|
#ifndef nsIHTMLDocument_h
|
|
|
|
#define nsIHTMLDocument_h
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
#include "nsISupports.h"
|
2002-06-26 01:16:17 +04:00
|
|
|
#include "nsCompatibility.h"
|
2011-03-28 20:51:59 +04:00
|
|
|
|
2001-03-22 11:51:52 +03:00
|
|
|
class nsIContent;
|
2011-03-28 20:51:59 +04:00
|
|
|
class nsContentList;
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#define NS_IHTMLDOCUMENT_IID \
|
2012-07-02 10:22:37 +04:00
|
|
|
{ 0xcf814492, 0x303c, 0x4718, \
|
|
|
|
{ 0x9a, 0x3e, 0x39, 0xbc, 0xd5, 0x2c, 0x10, 0xdb } }
|
1998-09-02 06:07:42 +04:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
/**
|
|
|
|
* HTML document extensions to nsIDocument.
|
|
|
|
*/
|
2004-02-04 02:23:10 +03:00
|
|
|
class nsIHTMLDocument : public nsISupports
|
|
|
|
{
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IHTMLDOCUMENT_IID)
|
1999-06-30 23:28:16 +04:00
|
|
|
|
1998-09-02 06:07:42 +04:00
|
|
|
/**
|
2006-12-05 18:46:18 +03:00
|
|
|
* Set compatibility mode for this document
|
1998-09-02 06:07:42 +04:00
|
|
|
*/
|
2004-02-04 02:23:10 +03:00
|
|
|
virtual void SetCompatibilityMode(nsCompatibility aMode) = 0;
|
1998-09-02 06:07:42 +04:00
|
|
|
|
2002-07-17 02:38:51 +04:00
|
|
|
/**
|
2005-04-06 03:54:35 +04:00
|
|
|
* Called when form->BindToTree() is called so that document knows
|
2002-07-17 02:38:51 +04:00
|
|
|
* immediately when a form is added
|
|
|
|
*/
|
2004-02-04 02:23:10 +03:00
|
|
|
virtual void AddedForm() = 0;
|
2002-07-17 02:38:51 +04:00
|
|
|
/**
|
|
|
|
* Called when form->SetDocument() is called so that document knows
|
|
|
|
* immediately when a form is removed
|
|
|
|
*/
|
2004-02-04 02:23:10 +03:00
|
|
|
virtual void RemovedForm() = 0;
|
2002-07-17 02:38:51 +04:00
|
|
|
/**
|
|
|
|
* Called to get a better count of forms than document.forms can provide
|
|
|
|
* without calling FlushPendingNotifications (bug 138892).
|
|
|
|
*/
|
2004-05-28 02:08:42 +04:00
|
|
|
// XXXbz is this still needed now that we can flush just content,
|
|
|
|
// not the rest?
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual int32_t GetNumFormsSynchronous() = 0;
|
2016-10-18 19:58:19 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsWriting() = 0;
|
2004-09-04 23:51:21 +04:00
|
|
|
|
2007-06-28 06:48:16 +04:00
|
|
|
/**
|
|
|
|
* Should be called when an element's editable changes as a result of
|
|
|
|
* changing its contentEditable attribute/property.
|
|
|
|
*
|
|
|
|
* @param aElement the element for which the contentEditable
|
|
|
|
* attribute/property was changed
|
|
|
|
* @param aChange +1 if the contentEditable attribute/property was changed to
|
|
|
|
* true, -1 if it was changed to false
|
|
|
|
*/
|
|
|
|
virtual nsresult ChangeContentEditableCount(nsIContent *aElement,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aChange) = 0;
|
2007-06-28 06:48:16 +04:00
|
|
|
|
2007-08-10 17:19:13 +04:00
|
|
|
enum EditingState {
|
2008-02-20 12:54:52 +03:00
|
|
|
eTearingDown = -2,
|
2007-08-10 17:19:13 +04:00
|
|
|
eSettingUp = -1,
|
|
|
|
eOff = 0,
|
|
|
|
eDesignMode,
|
|
|
|
eContentEditable
|
|
|
|
};
|
|
|
|
|
2007-06-28 06:48:16 +04:00
|
|
|
/**
|
|
|
|
* Returns whether the document is editable.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsEditingOn()
|
2007-08-10 17:19:13 +04:00
|
|
|
{
|
|
|
|
return GetEditingState() == eDesignMode ||
|
|
|
|
GetEditingState() == eContentEditable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the editing state of the document (not editable, contentEditable or
|
|
|
|
* designMode).
|
|
|
|
*/
|
|
|
|
virtual EditingState GetEditingState() = 0;
|
2007-07-26 04:36:19 +04:00
|
|
|
|
2008-04-24 01:36:17 +04:00
|
|
|
/**
|
|
|
|
* Set the editing state of the document. Don't use this if you want
|
|
|
|
* to enable/disable editing, call EditingStateChanged() or
|
|
|
|
* SetDesignMode().
|
|
|
|
*/
|
|
|
|
virtual nsresult SetEditingState(EditingState aState) = 0;
|
|
|
|
|
2008-10-01 04:49:30 +04:00
|
|
|
/**
|
|
|
|
* Disables getting and setting cookies
|
|
|
|
*/
|
|
|
|
virtual void DisableCookieAccess() = 0;
|
|
|
|
|
2008-02-20 12:54:52 +03:00
|
|
|
/**
|
|
|
|
* Called when this nsIHTMLDocument's editor is destroyed.
|
|
|
|
*/
|
2017-08-07 08:25:52 +03:00
|
|
|
virtual void TearingDownEditor() = 0;
|
2008-09-20 22:55:04 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual void SetIsXHTML(bool aXHTML) = 0;
|
2009-11-06 07:27:30 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual void SetDocWriteDisabled(bool aDisabled) = 0;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
2005-11-11 17:36:26 +03:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIHTMLDocument, NS_IHTMLDOCUMENT_IID)
|
|
|
|
|
2011-03-28 20:51:59 +04:00
|
|
|
#endif /* nsIHTMLDocument_h */
|