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 / FontTable.C < prev    next >
C/C++ Source or Header  |  1998-11-23  |  3KB  |  110 lines

  1. // $Id: FontTable.C,v 1.10 1998/11/23 17:43:25 zeller Exp $
  2. // Font tables
  3.  
  4. // Copyright (C) 1995 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. char FontTable_rcsid[] = 
  30.     "$Id: FontTable.C,v 1.10 1998/11/23 17:43:25 zeller Exp $";
  31.  
  32. #ifdef __GNUG__
  33. #pragma implementation
  34. #endif
  35.  
  36.  
  37. #include "assert.h"
  38. #include "hash.h"
  39. #include "strclass.h"
  40.  
  41. #include <iostream.h>
  42. #include <X11/Xlib.h>
  43. #include <X11/Intrinsic.h>
  44.  
  45. #include "FontTable.h"
  46.  
  47. DEFINE_TYPE_INFO_0(FontTable)
  48.  
  49. // FontTable
  50.  
  51. // Return hash code
  52. inline unsigned hash(const char *name)
  53. {
  54.     return hashpjw(name) % MAX_FONTS;
  55. }
  56.  
  57. // Return XFontStruct for given font name NAME
  58. XFontStruct *FontTable::operator[](string& name)
  59. {
  60.     int i = hash(name);
  61.     while (table[i].font != 0 && name != table[i].name)
  62.     {
  63.     assert (i < MAX_FONTS);   // Too many fonts
  64.     i = (i >= MAX_FONTS) ? 0 : i + 1;
  65.     }
  66.  
  67.     if (table[i].font == 0 && name != table[i].name)
  68.     {
  69.     // Insert new font
  70.     table[i].name = name;
  71.     table[i].font = XLoadQueryFont(_display, name);
  72.  
  73.     if (table[i].font == 0)
  74.     {
  75.         cerr << "Warning: Could not load font \"" << name << "\"";
  76.  
  77.         // Try default font
  78.         GC default_gc = 
  79.         DefaultGCOfScreen(DefaultScreenOfDisplay(_display));
  80.         XGCValues gc_values;
  81.         if (XGetGCValues(_display, default_gc, GCFont, &gc_values))
  82.         {
  83.         const Font& font_id = gc_values.font;
  84.         XFontStruct *font = XQueryFont(_display, font_id);
  85.         if (font != 0)
  86.         {
  87.             cerr << ", using default font instead\n";
  88.             table[i].font = font;
  89.         }
  90.         }
  91.     }
  92.  
  93.     if (table[i].font == 0)
  94.     {
  95.         // Try "fixed" font
  96.         XFontStruct *font = XLoadQueryFont(_display, "fixed");
  97.         if (font != 0)
  98.         {
  99.         cerr << ", using font \"fixed\" instead\n";
  100.         table[i].font = font;
  101.         }
  102.     }
  103.  
  104.     if (table[i].font == 0)
  105.         cerr << "\n";
  106.     }
  107.  
  108.     return table[i].font;
  109. }
  110.