Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / programs / dtmail / MotifApp / WarnNoUndoCmd.C
1 /* $XConsortium: WarnNoUndoCmd.C /main/4 1995/12/07 15:28:22 rswiston $ */
2 /*
3  *+SNOTICE
4  *
5  *      RESTRICTED CONFIDENTIAL INFORMATION:
6  *      
7  *      The information in this document is subject to special
8  *      restrictions in a confidential disclosure agreement bertween
9  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
10  *      document outside HP, IBM, Sun, USL, SCO, or Univel wihtout
11  *      Sun's specific written approval.  This documment and all copies
12  *      and derivative works thereof must be returned or destroyed at
13  *      Sun's request.
14  *
15  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
16  *
17  *+ENOTICE
18  */
19 ///////////////////////////////////////////////////////////////////////////////
20 //////////////////////////////////////////////////////////////////////////////
21 //         This example code is from the book:
22 //
23 //           Object-Oriented Programming with C++ and OSF/Motif
24 //         by
25 //           Douglas Young
26 //           Prentice Hall, 1992
27 //           ISBN 0-13-630252-1 
28 //
29 //         Copyright 1991 by Prentice Hall
30 //         All Rights Reserved
31 //
32 //  Permission to use, copy, modify, and distribute this software for 
33 //  any purpose except publication and without fee is hereby granted, provided 
34 //  that the above copyright notice appear in all copies of the software.
35 ///////////////////////////////////////////////////////////////////////////////
36 //////////////////////////////////////////////////////////////////////////////
37
38
39 //////////////////////////////////////////////////////////
40 // WarnNoUndoCmd.C: Warns user before executing a command
41 //////////////////////////////////////////////////////////
42 #include "WarnNoUndoCmd.h"
43
44 #include <nl_types.h>
45 extern nl_catd catd;
46
47 #include "NLS.hh"
48
49 WarnNoUndoCmd::WarnNoUndoCmd ( char *name, char *label, int active) : 
50                      AskFirstCmd ( name, label, active )
51 {
52     _hasUndo = 0;     // Specify that there is no undo
53     
54     setQuestion ( GETMSG(catd, 1, 10,
55            "This command cannot be undone. Proceed anyway?") );
56 }
57
58 void WarnNoUndoCmd::undoit()
59 {
60     // Empty
61