ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtfont.h
Revision: 1.37
Committed: Sat May 22 23:55:56 2010 UTC (14 years ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.36: +6 -2 lines
Log Message:
cleanup

File Contents

# Content
1 #ifndef DEFAULTFONT_H_
2 #define DEFAULTFONT_H_
3
4 #include <X11/Xlib.h>
5 #if XFT
6 # include <X11/Xft/Xft.h>
7 #endif
8
9 #include <inttypes.h>
10
11 #include "feature.h"
12 #include "encoding.h"
13 #include "rxvtutil.h"
14 #include "rxvttoolkit.h"
15
16 struct rxvt_term;
17
18 struct rxvt_fontprop
19 {
20 enum {
21 unset = -1,
22 medium = 100, bold = 200,
23 roman = 0, italic = 100,
24 };
25 int width, height, ascent;
26 int weight, slant;
27 };
28
29 struct rxvt_font
30 {
31 // managed by the fontset
32 rxvt_term *term;
33 void set_term (rxvt_term *term) { this->term = term; }
34
35 char *name;
36 codeset cs;
37 bool loaded; // whether we tried loading it before (not whether it's loaded)
38
39 // managed by the font object
40 int ascent, descent,
41 width, height;
42
43 void set_name (char *name_);
44
45 rxvt_font ();
46 virtual ~rxvt_font () { free (name); };
47
48 virtual void clear () { };
49
50 void clear_rect (rxvt_drawable &d, int x, int y, int w, int h, int color) const;
51
52 virtual rxvt_fontprop properties () = 0;
53
54 virtual bool load (const rxvt_fontprop &morph, bool force_prop) = 0;
55 virtual bool has_char (uint32_t unicode, const rxvt_fontprop *prop, bool &careful) const = 0;
56
57 virtual void draw (rxvt_drawable &d,
58 int x, int y,
59 const text_t *text, int len,
60 int fg, int bg) = 0;
61
62 void unref ()
63 {
64 clear ();
65 delete this;
66 }
67 };
68
69 struct rxvt_fallback_font;
70
71 struct rxvt_fontset
72 {
73 char *fontdesc;
74
75 enum { fontCount = 7 }; // must be power-of-two - 1, also has to match RS_fontMask in rxvt.h
76 enum { firstFont = 2 }; // index of first font in set
77
78 rxvt_fontset (rxvt_term *term);
79 ~rxvt_fontset ();
80
81 bool populate (const char *desc);
82 void set_prop (const rxvt_fontprop &prop, bool force_prop) { this->prop = prop; this->force_prop = force_prop; }
83 int find_font_idx (uint32_t unicode);
84 int find_font (const char *name) const;
85 bool realize_font (int i);
86
87 rxvt_font *operator [] (int id) const
88 {
89 return fonts[id >> 1];
90 }
91
92 int
93 find_font (unicode_t unicode)
94 {
95 return min<int> ((fontCount << 1) | 1, find_font_idx (unicode));
96 }
97
98 private:
99 rxvt_term *term;
100 rxvt_fontprop prop;
101 bool force_prop;
102 simplevec<rxvt_font *> fonts;
103 const rxvt_fallback_font *fallback;
104
105 typedef unsigned char pagemap[256];
106 vector<pagemap *> fmap;
107
108 void clear ();
109 rxvt_font *new_font (const char *name, codeset cs);
110 void prepare_font (rxvt_font *font, codeset cs);
111 void add_fonts (const char *desc);
112 void push_font (rxvt_font *font);
113 };
114
115 #endif /* _DEFAULTFONT_H_ */
116