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.39 by root, Fri Dec 14 06:17:27 2007 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 * 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.
29# include <X11/Xft/Xft.h> 30# include <X11/Xft/Xft.h>
30#endif 31#endif
31 32
32#include "ev_cpp.h" 33#include "ev_cpp.h"
33 34
34#include "rxvtlib.h"
35#include "rxvtutil.h" 35#include "rxvtutil.h"
36 36
37#include "callback.h" 37#include "callback.h"
38 38
39// see rxvttoolkit.C:xa_names, which must be kept in sync 39// see rxvttoolkit.C:xa_names, which must be kept in sync
60#if ENABLE_EWMH 60#if ENABLE_EWMH
61 XA_NET_WM_PID, 61 XA_NET_WM_PID,
62 XA_NET_WM_NAME, 62 XA_NET_WM_NAME,
63 XA_NET_WM_ICON_NAME, 63 XA_NET_WM_ICON_NAME,
64 XA_NET_WM_PING, 64 XA_NET_WM_PING,
65 XA_NET_WM_ICON,
65#endif 66#endif
66#if USE_XIM 67#if USE_XIM
67 XA_WM_LOCALE_NAME, 68 XA_WM_LOCALE_NAME,
68 XA_XIM_SERVERS, 69 XA_XIM_SERVERS,
69#endif 70#endif
74#if ENABLE_XEMBED 75#if ENABLE_XEMBED
75 XA_XEMBED, 76 XA_XEMBED,
76 XA_XEMBED_INFO, 77 XA_XEMBED_INFO,
77#endif 78#endif
78#if !ENABLE_MINIMAL 79#if !ENABLE_MINIMAL
79 // these are usually allocated by other subsystens, but we do it 80 // these are usually allocated by other subsystems, but we do it
80 // here to avoid a server roundtrip. 81 // here to avoid a server roundtrip.
81 XA_SCREEN_RESOURCES, 82 XA_SCREEN_RESOURCES,
82 XA_XDCCC_LINEAR_RGB_CORRECTION, 83 XA_XDCCC_LINEAR_RGB_CORRECTION,
83 XA_XDCCC_LINEAR_RGB_MATRICES, 84 XA_XDCCC_LINEAR_RGB_MATRICES,
84 XA_WM_COLORMAP_WINDOWS, 85 XA_WM_COLORMAP_WINDOWS,
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);
267 Pixmap get_pixmap_property (Atom property);
258 void set_selection_owner (rxvt_term *owner); 268 void set_selection_owner (rxvt_term *owner, bool clipboard);
259 269
260 void reg (xevent_watcher *w); 270 void reg (xevent_watcher *w);
261 void unreg (xevent_watcher *w); 271 void unreg (xevent_watcher *w);
262 272
263#ifdef USE_XIM 273#ifdef USE_XIM
268 void put_xim (rxvt_xim *xim); 278 void put_xim (rxvt_xim *xim);
269#endif 279#endif
270}; 280};
271 281
272#ifdef USE_XIM 282#ifdef USE_XIM
273struct im_watcher : rxvt_watcher, callback<void (void)> { 283struct im_watcher : rxvt_watcher, callback<void (void)>
284{
274 void start (rxvt_display *display) 285 void start (rxvt_display *display)
275 { 286 {
276 display->reg (this); 287 display->reg (this);
277 } 288 }
278 289
330 operator Pixel () const { return c.pixel; } 341 operator Pixel () const { return c.pixel; }
331 342
332 bool operator == (const rxvt_color &b) const { return Pixel (*this) == Pixel (b); } 343 bool operator == (const rxvt_color &b) const { return Pixel (*this) == Pixel (b); }
333 bool operator != (const rxvt_color &b) const { return Pixel (*this) != Pixel (b); } 344 bool operator != (const rxvt_color &b) const { return Pixel (*this) != Pixel (b); }
334 345
346 bool is_opaque () const
347 {
348#if XFT
349 return c.color.alpha == rgba::MAX_CC;
350#else
351 return 1;
352#endif
353 }
354
335 bool alloc (rxvt_screen *screen, const rgba &color); 355 bool alloc (rxvt_screen *screen, const rgba &color);
336 void free (rxvt_screen *screen); 356 void free (rxvt_screen *screen);
337 357
338 void get (rgba &color); 358 void get (rgba &color);
339 void get (XColor &color); 359 void get (XColor &color);
342 bool set (rxvt_screen *screen, const rgba &color); 362 bool set (rxvt_screen *screen, const rgba &color);
343 363
344 void fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to = rgba (0, 0, 0)); 364 void fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to = rgba (0, 0, 0));
345}; 365};
346 366
347#if TRACE_PIXMAPS 367#define Sel_normal 0x01 /* normal selection */
348Pixmap trace_XCreatePixmap (const char *file, int line, Display *dpy, Window r, unsigned int w, unsigned int h, unsigned int d); 368#define Sel_incr 0x02 /* incremental selection */
349void trace_XFreePixmap (const char *file, int line, Display *dpy, Pixmap p); 369#define Sel_Primary 0x01
370#define Sel_Secondary 0x02
371#define Sel_Clipboard 0x03
372#define Sel_whereMask 0x0f
373#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */
374#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */
350 375
351# define XCreatePixmap(dpy,r,w,h,d) trace_XCreatePixmap (__FILE__,__LINE__,dpy,r,w,h,d) 376struct rxvt_selection
352# define XFreePixmap(dpy,p) trace_XFreePixmap (__FILE__,__LINE__,dpy,p) 377{
353#endif 378 rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, rxvt_term *term);
379 void run ();
380 ~rxvt_selection ();
354 381
355#endif 382 rxvt_term *term; // terminal to paste to, may be 0
383 void *cb_sv; // managed by perl
356 384
385 rxvt_display *display;
386 Time request_time;
387 Window request_win;
388 Atom request_prop;
389
390private:
391 unsigned char selection_wait;
392 unsigned char selection_type;
393
394 char *incr_buf;
395 size_t incr_buf_size, incr_buf_fill;
396
397 void timer_cb (ev::timer &w, int revents); ev::timer timer_ev;
398 void x_cb (XEvent &xev); xevent_watcher x_ev;
399
400 void finish (char *data = 0, unsigned int len = 0);
401 void stop ();
402 bool request (Atom target, int selnum);
403 void handle_selection (Window win, Atom prop, bool delete_prop);
404};
405
406#endif
407

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines