Fix typo in license headers
[oweals/cde.git] / cde / programs / dtmail / include / DtMail / TextFieldUiItem.hh
1 /* $TOG: TextFieldUiItem.hh /main/6 1997/11/07 15:45:26 mgreess $ */
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 #include <stdlib.h>
21 #include <X11/Intrinsic.h>
22
23 #ifndef _TEXTFIELDUIITEM_HH
24 #define _TEXTFIELDUIITEM_HH
25
26 // derived class for prop sheet glue items for textfield
27 ///////////////////////////////////////////////////////////
28 class TextFieldUiItem : public PropUiItem
29 {
30 public:
31   TextFieldUiItem(
32                 Widget w,
33                 int source,
34                 char *search_key,
35                 PropUiCallback validator = NULL,
36                 void * validator_data = NULL);
37   virtual ~TextFieldUiItem() {;}; // we don't alloc any memory
38
39   virtual void  writeFromUiToSource();
40   virtual void  writeFromSourceToUi();
41 };
42 #endif