Merge branch 'linux1'
[oweals/cde.git] / cde / programs / dtmail / MotifApp / ButtonInterface.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 /* $XConsortium: ButtonInterface.C /main/4 1996/04/05 16:48:43 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 //         This example code is from the book:
44 //
45 //           Object-Oriented Programming with C++ and OSF/Motif
46 //         by
47 //           Douglas Young
48 //           Prentice Hall, 1992
49 //           ISBN 0-13-630252-1 
50 //
51 //         Copyright 1991 by Prentice Hall
52 //         All Rights Reserved
53 //
54 //  Permission to use, copy, modify, and distribute this software for 
55 //  any purpose except publication and without fee is hereby granted, provided 
56 //  that the above copyright notice appear in all copies of the software.
57 ///////////////////////////////////////////////////////////////////////////////
58 //////////////////////////////////////////////////////////////////////////////
59
60
61 //////////////////////////////////////////////////////////////
62 // ButtonInterface.C: A push button interface to a Cmd object
63 ///////////////////////////////////////////////////////////////
64 #include <stdlib.h>
65 #include <ctype.h>
66 #include "ButtonInterface.h"
67 #include <Xm/PushB.h>
68 #include "Help.hh"
69 #include "Cmd.h"
70
71 ButtonInterface::ButtonInterface ( Widget parent, 
72                                   Cmd *cmd ) : CmdInterface ( cmd )
73 {
74
75     // We need to generate a button name that doesn't have illegal characters.
76     //
77     char w_name[200];
78     mapName(_name, w_name);
79
80     XmString label = XmStringCreateLocalized(_cmd->getLabel());
81     _w = XtVaCreateWidget (w_name, 
82                          xmPushButtonWidgetClass,
83                          parent,
84                          XmNlabelString, label, NULL);
85     XmStringFree(label);
86
87     printHelpId("_w", _w);
88     // XtAddCallback(_w, XmNhelpCallback, HelpCB, helpId);
89     // free(helpId);
90
91     installDestroyHandler();
92     
93     // The _active member is set when each instance is registered
94     // with an associated Cmd object. Now that a widget exists,
95     // set the widget's sensitivity according to its active state.
96     
97     if ( _active )
98         activate();     
99     else
100         deactivate();   
101
102 #ifdef GNU_CC  // No idea what the right ifdef is for automatically recognizing g++
103     
104     // G++ reportedly doesn't like the form expected by cfront. I'm
105     // told this will work, but I haven't tested it myself.
106     
107     XtAddCallback ( _w,  
108                    XmNactivateCallback, 
109                    executeCmdCallback,
110                    (XtPointer) this );  
111 #else
112
113     XtAddCallback ( _w,  
114                    XmNactivateCallback, 
115                    &CmdInterface::executeCmdCallback,
116                    (XtPointer) this );  
117 #endif
118     
119 }
120
121 #ifndef CAN_INLINE_VIRTUALS
122 ButtonInterface::~ButtonInterface(void)
123 {
124 }
125 #endif /* ! CAN_INLINE_VIRTUALS */
126
127 void
128 ButtonInterface::mapName(const char * input, char * output)
129 {
130     strcpy(output, input);
131     for (char * cur = output; *cur; cur++) {
132         if (isspace(*cur) || *cur == ',') {
133             *cur = '_';
134             continue;
135         }
136
137         if (*cur == '.' || *cur == ':') {
138             *cur = 0;
139             break;
140         }
141     }
142 }