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.54 by root, Mon Feb 21 07:12:03 2011 UTC vs.
Revision 1.59 by sf-exg, Sun Jun 3 15:50:22 2012 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvttoolkit.h - provide toolkit-functionality for rxvt. 2 * File: rxvttoolkit.h - provide toolkit-functionality for rxvt.
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2003-2011 Marc Lehmann <schmorp@schmorp.de>
7 * Copyright (c) 2011 Emanuele Giaquinta <e.giaquinta@glauco.it> 7 * Copyright (c) 2011 Emanuele Giaquinta <e.giaquinta@glauco.it>
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by 10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation; either version 2 of the License, or
216 void set (rxvt_display *disp); 216 void set (rxvt_display *disp);
217 void select_visual (int bitdepth); 217 void select_visual (int bitdepth);
218 void clear (); 218 void clear ();
219}; 219};
220 220
221enum {
222 DISPLAY_HAS_RENDER = 1 << 0,
223 DISPLAY_HAS_RENDER_MUL = 1 << 1,
224 DISPLAY_HAS_RENDER_CONV = 1 << 2,
225};
226
221struct rxvt_display : refcounted 227struct rxvt_display : refcounted
222{ 228{
223 event_vec<xevent_watcher> xw; 229 event_vec<xevent_watcher> xw;
224 230
225 ev::prepare flush_ev; void flush_cb (ev::prepare &w, int revents); 231 ev::prepare flush_ev; void flush_cb (ev::prepare &w, int revents);
242 Atom xa[NUM_XA]; 248 Atom xa[NUM_XA];
243 bool is_local; 249 bool is_local;
244#ifdef POINTER_BLANK 250#ifdef POINTER_BLANK
245 Cursor blank_cursor; 251 Cursor blank_cursor;
246#endif 252#endif
253 uint8_t flags;
247 254
248 rxvt_display (const char *id); 255 rxvt_display (const char *id);
249 XrmDatabase get_resources (bool refresh); 256 XrmDatabase get_resources (bool refresh);
250 bool ref_init (); 257 bool ref_init ();
251 void ref_next (); 258 void ref_next ();
365#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */ 372#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */
366#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */ 373#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */
367 374
368struct rxvt_selection 375struct rxvt_selection
369{ 376{
370 rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, rxvt_term *term, void *cb_sv = 0); 377 rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, rxvt_term *term);
371 void run (); 378 void run ();
372 ~rxvt_selection (); 379 ~rxvt_selection ();
373 380
374 rxvt_term *term; // terminal to paste to, may be 0 381 rxvt_term *term; // terminal to paste to, may be 0
375 void *cb_sv; // perl callback, may be 0 382 void *cb_sv; // managed by perl
376 383
377 rxvt_display *display; 384 rxvt_display *display;
378 Time request_time; 385 Time request_time;
379 Window request_win; 386 Window request_win;
380 Atom request_prop; 387 Atom request_prop;
381 388
389private:
382 unsigned char selection_wait; 390 unsigned char selection_wait;
383 unsigned char selection_type; 391 unsigned char selection_type;
384 392
385private:
386 char *incr_buf; 393 char *incr_buf;
387 size_t incr_buf_size, incr_buf_fill; 394 size_t incr_buf_size, incr_buf_fill;
388 395
389 void timer_cb (ev::timer &w, int revents); ev::timer timer_ev; 396 void timer_cb (ev::timer &w, int revents); ev::timer timer_ev;
390 void x_cb (XEvent &xev); xevent_watcher x_ev; 397 void x_cb (XEvent &xev); xevent_watcher x_ev;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines