pathnames.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright (C) 2003 Mooffie <mooffie@typo.co.il>
  2. //
  3. // This program is free software; you can redistribute it and/or modify
  4. // it under the terms of the GNU General Public License as published by
  5. // the Free Software Foundation; either version 2 of the License, or
  6. // (at your option) any later version.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
  16. #ifndef BDE_PATHNAMES_H
  17. #define BDE_PATHNAMES_H
  18. #define USER_RC_FILE "~/.%P/%Prc"
  19. #define USER_TRANSTBL_FILE "~/.%P/transtab"
  20. #define USER_REPRTBL_FILE "~/.%P/reprtab"
  21. #define USER_ALTKBDTBL_FILE "~/.%P/kbdtab"
  22. #define USER_MANUAL_FILE "~/.%P/MANUAL.he"
  23. #define USER_UNICODE_DATA_FILE "~/.%P/UnicodeData.txt"
  24. #define USER_THEMES_DIR "~/.%P/themes/"
  25. #define SYSTEM_RC_FILE PKGDATADIR "/%Prc"
  26. #define SYSTEM_TRANSTBL_FILE PKGDATADIR "/transtab"
  27. #define SYSTEM_REPRTBL_FILE PKGDATADIR "/reprtab"
  28. #define SYSTEM_ALTKBDTBL_FILE PKGDATADIR "/kbdtab"
  29. #define SYSTEM_MANUAL_FILE "/usr/share/doc/geresh/MANUAL.he"
  30. #define SYSTEM_UNICODE_DATA_FILE PKGDATADIR "/UnicodeData.txt"
  31. #define SYSTEM_THEMES_DIR PKGDATADIR "/themes/"
  32. #endif