Fix warnings on FreeBSD
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / Agents / BookmarkEditMotif.hh
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 libraries 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: BookmarkEditMotif.hh /main/4 1996/07/10 09:34:51 rcs $
25  *
26  * Copyright (c) 1992 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 #include <WWL/wwl.h>
45 #include "UAS.hh"
46
47 class WTopLevelShell;
48 class WXmTextField;
49 class WXmText;
50 #include <WWL/WXmPushButtonGadget.h>
51 class Mark;
52 struct MarkMoved;
53
54 class BookmarkEdit : public Dialog, public UAS_Receiver<MarkMoved>
55 {
56 public:
57   BookmarkEdit (UAS_Pointer<Mark> &mark)
58     : f_mark_ptr (mark),
59       f_shell (NULL),
60       f_name_text(NULL),
61       f_notes_text(NULL),
62       f_modified (FALSE),
63       f_wm_delete_callback(NULL)
64     {
65       MarkMgr::request ((UAS_Receiver<MarkMoved> *) this);
66     }
67   ~BookmarkEdit();
68
69   void display();
70   UAS_Pointer<Mark> &mark_ptr()
71     { return (f_mark_ptr); }
72
73   static int modified_count()
74     { return g_modified_count; }
75
76 protected: // functions
77   void create_ui();
78
79   void ok();
80   void view();
81   void cancel();
82   void modified (WCallback *wcb);
83   void changed (WCallback *wcb);
84
85   void receive (MarkMoved &message, void *client_data);
86
87 protected: // variables
88   UAS_Pointer<Mark>   f_mark_ptr;
89
90   WTopLevelShell *f_shell;
91   WXmTextField   *f_name_text;
92   WXmText        *f_notes_text;
93   WXmPushButtonGadget   f_ok;
94   bool            f_modified;
95   WCallback      *f_wm_delete_callback;
96 #ifndef hpux
97   static List     g_editor_list;
98 #endif
99
100   static int      g_modified_count;
101 };