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.43 by root, Wed Jan 23 09:14:58 2008 UTC vs.
Revision 1.57 by root, Thu Feb 24 12:42:41 2011 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.
59#if ENABLE_EWMH 60#if ENABLE_EWMH
60 XA_NET_WM_PID, 61 XA_NET_WM_PID,
61 XA_NET_WM_NAME, 62 XA_NET_WM_NAME,
62 XA_NET_WM_ICON_NAME, 63 XA_NET_WM_ICON_NAME,
63 XA_NET_WM_PING, 64 XA_NET_WM_PING,
65 XA_NET_WM_ICON,
64#endif 66#endif
65#if USE_XIM 67#if USE_XIM
66 XA_WM_LOCALE_NAME, 68 XA_WM_LOCALE_NAME,
67 XA_XIM_SERVERS, 69 XA_XIM_SERVERS,
68#endif 70#endif
234//public 236//public
235 Display *dpy; 237 Display *dpy;
236 int screen; 238 int screen;
237 Window root; 239 Window root;
238 rxvt_term *selection_owner; 240 rxvt_term *selection_owner;
241 rxvt_term *clipboard_owner;
239 Atom xa[NUM_XA]; 242 Atom xa[NUM_XA];
240 bool is_local; 243 bool is_local;
241#ifdef POINTER_BLANK 244#ifdef POINTER_BLANK
242 Cursor blank_cursor; 245 Cursor blank_cursor;
243#endif 246#endif
252 { 255 {
253 flush_ev.start (); 256 flush_ev.start ();
254 } 257 }
255 258
256 Atom atom (const char *name); 259 Atom atom (const char *name);
257 void set_selection_owner (rxvt_term *owner); 260 void set_selection_owner (rxvt_term *owner, bool clipboard);
258 261
259 void reg (xevent_watcher *w); 262 void reg (xevent_watcher *w);
260 void unreg (xevent_watcher *w); 263 void unreg (xevent_watcher *w);
261 264
262#ifdef USE_XIM 265#ifdef USE_XIM
267 void put_xim (rxvt_xim *xim); 270 void put_xim (rxvt_xim *xim);
268#endif 271#endif
269}; 272};
270 273
271#ifdef USE_XIM 274#ifdef USE_XIM
272struct im_watcher : rxvt_watcher, callback<void (void)> { 275struct im_watcher : rxvt_watcher, callback<void (void)>
276{
273 void start (rxvt_display *display) 277 void start (rxvt_display *display)
274 { 278 {
275 display->reg (this); 279 display->reg (this);
276 } 280 }
277 281
350 bool set (rxvt_screen *screen, const rgba &color); 354 bool set (rxvt_screen *screen, const rgba &color);
351 355
352 void fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to = rgba (0, 0, 0)); 356 void fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to = rgba (0, 0, 0));
353}; 357};
354 358
355#if TRACE_PIXMAPS 359#define Sel_normal 0x01 /* normal selection */
356Pixmap trace_XCreatePixmap (const char *file, int line, Display *dpy, Window r, unsigned int w, unsigned int h, unsigned int d); 360#define Sel_incr 0x02 /* incremental selection */
357void trace_XFreePixmap (const char *file, int line, Display *dpy, Pixmap p); 361#define Sel_Primary 0x01
362#define Sel_Secondary 0x02
363#define Sel_Clipboard 0x03
364#define Sel_whereMask 0x0f
365#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */
366#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */
358 367
359# define XCreatePixmap(dpy,r,w,h,d) trace_XCreatePixmap (__FILE__,__LINE__,dpy,r,w,h,d) 368struct rxvt_selection
360# define XFreePixmap(dpy,p) trace_XFreePixmap (__FILE__,__LINE__,dpy,p) 369{
361#endif 370 rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, rxvt_term *term);
371 void run ();
372 ~rxvt_selection ();
362 373
363#endif 374 rxvt_term *term; // terminal to paste to, may be 0
375 void *cb_sv; // managed by perl
376
377 rxvt_display *display;
378 Time request_time;
379 Window request_win;
380 Atom request_prop;
364 381
382private:
383 unsigned char selection_wait;
384 unsigned char selection_type;
385
386 char *incr_buf;
387 size_t incr_buf_size, incr_buf_fill;
388
389 void timer_cb (ev::timer &w, int revents); ev::timer timer_ev;
390 void x_cb (XEvent &xev); xevent_watcher x_ev;
391
392 void finish (char *data = 0, unsigned int len = 0);
393 void stop ();
394 bool request (Atom target, int selnum);
395 void handle_selection (Window win, Atom prop, bool delete_prop);
396};
397
398#endif
399

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines