2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2000-05-30 11:57:51 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2001-09-26 02:17:00 +04:00
|
|
|
interface nsIDOMElement;
|
|
|
|
|
2014-10-21 02:02:36 +04:00
|
|
|
[scriptable, uuid(ce572460-b0f2-4650-a9e7-c53a99d3b6ad)]
|
2000-05-30 11:57:51 +04:00
|
|
|
interface nsIBoxObject : nsISupports
|
|
|
|
{
|
2002-01-16 06:01:28 +03:00
|
|
|
readonly attribute nsIDOMElement element;
|
|
|
|
|
2000-07-27 10:19:30 +04:00
|
|
|
readonly attribute long x;
|
|
|
|
readonly attribute long y;
|
2001-04-30 22:30:18 +04:00
|
|
|
readonly attribute long screenX;
|
|
|
|
readonly attribute long screenY;
|
2000-07-27 10:19:30 +04:00
|
|
|
readonly attribute long width;
|
|
|
|
readonly attribute long height;
|
2000-10-03 03:23:55 +04:00
|
|
|
|
|
|
|
nsISupports getPropertyAsSupports(in wstring propertyName);
|
|
|
|
void setPropertyAsSupports(in wstring propertyName, in nsISupports value);
|
|
|
|
wstring getProperty(in wstring propertyName);
|
|
|
|
void setProperty(in wstring propertyName, in wstring propertyValue);
|
|
|
|
void removeProperty(in wstring propertyName);
|
2000-12-01 04:45:37 +03:00
|
|
|
|
2001-09-26 02:17:00 +04:00
|
|
|
// for stepping through content in the expanded dom with box-ordinal-group order
|
|
|
|
readonly attribute nsIDOMElement parentBox;
|
|
|
|
readonly attribute nsIDOMElement firstChild;
|
|
|
|
readonly attribute nsIDOMElement lastChild;
|
|
|
|
readonly attribute nsIDOMElement nextSibling;
|
|
|
|
readonly attribute nsIDOMElement previousSibling;
|
2000-05-30 11:57:51 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
%{C++
|
|
|
|
nsresult
|
|
|
|
NS_NewBoxObject(nsIBoxObject** aResult);
|
|
|
|
|
|
|
|
%}
|