mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
73 lines
2.0 KiB
C
73 lines
2.0 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
/*
|
|
* MozillaWm.h
|
|
*
|
|
* Mozilla Window Manager interface
|
|
*
|
|
* X11 window manager conventions do not support the window manager
|
|
* functionality required by Mozilla JavaScript 1.2 features for NetCaster.
|
|
*/
|
|
|
|
#ifndef _MOZILLA_WM_H
|
|
#define _MOZILLA_WM_H
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* IMPORTANT - remove this #define when we get a window manager which supports API */
|
|
#define MOZILLA_WM_I_AM_A_WINDOW_MANAGER
|
|
|
|
|
|
/* Window Manager-only API */
|
|
#ifdef MOZILLA_WM_I_AM_A_WINDOW_MANAGER
|
|
/* set version of Mozilla WM API supported by window manager. */
|
|
void MozillaWmSetWmVersion(Screen*,long);
|
|
#endif
|
|
|
|
/* general client API */
|
|
|
|
/* get version of Mozilla WM API supported by window manager for client's screen */
|
|
long MozillaWmGetWmVersion(Screen*);
|
|
|
|
/* get/set Mozilla WM hint flags on application shell window */
|
|
void MozillaWmSetHints(Screen*,Window,unsigned long);
|
|
void MozillaWmAddHints(Screen*,Window,unsigned long);
|
|
void MozillaWmRemoveHints(Screen*,Window,unsigned long);
|
|
unsigned long MozillaWmGetHints(Screen*,Window);
|
|
|
|
/* hint masks */
|
|
|
|
#define MOZILLA_WM_NONE (0)
|
|
#define MOZILLA_WM_ALWAYS_BOTTOM (1 << 0)
|
|
#define MOZILLA_WM_ALWAYS_TOP (1 << 1)
|
|
#define MOZILLA_WM_ZORDER_LOCK (1 << 2)
|
|
|
|
#define MOZILLA_WM_VERSION_INVALID -1
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _MOZILLA_WM_H */
|
|
|