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.53 by sf-exg, Sat Feb 12 00:50:04 2011 UTC vs.
Revision 1.60 by sf-exg, Sun Jun 3 17:48:28 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 ();
255 { 262 {
256 flush_ev.start (); 263 flush_ev.start ();
257 } 264 }
258 265
259 Atom atom (const char *name); 266 Atom atom (const char *name);
267 Pixmap get_pixmap_property (Atom property);
260 void set_selection_owner (rxvt_term *owner, bool clipboard); 268 void set_selection_owner (rxvt_term *owner, bool clipboard);
261 269
262 void reg (xevent_watcher *w); 270 void reg (xevent_watcher *w);
263 void unreg (xevent_watcher *w); 271 void unreg (xevent_watcher *w);
264 272
363#define Sel_Clipboard 0x03 371#define Sel_Clipboard 0x03
364#define Sel_whereMask 0x0f 372#define Sel_whereMask 0x0f
365#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */ 373#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */
366#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */ 374#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */
367 375
368typedef void (*sel_cb)(char *data, unsigned int len, struct rxvt_selection *rs);
369
370struct rxvt_selection 376struct rxvt_selection
371{ 377{
372 rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, sel_cb cb, void *ptr); 378 rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, rxvt_term *term);
373 void run (); 379 void run ();
374 ~rxvt_selection (); 380 ~rxvt_selection ();
375 381
376 void *user_data; 382 rxvt_term *term; // terminal to paste to, may be 0
383 void *cb_sv; // managed by perl
377 384
378private:
379 rxvt_display *display; 385 rxvt_display *display;
380 Time request_time; 386 Time request_time;
381 Window request_win; 387 Window request_win;
382 Atom request_prop; 388 Atom request_prop;
383 sel_cb request_cb;
384 389
390private:
385 unsigned char selection_wait; 391 unsigned char selection_wait;
386 unsigned char selection_type; 392 unsigned char selection_type;
387 393
388 char *incr_buf; 394 char *incr_buf;
389 size_t incr_buf_size, incr_buf_fill; 395 size_t incr_buf_size, incr_buf_fill;
390 396
391 void timer_cb (ev::timer &w, int revents); ev::timer timer_ev; 397 void timer_cb (ev::timer &w, int revents); ev::timer timer_ev;
392 void x_cb (XEvent &xev); xevent_watcher x_ev; 398 void x_cb (XEvent &xev); xevent_watcher x_ev;
393 399
400 void finish (char *data = 0, unsigned int len = 0);
394 void stop (); 401 void stop ();
395 bool request (Atom target, int selnum); 402 bool request (Atom target, int selnum);
396 void handle_selection (Window win, Atom prop, bool delete_prop); 403 void handle_selection (Window win, Atom prop, bool delete_prop);
397}; 404};
398 405

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines