Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtmail / dtmail / NoOpCmd.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 /*
24  *+SNOTICE
25  *
26  *      $TOG: NoOpCmd.C /main/5 1998/07/24 16:06:19 mgreess $
27  *
28  *      RESTRICTED CONFIDENTIAL INFORMATION:
29  *      
30  *      The information in this document is subject to special
31  *      restrictions in a confidential disclosure agreement between
32  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
33  *      document outside HP, IBM, Sun, USL, SCO, or Univel without
34  *      Sun's specific written approval.  This document and all copies
35  *      and derivative works thereof must be returned or destroyed at
36  *      Sun's request.
37  *
38  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
39  *
40  *+ENOTICE
41  */
42
43 ///////////////////////////////////////////////////////////////////////////////
44 //////////////////////////////////////////////////////////////////////////////
45 //         This example code is from the book:
46 //
47 //           Object-Oriented Programming with C++ and OSF/Motif
48 //         by
49 //           Douglas Young
50 //           Prentice Hall, 1992
51 //           ISBN 0-13-630252-1 
52 //
53 //         Copyright 1991 by Prentice Hall
54 //         All Rights Reserved
55 //
56 //  Permission to use, copy, modify, and distribute this software for 
57 //  any purpose except publication and without fee is hereby granted, provided 
58 //  that the above copyright notice appear in all copies of the software.
59 ///////////////////////////////////////////////////////////////////////////////
60 //////////////////////////////////////////////////////////////////////////////
61
62
63 ///////////////////////////////////////////////////////////
64 // NoOpCmd.C: Example, dummy command class
65 //////////////////////////////////////////////////////////
66 #include <stdio.h>
67 #include "EUSDebug.hh"
68 #include "NoOpCmd.h"
69 #include "Application.h"
70
71 void okCallback (void *);
72
73 NoOpCmd::NoOpCmd ( char *name, 
74                    char *label,
75                    int active ) : Cmd ( name, label, active )
76 {
77
78 }
79
80 void NoOpCmd::doit()
81 {
82     // Just print a message that allows us to trace the execution
83     
84     char *buf = new char[1024];
85     char *tmpName;
86
87     tmpName = (char *) name();
88     
89     sprintf(buf, "%s : Sorry, not implemented.", tmpName);
90
91     theInfoDialogManager->post(tmpName, buf, (void *) this,
92                                okCallback);
93
94 //    this->setQuestion(buf);
95 //
96 //    this->execute();
97
98     delete [] buf;
99
100 //    cout <<  name() << ":" << "doit\n" << flush;
101 }      
102
103 void NoOpCmd::undoit()
104 {
105     // Just print a message that allows us to trace the execution
106
107     DebugPrintf(1, "%s:\n", name());
108 }       
109
110
111 void okCallback( void *)
112 {
113     
114 }
115
116 #ifndef CAN_INLINE_VIRTUALS
117 LabelCmd::~LabelCmd(void)
118 {
119 }
120
121 void
122 LabelCmd::doit(void)
123 {
124     return;
125 }
126
127 void
128 LabelCmd::undoit(void)
129 {
130     return;
131 }
132
133 const char *const
134 LabelCmd::className(void)
135 {
136     return "LabelCmd";
137 }
138 #endif /* ! CAN_INLINE_VIRTUALS */