ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtfont.h
(Generate patch)

Comparing rxvt-unicode/src/rxvtfont.h (file contents):
Revision 1.27 by root, Tue Mar 30 22:46:25 2010 UTC vs.
Revision 1.29 by root, Tue Mar 30 23:36:14 2010 UTC

66 66
67struct rxvt_fontset 67struct rxvt_fontset
68{ 68{
69 char *fontdesc; 69 char *fontdesc;
70 70
71 enum { fontCount = 127 }; // must be power-of-two - 1, also has to match RS_fontMask in rxvt.h 71 enum { fontCount = 3 }; // must be power-of-two - 1, also has to match RS_fontMask in rxvt.h
72 enum { Careful = fontCount + 1 };
72 73
73 rxvt_fontset (rxvt_term *term); 74 rxvt_fontset (rxvt_term *term);
74 ~rxvt_fontset (); 75 ~rxvt_fontset ();
75 76
76 bool populate (const char *desc); 77 bool populate (const char *desc);
78 int find_font (uint32_t unicode); 79 int find_font (uint32_t unicode);
79 int find_font (const char *name) const; 80 int find_font (const char *name) const;
80 bool realize_font (int i); 81 bool realize_font (int i);
81 82
82 // font-id's MUST fit into a signed 16 bit integer, and within 0..255 83 // font-id's MUST fit into a signed 16 bit integer, and within 0..255
83 rxvt_font *operator [] (int id) const 84 rxvt_font *get (uint32_t unicode, int id = fontCount)
84 { 85 {
85 return fonts[id & fontCount]; 86 bool dummy;
87
88 id &= fontCount;
89
90 return fonts[id == fontCount ? find_font_idx (unicode, dummy) : id];
86 } 91 }
87 92
88private: 93private:
89 rxvt_term *term; 94 rxvt_term *term;
90 rxvt_fontprop prop; 95 rxvt_fontprop prop;
96 vector<pagemap *> fmap; 101 vector<pagemap *> fmap;
97 102
98 void clear (); 103 void clear ();
99 rxvt_font *new_font (const char *name, codeset cs); 104 rxvt_font *new_font (const char *name, codeset cs);
100 void add_fonts (const char *desc); 105 void add_fonts (const char *desc);
106 int find_font_idx (uint32_t unicode, bool &careful); // same as find_font, but does not limit index
101}; 107};
102 108
103#endif /* _DEFAULTFONT_H_ */ 109#endif /* _DEFAULTFONT_H_ */
104 110

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines