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.47 by root, Wed Nov 5 14:43:54 2008 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 * 8 *
8 * 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
9 * 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
10 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 12 * (at your option) any later version.
215 void set (rxvt_display *disp); 216 void set (rxvt_display *disp);
216 void select_visual (int bitdepth); 217 void select_visual (int bitdepth);
217 void clear (); 218 void clear ();
218}; 219};
219 220
221enum {
222 DISPLAY_HAS_RENDER = 1 << 0,
223 DISPLAY_HAS_RENDER_MUL = 1 << 1,
224 DISPLAY_HAS_RENDER_CONV = 1 << 2,
225};
226
220struct rxvt_display : refcounted 227struct rxvt_display : refcounted
221{ 228{
222 event_vec<xevent_watcher> xw; 229 event_vec<xevent_watcher> xw;
223 230
224 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);
235//public 242//public
236 Display *dpy; 243 Display *dpy;
237 int screen; 244 int screen;
238 Window root; 245 Window root;
239 rxvt_term *selection_owner; 246 rxvt_term *selection_owner;
247 rxvt_term *clipboard_owner;
240 Atom xa[NUM_XA]; 248 Atom xa[NUM_XA];
241 bool is_local; 249 bool is_local;
242#ifdef POINTER_BLANK 250#ifdef POINTER_BLANK
243 Cursor blank_cursor; 251 Cursor blank_cursor;
244#endif 252#endif
253 uint8_t flags;
245 254
246 rxvt_display (const char *id); 255 rxvt_display (const char *id);
247 XrmDatabase get_resources (bool refresh); 256 XrmDatabase get_resources (bool refresh);
248 bool ref_init (); 257 bool ref_init ();
249 void ref_next (); 258 void ref_next ();
253 { 262 {
254 flush_ev.start (); 263 flush_ev.start ();
255 } 264 }
256 265
257 Atom atom (const char *name); 266 Atom atom (const char *name);
258 void set_selection_owner (rxvt_term *owner); 267 void set_selection_owner (rxvt_term *owner, bool clipboard);
259 268
260 void reg (xevent_watcher *w); 269 void reg (xevent_watcher *w);
261 void unreg (xevent_watcher *w); 270 void unreg (xevent_watcher *w);
262 271
263#ifdef USE_XIM 272#ifdef USE_XIM
352 bool set (rxvt_screen *screen, const rgba &color); 361 bool set (rxvt_screen *screen, const rgba &color);
353 362
354 void fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to = rgba (0, 0, 0)); 363 void fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to = rgba (0, 0, 0));
355}; 364};
356 365
357#if TRACE_PIXMAPS 366#define Sel_normal 0x01 /* normal selection */
358Pixmap trace_XCreatePixmap (const char *file, int line, Display *dpy, Window r, unsigned int w, unsigned int h, unsigned int d); 367#define Sel_incr 0x02 /* incremental selection */
359void trace_XFreePixmap (const char *file, int line, Display *dpy, Pixmap p); 368#define Sel_Primary 0x01
369#define Sel_Secondary 0x02
370#define Sel_Clipboard 0x03
371#define Sel_whereMask 0x0f
372#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */
373#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */
360 374
361# define XCreatePixmap(dpy,r,w,h,d) trace_XCreatePixmap (__FILE__,__LINE__,dpy,r,w,h,d) 375struct rxvt_selection
362# define XFreePixmap(dpy,p) trace_XFreePixmap (__FILE__,__LINE__,dpy,p) 376{
363#endif 377 rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, rxvt_term *term);
378 void run ();
379 ~rxvt_selection ();
364 380
365#endif 381 rxvt_term *term; // terminal to paste to, may be 0
382 void *cb_sv; // managed by perl
366 383
384 rxvt_display *display;
385 Time request_time;
386 Window request_win;
387 Atom request_prop;
388
389private:
390 unsigned char selection_wait;
391 unsigned char selection_type;
392
393 char *incr_buf;
394 size_t incr_buf_size, incr_buf_fill;
395
396 void timer_cb (ev::timer &w, int revents); ev::timer timer_ev;
397 void x_cb (XEvent &xev); xevent_watcher x_ev;
398
399 void finish (char *data = 0, unsigned int len = 0);
400 void stop ();
401 bool request (Atom target, int selnum);
402 void handle_selection (Window win, Atom prop, bool delete_prop);
403};
404
405#endif
406

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines