65fea56f17cd614bc8908264df980a62e1931468vboxsync/*
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Rootless window management
65fea56f17cd614bc8908264df980a62e1931468vboxsync */
65fea56f17cd614bc8908264df980a62e1931468vboxsync/*
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Copyright (c) 2001 Greg Parker. All Rights Reserved.
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Permission is hereby granted, free of charge, to any person obtaining a
65fea56f17cd614bc8908264df980a62e1931468vboxsync * copy of this software and associated documentation files (the "Software"),
65fea56f17cd614bc8908264df980a62e1931468vboxsync * to deal in the Software without restriction, including without limitation
65fea56f17cd614bc8908264df980a62e1931468vboxsync * the rights to use, copy, modify, merge, publish, distribute, sublicense,
65fea56f17cd614bc8908264df980a62e1931468vboxsync * and/or sell copies of the Software, and to permit persons to whom the
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Software is furnished to do so, subject to the following conditions:
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * The above copyright notice and this permission notice shall be included in
65fea56f17cd614bc8908264df980a62e1931468vboxsync * all copies or substantial portions of the Software.
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
65fea56f17cd614bc8908264df980a62e1931468vboxsync * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
65fea56f17cd614bc8908264df980a62e1931468vboxsync * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
65fea56f17cd614bc8908264df980a62e1931468vboxsync * THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
65fea56f17cd614bc8908264df980a62e1931468vboxsync * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
65fea56f17cd614bc8908264df980a62e1931468vboxsync * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
65fea56f17cd614bc8908264df980a62e1931468vboxsync * DEALINGS IN THE SOFTWARE.
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Except as contained in this notice, the name(s) of the above copyright
65fea56f17cd614bc8908264df980a62e1931468vboxsync * holders shall not be used in advertising or otherwise to promote the sale,
65fea56f17cd614bc8908264df980a62e1931468vboxsync * use or other dealings in this Software without prior written authorization.
65fea56f17cd614bc8908264df980a62e1931468vboxsync */
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#ifdef HAVE_DIX_CONFIG_H
65fea56f17cd614bc8908264df980a62e1931468vboxsync#include <dix-config.h>
65fea56f17cd614bc8908264df980a62e1931468vboxsync#endif
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#ifndef _ROOTLESSWINDOW_H
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define _ROOTLESSWINDOW_H
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#include "rootlessCommon.h"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncBool RootlessCreateWindow(WindowPtr pWin);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncBool RootlessDestroyWindow(WindowPtr pWin);
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid RootlessSetShape(WindowPtr pWin, int kind);
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncBool RootlessChangeWindowAttributes(WindowPtr pWin, unsigned long vmask);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncBool RootlessPositionWindow(WindowPtr pWin, int x, int y);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncBool RootlessRealizeWindow(WindowPtr pWin);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncBool RootlessUnrealizeWindow(WindowPtr pWin);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid RootlessRestackWindow(WindowPtr pWin, WindowPtr pOldNextSib);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid RootlessCopyWindow(WindowPtr pWin, DDXPointRec ptOldOrg,
65fea56f17cd614bc8908264df980a62e1931468vboxsync RegionPtr prgnSrc);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid RootlessMoveWindow(WindowPtr pWin, int x, int y, WindowPtr pSib,
65fea56f17cd614bc8908264df980a62e1931468vboxsync VTKind kind);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid RootlessResizeWindow(WindowPtr pWin, int x, int y, unsigned int w,
65fea56f17cd614bc8908264df980a62e1931468vboxsync unsigned int h, WindowPtr pSib);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid RootlessReparentWindow(WindowPtr pWin, WindowPtr pPriorParent);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid RootlessChangeBorderWidth(WindowPtr pWin, unsigned int width);
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#ifdef __APPLE__
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid RootlessNativeWindowMoved(WindowPtr pWin);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid RootlessNativeWindowStateChanged(WindowPtr pWin, unsigned int state);
65fea56f17cd614bc8908264df980a62e1931468vboxsync#endif
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#endif