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.12 by root, Wed Jan 25 21:03:04 2006 UTC vs.
Revision 1.52 by sf-exg, Sat Feb 12 00:30:01 2011 UTC

1/* 1/*----------------------------------------------------------------------*
2 * rxvttoolkit.h - provide toolkit-functionality for rxvt. 2 * File: rxvttoolkit.h - provide toolkit-functionality for rxvt.
3 *----------------------------------------------------------------------*
3 */ 4 *
5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
7 * Copyright (c) 2011 Emanuele Giaquinta <e.giaquinta@glauco.it>
8 *
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
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *----------------------------------------------------------------------*/
23
4#ifndef RXVT_TOOLKIT_H 24#ifndef RXVT_TOOLKIT_H
5#define RXVT_TOOLKIT_H 25#define RXVT_TOOLKIT_H
6 26
7#include <X11/Xlib.h> 27#include <X11/Xlib.h>
8 28
9#if XFT 29#if XFT
10# include <X11/Xft/Xft.h> 30# include <X11/Xft/Xft.h>
11#endif 31#endif
12 32
13#include "iom.h" 33#include "ev_cpp.h"
14 34
15#include "rxvtlib.h"
16#include "rxvtutil.h" 35#include "rxvtutil.h"
17 36
18#include "callback.h" 37#include "callback.h"
19 38
20// see rxvttoolkit.C:xa_names, which must be kept in sync 39// see rxvttoolkit.C:xa_names, which must be kept in sync
28 XA_VT_SELECTION, 47 XA_VT_SELECTION,
29 XA_INCR, 48 XA_INCR,
30 XA_WM_PROTOCOLS, 49 XA_WM_PROTOCOLS,
31 XA_WM_DELETE_WINDOW, 50 XA_WM_DELETE_WINDOW,
32 XA_CLIPBOARD, 51 XA_CLIPBOARD,
52 XA_AVERAGE_WIDTH,
53 XA_WEIGHT_NAME,
54 XA_SLANT,
55 XA_CHARSET_REGISTRY,
56 XA_CHARSET_ENCODING,
33#if ENABLE_FRILLS 57#if ENABLE_FRILLS
34 XA_MOTIF_WM_HINTS, 58 XA_MOTIF_WM_HINTS,
35#endif 59#endif
36#if ENABLE_EWMH 60#if ENABLE_EWMH
37 XA_NET_WM_PID, 61 XA_NET_WM_PID,
38 XA_NET_WM_NAME, 62 XA_NET_WM_NAME,
39 XA_NET_WM_ICON_NAME, 63 XA_NET_WM_ICON_NAME,
40 XA_NET_WM_PING, 64 XA_NET_WM_PING,
65 XA_NET_WM_ICON,
41#endif 66#endif
42#if USE_XIM 67#if USE_XIM
43 XA_WM_LOCALE_NAME, 68 XA_WM_LOCALE_NAME,
44 XA_XIM_SERVERS, 69 XA_XIM_SERVERS,
45#endif 70#endif
46#if TRANSPARENT 71#if ENABLE_TRANSPARENCY
47 XA_XROOTPMAP_ID, 72 XA_XROOTPMAP_ID,
48 XA_ESETROOT_PMAP_ID, 73 XA_ESETROOT_PMAP_ID,
49#endif 74#endif
50#if ENABLE_XEMBED 75#if ENABLE_XEMBED
51 XA_XEMBED, 76 XA_XEMBED,
52 XA_XEMBED_INFO, 77 XA_XEMBED_INFO,
53#endif 78#endif
79#if !ENABLE_MINIMAL
80 // these are usually allocated by other subsystems, but we do it
81 // here to avoid a server roundtrip.
82 XA_SCREEN_RESOURCES,
83 XA_XDCCC_LINEAR_RGB_CORRECTION,
84 XA_XDCCC_LINEAR_RGB_MATRICES,
85 XA_WM_COLORMAP_WINDOWS,
86 XA_WM_STATE,
87 XA_cursor,
88# if USE_XIM
89 // various selection targets used by XIM
90 XA_TRANSPORT,
91 XA_LOCALES,
92 XA__XIM_PROTOCOL,
93 XA__XIM_XCONNECT,
94 XA__XIM_MOREDATA,
95# endif
96#endif
54 NUM_XA 97 NUM_XA
55}; 98};
56 99
57struct rxvt_term; 100struct rxvt_term;
58struct rxvt_display; 101struct rxvt_display;
59 102
60struct im_watcher; 103struct im_watcher;
61struct xevent_watcher; 104struct xevent_watcher;
62 105
106template<class watcher>
107struct event_vec : vector<watcher *>
108{
109 void erase_unordered (unsigned int pos)
110 {
111 watcher *w = (*this)[this->size () - 1];
112 this->pop_back ();
113
114 if (!this->empty ())
115 if (((*this)[pos] = w)) // '=' is correct!
116 w->active = pos + 1;
117 }
118};
119
120struct rxvt_watcher
121{
122 int active; /* 0 == inactive, else index into respective vector */
123
124 bool is_active () { return active; }
125
126 rxvt_watcher () : active (0) { }
127};
128
63struct refcounted { 129struct refcounted
130{
64 int referenced; 131 int referenced;
65 char *id; 132 char *id;
66 133
67 refcounted (const char *id); 134 refcounted (const char *id);
68 bool ref_init () { return false; } 135 bool ref_init () { return false; }
69 void ref_next () { } 136 void ref_next () { }
70 ~refcounted (); 137 ~refcounted ();
71}; 138};
72 139
73template<class T> 140template<class T>
74struct refcache : vector<T *> { 141struct refcache : vector<T *>
142{
75 T *get (const char *id); 143 T *get (const char *id);
76 void put (T *obj); 144 void put (T *obj);
77 void clear (); 145 void clear ();
78 146
79 ~refcache () 147 ~refcache ()
82 } 150 }
83}; 151};
84 152
85///////////////////////////////////////////////////////////////////////////// 153/////////////////////////////////////////////////////////////////////////////
86 154
155struct rxvt_screen;
156
157struct rxvt_drawable
158{
159 rxvt_screen *screen;
160 Drawable drawable;
161 operator Drawable() { return drawable; }
162
163#if XFT
164 XftDraw *xftdrawable;
165 operator XftDraw *();
166#endif
167
168 rxvt_drawable (rxvt_screen *screen, Drawable drawable)
169 : screen(screen),
170#if XFT
171 xftdrawable(0),
172#endif
173 drawable(drawable)
174 { }
175
176#if XFT
177 ~rxvt_drawable ();
178#endif
179};
180
181/////////////////////////////////////////////////////////////////////////////
182
87#ifdef USE_XIM 183#ifdef USE_XIM
88struct rxvt_xim : refcounted { 184struct rxvt_xim : refcounted
185{
89 void destroy (); 186 void destroy ();
90 rxvt_display *display; 187 rxvt_display *display;
91 188
92//public 189//public
93 XIM xim; 190 XIM xim;
96 bool ref_init (); 193 bool ref_init ();
97 ~rxvt_xim (); 194 ~rxvt_xim ();
98}; 195};
99#endif 196#endif
100 197
101struct rxvt_screen { 198struct rxvt_screen
199{
102 rxvt_display *display; 200 rxvt_display *display;
103 Display *xdisp; 201 Display *dpy;
104 int depth; 202 int depth;
105 Visual *visual; 203 Visual *visual;
106 Colormap cmap; 204 Colormap cmap;
107 205
206#if XFT
207 // scratch pixmap
208 rxvt_drawable *scratch_area;
209 int scratch_w, scratch_h;
210
211 rxvt_drawable &scratch_drawable (int w, int h);
212
213 rxvt_screen ();
214#endif
215
108 void set (rxvt_display *disp); 216 void set (rxvt_display *disp);
109 void set (rxvt_display *disp, int depth); 217 void select_visual (int bitdepth);
110 void clear (); 218 void clear ();
111}; 219};
112 220
113struct rxvt_display : refcounted { 221struct rxvt_display : refcounted
222{
114 io_manager_vec<xevent_watcher> xw; 223 event_vec<xevent_watcher> xw;
115 224
116 io_watcher x_ev; void x_cb (io_watcher &w, short revents); 225 ev::prepare flush_ev; void flush_cb (ev::prepare &w, int revents);
226 ev::io x_ev ; void x_cb (ev::io &w, int revents);
117 227
118#ifdef USE_XIM 228#ifdef USE_XIM
119 refcache<rxvt_xim> xims; 229 refcache<rxvt_xim> xims;
120 vector<im_watcher *> imw; 230 vector<im_watcher *> imw;
121 231
122 void im_change_cb (); 232 void im_change_cb ();
123 void im_change_check (); 233 void im_change_check ();
124#endif 234#endif
125 235
126//public 236//public
127 Display *display; 237 Display *dpy;
128 int screen; 238 int screen;
129 Window root; 239 Window root;
130 rxvt_term *selection_owner; 240 rxvt_term *selection_owner;
241 rxvt_term *clipboard_owner;
131 Atom xa[NUM_XA]; 242 Atom xa[NUM_XA];
132#ifndef NO_SLOW_LINK_SUPPORT
133 bool is_local; 243 bool is_local;
134#endif
135#ifdef POINTER_BLANK 244#ifdef POINTER_BLANK
136 Cursor blank_cursor; 245 Cursor blank_cursor;
137#endif 246#endif
138 247
139 rxvt_display (const char *id); 248 rxvt_display (const char *id);
140 XrmDatabase get_resources (); 249 XrmDatabase get_resources (bool refresh);
141 bool ref_init (); 250 bool ref_init ();
142 void ref_next (); 251 void ref_next ();
143 ~rxvt_display (); 252 ~rxvt_display ();
144 253
145 void flush (); 254 void flush ()
255 {
256 flush_ev.start ();
257 }
258
146 Atom atom (const char *name); 259 Atom atom (const char *name);
147 void set_selection_owner (rxvt_term *owner); 260 void set_selection_owner (rxvt_term *owner, bool clipboard);
148 261
149 void reg (xevent_watcher *w); 262 void reg (xevent_watcher *w);
150 void unreg (xevent_watcher *w); 263 void unreg (xevent_watcher *w);
151 264
152#ifdef USE_XIM 265#ifdef USE_XIM
157 void put_xim (rxvt_xim *xim); 270 void put_xim (rxvt_xim *xim);
158#endif 271#endif
159}; 272};
160 273
161#ifdef USE_XIM 274#ifdef USE_XIM
162struct im_watcher : watcher, callback0<void> { 275struct im_watcher : rxvt_watcher, callback<void (void)>
163 template<class O1, class O2> 276{
164 im_watcher (O1 *object, void (O2::*method) ())
165 : callback0<void> (object,method)
166 { }
167
168 void start (rxvt_display *display) 277 void start (rxvt_display *display)
169 { 278 {
170 display->reg (this); 279 display->reg (this);
171 } 280 }
281
172 void stop (rxvt_display *display) 282 void stop (rxvt_display *display)
173 { 283 {
174 display->unreg (this); 284 display->unreg (this);
175 } 285 }
176}; 286};
177#endif 287#endif
178 288
179struct xevent_watcher : watcher, callback1<void, XEvent &> { 289struct xevent_watcher : rxvt_watcher, callback<void (XEvent &)>
290{
180 Window window; 291 Window window;
181
182 template<class O1, class O2>
183 xevent_watcher (O1 *object, void (O2::*method) (XEvent &))
184 : callback1<void, XEvent &> (object,method)
185 { }
186 292
187 void start (rxvt_display *display, Window window) 293 void start (rxvt_display *display, Window window)
188 { 294 {
189 this->window = window; 295 this->window = window;
190 display->reg (this); 296 display->reg (this);
191 } 297 }
298
192 void stop (rxvt_display *display) 299 void stop (rxvt_display *display)
193 { 300 {
194 display->unreg (this); 301 display->unreg (this);
195 } 302 }
196}; 303};
199 306
200///////////////////////////////////////////////////////////////////////////// 307/////////////////////////////////////////////////////////////////////////////
201 308
202typedef unsigned long Pixel; 309typedef unsigned long Pixel;
203 310
311struct rgba
312{
313 unsigned short r, g, b, a;
314
315 enum { MIN_CC = 0x0000, MAX_CC = 0xffff };
316
317 rgba ()
318 { }
319
320 rgba (unsigned short r, unsigned short g, unsigned short b, unsigned short a = MAX_CC)
321 : r(r), g(g), b(b), a(a)
322 { }
323};
324
204struct rxvt_color { 325struct rxvt_color
326{
205#if XFT 327#if XFT
206 XftColor c; 328 XftColor c;
329#else
330 XColor c;
331#endif
332
207 operator Pixel () const { return c.pixel; } 333 operator Pixel () const { return c.pixel; }
208#else
209 Pixel p;
210 operator Pixel () const { return p; }
211#endif
212 334
213 bool operator == (const rxvt_color &b) const { return Pixel (*this) == Pixel (b); } 335 bool operator == (const rxvt_color &b) const { return Pixel (*this) == Pixel (b); }
214 bool operator != (const rxvt_color &b) const { return Pixel (*this) != Pixel (b); } 336 bool operator != (const rxvt_color &b) const { return Pixel (*this) != Pixel (b); }
215 337
216 void get (rxvt_screen *screen, unsigned short &cr, unsigned short &cg, unsigned short &cb); 338 bool is_opaque () const
217 339 {
218 bool set (rxvt_screen *screen, Pixel p); 340#if XFT
341 return c.color.alpha == rgba::MAX_CC;
342#else
343 return 1;
344#endif
345 }
346
347 bool alloc (rxvt_screen *screen, const rgba &color);
348 void free (rxvt_screen *screen);
349
350 void get (rgba &color);
351 void get (XColor &color);
352
219 bool set (rxvt_screen *screen, const char *name); 353 bool set (rxvt_screen *screen, const char *name);
220 bool set (rxvt_screen *screen, unsigned short cr, unsigned short cg, unsigned short cb); 354 bool set (rxvt_screen *screen, const rgba &color);
221 355
222 rxvt_color fade (rxvt_screen *screen, int percent); // fades to black 356 void fade (rxvt_screen *screen, int percent, rxvt_color &result, const rgba &to = rgba (0, 0, 0));
223 rxvt_color fade (rxvt_screen *screen, int percent, rxvt_color &fadeto);
224
225 void free (rxvt_screen *screen);
226}; 357};
227 358
228#endif 359#define Sel_normal 0x01 /* normal selection */
360#define Sel_incr 0x02 /* incremental selection */
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 */
229 367
368typedef void (*sel_cb)(char *data, unsigned int len, struct rxvt_selection *rs, void *ptr);
369
370struct rxvt_selection
371{
372 rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, sel_cb cb, void *ptr);
373 void run ();
374 ~rxvt_selection ();
375
376private:
377 rxvt_display *display;
378 Time request_time;
379 Window request_win;
380 Atom request_prop;
381 sel_cb request_cb;
382 void *user_data;
383
384 unsigned char selection_wait;
385 unsigned char selection_type;
386
387 char *incr_buf;
388 size_t incr_buf_size, incr_buf_fill;
389
390 void timer_cb (ev::timer &w, int revents); ev::timer timer_ev;
391 void x_cb (XEvent &xev); xevent_watcher x_ev;
392
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