ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvt.h
(Generate patch)

Comparing rxvt-unicode/src/rxvt.h (file contents):
Revision 1.410 by sf-exg, Mon Jul 19 16:43:21 2010 UTC vs.
Revision 1.426 by sf-exg, Tue Jan 4 23:12:10 2011 UTC

27#else 27#else
28// stdlib.h might provide it 28// stdlib.h might provide it
29#endif 29#endif
30 30
31using namespace std; 31using namespace std;
32
33// we assume that Xlib.h defines XPointer, and it does since at least 1994...
32 34
33extern "C" { 35extern "C" {
34#include <X11/Xlib.h> 36#include <X11/Xlib.h>
35#include <X11/Xutil.h> 37#include <X11/Xutil.h>
36#include <X11/Xresource.h> 38#include <X11/Xresource.h>
97/* 99/*
98 ***************************************************************************** 100 *****************************************************************************
99 * SYSTEM HACKS 101 * SYSTEM HACKS
100 ***************************************************************************** 102 *****************************************************************************
101 */ 103 */
102
103#ifndef HAVE_XPOINTER
104typedef char *XPointer;
105#endif
106 104
107#include <termios.h> 105#include <termios.h>
108 106
109#include "background.h" 107#include "background.h"
110 108
189#else 187#else
190 if (envv) 188 if (envv)
191#endif 189#endif
192 environ = envv; 190 environ = envv;
193} 191}
192
193struct localise_env
194{
195 char **orig_env;
196
197 localise_env (char **new_env)
198 {
199 orig_env = environ;
200 environ = new_env;
201 }
202
203 ~localise_env ()
204 {
205 environ = orig_env;
206 }
207};
194 208
195/* 209/*
196 ***************************************************************************** 210 *****************************************************************************
197 * STRUCTURES AND TYPEDEFS 211 * STRUCTURES AND TYPEDEFS
198 ***************************************************************************** 212 *****************************************************************************
555#define PrivMode_vt52 (1UL<<18) 569#define PrivMode_vt52 (1UL<<18)
556#define PrivMode_LFNL (1UL<<19) 570#define PrivMode_LFNL (1UL<<19)
557#define PrivMode_MouseBtnEvent (1UL<<20) 571#define PrivMode_MouseBtnEvent (1UL<<20)
558#define PrivMode_MouseAnyEvent (1UL<<21) 572#define PrivMode_MouseAnyEvent (1UL<<21)
559#define PrivMode_BracketPaste (1UL<<22) 573#define PrivMode_BracketPaste (1UL<<22)
574#define PrivMode_ExtModeMouse (1UL<<23) // xterm pseudo-utf-8 hack
575#define PrivMode_ExtMouseRight (1UL<<24) // xterm pseudo-utf-8, but works in non-utf-8-locales
560 576
561#define PrivMode_mouse_report (PrivMode_MouseX10|PrivMode_MouseX11|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent) 577#define PrivMode_mouse_report (PrivMode_MouseX10|PrivMode_MouseX11|PrivMode_MouseBtnEvent|PrivMode_MouseAnyEvent)
562 578
563#ifdef ALLOW_132_MODE 579#ifdef ALLOW_132_MODE
564# define PrivMode_Default (PrivMode_Autowrap|PrivMode_ShiftKeys|PrivMode_VisibleCursor|PrivMode_132OK) 580# define PrivMode_Default (PrivMode_Autowrap|PrivMode_ShiftKeys|PrivMode_VisibleCursor|PrivMode_132OK)
807{ 823{
808 int x, y, w, h; // overlay dimensions 824 int x, y, w, h; // overlay dimensions
809 text_t **text; 825 text_t **text;
810 rend_t **rend; 826 rend_t **rend;
811 827
812 // while tempting to add swap() etc. here, it effetcively only increases code size 828 // while tempting to add swap() etc. here, it effectively only increases code size
813}; 829};
814 830
815/* ------------------------------------------------------------------------- */ 831/* ------------------------------------------------------------------------- */
816 832
817typedef struct 833typedef struct
949#define Screen_WrapNext (1<<4) /* need to wrap for next char? */ 965#define Screen_WrapNext (1<<4) /* need to wrap for next char? */
950#define Screen_DefaultFlags (Screen_VisibleCursor | Screen_Autowrap) 966#define Screen_DefaultFlags (Screen_VisibleCursor | Screen_Autowrap)
951 967
952/* rxvt_vars.options */ 968/* rxvt_vars.options */
953enum { 969enum {
954# define def(name,idx) Opt_ ## name = idx,
955# define nodef(name) Opt_ ## name = 0, 970# define def(name) Opt_ ## name,
971# define nodef(name) Opt_prev_ ## name, Opt_ ## name = 0, Opt_next_ ## name = Opt_prev_ ## name - 1,
972 Opt_0,
956# include "optinc.h" 973# include "optinc.h"
957# undef nodef 974# undef nodef
958# undef def 975# undef def
959Opt_count 976 Opt_count
960}; 977};
961 978
962/* ------------------------------------------------------------------------- */ 979/* ------------------------------------------------------------------------- */
963 980
964struct rxvt_vars : TermWin_t 981struct rxvt_vars : TermWin_t
1074 char * incr_buf; 1091 char * incr_buf;
1075 size_t incr_buf_size, incr_buf_fill; 1092 size_t incr_buf_size, incr_buf_fill;
1076/* ---------- */ 1093/* ---------- */
1077 struct mouse_event MEvent; 1094 struct mouse_event MEvent;
1078 XComposeStatus compose; 1095 XComposeStatus compose;
1079 struct termios tio; 1096 static struct termios def_tio;
1080 row_col_t oldcursor; 1097 row_col_t oldcursor;
1081#ifdef HAVE_BG_PIXMAP 1098#ifdef HAVE_BG_PIXMAP
1082 bgPixmap_t bgPixmap; 1099 bgPixmap_t bgPixmap;
1083#endif 1100#endif
1084#ifdef HAVE_AFTERIMAGE 1101#ifdef HAVE_AFTERIMAGE
1158 void rootwin_cb (XEvent &xev); 1175 void rootwin_cb (XEvent &xev);
1159 xevent_watcher rootwin_ev; 1176 xevent_watcher rootwin_ev;
1160#endif 1177#endif
1161#ifdef HAVE_BG_PIXMAP 1178#ifdef HAVE_BG_PIXMAP
1162 void update_background (); 1179 void update_background ();
1163#if TRACE_PIXMAPS
1164 void trace_update_background (const char *file, int line);
1165# define update_background() trace_update_background (__FILE__, __LINE__)
1166#endif
1167 void update_background_cb (ev::timer &w, int revents); 1180 void update_background_cb (ev::timer &w, int revents);
1168 ev::timer update_background_ev; 1181 ev::timer update_background_ev;
1169#endif 1182#endif
1170 1183
1171 void x_cb (XEvent &xev); 1184 void x_cb (XEvent &xev);
1297 int run_child (const char *const *argv); 1310 int run_child (const char *const *argv);
1298 void color_aliases (int idx); 1311 void color_aliases (int idx);
1299 void create_windows (int argc, const char *const *argv); 1312 void create_windows (int argc, const char *const *argv);
1300 void get_colours (); 1313 void get_colours ();
1301 void get_ourmods (); 1314 void get_ourmods ();
1315 void set_icon (const char *file);
1302 // main.C 1316 // main.C
1303 void tt_winch (); 1317 void tt_winch ();
1304 rxvt_term (); 1318 rxvt_term ();
1305 ~rxvt_term (); 1319 ~rxvt_term ();
1306 void destroy (); 1320 void destroy ();
1318 void set_colorfgbg (); 1332 void set_colorfgbg ();
1319 bool set_color (rxvt_color &color, const char *name); 1333 bool set_color (rxvt_color &color, const char *name);
1320 void alias_color (int dst, int src); 1334 void alias_color (int dst, int src);
1321 void set_widthheight (unsigned int newwidth, unsigned int newheight); 1335 void set_widthheight (unsigned int newwidth, unsigned int newheight);
1322 void get_window_origin (int &x, int &y); 1336 void get_window_origin (int &x, int &y);
1323 Pixmap get_pixmap_property (int prop_id); 1337 Pixmap get_pixmap_property (Atom property);
1324 1338
1325 // screen.C 1339 // screen.C
1326 1340
1327 void lalloc (line_t &l) const 1341 void lalloc (line_t &l) const
1328 { 1342 {
1380 return base; 1394 return base;
1381 } 1395 }
1382 1396
1383 bool option (uint8_t opt) const NOTHROW 1397 bool option (uint8_t opt) const NOTHROW
1384 { 1398 {
1385 if (!opt)
1386 return 0;
1387
1388 --opt;
1389 return options[opt >> 3] & (1 << (opt & 7)); 1399 return options[opt >> 3] & (1 << (opt & 7));
1390 } 1400 }
1391 1401
1392 void set_option (uint8_t opt, bool set = true) NOTHROW 1402 void set_option (uint8_t opt, bool set = true) NOTHROW;
1393 {
1394 if (!opt)
1395 return;
1396
1397 --opt;
1398 if (set)
1399 options[opt >> 3] |= (1 << (opt & 7));
1400 else
1401 options[opt >> 3] &= ~(1 << (opt & 7));
1402 }
1403 1403
1404 void set_privmode (unsigned bit, int set) NOTHROW 1404 void set_privmode (unsigned bit, int set) NOTHROW
1405 { 1405 {
1406 if (set) 1406 if (set)
1407 priv_modes |= bit; 1407 priv_modes |= bit;
1408 else 1408 else
1409 priv_modes &= ~bit; 1409 priv_modes &= ~bit;
1410 } 1410 }
1411 1411
1412 // modifies first argument(!) 1412 // modifies first argument(!)
1413 void tt_paste (char *data, unsigned int len) NOTHROW;
1413 void paste (char *data, unsigned int len) NOTHROW; 1414 void paste (char *data, unsigned int len) NOTHROW;
1414 void scr_blank_line (line_t &l, unsigned int col, unsigned int width, rend_t efs) const NOTHROW; 1415 void scr_blank_line (line_t &l, unsigned int col, unsigned int width, rend_t efs) const NOTHROW;
1415 void scr_blank_screen_mem (line_t &l, rend_t efs) const NOTHROW; 1416 void scr_blank_screen_mem (line_t &l, rend_t efs) const NOTHROW;
1416 void scr_kill_char (line_t &l, int col) const NOTHROW; 1417 void scr_kill_char (line_t &l, int col) const NOTHROW;
1417 int scr_scroll_text (int row1, int row2, int count) NOTHROW; 1418 int scr_scroll_text (int row1, int row2, int count) NOTHROW;
1476 void selection_paste (Window win, Atom prop, bool delete_prop) NOTHROW; 1477 void selection_paste (Window win, Atom prop, bool delete_prop) NOTHROW;
1477 void selection_property (Window win, Atom prop) NOTHROW; 1478 void selection_property (Window win, Atom prop) NOTHROW;
1478 void selection_request (Time tm, int selnum = Sel_Primary) NOTHROW; 1479 void selection_request (Time tm, int selnum = Sel_Primary) NOTHROW;
1479 int selection_request_other (Atom target, int selnum) NOTHROW; 1480 int selection_request_other (Atom target, int selnum) NOTHROW;
1480 void selection_clear (bool clipboard = false) NOTHROW; 1481 void selection_clear (bool clipboard = false) NOTHROW;
1481 void clipboard_copy (Time tm);
1482 void selection_make (Time tm); 1482 void selection_make (Time tm);
1483 bool selection_grab (Time tm, bool clipboard = false) NOTHROW; 1483 bool selection_grab (Time tm, bool clipboard = false) NOTHROW;
1484 void selection_start_colrow (int col, int row) NOTHROW; 1484 void selection_start_colrow (int col, int row) NOTHROW;
1485 void selection_delimit_word (enum page_dirn dirn, const row_col_t *mark, row_col_t *ret) NOTHROW; 1485 void selection_delimit_word (enum page_dirn dirn, const row_col_t *mark, row_col_t *ret) NOTHROW;
1486 void selection_extend_colrow (int32_t col, int32_t row, int button3, int buttonpress, int clickchange) NOTHROW; 1486 void selection_extend_colrow (int32_t col, int32_t row, int button3, int buttonpress, int clickchange) NOTHROW;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines