gecko-dev/gfx2/public/nsIChildWindow.idl
2002-09-24 19:15:52 +00:00

67 lines
2.1 KiB
Plaintext

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2000 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Stuart Parmenter <pavlov@netscape.com>
* Rod Spears <rods@netscape.com>
* Kevin McCluskey <kmcclusk@netscape.com>
* Mike Pinkerton <pinkerton@netscape.com>
* ... and other people
*/
#include "nsISupports.idl"
#include "gfxtypes.idl"
interface nsIWindow;
/**
* nsIChildWindow interface
*
* @author Stuart Parmenter <pavlov@netscape.com>
* @version 0.0
* @see nsIWindow
* @see "gfx2"
*/
[scriptable, uuid(081b5644-1dd2-11b2-aaab-8a7e95393e2e)]
interface nsIChildWindow : nsISupports
{
/**
* Initialize a child window
* This window represents a window that can be drawn into via
* a query interface to nsIDrawable
* @see nsIDrawable
*
* @param aParent the parent window. This parameter can not be null.
* @param aX the x position, in pixels, relative to aParent.
* @param aY the y position, in pixels, relative to aParent.
* @param aWidth the width, in pixels, of the window.
* @param aHeight the height, in pixels, of the window.
*/
void init(in nsIWindow aParent,
in gfx_coord aX,
in gfx_coord aY,
in gfx_dimension aWidth,
in gfx_dimension aHeight);
void takeFocus();
void moveZOrderAboveSibling(in nsIChildWindow aSibling);
void moveZOrderBelowSibling(in nsIChildWindow aSibling);
};