home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / charsets.h < prev    next >
C/C++ Source or Header  |  1998-05-06  |  3KB  |  106 lines

  1. // $Id: charsets.h,v 1.8 1998/05/06 18:41:16 zeller Exp $ -*- C++ -*-
  2. // Character sets used in DDD
  3.  
  4. // Copyright (C) 1997 Technische Universitaet Braunschweig, Germany.
  5. // Written by Andreas Zeller <zeller@ips.cs.tu-bs.de>.
  6. // 
  7. // This file is part of DDD.
  8. // 
  9. // DDD is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. // 
  14. // DDD is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. // See the GNU General Public License for more details.
  18. // 
  19. // You should have received a copy of the GNU General Public
  20. // License along with DDD -- see the file COPYING.
  21. // If not, write to the Free Software Foundation, Inc.,
  22. // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23. // 
  24. // DDD is the data display debugger.
  25. // For details, see the DDD World-Wide-Web page, 
  26. // `http://www.cs.tu-bs.de/softech/ddd/',
  27. // or send a mail to the DDD developers <ddd@ips.cs.tu-bs.de>.
  28.  
  29. #ifndef _DDD_charsets_h
  30. #define _DDD_charsets_h
  31.  
  32. #ifdef __GNUG__
  33. #pragma interface
  34. #endif
  35.  
  36. #include "MString.h"
  37.  
  38. // Character sets
  39.  
  40. // The default charset (for button labels, etc.)
  41. #define CHARSET_DEFAULT  MSTRING_DEFAULT_CHARSET
  42.  
  43. // The fixed-width font used in texts.
  44. #define CHARSET_TT "tt"
  45.  
  46. // The bold variant of TT.
  47. #define CHARSET_TB "tb"
  48.  
  49. // The slanted variant of TT.
  50. #define CHARSET_TS "ts"
  51.  
  52. // The bold slanted variant of TT.
  53. #define CHARSET_TBS "tbs"
  54.  
  55. // Roman text.
  56. #define CHARSET_RM "rm"
  57.  
  58. // Slanted text
  59. #define CHARSET_SL "sl"
  60.  
  61. // Bold face text
  62. #define CHARSET_BF "bf"
  63.  
  64. // Bold slanted text
  65. #define CHARSET_BS "bs"
  66.  
  67. // Key caps
  68. #define CHARSET_KEY "key"
  69.  
  70. // The fixed-width font used in text fields
  71. #define CHARSET_TEXT "text"
  72.  
  73. // Logo
  74. #define CHARSET_LOGO "logo"
  75.  
  76. // Large logo
  77. #define CHARSET_LLOGO "llogo"
  78.  
  79. // Symbol
  80. #define CHARSET_SYMBOL "symbol"
  81.  
  82. // Small font (for `<<' and `>>')
  83. #define CHARSET_SMALL "small"
  84.  
  85. // Light font (for the command tool buttons)
  86. #define CHARSET_LIGHT "light"
  87.  
  88.  
  89. // Convenience functions
  90. inline MString tt(const string& text) { return MString(text, CHARSET_TT); }
  91. inline MString tb(const string& text) { return MString(text, CHARSET_TB); }
  92. inline MString rm(const string& text) { return MString(text, CHARSET_RM); }
  93. inline MString sl(const string& text) { return MString(text, CHARSET_SL); }
  94. inline MString bf(const string& text) { return MString(text, CHARSET_BF); }
  95. inline MString bs(const string& text) { return MString(text, CHARSET_BS); }
  96.  
  97. // Newline function
  98. #if XmVERSION == 1 && XmREVISION <= 1
  99. inline MString cr() { return rm("\n"); }
  100. #else
  101. inline MString cr() { return MString(XmStringSeparatorCreate(), true); }
  102. #endif
  103.  
  104. #endif // _DDD_charsets_h
  105. // DON'T ADD ANYTHING BEHIND THIS #endif
  106.