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

Comparing rxvt-unicode/src/rxvttoolkit.h (file contents):
Revision 1.1 by root, Sun Aug 15 00:37:04 2004 UTC vs.
Revision 1.13 by root, Sun Jan 29 20:51:28 2006 UTC

15#include "rxvtlib.h" 15#include "rxvtlib.h"
16#include "rxvtutil.h" 16#include "rxvtutil.h"
17 17
18#include "callback.h" 18#include "callback.h"
19 19
20// see rxvttoolkit.C:xa_names, which must be kept in sync
21enum {
22 XA_TEXT,
23 XA_COMPOUND_TEXT,
24 XA_UTF8_STRING,
25 XA_MULTIPLE,
26 XA_TARGETS,
27 XA_TIMESTAMP,
28 XA_VT_SELECTION,
29 XA_INCR,
30 XA_WM_PROTOCOLS,
31 XA_WM_DELETE_WINDOW,
32 XA_CLIPBOARD,
33#if ENABLE_FRILLS
34 XA_MOTIF_WM_HINTS,
35#endif
36#if ENABLE_EWMH
37 XA_NET_WM_PID,
38 XA_NET_WM_NAME,
39 XA_NET_WM_ICON_NAME,
40 XA_NET_WM_PING,
41#endif
42#if USE_XIM
43 XA_WM_LOCALE_NAME,
44 XA_XIM_SERVERS,
45#endif
46#if TRANSPARENT
47 XA_XROOTPMAP_ID,
48 XA_ESETROOT_PMAP_ID,
49#endif
50#if ENABLE_XEMBED
51 XA_XEMBED,
52 XA_XEMBED_INFO,
53#endif
54 NUM_XA
55};
56
20struct rxvt_term; 57struct rxvt_term;
58struct rxvt_display;
21 59
22struct im_watcher; 60struct im_watcher;
23struct xevent_watcher; 61struct xevent_watcher;
24 62
25struct refcounted { 63struct refcounted {
26 int referenced; 64 int referenced;
27 char *id; 65 char *id;
28 66
29 refcounted (const char *id); 67 refcounted (const char *id);
30 bool init () { return false; } 68 bool ref_init () { return false; }
69 void ref_next () { }
31 ~refcounted (); 70 ~refcounted ();
32}; 71};
33 72
34template<class T> 73template<class T>
35struct refcache : vector<T *> { 74struct refcache : vector<T *> {
36 T *get (const char *id); 75 T *get (const char *id);
37 void put (T *obj); 76 void put (T *obj);
77 void clear ();
78
38 ~refcache (); 79 ~refcache ()
80 {
81 clear ();
82 }
39}; 83};
40 84
41///////////////////////////////////////////////////////////////////////////// 85/////////////////////////////////////////////////////////////////////////////
42 86
43#ifdef USE_XIM 87#ifdef USE_XIM
47 91
48//public 92//public
49 XIM xim; 93 XIM xim;
50 94
51 rxvt_xim (const char *id) : refcounted (id) { } 95 rxvt_xim (const char *id) : refcounted (id) { }
52 bool init (); 96 bool ref_init ();
53 ~rxvt_xim (); 97 ~rxvt_xim ();
54}; 98};
55#endif 99#endif
56 100
101struct rxvt_screen {
102 rxvt_display *display;
103 Display *xdisp;
104 int depth;
105 Visual *visual;
106 Colormap cmap;
107
108 void set (rxvt_display *disp);
109 void set (rxvt_display *disp, int bitdepth);
110 void clear ();
111};
112
57struct rxvt_display : refcounted { 113struct rxvt_display : refcounted {
58 Atom xa_xim_servers;
59
60 io_manager_vec<xevent_watcher> xw; 114 io_manager_vec<xevent_watcher> xw;
61 115
62 io_watcher x_ev; void x_cb (io_watcher &w, short revents); 116 io_watcher x_ev; void x_cb (io_watcher &w, short revents);
63 117
64#ifdef USE_XIM 118#ifdef USE_XIM
65 refcache<rxvt_xim> xims; 119 refcache<rxvt_xim> xims;
66 vector<im_watcher *> imw; 120 vector<im_watcher *> imw;
67 121
68 void im_change_cb (); 122 void im_change_cb ();
123 void im_change_check ();
69#endif 124#endif
70 125
71//public 126//public
72 Display *display; 127 Display *display;
73 int depth;
74 int screen; 128 int screen;
75 Visual *visual;
76 Colormap cmap;
77 Window root; 129 Window root;
78 rxvt_term *selection_owner; 130 rxvt_term *selection_owner;
131 Atom xa[NUM_XA];
79#ifndef NO_SLOW_LINK_SUPPORT 132#ifndef NO_SLOW_LINK_SUPPORT
80 bool is_local; 133 bool is_local;
134#endif
135#ifdef POINTER_BLANK
136 Cursor blank_cursor;
81#endif 137#endif
82 138
83 rxvt_display (const char *id); 139 rxvt_display (const char *id);
140 XrmDatabase get_resources ();
84 bool init (); 141 bool ref_init ();
142 void ref_next ();
85 ~rxvt_display (); 143 ~rxvt_display ();
86 144
87 void flush (); 145 void flush ();
88 146 Atom atom (const char *name);
89 void set_selection_owner (rxvt_term *owner); 147 void set_selection_owner (rxvt_term *owner);
90 148
91 void reg (xevent_watcher *w); 149 void reg (xevent_watcher *w);
92 void unreg (xevent_watcher *w); 150 void unreg (xevent_watcher *w);
93 151
96 void unreg (im_watcher *w); 154 void unreg (im_watcher *w);
97 155
98 rxvt_xim *get_xim (const char *locale, const char *modifiers); 156 rxvt_xim *get_xim (const char *locale, const char *modifiers);
99 void put_xim (rxvt_xim *xim); 157 void put_xim (rxvt_xim *xim);
100#endif 158#endif
101
102 Atom atom (const char *name);
103}; 159};
104 160
105#ifdef USE_XIM 161#ifdef USE_XIM
106struct im_watcher : watcher, callback0<void> { 162struct im_watcher : watcher, callback0<void> {
107 template<class O1, class O2> 163 template<class O1, class O2>
142extern refcache<rxvt_display> displays; 198extern refcache<rxvt_display> displays;
143 199
144///////////////////////////////////////////////////////////////////////////// 200/////////////////////////////////////////////////////////////////////////////
145 201
146typedef unsigned long Pixel; 202typedef unsigned long Pixel;
203
204struct rxvt_rgba {
205 unsigned short r, g, b, a;
206
207 enum { MIN_CC = 0x0000, MAX_CC = 0xffff };
208
209 rxvt_rgba ()
210 { }
211
212 rxvt_rgba (unsigned short r, unsigned short g, unsigned short b, unsigned short a = MAX_CC)
213 : r(r), g(g), b(b), a(a)
214 { }
215};
147 216
148struct rxvt_color { 217struct rxvt_color {
149#if XFT 218#if XFT
150 XftColor c; 219 XftColor c;
151 operator Pixel () const { return c.pixel; } 220 operator Pixel () const { return c.pixel; }
155#endif 224#endif
156 225
157 bool operator == (const rxvt_color &b) const { return Pixel (*this) == Pixel (b); } 226 bool operator == (const rxvt_color &b) const { return Pixel (*this) == Pixel (b); }
158 bool operator != (const rxvt_color &b) const { return Pixel (*this) != Pixel (b); } 227 bool operator != (const rxvt_color &b) const { return Pixel (*this) != Pixel (b); }
159 228
160 void get (rxvt_display *display, unsigned short &cr, unsigned short &cg, unsigned short &cb); 229 void get (rxvt_screen *screen, rxvt_rgba &rgba);
161 230
162 bool set (rxvt_display *display, Pixel p);
163 bool set (rxvt_display *display, const char *name); 231 bool set (rxvt_screen *screen, const char *name);
164 bool set (rxvt_display *display, unsigned short cr, unsigned short cg, unsigned short cb); 232 bool set (rxvt_screen *screen, rxvt_rgba rgba);
165 233
166 rxvt_color fade (rxvt_display *, int percent); 234 rxvt_color fade (rxvt_screen *screen, int percent); // fades to black
235 rxvt_color fade (rxvt_screen *screen, int percent, rxvt_color &fadeto);
167 236
168 void free (rxvt_display *display); 237 void free (rxvt_screen *screen);
169}; 238};
170 239
171#endif 240#endif
172 241

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines