Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / DtSvc / DtUtil2 / DtPStrings.h
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  * File:         DtPStrings.h $XConsortium: DtPStrings.h /main/5 1995/12/14 11:02:36 barstow $
25  * Language:     C
26  */
27 #ifndef _DtPStrings_h
28 #define _DtPStrings_h
29
30 /* 
31  * DT applications should use this name to look up DT-global 
32  * resources instead of argv[0].
33  */
34 #define DtDT_PROG_NAME          "dt"    
35
36 /* 
37  * DT applications should use this class name to look up DT-global
38  * resources.
39  */
40 #define DtDT_PROG_CLASS         "Dt"
41
42 /* 
43  * The following string constants define the standard DT configuration
44  * directories. 
45  */
46 #define DtPERSONAL_CONFIG_DIRECTORY             ".dt"
47 #define DtSM_SESSION_DIRECTORY                  "sessions"
48 #define DtSM_SESSION_DISPLAY_DIRECTORY          "display"
49 #define DtCURRENT_DT_VERSION                    "3.0"
50
51 /* 
52  * If you change the following two #defines, you must also change the
53  * related one below (DtDB_DIRS_DEFAULT). 
54  */
55 #define DtPERSONAL_DB_DIRECTORY         ".dt/types"
56 #define DtPERSONAL_TMP_DIRECTORY        ".dt/tmp"
57
58 /*
59  * Names for the message log files
60  */
61 #define DtERRORLOG_FILE                 "errorlog"
62 #define DtOLD_ERRORLOG_FILE             "errorlog.old"
63 #define DtOLDER_ERRORLOG_FILE           "errorlog.older"
64
65 /* 
66  * Strings for default types and icons
67  */
68 #define DtDEFAULT_DATA_FT_NAME                          "DATA"
69
70 /*
71  * The following string constants define the resource name,
72  * resource class and default values for the action bitmaps.
73  */
74 #define DtACTION_ICON_RESOURCE_NAME                     "actionIcon"
75 #define DtACTION_ICON_RESOURCE_CLASS                    "ActionIcon"
76 #define DtACTION_ICON_DEFAULT                           "Dtactn"
77
78 /*
79  * The following string constants define the resource name,
80  * resource class and default values for the Dt tmp directory path.
81  */
82 #define DtACTION_DTTMPDIR_RESOURCE_NAME                 "dtTmpDir"
83 #define DtACTION_DTTMPDIR_RESOURCE_CLASS                "DtTmpDir"
84 #define DtACTION_DTTMPDIR_DEFAULT                       ".dt/tmp"
85
86 /* Do not add anything after this endif. */
87 #endif /* _DtPStrings_h */