2003-06-25 12:50:48 +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/. */
|
2003-06-25 12:50:48 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
#include "domstubs.idl"
|
|
|
|
|
2017-08-04 07:57:56 +03:00
|
|
|
[scriptable, builtinclass, uuid(91375f52-20e6-4757-9835-eb04fabe5498)]
|
2003-06-25 12:50:48 +04:00
|
|
|
interface nsIHTMLAbsPosEditor : nsISupports
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* true if Absolute Positioning handling is enabled in the editor
|
|
|
|
*/
|
2019-05-09 10:37:51 +03:00
|
|
|
[can_run_script] // Setter only.
|
2003-06-25 12:50:48 +04:00
|
|
|
attribute boolean absolutePositioningEnabled;
|
|
|
|
|
|
|
|
|
|
|
|
/* Utility methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* true if Snap To Grid is enabled in the editor.
|
|
|
|
*/
|
|
|
|
attribute boolean snapToGridEnabled;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sets the grid size in pixels.
|
|
|
|
* @param aSizeInPixels [IN] the size of the grid in pixels
|
|
|
|
*/
|
|
|
|
attribute unsigned long gridSize;
|
|
|
|
|
|
|
|
/* Other */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* refreshes the grabber if it shown, possibly updating its position or
|
|
|
|
* even hiding it.
|
2018-09-11 08:30:33 +03:00
|
|
|
* FYI: Current user in script is only BlueGriffon.
|
2003-06-25 12:50:48 +04:00
|
|
|
*/
|
2019-05-09 10:37:51 +03:00
|
|
|
[can_run_script]
|
2003-06-25 12:50:48 +04:00
|
|
|
void refreshGrabber();
|
|
|
|
};
|