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.36 by root, Tue Dec 4 14:50:44 2007 UTC vs.
Revision 1.50 by sf-exg, Fri Feb 11 01:24:46 2011 UTC

29# include <X11/Xft/Xft.h> 29# include <X11/Xft/Xft.h>
30#endif 30#endif
31 31
32#include "ev_cpp.h" 32#include "ev_cpp.h"
33 33
34#include "rxvtlib.h"
35#include "rxvtutil.h" 34#include "rxvtutil.h"
36 35
37#include "callback.h" 36#include "callback.h"
38 37
39// see rxvttoolkit.C:xa_names, which must be kept in sync 38// see rxvttoolkit.C:xa_names, which must be kept in sync
60#if ENABLE_EWMH 59#if ENABLE_EWMH
61 XA_NET_WM_PID, 60 XA_NET_WM_PID,
62 XA_NET_WM_NAME, 61 XA_NET_WM_NAME,
63 XA_NET_WM_ICON_NAME, 62 XA_NET_WM_ICON_NAME,
64 XA_NET_WM_PING, 63 XA_NET_WM_PING,
64 XA_NET_WM_ICON,
65#endif 65#endif
66#if USE_XIM 66#if USE_XIM
67 XA_WM_LOCALE_NAME, 67 XA_WM_LOCALE_NAME,
68 XA_XIM_SERVERS, 68 XA_XIM_SERVERS,
69#endif 69#endif
74#if ENABLE_XEMBED 74#if ENABLE_XEMBED
75 XA_XEMBED, 75 XA_XEMBED,
76 XA_XEMBED_INFO, 76 XA_XEMBED_INFO,
77#endif 77#endif
78#if !ENABLE_MINIMAL 78#if !ENABLE_MINIMAL
79 // these are usually allocated by other subsystens, but we do it 79 // these are usually allocated by other subsystems, but we do it
80 // here to avoid a server roundtrip. 80 // here to avoid a server roundtrip.
81 XA_SCREEN_RESOURCES, 81 XA_SCREEN_RESOURCES,
82 XA_XDCCC_LINEAR_RGB_CORRECTION, 82 XA_XDCCC_LINEAR_RGB_CORRECTION,
83 XA_XDCCC_LINEAR_RGB_MATRICES, 83 XA_XDCCC_LINEAR_RGB_MATRICES,
84 XA_WM_COLORMAP_WINDOWS, 84 XA_WM_COLORMAP_WINDOWS,
101 101
102struct im_watcher; 102struct im_watcher;
103struct xevent_watcher; 103struct xevent_watcher;
104 104
105template<class watcher> 105template<class watcher>
106struct event_vec : vector<watcher *> { 106struct event_vec : vector<watcher *>
107{
107 void erase_unordered (unsigned int pos) 108 void erase_unordered (unsigned int pos)
108 { 109 {
109 watcher *w = (*this)[this->size () - 1]; 110 watcher *w = (*this)[this->size () - 1];
110 this->pop_back (); 111 this->pop_back ();
111 112
113 if (((*this)[pos] = w)) // '=' is correct! 114 if (((*this)[pos] = w)) // '=' is correct!
114 w->active = pos + 1; 115 w->active = pos + 1;
115 } 116 }
116}; 117};
117 118
118struct rxvt_watcher { 119struct rxvt_watcher
120{
119 int active; /* 0 == inactive, else index into respective vector */ 121 int active; /* 0 == inactive, else index into respective vector */
120 122
121 bool is_active () { return active; } 123 bool is_active () { return active; }
122 124
123 rxvt_watcher () : active (0) { } 125 rxvt_watcher () : active (0) { }
124}; 126};
125 127
126struct refcounted { 128struct refcounted
129{
127 int referenced; 130 int referenced;
128 char *id; 131 char *id;
129 132
130 refcounted (const char *id); 133 refcounted (const char *id);
131 bool ref_init () { return false; } 134 bool ref_init () { return false; }
132 void ref_next () { } 135 void ref_next () { }
133 ~refcounted (); 136 ~refcounted ();
134}; 137};
135 138
136template<class T> 139template<class T>
137struct refcache : vector<T *> { 140struct refcache : vector<T *>
141{
138 T *get (const char *id); 142 T *get (const char *id);
139 void put (T *obj); 143 void put (T *obj);
140 void clear (); 144 void clear ();
141 145
142 ~refcache () 146 ~refcache ()
147 151
148///////////////////////////////////////////////////////////////////////////// 152/////////////////////////////////////////////////////////////////////////////
149 153
150struct rxvt_screen; 154struct rxvt_screen;
151 155
152struct rxvt_drawable { 156struct rxvt_drawable
157{
153 rxvt_screen *screen; 158 rxvt_screen *screen;
154 Drawable drawable; 159 Drawable drawable;
155 operator Drawable() { return drawable; } 160 operator Drawable() { return drawable; }
156 161
157#if XFT 162#if XFT
173}; 178};
174 179
175///////////////////////////////////////////////////////////////////////////// 180/////////////////////////////////////////////////////////////////////////////
176 181
177#ifdef USE_XIM 182#ifdef USE_XIM
178struct rxvt_xim : refcounted { 183struct rxvt_xim : refcounted
184{
179 void destroy (); 185 void destroy ();
180 rxvt_display *display; 186 rxvt_display *display;
181 187
182//public 188//public
183 XIM xim; 189 XIM xim;
186 bool ref_init (); 192 bool ref_init ();
187 ~rxvt_xim (); 193 ~rxvt_xim ();
188}; 194};
189#endif 195#endif
190 196
191struct rxvt_screen { 197struct rxvt_screen
198{
192 rxvt_display *display; 199 rxvt_display *display;
193 Display *dpy; 200 Display *dpy;
194 int depth; 201 int depth;
195 Visual *visual; 202 Visual *visual;
196 Colormap cmap; 203 Colormap cmap;
208 void set (rxvt_display *disp); 215 void set (rxvt_display *disp);
209 void select_visual (int bitdepth); 216 void select_visual (int bitdepth);
210 void clear (); 217 void clear ();
211}; 218};
212 219
213struct rxvt_display : refcounted { 220struct rxvt_display : refcounted
221{
214 event_vec<xevent_watcher> xw; 222 event_vec<xevent_watcher> xw;
215 223
224 ev::prepare flush_ev; void flush_cb (ev::prepare &w, int revents);
216 ev::io x_ev; void x_cb (ev::io &w, int revents); 225 ev::io x_ev ; void x_cb (ev::io &w, int revents);
217 226
218#ifdef USE_XIM 227#ifdef USE_XIM
219 refcache<rxvt_xim> xims; 228 refcache<rxvt_xim> xims;
220 vector<im_watcher *> imw; 229 vector<im_watcher *> imw;
221 230
226//public 235//public
227 Display *dpy; 236 Display *dpy;
228 int screen; 237 int screen;
229 Window root; 238 Window root;
230 rxvt_term *selection_owner; 239 rxvt_term *selection_owner;
240 rxvt_term *clipboard_owner;
231 Atom xa[NUM_XA]; 241 Atom xa[NUM_XA];
232 bool is_local; 242 bool is_local;
233#ifdef POINTER_BLANK 243#ifdef POINTER_BLANK
234 Cursor blank_cursor; 244 Cursor blank_cursor;
235#endif 245#endif
238 XrmDatabase get_resources (bool refresh); 248 XrmDatabase get_resources (bool refresh);
239 bool ref_init (); 249 bool ref_init ();
240 void ref_next (); 250 void ref_next ();
241 ~rxvt_display (); 251 ~rxvt_display ();
242 252
243 void flush (); 253 void flush ()
254 {
255 flush_ev.start ();
256 }
257
244 Atom atom (const char *name); 258 Atom atom (const char *name);
245 void set_selection_owner (rxvt_term *owner); 259 void set_selection_owner (rxvt_term *owner, bool clipboard);
246 260
247 void reg (xevent_watcher *w); 261 void reg (xevent_watcher *w);
248 void unreg (xevent_watcher *w); 262 void unreg (xevent_watcher *w);
249 263
250#ifdef USE_XIM 264#ifdef USE_XIM
255 void put_xim (rxvt_xim *xim); 269 void put_xim (rxvt_xim *xim);
256#endif 270#endif
257}; 271};
258 272
259#ifdef USE_XIM 273#ifdef USE_XIM
260struct im_watcher : rxvt_watcher, callback<void (void)> { 274struct im_watcher : rxvt_watcher, callback<void (void)>
275{
261 void start (rxvt_display *display) 276 void start (rxvt_display *display)
262 { 277 {
263 display->reg (this); 278 display->reg (this);
264 } 279 }
265 280
268 display->unreg (this); 283 display->unreg (this);
269 } 284 }
270}; 285};
271#endif 286#endif
272 287
273struct xevent_watcher : rxvt_watcher, callback<void (XEvent &)> { 288struct xevent_watcher : rxvt_watcher, callback<void (XEvent &)>
289{
274 Window window; 290 Window window;
275 291
276 void start (rxvt_display *display, Window window) 292 void start (rxvt_display *display, Window window)
277 { 293 {
278 this->window = window; 294 this->window = window;
289 305
290///////////////////////////////////////////////////////////////////////////// 306/////////////////////////////////////////////////////////////////////////////
291 307
292typedef unsigned long Pixel; 308typedef unsigned long Pixel;
293 309
294struct rgba { 310struct rgba
311{
295 unsigned short r, g, b, a; 312 unsigned short r, g, b, a;
296 313
297 enum { MIN_CC = 0x0000, MAX_CC = 0xffff }; 314 enum { MIN_CC = 0x0000, MAX_CC = 0xffff };
298 315
299 rgba () 316 rgba ()
302 rgba (unsigned short r, unsigned short g, unsigned short b, unsigned short a = MAX_CC) 319 rgba (unsigned short r, unsigned short g, unsigned short b, unsigned short a = MAX_CC)
303 : r(r), g(g), b(b), a(a) 320 : r(r), g(g), b(b), a(a)
304 { } 321 { }
305}; 322};
306 323
307struct rxvt_color { 324struct rxvt_color
325{
308#if XFT 326#if XFT
309 XftColor c; 327 XftColor c;
310#else 328#else
311 XColor c; 329 XColor c;
312#endif 330#endif
314 operator Pixel () const { return c.pixel; } 332 operator Pixel () const { return c.pixel; }
315 333
316 bool operator == (const rxvt_color &b) const { return Pixel (*this) == Pixel (b); } 334 bool operator == (const rxvt_color &b) const { return Pixel (*this) == Pixel (b); }
317 bool operator != (const rxvt_color &b) const { return Pixel (*this) != Pixel (b); } 335 bool operator != (const rxvt_color &b) const { return Pixel (*this) != Pixel (b); }
318 336
337 bool is_opaque () const
338 {
339#if XFT
340 return c.color.alpha == rgba::MAX_CC;
341#else
342 return 1;
343#endif
344 }
345
319 bool alloc (rxvt_screen *screen, const rgba &color); 346 bool alloc (rxvt_screen *screen, const rgba &color);
320 void free (rxvt_screen *screen); 347 void free (rxvt_screen *screen);
321 348
322 void get (rgba &color); 349 void get (rgba &color);
323 void get (XColor &color); 350 void get (XColor &color);
326 bool set (rxvt_screen *screen, const rgba &color); 353 bool set (rxvt_screen *screen, const rgba &color);
327 354
328 void fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to = rgba (0, 0, 0)); 355 void fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to = rgba (0, 0, 0));
329}; 356};
330 357
331#if TRACE_PIXMAPS 358#define Sel_normal 0x01 /* normal selection */
332Pixmap trace_XCreatePixmap (const char *file, int line, Display *dpy, Window r, unsigned int w, unsigned int h, unsigned int d); 359#define Sel_incr 0x02 /* incremental selection */
333void trace_XFreePixmap (const char *file, int line, Display *dpy, Pixmap p); 360#define Sel_Primary 0x01
361#define Sel_Secondary 0x02
362#define Sel_Clipboard 0x03
363#define Sel_whereMask 0x0f
364#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */
365#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */
334 366
335# define XCreatePixmap(dpy,r,w,h,d) trace_XCreatePixmap (__FILE__,__LINE__,dpy,r,w,h,d) 367typedef void (*sel_cb)(char *data, unsigned int len, struct rxvt_selection *rs, void *ptr);
336# define XFreePixmap(dpy,p) trace_XFreePixmap (__FILE__,__LINE__,dpy,p)
337#endif
338 368
339#endif 369struct rxvt_selection
370{
371 rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, sel_cb cb, void *ptr);
372 ~rxvt_selection ();
340 373
374private:
375 rxvt_display *display;
376 Time request_time;
377 Window request_win;
378 Atom request_prop;
379 sel_cb request_cb;
380 void *user_data;
381
382 unsigned char selection_wait;
383 unsigned char selection_type;
384
385 char *incr_buf;
386 size_t incr_buf_size, incr_buf_fill;
387
388 void timer_cb (ev::timer &w, int revents); ev::timer timer_ev;
389 void x_cb (XEvent &xev); xevent_watcher x_ev;
390
391 void stop ();
392 bool request (Atom target, int selnum);
393 void handle_selection (Window win, Atom prop, bool delete_prop);
394};
395
396#endif
397

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines