Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / wwl / include / WWL / WRect.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  * $XConsortium: WRect.h /main/3 1996/06/11 16:58:33 cde-hal $
25  *
26  * Copyright (c) 1991 HaL Computer Systems, Inc.  All rights reserved.
27  * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
28  * States.  Use of a copyright notice is precautionary only and does not
29  * imply publication or disclosure.
30  * 
31  * This software contains confidential information and trade secrets of HaL
32  * Computer Systems, Inc.  Use, disclosure, or reproduction is prohibited
33  * without the prior express written permission of HaL Computer Systems, Inc.
34  * 
35  *                         RESTRICTED RIGHTS LEGEND
36  * Use, duplication, or disclosure by the Government is subject to
37  * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
38  * Technical Data and Computer Software clause at DFARS 252.227-7013.
39  *                        HaL Computer Systems, Inc.
40  *                  1315 Dell Avenue, Campbell, CA  95008
41  * 
42  */
43
44 // This code is automatically generated in -*- C++ -*-
45 #ifndef WRect_h
46 #define WRect_h
47
48 #include "wwl.h"
49 #include <X11/Object.h>
50 #include "WObject.h"
51 #include <X11/RectObj.h>
52
53 class WRect : public WObject {
54 public :
55                 DEFINE_INIT (WRect, WObject, rectObjClass)
56                 DEFINE_POPUP_INIT (WRect, WObject, rectObjClass)
57 inline  void    Manage () const { XtManageChild (widget); }
58 inline  void    Unmanage () const { XtUnmanageChild (widget); }
59 inline  Boolean IsManaged () const      { return XtIsManaged (widget); }
60 /*
61   inline  void  SetSensitive (Boolean o) const { XtSetSensitive (widget, o); }
62  while a bug exists in Motif 
63  */
64 inline  void    SetSensitive (Boolean o, Boolean remanage = False) const
65
66     Boolean sensitive = IsSensitive();
67     
68     // only if values differ 
69     
70     if ((sensitive && !o) ||
71         (!sensitive && o)) {
72         XtSetSensitive (widget, o);
73         if (remanage)
74           {
75             Unmanage();
76             Manage();
77           }
78     }
79 }
80
81 inline  Boolean IsSensitive () const    { return XtIsSensitive (widget); }
82                 DEFINE_GETTER_SETTER (AncestorSensitive,Boolean,"ancestorSensitive")
83                 DEFINE_GETTER_SETTER (X,Position,"x")
84                 DEFINE_GETTER_SETTER (Y,Position,"y")
85                 DEFINE_GETTER_SETTER (Width,Dimension,"width")
86                 DEFINE_GETTER_SETTER (Height,Dimension,"height")
87                 DEFINE_GETTER_SETTER (BorderWidth,Dimension,"borderWidth")
88                 DEFINE_GETTER_SETTER (Sensitive,Boolean,"sensitive")
89 };
90
91 #define NULLWRect               WRect((Widget)0)
92
93 #endif // WRect_h