-fpermissive to allow GCC to compile old C++
[oweals/cde.git] / cde / programs / dtmail / MotifApp / MenuWindow.C
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 /* $TOG: MenuWindow.C /main/5 1997/06/04 18:42:40 mgreess $ */
24 /*
25  *+SNOTICE
26  *
27  *      RESTRICTED CONFIDENTIAL INFORMATION:
28  *      
29  *      The information in this document is subject to special
30  *      restrictions in a confidential disclosure agreement bertween
31  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
32  *      document outside HP, IBM, Sun, USL, SCO, or Univel wihtout
33  *      Sun's specific written approval.  This documment and all copies
34  *      and derivative works thereof must be returned or destroyed at
35  *      Sun's request.
36  *
37  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
38  *
39  *+ENOTICE
40  */
41
42 ///////////////////////////////////////////////////////////////////////////////
43 //////////////////////////////////////////////////////////////////////////////
44 //         This example code is from the book:
45 //
46 //           Object-Oriented Programming with C++ and OSF/Motif
47 //         by
48 //           Douglas Young
49 //           Prentice Hall, 1992
50 //           ISBN 0-13-630252-1 
51 //
52 //         Copyright 1991 by Prentice Hall
53 //         All Rights Reserved
54 //
55 //  Permission to use, copy, modify, and distribute this software for 
56 //  any purpose except publication and without fee is hereby granted, provided 
57 //  that the above copyright notice appear in all copies of the software.
58 ///////////////////////////////////////////////////////////////////////////////
59 //////////////////////////////////////////////////////////////////////////////
60
61
62 //////////////////////////////////////////////////////////
63 // MenuWindow.C
64 //////////////////////////////////////////////////////////
65
66 #include "MenuWindow.h"
67 #include "MenuBar.h"
68
69
70 MenuWindow::MenuWindow( char *name, Boolean allowResize ) :
71 MainWindow ( name, allowResize ) 
72 {
73     _menuBar = NULL;
74 }
75
76 void MenuWindow::initialize()
77 {
78     
79     // Call base class to create XmMainWindow widget
80     // and set up the work area.
81     
82     MainWindow::initialize();
83     
84     // Specify the base widget of a MenuBar object 
85     // the XmMainWindow widget's menu bar.
86     
87     _menuBar = new MenuBar ( _main, "menubar" );
88     
89     XtVaSetValues ( _main, 
90                    XmNmenuBar, _menuBar->baseWidget(),
91                    NULL);
92     
93     // Call derived class hook to add panes to the menu
94     
95     createMenuPanes();
96     
97     _menuBar->manage();
98
99
100
101 }
102
103 MenuWindow::~MenuWindow()
104 {
105
106
107     delete _menuBar;
108 }
109
110 void
111 MenuWindow::getIconColors(Pixel & fore, Pixel & back)
112 {
113     if (_menuBar) {
114         XtVaGetValues (_menuBar->baseWidget(),
115                        XmNforeground, &fore,
116                        XmNbackground, &back,
117                        NULL);
118     }
119     else {
120         MainWindow::getIconColors(fore, back);
121     }
122 }