Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,111 @@
/*
* (c) Copyright 1993, 1994 Hewlett-Packard Company *
* (c) Copyright 1993, 1994 International Business Machines Corp. *
* (c) Copyright 1993, 1994 Sun Microsystems, Inc. *
* (c) Copyright 1993, 1994 Novell, Inc. *
*/
/************************************<+>*************************************
****************************************************************************
**
** File: GetEmbed.c
**
** RCS: $XConsortium: GetEmbed.c /main/5 1996/05/20 16:09:08 drk $
** Project: DT Workspace Manager
**
** Description: Get workspace embedded clients property.
**
** (c) Copyright 1990, 1993 by Hewlett-Packard Company
**
****************************************************************************
************************************<+>*************************************/
#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <Dt/Wsm.h>
#include <Dt/WsmP.h>
#include <Xm/Xm.h>
#include <Xm/AtomMgr.h>
/*************************************<->*************************************
*
* int _DtGetEmbeddedClients (display, root, ppEmbeddedClients,
* pNumEmbeddedClients)
*
*
* Description:
* -----------
* Get the contents of the _DT_WORKSPACE_EMBEDDED_CLIENTS property
* from a root window. This is a array of top-level windows that are
* embedded in the front panel of the window manager. They would
* not be picked up ordinarily by a session manager in a normal
* search for top-level windows because they are reparented to
* the front panel which itself is a top-level window.
*
*
* Inputs:
* ------
* display - display
* root - root window to get info from
* ppEmbeddedClients - pointer to a pointer (to be returned)
* pNumEmbeddedClients - pointer to a number (to be returned)
*
* Outputs:
* -------
* *ppEmbeddedClients - pointer to a array of window IDs (top-level
* windows for embedded clients)
* (NOTE: This should be freed using XFree)
* *pNumEmbeddedClients- number of window IDs in array
* Return - Success if property fetched ok.
* Failure returns are from XGetWindowProperty
*
* Comments:
* --------
* Use XFree to free the returned data.
*
*************************************<->***********************************/
int
_DtGetEmbeddedClients(
Display *display,
Window root,
Atom **ppEmbeddedClients,
unsigned long *pNumEmbeddedClients )
{
Atom actualType;
int actualFormat;
unsigned long leftover;
int rcode;
Atom property;
*ppEmbeddedClients = NULL;
property = XmInternAtom (display,
_XA_DT_WORKSPACE_EMBEDDED_CLIENTS, False);
if ((rcode=XGetWindowProperty(display,
root,
property,
0L,
(long)BUFSIZ,
False,
property,
&actualType,
&actualFormat,
pNumEmbeddedClients,
&leftover,
(unsigned char **)ppEmbeddedClients))==Success)
{
if (actualType != property)
{
/* wrong type, force failure */
*pNumEmbeddedClients = 0;
rcode = BadValue;
if (actualType != None)
{
XFree ((char *) *ppEmbeddedClients);
}
}
}
return(rcode);
}