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

Comparing rxvt-unicode/src/defaultfont.h (file contents):
Revision 1.8 by pcg, Wed Dec 24 09:07:01 2003 UTC vs.
Revision 1.18 by pcg, Fri Apr 2 00:51:09 2004 UTC

1/* 1#ifndef DEFAULTFONT_H_
2 * $Id: defaultfont.h,v 1.8 2003/12/24 09:07:01 pcg Exp $ 2#define DEFAULTFONT_H_
3 */
4 3
5#ifndef _DEFAULTFONT_H_ 4#include <X11/Xlib.h>
6#define _DEFAULTFONT_H_ 5#if XFT
6# include <X11/Xft/Xft.h>
7#endif
7 8
8#ifdef HAVE_XSETLOCALE 9#ifdef HAVE_XSETLOCALE
9# define X_LOCALE 10# define X_LOCALE
10# include <X11/Xlocale.h> 11# include <X11/Xlocale.h>
11#else 12#else
12# ifdef HAVE_SETLOCALE 13# ifdef HAVE_SETLOCALE
13# include <locale.h> 14# include <clocale>
14# endif 15# endif
15#endif /* HAVE_XLOCALE */ 16#endif /* HAVE_XLOCALE */
16 17
17#ifdef HAVE_NL_LANGINFO 18#ifdef HAVE_NL_LANGINFO
18# include <langinfo.h> 19# include <langinfo.h>
19#endif 20#endif
20 21
21#include "rxvtlib.h" 22#include "rxvtlib.h"
22#include "feature.h" 23#include "feature.h"
23#include "encoding.h" 24#include "encoding.h"
24#include "rxvtvec.h" 25#include "rxvtstl.h"
25 26
26struct rxvt_fontprop { 27struct rxvt_fontprop {
27 enum { 28 enum {
28 medium = 100, bold = 200, 29 medium = 100, bold = 200,
29 roman = 0, italic = 100, 30 roman = 0, italic = 100,
30 }; 31 };
31 int width, height; 32 int width, height;
32 int weight, slant; 33 int weight, slant;
33}; 34};
34 35
36struct rxvt_drawable {
37 rxvt_display *display;
38 Drawable drawable;
39#if XFT
40 XftDraw *xftdrawable;
41 operator XftDraw *();
42#endif
43
44 rxvt_drawable (rxvt_display *display, Drawable drawable)
45 : display(display),
46#if XFT
47 xftdrawable(0),
48#endif
49 drawable(drawable)
50 { }
51
52#if XFT
53 ~rxvt_drawable ();
54#endif
55
56 operator Drawable() { return drawable; }
57};
58
35struct rxvt_font { 59struct rxvt_font {
60 struct rxvt_fontset *fs;
36 // managed by the fontset 61 // managed by the fontset
37 rxvt_t r; 62 rxvt_t r;
38 void set_term (rxvt_t r) { this->r = r; } 63 void set_term (rxvt_t r) { this->r = r; }
39 64
40 char *name; 65 char *name;
51 if (this->name) free (this->name); // let the compiler optimize 76 if (this->name) free (this->name); // let the compiler optimize
52 this->name = name; 77 this->name = name;
53 } 78 }
54 79
55 rxvt_font () { name = 0; } 80 rxvt_font () { name = 0; }
56 ~rxvt_font () { free (name); clear (); }; 81 ~rxvt_font () { free (name); };
57 82
58 void clear_rect (int x, int y, int w, int h, int color); 83 void clear_rect (rxvt_drawable &d, int x, int y, int w, int h, int color);
59 84
60 virtual void clear () { }; 85 virtual void clear () { };
61 86
62 virtual rxvt_fontprop properties () = 0; 87 virtual rxvt_fontprop properties () = 0;
63 88
64 virtual bool load (const rxvt_fontprop &prop) = 0; 89 virtual bool load (const rxvt_fontprop &prop) = 0;
65 virtual bool has_codepoint (uint32_t unicode) = 0; 90 virtual bool has_codepoint (uint32_t unicode) = 0;
66 91
67 virtual void draw (int x, int y, 92 virtual void draw (rxvt_drawable &d,
93 int x, int y,
68 const text_t *text, int len, 94 const text_t *text, int len,
69 int fg, int bg) = 0; 95 int fg, int bg) = 0;
70}; 96};
71 97
72//#define FONT_REF(obj) (obj)->refcnt++ 98#define FONT_UNREF(f) do { (f)->clear (); delete (f); } while (0)
73//#define FONT_UNREF(obj) if (!--(obj)->refcnt) delete (obj)
74#define FONT_UNREF(f) delete f
75 99
76struct rxvt_fallback_font; 100struct rxvt_fallback_font;
77 101
78struct rxvt_fontset { 102struct rxvt_fontset {
103 char *fontdesc;
104
79 rxvt_fontset (rxvt_t r); 105 rxvt_fontset (rxvt_t r);
80 ~rxvt_fontset (); 106 ~rxvt_fontset ();
81 107
82 rxvt_font *new_font (const char *name, codeset cs); 108 rxvt_font *new_font (const char *name, codeset cs);
83 109
84 void populate (const char *desc); 110 bool populate (const char *desc);
85 int find_font (uint32_t unicode); 111 int find_font (uint32_t unicode);
86 112
87 rxvt_font *operator [](int id) const 113 rxvt_font *operator [] (int id) const
88 { 114 {
89 return fonts[id]; 115 return fonts[id];
90 } 116 }
91 117
92 rxvt_font *base_font () const 118 rxvt_font *base_font () const

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines