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.50 by sf-exg, Fri Feb 11 01:24:46 2011 UTC vs.
Revision 1.61 by root, Mon Jun 4 15:18:52 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.
177#endif 178#endif
178}; 179};
179 180
180///////////////////////////////////////////////////////////////////////////// 181/////////////////////////////////////////////////////////////////////////////
181 182
182#ifdef USE_XIM 183#if USE_XIM
183struct rxvt_xim : refcounted 184struct rxvt_xim : refcounted
184{ 185{
185 void destroy (); 186 void destroy ();
186 rxvt_display *display; 187 rxvt_display *display;
187 188
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);
225 ev::io x_ev ; void x_cb (ev::io &w, int revents); 232 ev::io x_ev ; void x_cb (ev::io &w, int revents);
226 233
227#ifdef USE_XIM 234#if USE_XIM
228 refcache<rxvt_xim> xims; 235 refcache<rxvt_xim> xims;
229 vector<im_watcher *> imw; 236 vector<im_watcher *> imw;
230 237
231 void im_change_cb (); 238 void im_change_cb ();
232 void im_change_check (); 239 void im_change_check ();
241 Atom xa[NUM_XA]; 248 Atom xa[NUM_XA];
242 bool is_local; 249 bool is_local;
243#ifdef POINTER_BLANK 250#ifdef POINTER_BLANK
244 Cursor blank_cursor; 251 Cursor blank_cursor;
245#endif 252#endif
253 uint8_t flags;
246 254
247 rxvt_display (const char *id); 255 rxvt_display (const char *id);
248 XrmDatabase get_resources (bool refresh); 256 XrmDatabase get_resources (bool refresh);
249 bool ref_init (); 257 bool ref_init ();
250 void ref_next (); 258 void ref_next ();
254 { 262 {
255 flush_ev.start (); 263 flush_ev.start ();
256 } 264 }
257 265
258 Atom atom (const char *name); 266 Atom atom (const char *name);
267 Pixmap get_pixmap_property (Atom property);
259 void set_selection_owner (rxvt_term *owner, bool clipboard); 268 void set_selection_owner (rxvt_term *owner, bool clipboard);
260 269
261 void reg (xevent_watcher *w); 270 void reg (xevent_watcher *w);
262 void unreg (xevent_watcher *w); 271 void unreg (xevent_watcher *w);
263 272
264#ifdef USE_XIM 273#if USE_XIM
265 void reg (im_watcher *w); 274 void reg (im_watcher *w);
266 void unreg (im_watcher *w); 275 void unreg (im_watcher *w);
267 276
268 rxvt_xim *get_xim (const char *locale, const char *modifiers); 277 rxvt_xim *get_xim (const char *locale, const char *modifiers);
269 void put_xim (rxvt_xim *xim); 278 void put_xim (rxvt_xim *xim);
270#endif 279#endif
271}; 280};
272 281
273#ifdef USE_XIM 282#if USE_XIM
274struct im_watcher : rxvt_watcher, callback<void (void)> 283struct im_watcher : rxvt_watcher, callback<void (void)>
275{ 284{
276 void start (rxvt_display *display) 285 void start (rxvt_display *display)
277 { 286 {
278 display->reg (this); 287 display->reg (this);
362#define Sel_Clipboard 0x03 371#define Sel_Clipboard 0x03
363#define Sel_whereMask 0x0f 372#define Sel_whereMask 0x0f
364#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */ 373#define Sel_CompoundText 0x10 /* last request was COMPOUND_TEXT */
365#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */ 374#define Sel_UTF8String 0x20 /* last request was UTF8_STRING */
366 375
367typedef void (*sel_cb)(char *data, unsigned int len, struct rxvt_selection *rs, void *ptr);
368
369struct rxvt_selection 376struct rxvt_selection
370{ 377{
371 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);
379 void run ();
372 ~rxvt_selection (); 380 ~rxvt_selection ();
373 381
374private: 382 rxvt_term *term; // terminal to paste to, may be 0
383 void *cb_sv; // managed by perl
384
375 rxvt_display *display; 385 rxvt_display *display;
376 Time request_time; 386 Time request_time;
377 Window request_win; 387 Window request_win;
378 Atom request_prop; 388 Atom request_prop;
379 sel_cb request_cb;
380 void *user_data;
381 389
390private:
382 unsigned char selection_wait; 391 unsigned char selection_wait;
383 unsigned char selection_type; 392 unsigned char selection_type;
384 393
385 char *incr_buf; 394 char *incr_buf;
386 size_t incr_buf_size, incr_buf_fill; 395 size_t incr_buf_size, incr_buf_fill;
387 396
388 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;
389 void x_cb (XEvent &xev); xevent_watcher x_ev; 398 void x_cb (XEvent &xev); xevent_watcher x_ev;
390 399
400 void finish (char *data = 0, unsigned int len = 0);
391 void stop (); 401 void stop ();
392 bool request (Atom target, int selnum); 402 bool request (Atom target, int selnum);
393 void handle_selection (Window win, Atom prop, bool delete_prop); 403 void handle_selection (Window win, Atom prop, bool delete_prop);
394}; 404};
395 405

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines