dtcm: Resolve CID 87408
[oweals/cde.git] / cde / programs / dtcm / dtcm / deskset.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*******************************************************************************
24 **
25 **  deskset.h
26 **
27 **  static char sccsid[] = "@(#)deskset.h 1.6 94/12/22 Copyr 1991 Sun Microsystems, Inc.";
28 **
29 **  $XConsortium: deskset.h /main/3 1995/11/03 10:22:50 rswiston $
30 **
31 **  RESTRICTED CONFIDENTIAL INFORMATION:
32 **
33 **  The information in this document is subject to special
34 **  restrictions in a confidential disclosure agreement between
35 **  HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
36 **  document outside HP, IBM, Sun, USL, SCO, or Univel without
37 **  Sun's specific written approval.  This document and all copies
38 **  and derivative works thereof must be returned or destroyed at
39 **  Sun's request.
40 **
41 **  Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
42 **
43 *******************************************************************************/
44
45 /*                                                                      *
46  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
47  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
48  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
49  * (c) Copyright 1993, 1994 Novell, Inc.                                *
50  */
51
52 #ifndef _DESKSET_H
53 #define _DESKSET_H
54  
55 #include <X11/Xlib.h>
56 #include <X11/Intrinsic.h>
57 #include "ansi_c.h"
58
59 /*
60 **  Location ops for ds_position_popup().
61 */
62 typedef enum {
63         DS_POPUP_RIGHT,       /* Place popup to right of baseframe */
64         DS_POPUP_LEFT,        /* Place popup to left of baseframe */
65         DS_POPUP_ABOVE,       /* Place popup above baseframe */
66         DS_POPUP_BELOW,       /* Place popup below baseframe */
67         DS_POPUP_LOR,         /* Place popup to right or left of baseframe */
68         DS_POPUP_AOB,         /* Place popup above or below baseframe */
69         DS_POPUP_CENTERED     /* Center popup within baseframe */
70 } ds_location_op;
71
72 /*
73 **  Function declarations.
74 */
75 extern int              ds_force_popup_on_screen P((Widget, int*, int*)) ;
76 extern void             ds_get_screen_size      P((Widget, int*, int*)) ;
77 extern int              ds_position_popup       P((Widget, Widget,
78                                                         ds_location_op)) ;
79 extern char             *ds_relname             P(());
80
81 #endif