DtPStrings.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. * 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. * DT applications should use this name to look up DT-global
  31. * resources instead of argv[0].
  32. */
  33. #define DtDT_PROG_NAME "dt"
  34. /*
  35. * DT applications should use this class name to look up DT-global
  36. * resources.
  37. */
  38. #define DtDT_PROG_CLASS "Dt"
  39. /*
  40. * The following string constants define the standard DT configuration
  41. * directories.
  42. */
  43. #define DtPERSONAL_CONFIG_DIRECTORY ".dt"
  44. #define DtSM_SESSION_DIRECTORY "sessions"
  45. #define DtSM_SESSION_DISPLAY_DIRECTORY "display"
  46. #define DtCURRENT_DT_VERSION "3.0"
  47. /*
  48. * If you change the following two #defines, you must also change the
  49. * related one below (DtDB_DIRS_DEFAULT).
  50. */
  51. #define DtPERSONAL_DB_DIRECTORY ".dt/types"
  52. #define DtPERSONAL_TMP_DIRECTORY ".dt/tmp"
  53. /*
  54. * Names for the message log files
  55. */
  56. #define DtERRORLOG_FILE "errorlog"
  57. #define DtOLD_ERRORLOG_FILE "errorlog.old"
  58. #define DtOLDER_ERRORLOG_FILE "errorlog.older"
  59. /*
  60. * Strings for default types and icons
  61. */
  62. #define DtDEFAULT_DATA_FT_NAME "DATA"
  63. /*
  64. * The following string constants define the resource name,
  65. * resource class and default values for the action bitmaps.
  66. */
  67. #define DtACTION_ICON_RESOURCE_NAME "actionIcon"
  68. #define DtACTION_ICON_RESOURCE_CLASS "ActionIcon"
  69. #define DtACTION_ICON_DEFAULT "Dtactn"
  70. /*
  71. * The following string constants define the resource name,
  72. * resource class and default values for the Dt tmp directory path.
  73. */
  74. #define DtACTION_DTTMPDIR_RESOURCE_NAME "dtTmpDir"
  75. #define DtACTION_DTTMPDIR_RESOURCE_CLASS "DtTmpDir"
  76. #define DtACTION_DTTMPDIR_DEFAULT ".dt/tmp"
  77. /* Do not add anything after this endif. */
  78. #endif /* _DtPStrings_h */