Merge IDENTIFY_* flags with CLIENT_* flags.
[tmux-openbsd.git] / tmux.h
blob891f6233f85146dd9090199db8ae87ec84eeb2a2
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #ifndef TMUX_H
20 #define TMUX_H
22 #define PROTOCOL_VERSION 7
24 #include <sys/param.h>
25 #include <sys/time.h>
26 #include <sys/queue.h>
27 #include <sys/tree.h>
28 #include <sys/uio.h>
30 #include <bitstring.h>
31 #include <event.h>
32 #include <getopt.h>
33 #include <imsg.h>
34 #include <limits.h>
35 #include <signal.h>
36 #include <stdarg.h>
37 #include <stdint.h>
38 #include <stdio.h>
39 #include <termios.h>
41 #include "array.h"
43 extern char *__progname;
44 extern char **environ;
46 /* Default global configuration file. */
47 #define TMUX_CONF "/etc/tmux.conf"
49 /* Default prompt history length. */
50 #define PROMPT_HISTORY 100
53 * Minimum layout cell size, NOT including separator line. The scroll region
54 * cannot be one line in height so this must be at least two.
56 #define PANE_MINIMUM 2
58 /* Automatic name refresh interval, in milliseconds. */
59 #define NAME_INTERVAL 500
62 * Maximum sizes of strings in message data. Don't forget to bump
63 * PROTOCOL_VERSION if any of these change!
65 #define COMMAND_LENGTH 2048 /* packed argv size */
66 #define TERMINAL_LENGTH 128 /* length of TERM environment variable */
67 #define ENVIRON_LENGTH 1024 /* environment variable length */
70 * UTF-8 data size. This must be big enough to hold combined characters as well
71 * as single.
73 #define UTF8_SIZE 9
75 /* Fatal errors. */
76 #define fatal(msg) log_fatal("%s: %s", __func__, msg);
77 #define fatalx(msg) log_fatalx("%s: %s", __func__, msg);
79 /* Definition to shut gcc up about unused arguments. */
80 #define unused __attribute__ ((unused))
82 /* Attribute to make gcc check printf-like arguments. */
83 #define printflike1 __attribute__ ((format (printf, 1, 2)))
84 #define printflike2 __attribute__ ((format (printf, 2, 3)))
85 #define printflike3 __attribute__ ((format (printf, 3, 4)))
86 #define printflike4 __attribute__ ((format (printf, 4, 5)))
87 #define printflike5 __attribute__ ((format (printf, 5, 6)))
89 /* Number of items in array. */
90 #ifndef nitems
91 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
92 #endif
94 /* Default template for choose-buffer. */
95 #define CHOOSE_BUFFER_TEMPLATE \
96 "#{line}: #{buffer_size} bytes: \"#{buffer_sample}\""
98 /* Default template for choose-client. */
99 #define CHOOSE_CLIENT_TEMPLATE \
100 "#{client_tty}: #{session_name} " \
101 "[#{client_width}x#{client_height} #{client_termname}]" \
102 "#{?client_utf8, (utf8),}#{?client_readonly, (ro),} " \
103 "(last used #{client_activity_string})"
105 /* Default templates for choose-tree. */
106 #define CHOOSE_TREE_SESSION_TEMPLATE \
107 "#{session_name}: #{session_windows} windows" \
108 "#{?session_grouped, (group ,}" \
109 "#{session_group}#{?session_grouped,),}" \
110 "#{?session_attached, (attached),}"
111 #define CHOOSE_TREE_WINDOW_TEMPLATE \
112 "#{window_index}: #{window_name}#{window_flags} " \
113 "\"#{pane_title}\""
115 /* Default template for display-message. */
116 #define DISPLAY_MESSAGE_TEMPLATE \
117 "[#{session_name}] #{window_index}:" \
118 "#{window_name}, current pane #{pane_index} " \
119 "- (%H:%M %d-%b-%y)"
121 /* Default template for find-window. */
122 #define FIND_WINDOW_TEMPLATE \
123 "#{window_index}: #{window_name} " \
124 "[#{window_width}x#{window_height}] " \
125 "(#{window_panes} panes) #{window_find_matches}"
127 /* Default template for list-buffers. */
128 #define LIST_BUFFERS_TEMPLATE \
129 "#{line}: #{buffer_size} bytes: \"#{buffer_sample}\""
131 /* Default template for list-clients. */
132 #define LIST_CLIENTS_TEMPLATE \
133 "#{client_tty}: #{session_name} " \
134 "[#{client_width}x#{client_height} #{client_termname}]" \
135 "#{?client_utf8, (utf8),} #{?client_readonly, (ro),}"
137 /* Default template for list-sessions. */
138 #define LIST_SESSIONS_TEMPLATE \
139 "#{session_name}: #{session_windows} windows " \
140 "(created #{session_created_string}) " \
141 "[#{session_width}x#{session_height}]" \
142 "#{?session_grouped, (group ,}" \
143 "#{session_group}#{?session_grouped,),}" \
144 "#{?session_attached, (attached),}"
146 /* Default templates for list-windows. */
147 #define LIST_WINDOWS_TEMPLATE \
148 "#{window_index}: #{window_name}#{window_flags} " \
149 "(#{window_panes} panes) " \
150 "[#{window_width}x#{window_height}] " \
151 "[layout #{window_layout}] #{window_id}" \
152 "#{?window_active, (active),}";
153 #define LIST_WINDOWS_WITH_SESSION_TEMPLATE \
154 "#{session_name}:" \
155 "#{window_index}: #{window_name}#{window_flags} " \
156 "(#{window_panes} panes) " \
157 "[#{window_width}x#{window_height}] "
159 /* Default templates for break-pane, new-window and split-window. */
160 #define BREAK_PANE_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}"
161 #define NEW_SESSION_TEMPLATE "#{session_name}:"
162 #define NEW_WINDOW_TEMPLATE BREAK_PANE_TEMPLATE
163 #define SPLIT_WINDOW_TEMPLATE BREAK_PANE_TEMPLATE
165 /* Bell option values. */
166 #define BELL_NONE 0
167 #define BELL_ANY 1
168 #define BELL_CURRENT 2
170 /* Special key codes. */
171 #define KEYC_NONE 0xfff
172 #define KEYC_BASE 0x1000
174 /* Key modifier bits. */
175 #define KEYC_ESCAPE 0x2000
176 #define KEYC_CTRL 0x4000
177 #define KEYC_SHIFT 0x8000
178 #define KEYC_PREFIX 0x10000
180 /* Mask to obtain key w/o modifiers. */
181 #define KEYC_MASK_MOD (KEYC_ESCAPE|KEYC_CTRL|KEYC_SHIFT|KEYC_PREFIX)
182 #define KEYC_MASK_KEY (~KEYC_MASK_MOD)
184 /* Other key codes. */
185 enum key_code {
186 /* Mouse key. */
187 KEYC_MOUSE = KEYC_BASE,
189 /* Backspace key. */
190 KEYC_BSPACE,
192 /* Function keys. */
193 KEYC_F1,
194 KEYC_F2,
195 KEYC_F3,
196 KEYC_F4,
197 KEYC_F5,
198 KEYC_F6,
199 KEYC_F7,
200 KEYC_F8,
201 KEYC_F9,
202 KEYC_F10,
203 KEYC_F11,
204 KEYC_F12,
205 KEYC_F13,
206 KEYC_F14,
207 KEYC_F15,
208 KEYC_F16,
209 KEYC_F17,
210 KEYC_F18,
211 KEYC_F19,
212 KEYC_F20,
213 KEYC_IC,
214 KEYC_DC,
215 KEYC_HOME,
216 KEYC_END,
217 KEYC_NPAGE,
218 KEYC_PPAGE,
219 KEYC_BTAB,
221 /* Arrow keys. */
222 KEYC_UP,
223 KEYC_DOWN,
224 KEYC_LEFT,
225 KEYC_RIGHT,
227 /* Numeric keypad. */
228 KEYC_KP_SLASH,
229 KEYC_KP_STAR,
230 KEYC_KP_MINUS,
231 KEYC_KP_SEVEN,
232 KEYC_KP_EIGHT,
233 KEYC_KP_NINE,
234 KEYC_KP_PLUS,
235 KEYC_KP_FOUR,
236 KEYC_KP_FIVE,
237 KEYC_KP_SIX,
238 KEYC_KP_ONE,
239 KEYC_KP_TWO,
240 KEYC_KP_THREE,
241 KEYC_KP_ENTER,
242 KEYC_KP_ZERO,
243 KEYC_KP_PERIOD,
245 KEYC_FOCUS_IN,
246 KEYC_FOCUS_OUT,
249 /* Termcap codes. */
250 enum tty_code_code {
251 TTYC_AX = 0,
252 TTYC_ACSC, /* acs_chars, ac */
253 TTYC_BEL, /* bell, bl */
254 TTYC_BLINK, /* enter_blink_mode, mb */
255 TTYC_BOLD, /* enter_bold_mode, md */
256 TTYC_CIVIS, /* cursor_invisible, vi */
257 TTYC_CLEAR, /* clear_screen, cl */
258 TTYC_CNORM, /* cursor_normal, ve */
259 TTYC_COLORS, /* max_colors, Co */
260 TTYC_CR, /* restore cursor colour, Cr */
261 TTYC_CS, /* set cursor colour, Cs */
262 TTYC_CSR, /* change_scroll_region, cs */
263 TTYC_CUB, /* parm_left_cursor, LE */
264 TTYC_CUB1, /* cursor_left, le */
265 TTYC_CUD, /* parm_down_cursor, DO */
266 TTYC_CUD1, /* cursor_down, do */
267 TTYC_CUF, /* parm_right_cursor, RI */
268 TTYC_CUF1, /* cursor_right, nd */
269 TTYC_CUP, /* cursor_address, cm */
270 TTYC_CUU, /* parm_up_cursor, UP */
271 TTYC_CUU1, /* cursor_up, up */
272 TTYC_DCH, /* parm_dch, DC */
273 TTYC_DCH1, /* delete_character, dc */
274 TTYC_DIM, /* enter_dim_mode, mh */
275 TTYC_DL, /* parm_delete_line, DL */
276 TTYC_DL1, /* delete_line, dl */
277 TTYC_E3,
278 TTYC_ECH, /* erase_chars, ec */
279 TTYC_EL, /* clr_eol, ce */
280 TTYC_EL1, /* clr_bol, cb */
281 TTYC_ENACS, /* ena_acs, eA */
282 TTYC_FSL, /* from_status_line, fsl */
283 TTYC_HOME, /* cursor_home, ho */
284 TTYC_HPA, /* column_address, ch */
285 TTYC_ICH, /* parm_ich, IC */
286 TTYC_ICH1, /* insert_character, ic */
287 TTYC_IL, /* parm_insert_line, IL */
288 TTYC_IL1, /* insert_line, il */
289 TTYC_INVIS, /* enter_secure_mode, mk */
290 TTYC_IS1, /* init_1string, i1 */
291 TTYC_IS2, /* init_2string, i2 */
292 TTYC_IS3, /* init_3string, i3 */
293 TTYC_KCBT, /* key_btab, kB */
294 TTYC_KCUB1, /* key_left, kl */
295 TTYC_KCUD1, /* key_down, kd */
296 TTYC_KCUF1, /* key_right, kr */
297 TTYC_KCUU1, /* key_up, ku */
298 TTYC_KDC2,
299 TTYC_KDC3,
300 TTYC_KDC4,
301 TTYC_KDC5,
302 TTYC_KDC6,
303 TTYC_KDC7,
304 TTYC_KDCH1, /* key_dc, kD */
305 TTYC_KDN2,
306 TTYC_KDN3,
307 TTYC_KDN4,
308 TTYC_KDN5,
309 TTYC_KDN6,
310 TTYC_KDN7,
311 TTYC_KEND, /* key_end, ke */
312 TTYC_KEND2,
313 TTYC_KEND3,
314 TTYC_KEND4,
315 TTYC_KEND5,
316 TTYC_KEND6,
317 TTYC_KEND7,
318 TTYC_KF1, /* key_f1, k1 */
319 TTYC_KF10, /* key_f10, k; */
320 TTYC_KF11, /* key_f11, F1 */
321 TTYC_KF12, /* key_f12, F2 */
322 TTYC_KF13, /* key_f13, F3 */
323 TTYC_KF14, /* key_f14, F4 */
324 TTYC_KF15, /* key_f15, F5 */
325 TTYC_KF16, /* key_f16, F6 */
326 TTYC_KF17, /* key_f17, F7 */
327 TTYC_KF18, /* key_f18, F8 */
328 TTYC_KF19, /* key_f19, F9 */
329 TTYC_KF2, /* key_f2, k2 */
330 TTYC_KF20, /* key_f20, F10 */
331 TTYC_KF3, /* key_f3, k3 */
332 TTYC_KF4, /* key_f4, k4 */
333 TTYC_KF5, /* key_f5, k5 */
334 TTYC_KF6, /* key_f6, k6 */
335 TTYC_KF7, /* key_f7, k7 */
336 TTYC_KF8, /* key_f8, k8 */
337 TTYC_KF9, /* key_f9, k9 */
338 TTYC_KHOM2,
339 TTYC_KHOM3,
340 TTYC_KHOM4,
341 TTYC_KHOM5,
342 TTYC_KHOM6,
343 TTYC_KHOM7,
344 TTYC_KHOME, /* key_home, kh */
345 TTYC_KIC2,
346 TTYC_KIC3,
347 TTYC_KIC4,
348 TTYC_KIC5,
349 TTYC_KIC6,
350 TTYC_KIC7,
351 TTYC_KICH1, /* key_ic, kI */
352 TTYC_KLFT2,
353 TTYC_KLFT3,
354 TTYC_KLFT4,
355 TTYC_KLFT5,
356 TTYC_KLFT6,
357 TTYC_KLFT7,
358 TTYC_KMOUS, /* key_mouse, Km */
359 TTYC_KNP, /* key_npage, kN */
360 TTYC_KNXT2,
361 TTYC_KNXT3,
362 TTYC_KNXT4,
363 TTYC_KNXT5,
364 TTYC_KNXT6,
365 TTYC_KNXT7,
366 TTYC_KPP, /* key_ppage, kP */
367 TTYC_KPRV2,
368 TTYC_KPRV3,
369 TTYC_KPRV4,
370 TTYC_KPRV5,
371 TTYC_KPRV6,
372 TTYC_KPRV7,
373 TTYC_KRIT2,
374 TTYC_KRIT3,
375 TTYC_KRIT4,
376 TTYC_KRIT5,
377 TTYC_KRIT6,
378 TTYC_KRIT7,
379 TTYC_KUP2,
380 TTYC_KUP3,
381 TTYC_KUP4,
382 TTYC_KUP5,
383 TTYC_KUP6,
384 TTYC_KUP7,
385 TTYC_MS, /* modify xterm(1) selection */
386 TTYC_OP, /* orig_pair, op */
387 TTYC_REV, /* enter_reverse_mode, mr */
388 TTYC_RI, /* scroll_reverse, sr */
389 TTYC_RMACS, /* exit_alt_charset_mode */
390 TTYC_RMCUP, /* exit_ca_mode, te */
391 TTYC_RMKX, /* keypad_local, ke */
392 TTYC_SE, /* reset cursor style, Se */
393 TTYC_SETAB, /* set_a_background, AB */
394 TTYC_SETAF, /* set_a_foreground, AF */
395 TTYC_SGR0, /* exit_attribute_mode, me */
396 TTYC_SITM, /* enter_italics_mode, it */
397 TTYC_SMACS, /* enter_alt_charset_mode, as */
398 TTYC_SMCUP, /* enter_ca_mode, ti */
399 TTYC_SMKX, /* keypad_xmit, ks */
400 TTYC_SMSO, /* enter_standout_mode, so */
401 TTYC_SMUL, /* enter_underline_mode, us */
402 TTYC_SS, /* set cursor style, Ss */
403 TTYC_TSL, /* to_status_line, tsl */
404 TTYC_VPA, /* row_address, cv */
405 TTYC_XENL, /* eat_newline_glitch, xn */
406 TTYC_XT, /* xterm(1)-compatible title, XT */
408 #define NTTYCODE (TTYC_XT + 1)
410 /* Termcap types. */
411 enum tty_code_type {
412 TTYCODE_NONE = 0,
413 TTYCODE_STRING,
414 TTYCODE_NUMBER,
415 TTYCODE_FLAG,
418 /* Termcap code. */
419 struct tty_code {
420 enum tty_code_type type;
421 union {
422 char *string;
423 int number;
424 int flag;
425 } value;
428 /* Entry in terminal code table. */
429 struct tty_term_code_entry {
430 enum tty_code_code code;
431 enum tty_code_type type;
432 const char *name;
435 /* List of error causes. */
436 ARRAY_DECL(causelist, char *);
438 /* Message codes. */
439 enum msgtype {
440 MSG_COMMAND,
441 MSG_DETACH,
442 MSG_ERROR,
443 MSG_EXIT,
444 MSG_EXITED,
445 MSG_EXITING,
446 MSG_IDENTIFY,
447 MSG_STDIN,
448 MSG_READY,
449 MSG_RESIZE,
450 MSG_SHUTDOWN,
451 MSG_SUSPEND,
452 MSG_VERSION,
453 MSG_WAKEUP,
454 MSG_ENVIRON,
455 MSG_UNLOCK,
456 MSG_LOCK,
457 MSG_SHELL,
458 MSG_STDERR,
459 MSG_STDOUT,
460 MSG_DETACHKILL
464 * Message data.
466 * Don't forget to bump PROTOCOL_VERSION if any of these change!
468 struct msg_command_data {
469 pid_t pid; /* from $TMUX or -1 */
470 int session_id; /* from $TMUX or -1 */
472 int argc;
473 char argv[COMMAND_LENGTH];
476 struct msg_identify_data {
477 char cwd[MAXPATHLEN];
479 char term[TERMINAL_LENGTH];
481 #define IDENTIFY_UTF8 0x1
482 #define IDENTIFY_256COLOURS 0x2
483 /* 0x4 unused */
484 #define IDENTIFY_CONTROL 0x8
485 #define IDENTIFY_TERMIOS 0x10
486 int flags;
489 struct msg_lock_data {
490 char cmd[COMMAND_LENGTH];
493 struct msg_environ_data {
494 char var[ENVIRON_LENGTH];
497 struct msg_shell_data {
498 char shell[MAXPATHLEN];
501 struct msg_exit_data {
502 int retcode;
505 struct msg_stdin_data {
506 ssize_t size;
507 char data[BUFSIZ];
510 struct msg_stdout_data {
511 ssize_t size;
512 char data[BUFSIZ];
515 struct msg_stderr_data {
516 ssize_t size;
517 char data[BUFSIZ];
520 /* Mode key commands. */
521 enum mode_key_cmd {
522 MODEKEY_NONE,
523 MODEKEY_OTHER,
525 /* Editing keys. */
526 MODEKEYEDIT_BACKSPACE,
527 MODEKEYEDIT_CANCEL,
528 MODEKEYEDIT_COMPLETE,
529 MODEKEYEDIT_CURSORLEFT,
530 MODEKEYEDIT_CURSORRIGHT,
531 MODEKEYEDIT_DELETE,
532 MODEKEYEDIT_DELETELINE,
533 MODEKEYEDIT_DELETETOENDOFLINE,
534 MODEKEYEDIT_DELETEWORD,
535 MODEKEYEDIT_ENDOFLINE,
536 MODEKEYEDIT_ENTER,
537 MODEKEYEDIT_HISTORYDOWN,
538 MODEKEYEDIT_HISTORYUP,
539 MODEKEYEDIT_NEXTSPACE,
540 MODEKEYEDIT_NEXTSPACEEND,
541 MODEKEYEDIT_NEXTWORD,
542 MODEKEYEDIT_NEXTWORDEND,
543 MODEKEYEDIT_PASTE,
544 MODEKEYEDIT_PREVIOUSSPACE,
545 MODEKEYEDIT_PREVIOUSWORD,
546 MODEKEYEDIT_STARTOFLINE,
547 MODEKEYEDIT_SWITCHMODE,
548 MODEKEYEDIT_SWITCHMODEAPPEND,
549 MODEKEYEDIT_SWITCHMODEAPPENDLINE,
550 MODEKEYEDIT_SWITCHMODEBEGINLINE,
551 MODEKEYEDIT_SWITCHMODECHANGELINE,
552 MODEKEYEDIT_SWITCHMODESUBSTITUTE,
553 MODEKEYEDIT_SWITCHMODESUBSTITUTELINE,
554 MODEKEYEDIT_TRANSPOSECHARS,
556 /* Menu (choice) keys. */
557 MODEKEYCHOICE_BACKSPACE,
558 MODEKEYCHOICE_CANCEL,
559 MODEKEYCHOICE_CHOOSE,
560 MODEKEYCHOICE_DOWN,
561 MODEKEYCHOICE_PAGEDOWN,
562 MODEKEYCHOICE_PAGEUP,
563 MODEKEYCHOICE_SCROLLDOWN,
564 MODEKEYCHOICE_SCROLLUP,
565 MODEKEYCHOICE_STARTNUMBERPREFIX,
566 MODEKEYCHOICE_TREE_COLLAPSE,
567 MODEKEYCHOICE_TREE_COLLAPSE_ALL,
568 MODEKEYCHOICE_TREE_EXPAND,
569 MODEKEYCHOICE_TREE_EXPAND_ALL,
570 MODEKEYCHOICE_TREE_TOGGLE,
571 MODEKEYCHOICE_UP,
573 /* Copy keys. */
574 MODEKEYCOPY_BACKTOINDENTATION,
575 MODEKEYCOPY_BOTTOMLINE,
576 MODEKEYCOPY_CANCEL,
577 MODEKEYCOPY_CLEARSELECTION,
578 MODEKEYCOPY_COPYPIPE,
579 MODEKEYCOPY_COPYLINE,
580 MODEKEYCOPY_COPYENDOFLINE,
581 MODEKEYCOPY_COPYSELECTION,
582 MODEKEYCOPY_DOWN,
583 MODEKEYCOPY_ENDOFLINE,
584 MODEKEYCOPY_GOTOLINE,
585 MODEKEYCOPY_HALFPAGEDOWN,
586 MODEKEYCOPY_HALFPAGEUP,
587 MODEKEYCOPY_HISTORYBOTTOM,
588 MODEKEYCOPY_HISTORYTOP,
589 MODEKEYCOPY_JUMP,
590 MODEKEYCOPY_JUMPAGAIN,
591 MODEKEYCOPY_JUMPREVERSE,
592 MODEKEYCOPY_JUMPBACK,
593 MODEKEYCOPY_JUMPTO,
594 MODEKEYCOPY_JUMPTOBACK,
595 MODEKEYCOPY_LEFT,
596 MODEKEYCOPY_MIDDLELINE,
597 MODEKEYCOPY_NEXTPAGE,
598 MODEKEYCOPY_NEXTSPACE,
599 MODEKEYCOPY_NEXTSPACEEND,
600 MODEKEYCOPY_NEXTWORD,
601 MODEKEYCOPY_NEXTWORDEND,
602 MODEKEYCOPY_PREVIOUSPAGE,
603 MODEKEYCOPY_PREVIOUSSPACE,
604 MODEKEYCOPY_PREVIOUSWORD,
605 MODEKEYCOPY_RECTANGLETOGGLE,
606 MODEKEYCOPY_RIGHT,
607 MODEKEYCOPY_SCROLLDOWN,
608 MODEKEYCOPY_SCROLLUP,
609 MODEKEYCOPY_SEARCHAGAIN,
610 MODEKEYCOPY_SEARCHDOWN,
611 MODEKEYCOPY_SEARCHREVERSE,
612 MODEKEYCOPY_SEARCHUP,
613 MODEKEYCOPY_SELECTLINE,
614 MODEKEYCOPY_STARTNUMBERPREFIX,
615 MODEKEYCOPY_STARTOFLINE,
616 MODEKEYCOPY_STARTSELECTION,
617 MODEKEYCOPY_TOPLINE,
618 MODEKEYCOPY_UP,
621 /* Entry in the default mode key tables. */
622 struct mode_key_entry {
623 int key;
626 * Editing mode for vi: 0 is edit mode, keys not in the table are
627 * returned as MODEKEY_OTHER; 1 is command mode, keys not in the table
628 * are returned as MODEKEY_NONE. This is also matched on, allowing some
629 * keys to be bound in edit mode.
631 int mode;
632 enum mode_key_cmd cmd;
635 /* Data required while mode keys are in use. */
636 struct mode_key_data {
637 struct mode_key_tree *tree;
638 int mode;
640 #define MODEKEY_EMACS 0
641 #define MODEKEY_VI 1
643 /* Binding between a key and a command. */
644 struct mode_key_binding {
645 int key;
647 int mode;
648 enum mode_key_cmd cmd;
649 const char *arg;
651 RB_ENTRY(mode_key_binding) entry;
653 RB_HEAD(mode_key_tree, mode_key_binding);
655 /* Command to string mapping. */
656 struct mode_key_cmdstr {
657 enum mode_key_cmd cmd;
658 const char *name;
661 /* Named mode key table description. */
662 struct mode_key_table {
663 const char *name;
664 const struct mode_key_cmdstr *cmdstr;
665 struct mode_key_tree *tree;
666 const struct mode_key_entry *table; /* default entries */
669 /* Modes. */
670 #define MODE_CURSOR 0x1
671 #define MODE_INSERT 0x2
672 #define MODE_KCURSOR 0x4
673 #define MODE_KKEYPAD 0x8 /* set = application, clear = number */
674 #define MODE_WRAP 0x10 /* whether lines wrap */
675 #define MODE_MOUSE_STANDARD 0x20
676 #define MODE_MOUSE_BUTTON 0x40
677 #define MODE_MOUSE_ANY 0x80
678 #define MODE_MOUSE_UTF8 0x100
679 #define MODE_MOUSE_SGR 0x200
680 #define MODE_BRACKETPASTE 0x400
681 #define MODE_FOCUSON 0x800
683 #define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ANY)
685 /* A single UTF-8 character. */
686 struct utf8_data {
687 u_char data[UTF8_SIZE];
689 size_t have;
690 size_t size;
692 u_int width;
695 /* Grid output. */
696 #if defined(DEBUG) && \
697 ((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
698 (defined(__GNUC__) && __GNUC__ >= 3))
699 #define GRID_DEBUG(gd, fmt, ...) log_debug2("%s: (sx=%u, sy=%u, hsize=%u) " \
700 fmt, __func__, (gd)->sx, (gd)->sy, (gd)->hsize, ## __VA_ARGS__)
701 #else
702 #define GRID_DEBUG(...)
703 #endif
705 /* Grid attributes. */
706 #define GRID_ATTR_BRIGHT 0x1
707 #define GRID_ATTR_DIM 0x2
708 #define GRID_ATTR_UNDERSCORE 0x4
709 #define GRID_ATTR_BLINK 0x8
710 #define GRID_ATTR_REVERSE 0x10
711 #define GRID_ATTR_HIDDEN 0x20
712 #define GRID_ATTR_ITALICS 0x40
713 #define GRID_ATTR_CHARSET 0x80 /* alternative character set */
715 /* Grid flags. */
716 #define GRID_FLAG_FG256 0x1
717 #define GRID_FLAG_BG256 0x2
718 #define GRID_FLAG_PADDING 0x4
720 /* Grid line flags. */
721 #define GRID_LINE_WRAPPED 0x1
723 /* Grid cell data. */
724 struct grid_cell {
725 u_char attr;
726 u_char flags;
727 u_char fg;
728 u_char bg;
730 u_char xstate; /* top 4 bits width, bottom 4 bits size */
731 u_char xdata[UTF8_SIZE];
732 } __packed;
734 /* Grid line. */
735 struct grid_line {
736 u_int cellsize;
737 struct grid_cell *celldata;
739 int flags;
740 } __packed;
742 /* Entire grid of cells. */
743 struct grid {
744 int flags;
745 #define GRID_HISTORY 0x1 /* scroll lines into history */
747 u_int sx;
748 u_int sy;
750 u_int hsize;
751 u_int hlimit;
753 struct grid_line *linedata;
756 /* Option data structures. */
757 struct options_entry {
758 char *name;
760 enum {
761 OPTIONS_STRING,
762 OPTIONS_NUMBER,
763 OPTIONS_DATA,
764 } type;
766 char *str;
767 long long num;
769 RB_ENTRY(options_entry) entry;
772 struct options {
773 RB_HEAD(options_tree, options_entry) tree;
774 struct options *parent;
777 /* Scheduled job. */
778 struct job {
779 char *cmd;
780 pid_t pid;
781 int status;
783 int fd;
784 struct bufferevent *event;
786 void (*callbackfn)(struct job *);
787 void (*freefn)(void *);
788 void *data;
790 LIST_ENTRY(job) lentry;
792 LIST_HEAD(joblist, job);
794 /* Screen selection. */
795 struct screen_sel {
796 int flag;
797 int rectflag;
799 u_int sx;
800 u_int sy;
802 u_int ex;
803 u_int ey;
805 struct grid_cell cell;
808 /* Virtual screen. */
809 struct screen {
810 char *title;
812 struct grid *grid; /* grid data */
814 u_int cx; /* cursor x */
815 u_int cy; /* cursor y */
817 u_int cstyle; /* cursor style */
818 char *ccolour; /* cursor colour string */
820 u_int rupper; /* scroll region top */
821 u_int rlower; /* scroll region bottom */
823 int mode;
825 bitstr_t *tabs;
827 struct screen_sel sel;
830 /* Screen write context. */
831 struct screen_write_ctx {
832 struct window_pane *wp;
833 struct screen *s;
836 /* Screen size. */
837 #define screen_size_x(s) ((s)->grid->sx)
838 #define screen_size_y(s) ((s)->grid->sy)
839 #define screen_hsize(s) ((s)->grid->hsize)
840 #define screen_hlimit(s) ((s)->grid->hlimit)
842 /* Input parser context. */
843 struct input_ctx {
844 struct window_pane *wp;
845 struct screen_write_ctx ctx;
847 struct grid_cell cell;
849 struct grid_cell old_cell;
850 u_int old_cx;
851 u_int old_cy;
853 u_char interm_buf[4];
854 size_t interm_len;
856 u_char param_buf[64];
857 size_t param_len;
859 u_char input_buf[256];
860 size_t input_len;
862 int param_list[24]; /* -1 not present */
863 u_int param_list_len;
865 struct utf8_data utf8data;
867 int ch;
868 int flags;
869 #define INPUT_DISCARD 0x1
871 const struct input_state *state;
874 * All input received since we were last in the ground state. Sent to
875 * control clients on connection.
877 struct evbuffer *since_ground;
881 * Window mode. Windows can be in several modes and this is used to call the
882 * right function to handle input and output.
884 struct session;
885 struct window;
886 struct mouse_event;
887 struct window_mode {
888 struct screen *(*init)(struct window_pane *);
889 void (*free)(struct window_pane *);
890 void (*resize)(struct window_pane *, u_int, u_int);
891 void (*key)(struct window_pane *, struct session *, int);
892 void (*mouse)(struct window_pane *,
893 struct session *, struct mouse_event *);
894 void (*timer)(struct window_pane *);
897 /* Structures for choose mode. */
898 struct window_choose_data {
899 struct client *start_client;
900 struct session *start_session;
902 u_int idx;
903 int type;
904 #define TREE_OTHER 0x0
905 #define TREE_WINDOW 0x1
906 #define TREE_SESSION 0x2
908 struct session *tree_session; /* session of items in tree */
910 struct winlink *wl;
911 int pane_id;
913 char *ft_template;
914 struct format_tree *ft;
916 char *command;
919 struct window_choose_mode_item {
920 struct window_choose_data *wcd;
921 char *name;
922 int pos;
923 int state;
924 #define TREE_EXPANDED 0x1
927 /* Child window structure. */
928 struct window_pane {
929 u_int id;
931 struct window *window;
933 struct layout_cell *layout_cell;
934 struct layout_cell *saved_layout_cell;
936 u_int sx;
937 u_int sy;
939 u_int xoff;
940 u_int yoff;
942 int flags;
943 #define PANE_REDRAW 0x1
944 #define PANE_DROP 0x2
945 #define PANE_FOCUSED 0x4
946 #define PANE_RESIZE 0x8
947 #define PANE_FOCUSPUSH 0x10
949 char *cmd;
950 char *shell;
951 char *cwd;
953 pid_t pid;
954 char tty[TTY_NAME_MAX];
956 u_int changes;
957 struct event changes_timer;
958 u_int changes_redraw;
960 int fd;
961 struct bufferevent *event;
963 struct input_ctx ictx;
965 int pipe_fd;
966 struct bufferevent *pipe_event;
967 size_t pipe_off;
969 struct screen *screen;
970 struct screen base;
972 /* Saved in alternative screen mode. */
973 u_int saved_cx;
974 u_int saved_cy;
975 struct grid *saved_grid;
976 struct grid_cell saved_cell;
978 const struct window_mode *mode;
979 void *modedata;
981 TAILQ_ENTRY(window_pane) entry;
982 RB_ENTRY(window_pane) tree_entry;
984 TAILQ_HEAD(window_panes, window_pane);
985 RB_HEAD(window_pane_tree, window_pane);
987 /* Window structure. */
988 struct window {
989 u_int id;
990 char *name;
991 struct event name_timer;
992 struct timeval silence_timer;
994 struct window_pane *active;
995 struct window_pane *last;
996 struct window_panes panes;
998 int lastlayout;
999 struct layout_cell *layout_root;
1000 struct layout_cell *saved_layout_root;
1002 u_int sx;
1003 u_int sy;
1005 int flags;
1006 #define WINDOW_BELL 0x1
1007 #define WINDOW_ACTIVITY 0x2
1008 #define WINDOW_REDRAW 0x4
1009 #define WINDOW_SILENCE 0x8
1010 #define WINDOW_ZOOMED 0x10
1011 #define WINDOW_ALERTFLAGS (WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_SILENCE)
1013 struct options options;
1015 u_int references;
1017 ARRAY_DECL(windows, struct window *);
1019 /* Entry on local window list. */
1020 struct winlink {
1021 int idx;
1022 struct window *window;
1024 size_t status_width;
1025 struct grid_cell status_cell;
1026 char *status_text;
1028 int flags;
1029 #define WINLINK_BELL 0x1
1030 #define WINLINK_ACTIVITY 0x2
1031 #define WINLINK_CONTENT 0x4
1032 #define WINLINK_SILENCE 0x8
1033 #define WINLINK_ALERTFLAGS \
1034 (WINLINK_BELL|WINLINK_ACTIVITY|WINLINK_CONTENT|WINLINK_SILENCE)
1036 RB_ENTRY(winlink) entry;
1037 TAILQ_ENTRY(winlink) sentry;
1039 RB_HEAD(winlinks, winlink);
1040 TAILQ_HEAD(winlink_stack, winlink);
1042 /* Layout direction. */
1043 enum layout_type {
1044 LAYOUT_LEFTRIGHT,
1045 LAYOUT_TOPBOTTOM,
1046 LAYOUT_WINDOWPANE
1049 /* Layout cells queue. */
1050 TAILQ_HEAD(layout_cells, layout_cell);
1052 /* Layout cell. */
1053 struct layout_cell {
1054 enum layout_type type;
1056 struct layout_cell *parent;
1058 u_int sx;
1059 u_int sy;
1061 u_int xoff;
1062 u_int yoff;
1064 struct window_pane *wp;
1065 struct layout_cells cells;
1067 TAILQ_ENTRY(layout_cell) entry;
1070 /* Paste buffer. */
1071 struct paste_buffer {
1072 char *data;
1073 size_t size;
1075 ARRAY_DECL(paste_stack, struct paste_buffer *);
1077 /* Environment variable. */
1078 struct environ_entry {
1079 char *name;
1080 char *value;
1082 RB_ENTRY(environ_entry) entry;
1084 RB_HEAD(environ, environ_entry);
1086 /* Client session. */
1087 struct session_group {
1088 TAILQ_HEAD(, session) sessions;
1090 TAILQ_ENTRY(session_group) entry;
1092 TAILQ_HEAD(session_groups, session_group);
1094 struct session {
1095 u_int id;
1097 char *name;
1098 char *cwd;
1100 struct timeval creation_time;
1101 struct timeval activity_time;
1102 struct timeval last_activity_time;
1104 u_int sx;
1105 u_int sy;
1107 struct winlink *curw;
1108 struct winlink_stack lastw;
1109 struct winlinks windows;
1111 struct options options;
1113 #define SESSION_UNATTACHED 0x1 /* not attached to any clients */
1114 int flags;
1116 struct termios *tio;
1118 struct environ environ;
1120 int references;
1122 TAILQ_ENTRY(session) gentry;
1123 RB_ENTRY(session) entry;
1125 RB_HEAD(sessions, session);
1126 ARRAY_DECL(sessionslist, struct session *);
1128 /* TTY information. */
1129 struct tty_key {
1130 char ch;
1131 int key;
1133 struct tty_key *left;
1134 struct tty_key *right;
1136 struct tty_key *next;
1139 struct tty_term {
1140 char *name;
1141 u_int references;
1143 char acs[UCHAR_MAX + 1][2];
1145 struct tty_code codes[NTTYCODE];
1147 #define TERM_256COLOURS 0x1
1148 #define TERM_EARLYWRAP 0x2
1149 int flags;
1151 LIST_ENTRY(tty_term) entry;
1153 LIST_HEAD(tty_terms, tty_term);
1155 /* Mouse wheel states. */
1156 #define MOUSE_WHEEL_UP 0
1157 #define MOUSE_WHEEL_DOWN 1
1159 /* Mouse events. */
1160 #define MOUSE_EVENT_DOWN (1 << 0)
1161 #define MOUSE_EVENT_DRAG (1 << 1)
1162 #define MOUSE_EVENT_UP (1 << 2)
1163 #define MOUSE_EVENT_CLICK (1 << 3)
1164 #define MOUSE_EVENT_WHEEL (1 << 4)
1166 /* Mouse flags. */
1167 #define MOUSE_RESIZE_PANE (1 << 0)
1170 * Mouse input. When sent by xterm:
1172 * - buttons are in the bottom two bits: 0 = b1; 1 = b2; 2 = b3; 3 = released
1173 * - bits 3, 4 and 5 are for keys
1174 * - bit 6 is set for dragging
1175 * - bit 7 for buttons 4 and 5
1177 * With the SGR 1006 extension the released button becomes known. Store these
1178 * in separate fields and store the value converted to the old format in xb.
1180 struct mouse_event {
1181 u_int xb;
1183 u_int x;
1184 u_int lx;
1185 u_int sx;
1187 u_int y;
1188 u_int ly;
1189 u_int sy;
1191 u_int sgr; /* whether the input arrived in SGR format */
1192 u_int sgr_xb; /* only for SGR: the unmangled button */
1193 u_int sgr_rel; /* only for SGR: if it is a release event */
1195 u_int button;
1196 u_int clicks;
1198 int wheel;
1199 int event;
1200 int flags;
1203 struct tty {
1204 struct client *client;
1206 char *path;
1207 u_int class;
1209 u_int sx;
1210 u_int sy;
1212 u_int cx;
1213 u_int cy;
1214 u_int cstyle;
1215 char *ccolour;
1217 int mode;
1219 u_int rlower;
1220 u_int rupper;
1222 char *termname;
1223 struct tty_term *term;
1225 int fd;
1226 struct bufferevent *event;
1228 int log_fd;
1230 struct termios tio;
1232 struct grid_cell cell;
1234 #define TTY_NOCURSOR 0x1
1235 #define TTY_FREEZE 0x2
1236 #define TTY_TIMER 0x4
1237 #define TTY_UTF8 0x8
1238 #define TTY_STARTED 0x10
1239 #define TTY_OPENED 0x20
1240 #define TTY_FOCUS 0x40
1241 int flags;
1243 int term_flags;
1245 struct mouse_event mouse;
1247 struct event key_timer;
1248 struct tty_key *key_tree;
1251 /* TTY command context and function pointer. */
1252 struct tty_ctx {
1253 struct window_pane *wp;
1255 const struct grid_cell *cell;
1257 u_int num;
1258 void *ptr;
1261 * Cursor and region position before the screen was updated - this is
1262 * where the command should be applied; the values in the screen have
1263 * already been updated.
1265 u_int ocx;
1266 u_int ocy;
1268 u_int orupper;
1269 u_int orlower;
1271 u_int xoff;
1272 u_int yoff;
1274 /* Saved last cell on line. */
1275 struct grid_cell last_cell;
1276 u_int last_width;
1279 /* Saved message entry. */
1280 struct message_entry {
1281 char *msg;
1282 time_t msg_time;
1285 /* Status output data from a job. */
1286 struct status_out {
1287 char *cmd;
1288 char *out;
1290 RB_ENTRY(status_out) entry;
1292 RB_HEAD(status_out_tree, status_out);
1294 /* Client connection. */
1295 struct client {
1296 struct imsgbuf ibuf;
1297 struct event event;
1298 int retcode;
1300 struct timeval creation_time;
1301 struct timeval activity_time;
1303 struct environ environ;
1305 char *title;
1306 char *cwd;
1308 struct tty tty;
1310 void (*stdin_callback)(struct client *, int, void *);
1311 void *stdin_callback_data;
1312 struct evbuffer *stdin_data;
1313 int stdin_closed;
1314 struct evbuffer *stdout_data;
1315 struct evbuffer *stderr_data;
1317 struct event repeat_timer;
1319 struct status_out_tree status_old;
1320 struct status_out_tree status_new;
1321 struct timeval status_timer;
1322 struct screen status;
1324 #define CLIENT_TERMINAL 0x1
1325 #define CLIENT_PREFIX 0x2
1326 #define CLIENT_EXIT 0x4
1327 #define CLIENT_REDRAW 0x8
1328 #define CLIENT_STATUS 0x10
1329 #define CLIENT_REPEAT 0x20 /* allow command to repeat within repeat time */
1330 #define CLIENT_SUSPENDED 0x40
1331 #define CLIENT_BAD 0x80
1332 #define CLIENT_IDENTIFY 0x100
1333 #define CLIENT_DEAD 0x200
1334 #define CLIENT_BORDERS 0x400
1335 #define CLIENT_READONLY 0x800
1336 #define CLIENT_REDRAWWINDOW 0x1000
1337 #define CLIENT_CONTROL 0x2000
1338 #define CLIENT_FOCUSED 0x4000
1339 int flags;
1341 struct event identify_timer;
1343 char *message_string;
1344 struct event message_timer;
1345 ARRAY_DECL(, struct message_entry) message_log;
1347 char *prompt_string;
1348 char *prompt_buffer;
1349 size_t prompt_index;
1350 int (*prompt_callbackfn)(void *, const char *);
1351 void (*prompt_freefn)(void *);
1352 void *prompt_data;
1353 u_int prompt_hindex;
1355 #define PROMPT_SINGLE 0x1
1356 int prompt_flags;
1358 struct mode_key_data prompt_mdata;
1360 struct session *session;
1361 struct session *last_session;
1363 int wlmouse;
1365 struct cmd_q *cmdq;
1366 int references;
1368 ARRAY_DECL(clients, struct client *);
1370 /* Parsed arguments structures. */
1371 struct args_entry {
1372 u_char flag;
1373 char *value;
1374 RB_ENTRY(args_entry) entry;
1376 RB_HEAD(args_tree, args_entry);
1378 struct args {
1379 struct args_tree tree;
1380 int argc;
1381 char **argv;
1384 /* Command and list of commands. */
1385 struct cmd {
1386 const struct cmd_entry *entry;
1387 struct args *args;
1389 char *file;
1390 u_int line;
1392 #define CMD_CONTROL 0x1
1393 int flags;
1395 TAILQ_ENTRY(cmd) qentry;
1397 struct cmd_list {
1398 int references;
1399 TAILQ_HEAD(, cmd) list;
1402 /* Command return values. */
1403 enum cmd_retval {
1404 CMD_RETURN_ERROR = -1,
1405 CMD_RETURN_NORMAL = 0,
1406 CMD_RETURN_WAIT,
1407 CMD_RETURN_STOP
1410 /* Command queue entry. */
1411 struct cmd_q_item {
1412 struct cmd_list *cmdlist;
1413 TAILQ_ENTRY(cmd_q_item) qentry;
1415 TAILQ_HEAD(cmd_q_items, cmd_q_item);
1417 /* Command queue. */
1418 struct cmd_q {
1419 int references;
1420 int dead;
1422 struct client *client;
1423 int client_exit;
1425 struct cmd_q_items queue;
1426 struct cmd_q_item *item;
1427 struct cmd *cmd;
1429 time_t time;
1430 u_int number;
1432 void (*emptyfn)(struct cmd_q *);
1433 void *data;
1435 struct msg_command_data *msgdata;
1437 TAILQ_ENTRY(cmd_q) waitentry;
1440 /* Command definition. */
1441 struct cmd_entry {
1442 const char *name;
1443 const char *alias;
1445 const char *args_template;
1446 int args_lower;
1447 int args_upper;
1449 const char *usage;
1451 #define CMD_STARTSERVER 0x1
1452 #define CMD_CANTNEST 0x2
1453 #define CMD_READONLY 0x4
1454 int flags;
1456 void (*key_binding)(struct cmd *, int);
1457 enum cmd_retval (*exec)(struct cmd *, struct cmd_q *);
1460 /* Key binding. */
1461 struct key_binding {
1462 int key;
1463 struct cmd_list *cmdlist;
1464 int can_repeat;
1466 RB_ENTRY(key_binding) entry;
1468 RB_HEAD(key_bindings, key_binding);
1471 * Option table entries. The option table is the user-visible part of the
1472 * option, as opposed to the internal options (struct option) which are just
1473 * number or string.
1475 enum options_table_type {
1476 OPTIONS_TABLE_STRING,
1477 OPTIONS_TABLE_NUMBER,
1478 OPTIONS_TABLE_KEY,
1479 OPTIONS_TABLE_COLOUR,
1480 OPTIONS_TABLE_ATTRIBUTES,
1481 OPTIONS_TABLE_FLAG,
1482 OPTIONS_TABLE_CHOICE
1485 struct options_table_entry {
1486 const char *name;
1487 enum options_table_type type;
1489 u_int minimum;
1490 u_int maximum;
1491 const char **choices;
1493 const char *default_str;
1494 long long default_num;
1497 /* Tree of format entries. */
1498 struct format_entry {
1499 char *key;
1500 char *value;
1502 RB_ENTRY(format_entry) entry;
1504 RB_HEAD(format_tree, format_entry);
1506 /* Common command usages. */
1507 #define CMD_TARGET_PANE_USAGE "[-t target-pane]"
1508 #define CMD_TARGET_WINDOW_USAGE "[-t target-window]"
1509 #define CMD_TARGET_SESSION_USAGE "[-t target-session]"
1510 #define CMD_TARGET_CLIENT_USAGE "[-t target-client]"
1511 #define CMD_SRCDST_PANE_USAGE "[-s src-pane] [-t dst-pane]"
1512 #define CMD_SRCDST_WINDOW_USAGE "[-s src-window] [-t dst-window]"
1513 #define CMD_SRCDST_SESSION_USAGE "[-s src-session] [-t dst-session]"
1514 #define CMD_SRCDST_CLIENT_USAGE "[-s src-client] [-t dst-client]"
1515 #define CMD_BUFFER_USAGE "[-b buffer-index]"
1517 /* tmux.c */
1518 extern struct options global_options;
1519 extern struct options global_s_options;
1520 extern struct options global_w_options;
1521 extern struct environ global_environ;
1522 extern struct event_base *ev_base;
1523 extern char *cfg_file;
1524 extern char *shell_cmd;
1525 extern int debug_level;
1526 extern time_t start_time;
1527 extern char socket_path[MAXPATHLEN];
1528 extern int login_shell;
1529 extern char *environ_path;
1530 extern pid_t environ_pid;
1531 extern int environ_session_id;
1532 void logfile(const char *);
1533 const char *getshell(void);
1534 int checkshell(const char *);
1535 int areshell(const char *);
1536 const char* get_full_path(const char *, const char *);
1537 void setblocking(int, int);
1538 __dead void shell_exec(const char *, const char *);
1540 /* cfg.c */
1541 extern struct cmd_q *cfg_cmd_q;
1542 extern int cfg_finished;
1543 extern int cfg_references;
1544 extern struct causelist cfg_causes;
1545 int load_cfg(const char *, struct cmd_q *, char **);
1546 void cfg_default_done(struct cmd_q *);
1547 void cfg_show_causes(struct session *);
1549 /* format.c */
1550 int format_cmp(struct format_entry *, struct format_entry *);
1551 RB_PROTOTYPE(format_tree, format_entry, entry, format_cmp);
1552 struct format_tree *format_create(void);
1553 void format_free(struct format_tree *);
1554 void printflike3 format_add(struct format_tree *, const char *, const char *,
1555 ...);
1556 const char *format_find(struct format_tree *, const char *);
1557 char *format_expand(struct format_tree *, const char *);
1558 void format_session(struct format_tree *, struct session *);
1559 void format_client(struct format_tree *, struct client *);
1560 void format_window(struct format_tree *, struct window *);
1561 void format_winlink(struct format_tree *, struct session *,
1562 struct winlink *);
1563 void format_window_pane(struct format_tree *,
1564 struct window_pane *);
1565 void format_paste_buffer(struct format_tree *,
1566 struct paste_buffer *);
1568 /* mode-key.c */
1569 extern const struct mode_key_table mode_key_tables[];
1570 extern struct mode_key_tree mode_key_tree_vi_edit;
1571 extern struct mode_key_tree mode_key_tree_vi_choice;
1572 extern struct mode_key_tree mode_key_tree_vi_copy;
1573 extern struct mode_key_tree mode_key_tree_emacs_edit;
1574 extern struct mode_key_tree mode_key_tree_emacs_choice;
1575 extern struct mode_key_tree mode_key_tree_emacs_copy;
1576 int mode_key_cmp(struct mode_key_binding *, struct mode_key_binding *);
1577 RB_PROTOTYPE(mode_key_tree, mode_key_binding, entry, mode_key_cmp);
1578 const char *mode_key_tostring(const struct mode_key_cmdstr *,
1579 enum mode_key_cmd);
1580 enum mode_key_cmd mode_key_fromstring(const struct mode_key_cmdstr *,
1581 const char *);
1582 const struct mode_key_table *mode_key_findtable(const char *);
1583 void mode_key_init_trees(void);
1584 void mode_key_init(struct mode_key_data *, struct mode_key_tree *);
1585 enum mode_key_cmd mode_key_lookup(struct mode_key_data *, int, const char **);
1587 /* notify.c */
1588 void notify_enable(void);
1589 void notify_disable(void);
1590 void notify_input(struct window_pane *, struct evbuffer *);
1591 void notify_window_layout_changed(struct window *);
1592 void notify_window_unlinked(struct session *, struct window *);
1593 void notify_window_linked(struct session *, struct window *);
1594 void notify_window_renamed(struct window *);
1595 void notify_attached_session_changed(struct client *);
1596 void notify_session_renamed(struct session *);
1597 void notify_session_created(struct session *);
1598 void notify_session_closed(struct session *);
1600 /* options.c */
1601 int options_cmp(struct options_entry *, struct options_entry *);
1602 RB_PROTOTYPE(options_tree, options_entry, entry, options_cmp);
1603 void options_init(struct options *, struct options *);
1604 void options_free(struct options *);
1605 struct options_entry *options_find1(struct options *, const char *);
1606 struct options_entry *options_find(struct options *, const char *);
1607 void options_remove(struct options *, const char *);
1608 struct options_entry *printflike3 options_set_string(
1609 struct options *, const char *, const char *, ...);
1610 char *options_get_string(struct options *, const char *);
1611 struct options_entry *options_set_number(
1612 struct options *, const char *, long long);
1613 long long options_get_number(struct options *, const char *);
1615 /* options-table.c */
1616 extern const struct options_table_entry server_options_table[];
1617 extern const struct options_table_entry session_options_table[];
1618 extern const struct options_table_entry window_options_table[];
1619 void options_table_populate_tree(const struct options_table_entry *,
1620 struct options *);
1621 const char *options_table_print_entry(const struct options_table_entry *,
1622 struct options_entry *, int);
1623 int options_table_find(const char *, const struct options_table_entry **,
1624 const struct options_table_entry **);
1626 /* job.c */
1627 extern struct joblist all_jobs;
1628 struct job *job_run(const char *, struct session *,
1629 void (*)(struct job *), void (*)(void *), void *);
1630 void job_free(struct job *);
1631 void job_died(struct job *, int);
1633 /* environ.c */
1634 int environ_cmp(struct environ_entry *, struct environ_entry *);
1635 RB_PROTOTYPE(environ, environ_entry, entry, environ_cmp);
1636 void environ_init(struct environ *);
1637 void environ_free(struct environ *);
1638 void environ_copy(struct environ *, struct environ *);
1639 struct environ_entry *environ_find(struct environ *, const char *);
1640 void environ_set(struct environ *, const char *, const char *);
1641 void environ_put(struct environ *, const char *);
1642 void environ_unset(struct environ *, const char *);
1643 void environ_update(const char *, struct environ *, struct environ *);
1644 void environ_push(struct environ *);
1646 /* tty.c */
1647 void tty_init_termios(int, struct termios *, struct bufferevent *);
1648 void tty_raw(struct tty *, const char *);
1649 void tty_attributes(struct tty *, const struct grid_cell *);
1650 void tty_reset(struct tty *);
1651 void tty_region_pane(struct tty *, const struct tty_ctx *, u_int, u_int);
1652 void tty_region(struct tty *, u_int, u_int);
1653 void tty_cursor_pane(struct tty *, const struct tty_ctx *, u_int, u_int);
1654 void tty_cursor(struct tty *, u_int, u_int);
1655 void tty_putcode(struct tty *, enum tty_code_code);
1656 void tty_putcode1(struct tty *, enum tty_code_code, int);
1657 void tty_putcode2(struct tty *, enum tty_code_code, int, int);
1658 void tty_putcode_ptr1(struct tty *, enum tty_code_code, const void *);
1659 void tty_putcode_ptr2(struct tty *, enum tty_code_code, const void *,
1660 const void *);
1661 void tty_puts(struct tty *, const char *);
1662 void tty_putc(struct tty *, u_char);
1663 void tty_putn(struct tty *, const void *, size_t, u_int);
1664 void tty_init(struct tty *, struct client *, int, char *);
1665 int tty_resize(struct tty *);
1666 int tty_set_size(struct tty *, u_int, u_int);
1667 void tty_set_class(struct tty *, u_int);
1668 void tty_start_tty(struct tty *);
1669 void tty_stop_tty(struct tty *);
1670 void tty_set_title(struct tty *, const char *);
1671 void tty_update_mode(struct tty *, int, struct screen *);
1672 void tty_force_cursor_colour(struct tty *, const char *);
1673 void tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int);
1674 int tty_open(struct tty *, const char *, char **);
1675 void tty_close(struct tty *);
1676 void tty_free(struct tty *);
1677 void tty_write(
1678 void (*)(struct tty *, const struct tty_ctx *), struct tty_ctx *);
1679 void tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);
1680 void tty_cmd_cell(struct tty *, const struct tty_ctx *);
1681 void tty_cmd_clearendofline(struct tty *, const struct tty_ctx *);
1682 void tty_cmd_clearendofscreen(struct tty *, const struct tty_ctx *);
1683 void tty_cmd_clearline(struct tty *, const struct tty_ctx *);
1684 void tty_cmd_clearscreen(struct tty *, const struct tty_ctx *);
1685 void tty_cmd_clearstartofline(struct tty *, const struct tty_ctx *);
1686 void tty_cmd_clearstartofscreen(struct tty *, const struct tty_ctx *);
1687 void tty_cmd_deletecharacter(struct tty *, const struct tty_ctx *);
1688 void tty_cmd_clearcharacter(struct tty *, const struct tty_ctx *);
1689 void tty_cmd_deleteline(struct tty *, const struct tty_ctx *);
1690 void tty_cmd_erasecharacter(struct tty *, const struct tty_ctx *);
1691 void tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);
1692 void tty_cmd_insertline(struct tty *, const struct tty_ctx *);
1693 void tty_cmd_linefeed(struct tty *, const struct tty_ctx *);
1694 void tty_cmd_utf8character(struct tty *, const struct tty_ctx *);
1695 void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);
1696 void tty_cmd_setselection(struct tty *, const struct tty_ctx *);
1697 void tty_cmd_rawstring(struct tty *, const struct tty_ctx *);
1698 void tty_bell(struct tty *);
1700 /* tty-term.c */
1701 extern struct tty_terms tty_terms;
1702 extern const struct tty_term_code_entry tty_term_codes[NTTYCODE];
1703 struct tty_term *tty_term_find(char *, int, const char *, char **);
1704 void tty_term_free(struct tty_term *);
1705 int tty_term_has(struct tty_term *, enum tty_code_code);
1706 const char *tty_term_string(struct tty_term *, enum tty_code_code);
1707 const char *tty_term_string1(struct tty_term *, enum tty_code_code, int);
1708 const char *tty_term_string2(
1709 struct tty_term *, enum tty_code_code, int, int);
1710 const char *tty_term_ptr1(
1711 struct tty_term *, enum tty_code_code, const void *);
1712 const char *tty_term_ptr2(struct tty_term *, enum tty_code_code,
1713 const void *, const void *);
1714 int tty_term_number(struct tty_term *, enum tty_code_code);
1715 int tty_term_flag(struct tty_term *, enum tty_code_code);
1717 /* tty-acs.c */
1718 const char *tty_acs_get(struct tty *, u_char);
1720 /* tty-keys.c */
1721 void tty_keys_build(struct tty *);
1722 void tty_keys_free(struct tty *);
1723 int tty_keys_next(struct tty *);
1725 /* paste.c */
1726 struct paste_buffer *paste_walk_stack(struct paste_stack *, u_int *);
1727 struct paste_buffer *paste_get_top(struct paste_stack *);
1728 struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
1729 int paste_free_top(struct paste_stack *);
1730 int paste_free_index(struct paste_stack *, u_int);
1731 void paste_add(struct paste_stack *, char *, size_t, u_int);
1732 int paste_replace(struct paste_stack *, u_int, char *, size_t);
1733 char *paste_print(struct paste_buffer *, size_t);
1734 void paste_send_pane(struct paste_buffer *, struct window_pane *,
1735 const char *, int);
1737 /* clock.c */
1738 extern const char clock_table[14][5][5];
1739 void clock_draw(struct screen_write_ctx *, int, int);
1741 /* arguments.c */
1742 int args_cmp(struct args_entry *, struct args_entry *);
1743 RB_PROTOTYPE(args_tree, args_entry, entry, args_cmp);
1744 struct args *args_create(int, ...);
1745 struct args *args_parse(const char *, int, char **);
1746 void args_free(struct args *);
1747 size_t args_print(struct args *, char *, size_t);
1748 int args_has(struct args *, u_char);
1749 void args_set(struct args *, u_char, const char *);
1750 const char *args_get(struct args *, u_char);
1751 long long args_strtonum(
1752 struct args *, u_char, long long, long long, char **);
1754 /* cmd.c */
1755 int cmd_pack_argv(int, char **, char *, size_t);
1756 int cmd_unpack_argv(char *, size_t, int, char ***);
1757 char **cmd_copy_argv(int, char *const *);
1758 void cmd_free_argv(int, char **);
1759 struct cmd *cmd_parse(int, char **, const char *, u_int, char **);
1760 size_t cmd_print(struct cmd *, char *, size_t);
1761 struct session *cmd_current_session(struct cmd_q *, int);
1762 struct client *cmd_current_client(struct cmd_q *);
1763 struct client *cmd_find_client(struct cmd_q *, const char *, int);
1764 struct session *cmd_find_session(struct cmd_q *, const char *, int);
1765 struct winlink *cmd_find_window(struct cmd_q *, const char *,
1766 struct session **);
1767 int cmd_find_index(struct cmd_q *, const char *,
1768 struct session **);
1769 struct winlink *cmd_find_pane(struct cmd_q *, const char *, struct session **,
1770 struct window_pane **);
1771 char *cmd_template_replace(const char *, const char *, int);
1772 const char *cmd_default_path(const char *, const char *, const char *);
1773 extern const struct cmd_entry *cmd_table[];
1774 extern const struct cmd_entry cmd_attach_session_entry;
1775 extern const struct cmd_entry cmd_bind_key_entry;
1776 extern const struct cmd_entry cmd_break_pane_entry;
1777 extern const struct cmd_entry cmd_capture_pane_entry;
1778 extern const struct cmd_entry cmd_choose_buffer_entry;
1779 extern const struct cmd_entry cmd_choose_client_entry;
1780 extern const struct cmd_entry cmd_choose_list_entry;
1781 extern const struct cmd_entry cmd_choose_session_entry;
1782 extern const struct cmd_entry cmd_choose_tree_entry;
1783 extern const struct cmd_entry cmd_choose_window_entry;
1784 extern const struct cmd_entry cmd_clear_history_entry;
1785 extern const struct cmd_entry cmd_clock_mode_entry;
1786 extern const struct cmd_entry cmd_command_prompt_entry;
1787 extern const struct cmd_entry cmd_confirm_before_entry;
1788 extern const struct cmd_entry cmd_copy_mode_entry;
1789 extern const struct cmd_entry cmd_delete_buffer_entry;
1790 extern const struct cmd_entry cmd_detach_client_entry;
1791 extern const struct cmd_entry cmd_display_message_entry;
1792 extern const struct cmd_entry cmd_display_panes_entry;
1793 extern const struct cmd_entry cmd_down_pane_entry;
1794 extern const struct cmd_entry cmd_find_window_entry;
1795 extern const struct cmd_entry cmd_has_session_entry;
1796 extern const struct cmd_entry cmd_if_shell_entry;
1797 extern const struct cmd_entry cmd_join_pane_entry;
1798 extern const struct cmd_entry cmd_kill_pane_entry;
1799 extern const struct cmd_entry cmd_kill_server_entry;
1800 extern const struct cmd_entry cmd_kill_session_entry;
1801 extern const struct cmd_entry cmd_kill_window_entry;
1802 extern const struct cmd_entry cmd_last_pane_entry;
1803 extern const struct cmd_entry cmd_last_window_entry;
1804 extern const struct cmd_entry cmd_link_window_entry;
1805 extern const struct cmd_entry cmd_list_buffers_entry;
1806 extern const struct cmd_entry cmd_list_clients_entry;
1807 extern const struct cmd_entry cmd_list_commands_entry;
1808 extern const struct cmd_entry cmd_list_keys_entry;
1809 extern const struct cmd_entry cmd_list_panes_entry;
1810 extern const struct cmd_entry cmd_list_sessions_entry;
1811 extern const struct cmd_entry cmd_list_windows_entry;
1812 extern const struct cmd_entry cmd_load_buffer_entry;
1813 extern const struct cmd_entry cmd_lock_client_entry;
1814 extern const struct cmd_entry cmd_lock_server_entry;
1815 extern const struct cmd_entry cmd_lock_session_entry;
1816 extern const struct cmd_entry cmd_move_pane_entry;
1817 extern const struct cmd_entry cmd_move_window_entry;
1818 extern const struct cmd_entry cmd_new_session_entry;
1819 extern const struct cmd_entry cmd_new_window_entry;
1820 extern const struct cmd_entry cmd_next_layout_entry;
1821 extern const struct cmd_entry cmd_next_window_entry;
1822 extern const struct cmd_entry cmd_paste_buffer_entry;
1823 extern const struct cmd_entry cmd_pipe_pane_entry;
1824 extern const struct cmd_entry cmd_previous_layout_entry;
1825 extern const struct cmd_entry cmd_previous_window_entry;
1826 extern const struct cmd_entry cmd_refresh_client_entry;
1827 extern const struct cmd_entry cmd_rename_session_entry;
1828 extern const struct cmd_entry cmd_rename_window_entry;
1829 extern const struct cmd_entry cmd_resize_pane_entry;
1830 extern const struct cmd_entry cmd_respawn_pane_entry;
1831 extern const struct cmd_entry cmd_respawn_window_entry;
1832 extern const struct cmd_entry cmd_rotate_window_entry;
1833 extern const struct cmd_entry cmd_run_shell_entry;
1834 extern const struct cmd_entry cmd_save_buffer_entry;
1835 extern const struct cmd_entry cmd_select_layout_entry;
1836 extern const struct cmd_entry cmd_select_pane_entry;
1837 extern const struct cmd_entry cmd_select_window_entry;
1838 extern const struct cmd_entry cmd_send_keys_entry;
1839 extern const struct cmd_entry cmd_send_prefix_entry;
1840 extern const struct cmd_entry cmd_server_info_entry;
1841 extern const struct cmd_entry cmd_set_buffer_entry;
1842 extern const struct cmd_entry cmd_set_environment_entry;
1843 extern const struct cmd_entry cmd_set_option_entry;
1844 extern const struct cmd_entry cmd_set_window_option_entry;
1845 extern const struct cmd_entry cmd_show_buffer_entry;
1846 extern const struct cmd_entry cmd_show_environment_entry;
1847 extern const struct cmd_entry cmd_show_messages_entry;
1848 extern const struct cmd_entry cmd_show_options_entry;
1849 extern const struct cmd_entry cmd_show_window_options_entry;
1850 extern const struct cmd_entry cmd_source_file_entry;
1851 extern const struct cmd_entry cmd_split_window_entry;
1852 extern const struct cmd_entry cmd_start_server_entry;
1853 extern const struct cmd_entry cmd_suspend_client_entry;
1854 extern const struct cmd_entry cmd_swap_pane_entry;
1855 extern const struct cmd_entry cmd_swap_window_entry;
1856 extern const struct cmd_entry cmd_switch_client_entry;
1857 extern const struct cmd_entry cmd_unbind_key_entry;
1858 extern const struct cmd_entry cmd_unlink_window_entry;
1859 extern const struct cmd_entry cmd_up_pane_entry;
1860 extern const struct cmd_entry cmd_wait_for_entry;
1862 /* cmd-attach-session.c */
1863 enum cmd_retval cmd_attach_session(struct cmd_q *, const char*, int, int);
1865 /* cmd-list.c */
1866 struct cmd_list *cmd_list_parse(int, char **, const char *, u_int, char **);
1867 void cmd_list_free(struct cmd_list *);
1868 size_t cmd_list_print(struct cmd_list *, char *, size_t);
1870 /* cmd-queue.c */
1871 struct cmd_q *cmdq_new(struct client *);
1872 int cmdq_free(struct cmd_q *);
1873 void printflike2 cmdq_print(struct cmd_q *, const char *, ...);
1874 void printflike2 cmdq_info(struct cmd_q *, const char *, ...);
1875 void printflike2 cmdq_error(struct cmd_q *, const char *, ...);
1876 int cmdq_guard(struct cmd_q *, const char *, int);
1877 void cmdq_run(struct cmd_q *, struct cmd_list *);
1878 void cmdq_append(struct cmd_q *, struct cmd_list *);
1879 int cmdq_continue(struct cmd_q *);
1880 void cmdq_flush(struct cmd_q *);
1881 const char *cmdq_default_path(struct cmd_q *, const char *);
1883 /* cmd-string.c */
1884 int cmd_string_parse(const char *, struct cmd_list **, const char *,
1885 u_int, char **);
1887 /* client.c */
1888 int client_main(int, char **, int);
1890 /* key-bindings.c */
1891 extern struct key_bindings key_bindings;
1892 int key_bindings_cmp(struct key_binding *, struct key_binding *);
1893 RB_PROTOTYPE(key_bindings, key_binding, entry, key_bindings_cmp);
1894 struct key_binding *key_bindings_lookup(int);
1895 void key_bindings_add(int, int, struct cmd_list *);
1896 void key_bindings_remove(int);
1897 void key_bindings_clean(void);
1898 void key_bindings_init(void);
1899 void key_bindings_dispatch(struct key_binding *, struct client *);
1901 /* key-string.c */
1902 int key_string_lookup_string(const char *);
1903 const char *key_string_lookup_key(int);
1905 /* server.c */
1906 extern struct clients clients;
1907 extern struct clients dead_clients;
1908 extern struct paste_stack global_buffers;
1909 int server_start(int, char *);
1910 void server_update_socket(void);
1911 void server_add_accept(int);
1913 /* server-client.c */
1914 void server_client_handle_key(struct client *, int);
1915 void server_client_create(int);
1916 int server_client_open(struct client *, struct session *, char **);
1917 void server_client_lost(struct client *);
1918 void server_client_callback(int, short, void *);
1919 void server_client_status_timer(void);
1920 void server_client_loop(void);
1922 /* server-window.c */
1923 void server_window_loop(void);
1925 /* server-fn.c */
1926 void server_fill_environ(struct session *, struct environ *);
1927 void server_write_ready(struct client *);
1928 int server_write_client(
1929 struct client *, enum msgtype, const void *, size_t);
1930 void server_write_session(
1931 struct session *, enum msgtype, const void *, size_t);
1932 void server_redraw_client(struct client *);
1933 void server_status_client(struct client *);
1934 void server_redraw_session(struct session *);
1935 void server_redraw_session_group(struct session *);
1936 void server_status_session(struct session *);
1937 void server_status_session_group(struct session *);
1938 void server_redraw_window(struct window *);
1939 void server_redraw_window_borders(struct window *);
1940 void server_status_window(struct window *);
1941 void server_lock(void);
1942 void server_lock_session(struct session *);
1943 void server_lock_client(struct client *);
1944 int server_unlock(const char *);
1945 void server_kill_window(struct window *);
1946 int server_link_window(struct session *,
1947 struct winlink *, struct session *, int, int, int, char **);
1948 void server_unlink_window(struct session *, struct winlink *);
1949 void server_destroy_pane(struct window_pane *);
1950 void server_destroy_session_group(struct session *);
1951 void server_destroy_session(struct session *);
1952 void server_check_unattached(void);
1953 void server_set_identify(struct client *);
1954 void server_clear_identify(struct client *);
1955 void server_update_event(struct client *);
1956 void server_push_stdout(struct client *);
1957 void server_push_stderr(struct client *);
1958 int server_set_stdin_callback(struct client *, void (*)(struct client *,
1959 int, void *), void *, char **);
1960 void server_unzoom_window(struct window *);
1962 /* status.c */
1963 int status_out_cmp(struct status_out *, struct status_out *);
1964 RB_PROTOTYPE(status_out_tree, status_out, entry, status_out_cmp);
1965 int status_at_line(struct client *);
1966 void status_free_jobs(struct status_out_tree *);
1967 void status_update_jobs(struct client *);
1968 void status_set_window_at(struct client *, u_int);
1969 int status_redraw(struct client *);
1970 char *status_replace(struct client *, struct session *,
1971 struct winlink *, struct window_pane *, const char *, time_t, int);
1972 void printflike2 status_message_set(struct client *, const char *, ...);
1973 void status_message_clear(struct client *);
1974 int status_message_redraw(struct client *);
1975 void status_prompt_set(struct client *, const char *, const char *,
1976 int (*)(void *, const char *), void (*)(void *), void *, int);
1977 void status_prompt_clear(struct client *);
1978 int status_prompt_redraw(struct client *);
1979 void status_prompt_key(struct client *, int);
1980 void status_prompt_update(struct client *, const char *, const char *);
1982 /* resize.c */
1983 void recalculate_sizes(void);
1985 /* input.c */
1986 void input_init(struct window_pane *);
1987 void input_free(struct window_pane *);
1988 void input_parse(struct window_pane *);
1990 /* input-key.c */
1991 void input_key(struct window_pane *, int);
1992 void input_mouse(struct window_pane *, struct session *,
1993 struct mouse_event *);
1995 /* xterm-keys.c */
1996 char *xterm_keys_lookup(int);
1997 int xterm_keys_find(const char *, size_t, size_t *, int *);
1999 /* colour.c */
2000 void colour_set_fg(struct grid_cell *, int);
2001 void colour_set_bg(struct grid_cell *, int);
2002 const char *colour_tostring(int);
2003 int colour_fromstring(const char *);
2004 u_char colour_256to16(u_char);
2006 /* attributes.c */
2007 const char *attributes_tostring(u_char);
2008 int attributes_fromstring(const char *);
2010 /* grid.c */
2011 extern const struct grid_cell grid_default_cell;
2012 extern const struct grid_cell grid_marker_cell;
2013 struct grid *grid_create(u_int, u_int, u_int);
2014 void grid_destroy(struct grid *);
2015 int grid_compare(struct grid *, struct grid *);
2016 void grid_collect_history(struct grid *);
2017 void grid_scroll_history(struct grid *);
2018 void grid_scroll_history_region(struct grid *, u_int, u_int);
2019 void grid_expand_line(struct grid *, u_int, u_int);
2020 const struct grid_cell *grid_peek_cell(struct grid *, u_int, u_int);
2021 const struct grid_line *grid_peek_line(struct grid *, u_int);
2022 struct grid_cell *grid_get_cell(struct grid *, u_int, u_int);
2023 void grid_set_cell(struct grid *, u_int, u_int, const struct grid_cell *);
2024 void grid_clear(struct grid *, u_int, u_int, u_int, u_int);
2025 void grid_clear_lines(struct grid *, u_int, u_int);
2026 void grid_move_lines(struct grid *, u_int, u_int, u_int);
2027 void grid_move_cells(struct grid *, u_int, u_int, u_int, u_int);
2028 char *grid_string_cells(struct grid *, u_int, u_int, u_int,
2029 struct grid_cell **, int, int, int);
2030 void grid_duplicate_lines(
2031 struct grid *, u_int, struct grid *, u_int, u_int);
2032 u_int grid_reflow(struct grid *, struct grid *, u_int);
2034 /* grid-cell.c */
2035 u_int grid_cell_width(const struct grid_cell *);
2036 void grid_cell_get(const struct grid_cell *, struct utf8_data *);
2037 void grid_cell_set(struct grid_cell *, const struct utf8_data *);
2038 void grid_cell_one(struct grid_cell *, u_char);
2040 /* grid-view.c */
2041 const struct grid_cell *grid_view_peek_cell(struct grid *, u_int, u_int);
2042 struct grid_cell *grid_view_get_cell(struct grid *, u_int, u_int);
2043 void grid_view_set_cell(
2044 struct grid *, u_int, u_int, const struct grid_cell *);
2045 void grid_view_clear_history(struct grid *);
2046 void grid_view_clear(struct grid *, u_int, u_int, u_int, u_int);
2047 void grid_view_scroll_region_up(struct grid *, u_int, u_int);
2048 void grid_view_scroll_region_down(struct grid *, u_int, u_int);
2049 void grid_view_insert_lines(struct grid *, u_int, u_int);
2050 void grid_view_insert_lines_region(struct grid *, u_int, u_int, u_int);
2051 void grid_view_delete_lines(struct grid *, u_int, u_int);
2052 void grid_view_delete_lines_region(struct grid *, u_int, u_int, u_int);
2053 void grid_view_insert_cells(struct grid *, u_int, u_int, u_int);
2054 void grid_view_delete_cells(struct grid *, u_int, u_int, u_int);
2055 char *grid_view_string_cells(struct grid *, u_int, u_int, u_int);
2057 /* screen-write.c */
2058 void screen_write_start(
2059 struct screen_write_ctx *, struct window_pane *, struct screen *);
2060 void screen_write_stop(struct screen_write_ctx *);
2061 void screen_write_reset(struct screen_write_ctx *);
2062 size_t printflike2 screen_write_cstrlen(int, const char *, ...);
2063 void printflike5 screen_write_cnputs(struct screen_write_ctx *,
2064 ssize_t, struct grid_cell *, int, const char *, ...);
2065 size_t printflike2 screen_write_strlen(int, const char *, ...);
2066 void printflike3 screen_write_puts(struct screen_write_ctx *,
2067 struct grid_cell *, const char *, ...);
2068 void printflike5 screen_write_nputs(struct screen_write_ctx *,
2069 ssize_t, struct grid_cell *, int, const char *, ...);
2070 void screen_write_vnputs(struct screen_write_ctx *,
2071 ssize_t, struct grid_cell *, int, const char *, va_list);
2072 void screen_write_parsestyle(
2073 struct grid_cell *, struct grid_cell *, const char *);
2074 void screen_write_putc(
2075 struct screen_write_ctx *, struct grid_cell *, u_char);
2076 void screen_write_copy(struct screen_write_ctx *,
2077 struct screen *, u_int, u_int, u_int, u_int);
2078 void screen_write_backspace(struct screen_write_ctx *);
2079 void screen_write_mode_set(struct screen_write_ctx *, int);
2080 void screen_write_mode_clear(struct screen_write_ctx *, int);
2081 void screen_write_cursorup(struct screen_write_ctx *, u_int);
2082 void screen_write_cursordown(struct screen_write_ctx *, u_int);
2083 void screen_write_cursorright(struct screen_write_ctx *, u_int);
2084 void screen_write_cursorleft(struct screen_write_ctx *, u_int);
2085 void screen_write_alignmenttest(struct screen_write_ctx *);
2086 void screen_write_insertcharacter(struct screen_write_ctx *, u_int);
2087 void screen_write_deletecharacter(struct screen_write_ctx *, u_int);
2088 void screen_write_clearcharacter(struct screen_write_ctx *, u_int);
2089 void screen_write_insertline(struct screen_write_ctx *, u_int);
2090 void screen_write_deleteline(struct screen_write_ctx *, u_int);
2091 void screen_write_clearline(struct screen_write_ctx *);
2092 void screen_write_clearendofline(struct screen_write_ctx *);
2093 void screen_write_clearstartofline(struct screen_write_ctx *);
2094 void screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);
2095 void screen_write_reverseindex(struct screen_write_ctx *);
2096 void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
2097 void screen_write_linefeed(struct screen_write_ctx *, int);
2098 void screen_write_linefeedscreen(struct screen_write_ctx *, int);
2099 void screen_write_carriagereturn(struct screen_write_ctx *);
2100 void screen_write_clearendofscreen(struct screen_write_ctx *);
2101 void screen_write_clearstartofscreen(struct screen_write_ctx *);
2102 void screen_write_clearscreen(struct screen_write_ctx *);
2103 void screen_write_clearhistory(struct screen_write_ctx *);
2104 void screen_write_cell(struct screen_write_ctx *, const struct grid_cell *);
2105 void screen_write_setselection(struct screen_write_ctx *, u_char *, u_int);
2106 void screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int);
2108 /* screen-redraw.c */
2109 void screen_redraw_screen(struct client *, int, int);
2110 void screen_redraw_pane(struct client *, struct window_pane *);
2112 /* screen.c */
2113 void screen_init(struct screen *, u_int, u_int, u_int);
2114 void screen_reinit(struct screen *);
2115 void screen_free(struct screen *);
2116 void screen_reset_tabs(struct screen *);
2117 void screen_set_cursor_style(struct screen *, u_int);
2118 void screen_set_cursor_colour(struct screen *, const char *);
2119 void screen_set_title(struct screen *, const char *);
2120 void screen_resize(struct screen *, u_int, u_int, int);
2121 void screen_set_selection(struct screen *,
2122 u_int, u_int, u_int, u_int, u_int, struct grid_cell *);
2123 void screen_clear_selection(struct screen *);
2124 int screen_check_selection(struct screen *, u_int, u_int);
2125 void screen_reflow(struct screen *, u_int);
2127 /* window.c */
2128 extern struct windows windows;
2129 extern struct window_pane_tree all_window_panes;
2130 int winlink_cmp(struct winlink *, struct winlink *);
2131 RB_PROTOTYPE(winlinks, winlink, entry, winlink_cmp);
2132 int window_pane_cmp(struct window_pane *, struct window_pane *);
2133 RB_PROTOTYPE(window_pane_tree, window_pane, tree_entry, window_pane_cmp);
2134 struct winlink *winlink_find_by_index(struct winlinks *, int);
2135 struct winlink *winlink_find_by_window(struct winlinks *, struct window *);
2136 struct winlink *winlink_find_by_window_id(struct winlinks *, u_int);
2137 int winlink_next_index(struct winlinks *, int);
2138 u_int winlink_count(struct winlinks *);
2139 struct winlink *winlink_add(struct winlinks *, int);
2140 void winlink_set_window(struct winlink *, struct window *);
2141 void winlink_remove(struct winlinks *, struct winlink *);
2142 struct winlink *winlink_next(struct winlink *);
2143 struct winlink *winlink_previous(struct winlink *);
2144 struct winlink *winlink_next_by_number(struct winlink *, struct session *,
2145 int);
2146 struct winlink *winlink_previous_by_number(struct winlink *, struct session *,
2147 int);
2148 void winlink_stack_push(struct winlink_stack *, struct winlink *);
2149 void winlink_stack_remove(struct winlink_stack *, struct winlink *);
2150 int window_index(struct window *, u_int *);
2151 struct window *window_find_by_id(u_int);
2152 struct window *window_create1(u_int, u_int);
2153 struct window *window_create(const char *, const char *, const char *,
2154 const char *, struct environ *, struct termios *,
2155 u_int, u_int, u_int, char **);
2156 void window_destroy(struct window *);
2157 struct window_pane *window_get_active_at(struct window *, u_int, u_int);
2158 void window_set_active_at(struct window *, u_int, u_int);
2159 struct window_pane *window_find_string(struct window *, const char *);
2160 void window_set_active_pane(struct window *, struct window_pane *);
2161 struct window_pane *window_add_pane(struct window *, u_int);
2162 void window_resize(struct window *, u_int, u_int);
2163 int window_zoom(struct window_pane *);
2164 int window_unzoom(struct window *);
2165 void window_remove_pane(struct window *, struct window_pane *);
2166 struct window_pane *window_pane_at_index(struct window *, u_int);
2167 struct window_pane *window_pane_next_by_number(struct window *,
2168 struct window_pane *, u_int);
2169 struct window_pane *window_pane_previous_by_number(struct window *,
2170 struct window_pane *, u_int);
2171 int window_pane_index(struct window_pane *, u_int *);
2172 u_int window_count_panes(struct window *);
2173 void window_destroy_panes(struct window *);
2174 struct window_pane *window_pane_find_by_id(u_int);
2175 struct window_pane *window_pane_create(struct window *, u_int, u_int, u_int);
2176 void window_pane_destroy(struct window_pane *);
2177 void window_pane_timer_start(struct window_pane *);
2178 int window_pane_spawn(struct window_pane *, const char *,
2179 const char *, const char *, struct environ *,
2180 struct termios *, char **);
2181 void window_pane_resize(struct window_pane *, u_int, u_int);
2182 void window_pane_alternate_on(struct window_pane *,
2183 struct grid_cell *, int);
2184 void window_pane_alternate_off(struct window_pane *,
2185 struct grid_cell *, int);
2186 int window_pane_set_mode(
2187 struct window_pane *, const struct window_mode *);
2188 void window_pane_reset_mode(struct window_pane *);
2189 void window_pane_key(struct window_pane *, struct session *, int);
2190 void window_pane_mouse(struct window_pane *,
2191 struct session *, struct mouse_event *);
2192 int window_pane_visible(struct window_pane *);
2193 char *window_pane_search(
2194 struct window_pane *, const char *, u_int *);
2195 char *window_printable_flags(struct session *, struct winlink *);
2196 struct window_pane *window_pane_find_up(struct window_pane *);
2197 struct window_pane *window_pane_find_down(struct window_pane *);
2198 struct window_pane *window_pane_find_left(struct window_pane *);
2199 struct window_pane *window_pane_find_right(struct window_pane *);
2200 void window_set_name(struct window *, const char *);
2201 void window_remove_ref(struct window *);
2202 void winlink_clear_flags(struct winlink *);
2203 void window_mode_attrs(struct grid_cell *, struct options *);
2205 /* layout.c */
2206 u_int layout_count_cells(struct layout_cell *);
2207 struct layout_cell *layout_create_cell(struct layout_cell *);
2208 void layout_free_cell(struct layout_cell *);
2209 void layout_print_cell(struct layout_cell *, const char *, u_int);
2210 void layout_destroy_cell(struct layout_cell *, struct layout_cell **);
2211 void layout_set_size(
2212 struct layout_cell *, u_int, u_int, u_int, u_int);
2213 void layout_make_leaf(
2214 struct layout_cell *, struct window_pane *);
2215 void layout_make_node(struct layout_cell *, enum layout_type);
2216 void layout_fix_offsets(struct layout_cell *);
2217 void layout_fix_panes(struct window *, u_int, u_int);
2218 u_int layout_resize_check(struct layout_cell *, enum layout_type);
2219 void layout_resize_adjust(
2220 struct layout_cell *, enum layout_type, int);
2221 void layout_init(struct window *, struct window_pane *);
2222 void layout_free(struct window *);
2223 void layout_resize(struct window *, u_int, u_int);
2224 void layout_resize_pane(struct window_pane *, enum layout_type,
2225 int);
2226 void layout_resize_pane_to(struct window_pane *, enum layout_type,
2227 u_int);
2228 void layout_resize_pane_mouse(struct client *);
2229 void layout_assign_pane(struct layout_cell *, struct window_pane *);
2230 struct layout_cell *layout_split_pane(
2231 struct window_pane *, enum layout_type, int, int);
2232 void layout_close_pane(struct window_pane *);
2234 /* layout-custom.c */
2235 char *layout_dump(struct window *);
2236 int layout_parse(struct window *, const char *);
2238 /* layout-set.c */
2239 const char *layout_set_name(u_int);
2240 int layout_set_lookup(const char *);
2241 u_int layout_set_select(struct window *, u_int);
2242 u_int layout_set_next(struct window *);
2243 u_int layout_set_previous(struct window *);
2244 void layout_set_active_changed(struct window *);
2246 /* window-clock.c */
2247 extern const struct window_mode window_clock_mode;
2249 /* window-copy.c */
2250 extern const struct window_mode window_copy_mode;
2251 void window_copy_init_from_pane(struct window_pane *);
2252 void window_copy_init_for_output(struct window_pane *);
2253 void printflike2 window_copy_add(struct window_pane *, const char *, ...);
2254 void window_copy_vadd(struct window_pane *, const char *, va_list);
2255 void window_copy_pageup(struct window_pane *);
2257 /* window-choose.c */
2258 extern const struct window_mode window_choose_mode;
2259 void window_choose_add(struct window_pane *,
2260 struct window_choose_data *);
2261 void window_choose_ready(struct window_pane *,
2262 u_int, void (*)(struct window_choose_data *));
2263 struct window_choose_data *window_choose_data_create (int,
2264 struct client *, struct session *);
2265 void window_choose_data_free(struct window_choose_data *);
2266 void window_choose_data_run(struct window_choose_data *);
2267 struct window_choose_data *window_choose_add_window(struct window_pane *,
2268 struct client *, struct session *, struct winlink *,
2269 const char *, const char *, u_int);
2270 struct window_choose_data *window_choose_add_session(struct window_pane *,
2271 struct client *, struct session *, const char *,
2272 const char *, u_int);
2273 struct window_choose_data *window_choose_add_item(struct window_pane *,
2274 struct client *, struct winlink *, const char *,
2275 const char *, u_int);
2276 void window_choose_expand_all(struct window_pane *);
2277 void window_choose_collapse_all(struct window_pane *);
2278 void window_choose_set_current(struct window_pane *, u_int);
2280 /* names.c */
2281 void queue_window_name(struct window *);
2282 char *default_window_name(struct window *);
2283 char *format_window_name(struct window *);
2284 char *parse_window_name(const char *);
2286 /* signal.c */
2287 void set_signals(void(*)(int, short, void *));
2288 void clear_signals(int);
2290 /* control.c */
2291 void control_callback(struct client *, int, void*);
2292 void printflike2 control_write(struct client *, const char *, ...);
2293 void control_write_buffer(struct client *, struct evbuffer *);
2295 /* control-notify.c */
2296 void control_notify_input(struct client *, struct window_pane *,
2297 struct evbuffer *);
2298 void control_notify_window_layout_changed(struct window *);
2299 void control_notify_window_unlinked(struct session *, struct window *);
2300 void control_notify_window_linked(struct session *, struct window *);
2301 void control_notify_window_renamed(struct window *);
2302 void control_notify_attached_session_changed(struct client *);
2303 void control_notify_session_renamed(struct session *);
2304 void control_notify_session_created(struct session *);
2305 void control_notify_session_close(struct session *);
2307 /* session.c */
2308 extern struct sessions sessions;
2309 extern struct sessions dead_sessions;
2310 extern struct session_groups session_groups;
2311 int session_cmp(struct session *, struct session *);
2312 RB_PROTOTYPE(sessions, session, entry, session_cmp);
2313 int session_alive(struct session *);
2314 struct session *session_find(const char *);
2315 struct session *session_find_by_id(u_int);
2316 struct session *session_create(const char *, const char *, const char *,
2317 struct environ *, struct termios *, int, u_int, u_int,
2318 char **);
2319 void session_destroy(struct session *);
2320 int session_check_name(const char *);
2321 void session_update_activity(struct session *);
2322 struct session *session_next_session(struct session *);
2323 struct session *session_previous_session(struct session *);
2324 struct winlink *session_new(struct session *,
2325 const char *, const char *, const char *, int, char **);
2326 struct winlink *session_attach(
2327 struct session *, struct window *, int, char **);
2328 int session_detach(struct session *, struct winlink *);
2329 struct winlink* session_has(struct session *, struct window *);
2330 int session_next(struct session *, int);
2331 int session_previous(struct session *, int);
2332 int session_select(struct session *, int);
2333 int session_last(struct session *);
2334 int session_set_current(struct session *, struct winlink *);
2335 struct session_group *session_group_find(struct session *);
2336 u_int session_group_index(struct session_group *);
2337 void session_group_add(struct session *, struct session *);
2338 void session_group_remove(struct session *);
2339 void session_group_synchronize_to(struct session *);
2340 void session_group_synchronize_from(struct session *);
2341 void session_group_synchronize1(struct session *, struct session *);
2342 void session_renumber_windows(struct session *);
2344 /* utf8.c */
2345 void utf8_build(void);
2346 int utf8_open(struct utf8_data *, u_char);
2347 int utf8_append(struct utf8_data *, u_char);
2348 u_int utf8_combine(const struct utf8_data *);
2349 u_int utf8_split2(u_int, u_char *);
2351 /* procname.c */
2352 char *get_proc_name(int, char *);
2353 char *get_proc_cwd(int);
2355 /* log.c */
2356 void log_open(int, const char *);
2357 void log_close(void);
2358 void printflike1 log_warn(const char *, ...);
2359 void printflike1 log_warnx(const char *, ...);
2360 void printflike1 log_info(const char *, ...);
2361 void printflike1 log_debug(const char *, ...);
2362 void printflike1 log_debug2(const char *, ...);
2363 __dead void printflike1 log_fatal(const char *, ...);
2364 __dead void printflike1 log_fatalx(const char *, ...);
2366 /* xmalloc.c */
2367 char *xstrdup(const char *);
2368 void *xcalloc(size_t, size_t);
2369 void *xmalloc(size_t);
2370 void *xrealloc(void *, size_t, size_t);
2371 int printflike2 xasprintf(char **, const char *, ...);
2372 int xvasprintf(char **, const char *, va_list);
2373 int printflike3 xsnprintf(char *, size_t, const char *, ...);
2374 int xvsnprintf(char *, size_t, const char *, va_list);
2376 #endif /* TMUX_H */