Add an option (scroll-on-clear) to control if tmux scrolls into history
[tmux-openbsd.git] / tmux.h
blob66a264f1cae8e364011ee2abb50402b6d280c72e
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
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 #include <sys/time.h>
23 #include <sys/queue.h>
24 #include <sys/tree.h>
26 #include <bitstring.h>
27 #include <event.h>
28 #include <limits.h>
29 #include <stdarg.h>
30 #include <stdint.h>
31 #include <stdio.h>
32 #include <termios.h>
34 #include "tmux-protocol.h"
35 #include "xmalloc.h"
37 extern char **environ;
39 struct args;
40 struct args_command_state;
41 struct client;
42 struct cmd;
43 struct cmd_find_state;
44 struct cmdq_item;
45 struct cmdq_list;
46 struct cmdq_state;
47 struct cmds;
48 struct control_state;
49 struct environ;
50 struct format_job_tree;
51 struct format_tree;
52 struct input_ctx;
53 struct job;
54 struct menu_data;
55 struct mode_tree_data;
56 struct mouse_event;
57 struct options;
58 struct options_array_item;
59 struct options_entry;
60 struct screen_write_citem;
61 struct screen_write_cline;
62 struct screen_write_ctx;
63 struct session;
64 struct tty_ctx;
65 struct tty_code;
66 struct tty_key;
67 struct tmuxpeer;
68 struct tmuxproc;
69 struct winlink;
71 /* Default configuration files and socket paths. */
72 #ifndef TMUX_CONF
73 #define TMUX_CONF "/etc/tmux.conf:~/.tmux.conf"
74 #endif
75 #ifndef TMUX_SOCK
76 #define TMUX_SOCK "$TMUX_TMPDIR:" _PATH_TMP
77 #endif
78 #ifndef TMUX_TERM
79 #define TMUX_TERM "screen"
80 #endif
82 /* Minimum layout cell size, NOT including border lines. */
83 #define PANE_MINIMUM 1
85 /* Minimum and maximum window size. */
86 #define WINDOW_MINIMUM PANE_MINIMUM
87 #define WINDOW_MAXIMUM 10000
89 /* Automatic name refresh interval, in microseconds. Must be < 1 second. */
90 #define NAME_INTERVAL 500000
92 /* Default pixel cell sizes. */
93 #define DEFAULT_XPIXEL 16
94 #define DEFAULT_YPIXEL 32
96 /* Attribute to make GCC check printf-like arguments. */
97 #define printflike(a, b) __attribute__ ((format (printf, a, b)))
99 /* Number of items in array. */
100 #ifndef nitems
101 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
102 #endif
104 /* Alert option values. */
105 #define ALERT_NONE 0
106 #define ALERT_ANY 1
107 #define ALERT_CURRENT 2
108 #define ALERT_OTHER 3
110 /* Visual option values. */
111 #define VISUAL_OFF 0
112 #define VISUAL_ON 1
113 #define VISUAL_BOTH 2
115 /* No key or unknown key. */
116 #define KEYC_NONE 0x000ff000000000ULL
117 #define KEYC_UNKNOWN 0x000fe000000000ULL
120 * Base for special (that is, not Unicode) keys. An enum must be at most a
121 * signed int, so these are based in the highest Unicode PUA.
123 #define KEYC_BASE 0x0000000010e000ULL
124 #define KEYC_USER 0x0000000010f000ULL
126 /* Key modifier bits. */
127 #define KEYC_META 0x00100000000000ULL
128 #define KEYC_CTRL 0x00200000000000ULL
129 #define KEYC_SHIFT 0x00400000000000ULL
131 /* Key flag bits. */
132 #define KEYC_LITERAL 0x01000000000000ULL
133 #define KEYC_KEYPAD 0x02000000000000ULL
134 #define KEYC_CURSOR 0x04000000000000ULL
135 #define KEYC_IMPLIED_META 0x08000000000000ULL
136 #define KEYC_BUILD_MODIFIERS 0x10000000000000ULL
137 #define KEYC_VI 0x20000000000000ULL
139 /* Masks for key bits. */
140 #define KEYC_MASK_MODIFIERS 0x00f00000000000ULL
141 #define KEYC_MASK_FLAGS 0xff000000000000ULL
142 #define KEYC_MASK_KEY 0x000fffffffffffULL
144 /* Available user keys. */
145 #define KEYC_NUSER 1000
147 /* Is this a mouse key? */
148 #define KEYC_IS_MOUSE(key) \
149 (((key) & KEYC_MASK_KEY) >= KEYC_MOUSE && \
150 ((key) & KEYC_MASK_KEY) < KEYC_BSPACE)
152 /* Is this a Unicode key? */
153 #define KEYC_IS_UNICODE(key) \
154 (((key) & KEYC_MASK_KEY) > 0x7f && \
155 (((key) & KEYC_MASK_KEY) < KEYC_BASE || \
156 ((key) & KEYC_MASK_KEY) >= KEYC_BASE_END))
158 /* Multiple click timeout. */
159 #define KEYC_CLICK_TIMEOUT 300
161 /* Mouse key codes. */
162 #define KEYC_MOUSE_KEY(name) \
163 KEYC_ ## name ## _PANE, \
164 KEYC_ ## name ## _STATUS, \
165 KEYC_ ## name ## _STATUS_LEFT, \
166 KEYC_ ## name ## _STATUS_RIGHT, \
167 KEYC_ ## name ## _STATUS_DEFAULT, \
168 KEYC_ ## name ## _BORDER
169 #define KEYC_MOUSE_STRING(name, s) \
170 { #s "Pane", KEYC_ ## name ## _PANE }, \
171 { #s "Status", KEYC_ ## name ## _STATUS }, \
172 { #s "StatusLeft", KEYC_ ## name ## _STATUS_LEFT }, \
173 { #s "StatusRight", KEYC_ ## name ## _STATUS_RIGHT }, \
174 { #s "StatusDefault", KEYC_ ## name ## _STATUS_DEFAULT }, \
175 { #s "Border", KEYC_ ## name ## _BORDER }
178 * A single key. This can be ASCII or Unicode or one of the keys between
179 * KEYC_BASE and KEYC_BASE_END.
181 typedef unsigned long long key_code;
183 /* Special key codes. */
184 enum {
185 /* Focus events. */
186 KEYC_FOCUS_IN = KEYC_BASE,
187 KEYC_FOCUS_OUT,
189 /* "Any" key, used if not found in key table. */
190 KEYC_ANY,
192 /* Paste brackets. */
193 KEYC_PASTE_START,
194 KEYC_PASTE_END,
196 /* Mouse keys. */
197 KEYC_MOUSE, /* unclassified mouse event */
198 KEYC_DRAGGING, /* dragging in progress */
199 KEYC_DOUBLECLICK, /* double click complete */
200 KEYC_MOUSE_KEY(MOUSEMOVE),
201 KEYC_MOUSE_KEY(MOUSEDOWN1),
202 KEYC_MOUSE_KEY(MOUSEDOWN2),
203 KEYC_MOUSE_KEY(MOUSEDOWN3),
204 KEYC_MOUSE_KEY(MOUSEDOWN6),
205 KEYC_MOUSE_KEY(MOUSEDOWN7),
206 KEYC_MOUSE_KEY(MOUSEDOWN8),
207 KEYC_MOUSE_KEY(MOUSEDOWN9),
208 KEYC_MOUSE_KEY(MOUSEDOWN10),
209 KEYC_MOUSE_KEY(MOUSEDOWN11),
210 KEYC_MOUSE_KEY(MOUSEUP1),
211 KEYC_MOUSE_KEY(MOUSEUP2),
212 KEYC_MOUSE_KEY(MOUSEUP3),
213 KEYC_MOUSE_KEY(MOUSEUP6),
214 KEYC_MOUSE_KEY(MOUSEUP7),
215 KEYC_MOUSE_KEY(MOUSEUP8),
216 KEYC_MOUSE_KEY(MOUSEUP9),
217 KEYC_MOUSE_KEY(MOUSEUP10),
218 KEYC_MOUSE_KEY(MOUSEUP11),
219 KEYC_MOUSE_KEY(MOUSEDRAG1),
220 KEYC_MOUSE_KEY(MOUSEDRAG2),
221 KEYC_MOUSE_KEY(MOUSEDRAG3),
222 KEYC_MOUSE_KEY(MOUSEDRAG6),
223 KEYC_MOUSE_KEY(MOUSEDRAG7),
224 KEYC_MOUSE_KEY(MOUSEDRAG8),
225 KEYC_MOUSE_KEY(MOUSEDRAG9),
226 KEYC_MOUSE_KEY(MOUSEDRAG10),
227 KEYC_MOUSE_KEY(MOUSEDRAG11),
228 KEYC_MOUSE_KEY(MOUSEDRAGEND1),
229 KEYC_MOUSE_KEY(MOUSEDRAGEND2),
230 KEYC_MOUSE_KEY(MOUSEDRAGEND3),
231 KEYC_MOUSE_KEY(MOUSEDRAGEND6),
232 KEYC_MOUSE_KEY(MOUSEDRAGEND7),
233 KEYC_MOUSE_KEY(MOUSEDRAGEND8),
234 KEYC_MOUSE_KEY(MOUSEDRAGEND9),
235 KEYC_MOUSE_KEY(MOUSEDRAGEND10),
236 KEYC_MOUSE_KEY(MOUSEDRAGEND11),
237 KEYC_MOUSE_KEY(WHEELUP),
238 KEYC_MOUSE_KEY(WHEELDOWN),
239 KEYC_MOUSE_KEY(SECONDCLICK1),
240 KEYC_MOUSE_KEY(SECONDCLICK2),
241 KEYC_MOUSE_KEY(SECONDCLICK3),
242 KEYC_MOUSE_KEY(SECONDCLICK6),
243 KEYC_MOUSE_KEY(SECONDCLICK7),
244 KEYC_MOUSE_KEY(SECONDCLICK8),
245 KEYC_MOUSE_KEY(SECONDCLICK9),
246 KEYC_MOUSE_KEY(SECONDCLICK10),
247 KEYC_MOUSE_KEY(SECONDCLICK11),
248 KEYC_MOUSE_KEY(DOUBLECLICK1),
249 KEYC_MOUSE_KEY(DOUBLECLICK2),
250 KEYC_MOUSE_KEY(DOUBLECLICK3),
251 KEYC_MOUSE_KEY(DOUBLECLICK6),
252 KEYC_MOUSE_KEY(DOUBLECLICK7),
253 KEYC_MOUSE_KEY(DOUBLECLICK8),
254 KEYC_MOUSE_KEY(DOUBLECLICK9),
255 KEYC_MOUSE_KEY(DOUBLECLICK10),
256 KEYC_MOUSE_KEY(DOUBLECLICK11),
257 KEYC_MOUSE_KEY(TRIPLECLICK1),
258 KEYC_MOUSE_KEY(TRIPLECLICK2),
259 KEYC_MOUSE_KEY(TRIPLECLICK3),
260 KEYC_MOUSE_KEY(TRIPLECLICK6),
261 KEYC_MOUSE_KEY(TRIPLECLICK7),
262 KEYC_MOUSE_KEY(TRIPLECLICK8),
263 KEYC_MOUSE_KEY(TRIPLECLICK9),
264 KEYC_MOUSE_KEY(TRIPLECLICK10),
265 KEYC_MOUSE_KEY(TRIPLECLICK11),
267 /* Backspace key. */
268 KEYC_BSPACE,
270 /* Function keys. */
271 KEYC_F1,
272 KEYC_F2,
273 KEYC_F3,
274 KEYC_F4,
275 KEYC_F5,
276 KEYC_F6,
277 KEYC_F7,
278 KEYC_F8,
279 KEYC_F9,
280 KEYC_F10,
281 KEYC_F11,
282 KEYC_F12,
283 KEYC_IC,
284 KEYC_DC,
285 KEYC_HOME,
286 KEYC_END,
287 KEYC_NPAGE,
288 KEYC_PPAGE,
289 KEYC_BTAB,
291 /* Arrow keys. */
292 KEYC_UP,
293 KEYC_DOWN,
294 KEYC_LEFT,
295 KEYC_RIGHT,
297 /* Numeric keypad. */
298 KEYC_KP_SLASH,
299 KEYC_KP_STAR,
300 KEYC_KP_MINUS,
301 KEYC_KP_SEVEN,
302 KEYC_KP_EIGHT,
303 KEYC_KP_NINE,
304 KEYC_KP_PLUS,
305 KEYC_KP_FOUR,
306 KEYC_KP_FIVE,
307 KEYC_KP_SIX,
308 KEYC_KP_ONE,
309 KEYC_KP_TWO,
310 KEYC_KP_THREE,
311 KEYC_KP_ENTER,
312 KEYC_KP_ZERO,
313 KEYC_KP_PERIOD,
315 /* End of special keys. */
316 KEYC_BASE_END
319 /* Termcap codes. */
320 enum tty_code_code {
321 TTYC_ACSC,
322 TTYC_AM,
323 TTYC_AX,
324 TTYC_BCE,
325 TTYC_BEL,
326 TTYC_BIDI,
327 TTYC_BLINK,
328 TTYC_BOLD,
329 TTYC_CIVIS,
330 TTYC_CLEAR,
331 TTYC_CLMG,
332 TTYC_CMG,
333 TTYC_CNORM,
334 TTYC_COLORS,
335 TTYC_CR,
336 TTYC_CS,
337 TTYC_CSR,
338 TTYC_CUB,
339 TTYC_CUB1,
340 TTYC_CUD,
341 TTYC_CUD1,
342 TTYC_CUF,
343 TTYC_CUF1,
344 TTYC_CUP,
345 TTYC_CUU,
346 TTYC_CUU1,
347 TTYC_CVVIS,
348 TTYC_DCH,
349 TTYC_DCH1,
350 TTYC_DIM,
351 TTYC_DL,
352 TTYC_DL1,
353 TTYC_DSBP,
354 TTYC_DSEKS,
355 TTYC_DSFCS,
356 TTYC_DSMG,
357 TTYC_E3,
358 TTYC_ECH,
359 TTYC_ED,
360 TTYC_EL,
361 TTYC_EL1,
362 TTYC_ENACS,
363 TTYC_ENBP,
364 TTYC_ENEKS,
365 TTYC_ENFCS,
366 TTYC_ENMG,
367 TTYC_FSL,
368 TTYC_HOME,
369 TTYC_HPA,
370 TTYC_ICH,
371 TTYC_ICH1,
372 TTYC_IL,
373 TTYC_IL1,
374 TTYC_INDN,
375 TTYC_INVIS,
376 TTYC_KCBT,
377 TTYC_KCUB1,
378 TTYC_KCUD1,
379 TTYC_KCUF1,
380 TTYC_KCUU1,
381 TTYC_KDC2,
382 TTYC_KDC3,
383 TTYC_KDC4,
384 TTYC_KDC5,
385 TTYC_KDC6,
386 TTYC_KDC7,
387 TTYC_KDCH1,
388 TTYC_KDN2,
389 TTYC_KDN3,
390 TTYC_KDN4,
391 TTYC_KDN5,
392 TTYC_KDN6,
393 TTYC_KDN7,
394 TTYC_KEND,
395 TTYC_KEND2,
396 TTYC_KEND3,
397 TTYC_KEND4,
398 TTYC_KEND5,
399 TTYC_KEND6,
400 TTYC_KEND7,
401 TTYC_KF1,
402 TTYC_KF10,
403 TTYC_KF11,
404 TTYC_KF12,
405 TTYC_KF13,
406 TTYC_KF14,
407 TTYC_KF15,
408 TTYC_KF16,
409 TTYC_KF17,
410 TTYC_KF18,
411 TTYC_KF19,
412 TTYC_KF2,
413 TTYC_KF20,
414 TTYC_KF21,
415 TTYC_KF22,
416 TTYC_KF23,
417 TTYC_KF24,
418 TTYC_KF25,
419 TTYC_KF26,
420 TTYC_KF27,
421 TTYC_KF28,
422 TTYC_KF29,
423 TTYC_KF3,
424 TTYC_KF30,
425 TTYC_KF31,
426 TTYC_KF32,
427 TTYC_KF33,
428 TTYC_KF34,
429 TTYC_KF35,
430 TTYC_KF36,
431 TTYC_KF37,
432 TTYC_KF38,
433 TTYC_KF39,
434 TTYC_KF4,
435 TTYC_KF40,
436 TTYC_KF41,
437 TTYC_KF42,
438 TTYC_KF43,
439 TTYC_KF44,
440 TTYC_KF45,
441 TTYC_KF46,
442 TTYC_KF47,
443 TTYC_KF48,
444 TTYC_KF49,
445 TTYC_KF5,
446 TTYC_KF50,
447 TTYC_KF51,
448 TTYC_KF52,
449 TTYC_KF53,
450 TTYC_KF54,
451 TTYC_KF55,
452 TTYC_KF56,
453 TTYC_KF57,
454 TTYC_KF58,
455 TTYC_KF59,
456 TTYC_KF6,
457 TTYC_KF60,
458 TTYC_KF61,
459 TTYC_KF62,
460 TTYC_KF63,
461 TTYC_KF7,
462 TTYC_KF8,
463 TTYC_KF9,
464 TTYC_KHOM2,
465 TTYC_KHOM3,
466 TTYC_KHOM4,
467 TTYC_KHOM5,
468 TTYC_KHOM6,
469 TTYC_KHOM7,
470 TTYC_KHOME,
471 TTYC_KIC2,
472 TTYC_KIC3,
473 TTYC_KIC4,
474 TTYC_KIC5,
475 TTYC_KIC6,
476 TTYC_KIC7,
477 TTYC_KICH1,
478 TTYC_KIND,
479 TTYC_KLFT2,
480 TTYC_KLFT3,
481 TTYC_KLFT4,
482 TTYC_KLFT5,
483 TTYC_KLFT6,
484 TTYC_KLFT7,
485 TTYC_KMOUS,
486 TTYC_KNP,
487 TTYC_KNXT2,
488 TTYC_KNXT3,
489 TTYC_KNXT4,
490 TTYC_KNXT5,
491 TTYC_KNXT6,
492 TTYC_KNXT7,
493 TTYC_KPP,
494 TTYC_KPRV2,
495 TTYC_KPRV3,
496 TTYC_KPRV4,
497 TTYC_KPRV5,
498 TTYC_KPRV6,
499 TTYC_KPRV7,
500 TTYC_KRI,
501 TTYC_KRIT2,
502 TTYC_KRIT3,
503 TTYC_KRIT4,
504 TTYC_KRIT5,
505 TTYC_KRIT6,
506 TTYC_KRIT7,
507 TTYC_KUP2,
508 TTYC_KUP3,
509 TTYC_KUP4,
510 TTYC_KUP5,
511 TTYC_KUP6,
512 TTYC_KUP7,
513 TTYC_MS,
514 TTYC_OL,
515 TTYC_OP,
516 TTYC_RECT,
517 TTYC_REV,
518 TTYC_RGB,
519 TTYC_RI,
520 TTYC_RIN,
521 TTYC_RMACS,
522 TTYC_RMCUP,
523 TTYC_RMKX,
524 TTYC_SE,
525 TTYC_SETAB,
526 TTYC_SETAF,
527 TTYC_SETAL,
528 TTYC_SETRGBB,
529 TTYC_SETRGBF,
530 TTYC_SETULC,
531 TTYC_SGR0,
532 TTYC_SITM,
533 TTYC_SMACS,
534 TTYC_SMCUP,
535 TTYC_SMKX,
536 TTYC_SMOL,
537 TTYC_SMSO,
538 TTYC_SMUL,
539 TTYC_SMULX,
540 TTYC_SMXX,
541 TTYC_SS,
542 TTYC_SYNC,
543 TTYC_TC,
544 TTYC_TSL,
545 TTYC_U8,
546 TTYC_VPA,
547 TTYC_XT
550 /* Character classes. */
551 #define WHITESPACE " "
553 /* Mode keys. */
554 #define MODEKEY_EMACS 0
555 #define MODEKEY_VI 1
557 /* Modes. */
558 #define MODE_CURSOR 0x1
559 #define MODE_INSERT 0x2
560 #define MODE_KCURSOR 0x4
561 #define MODE_KKEYPAD 0x8
562 #define MODE_WRAP 0x10
563 #define MODE_MOUSE_STANDARD 0x20
564 #define MODE_MOUSE_BUTTON 0x40
565 #define MODE_CURSOR_BLINKING 0x80
566 #define MODE_MOUSE_UTF8 0x100
567 #define MODE_MOUSE_SGR 0x200
568 #define MODE_BRACKETPASTE 0x400
569 #define MODE_FOCUSON 0x800
570 #define MODE_MOUSE_ALL 0x1000
571 #define MODE_ORIGIN 0x2000
572 #define MODE_CRLF 0x4000
573 #define MODE_KEXTENDED 0x8000
574 #define MODE_CURSOR_VERY_VISIBLE 0x10000
575 #define MODE_CURSOR_BLINKING_SET 0x20000
577 #define ALL_MODES 0xffffff
578 #define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ALL)
579 #define MOTION_MOUSE_MODES (MODE_MOUSE_BUTTON|MODE_MOUSE_ALL)
580 #define CURSOR_MODES (MODE_CURSOR|MODE_CURSOR_BLINKING|MODE_CURSOR_VERY_VISIBLE)
582 /* A single UTF-8 character. */
583 typedef u_int utf8_char;
586 * An expanded UTF-8 character. UTF8_SIZE must be big enough to hold combining
587 * characters as well. It can't be more than 32 bytes without changes to how
588 * characters are stored.
590 #define UTF8_SIZE 21
591 struct utf8_data {
592 u_char data[UTF8_SIZE];
594 u_char have;
595 u_char size;
597 u_char width; /* 0xff if invalid */
599 enum utf8_state {
600 UTF8_MORE,
601 UTF8_DONE,
602 UTF8_ERROR
605 /* Colour flags. */
606 #define COLOUR_FLAG_256 0x01000000
607 #define COLOUR_FLAG_RGB 0x02000000
609 /* Special colours. */
610 #define COLOUR_DEFAULT(c) ((c) == 8 || (c) == 9)
612 /* Replacement palette. */
613 struct colour_palette {
614 int fg;
615 int bg;
617 int *palette;
618 int *default_palette;
621 /* Grid attributes. Anything above 0xff is stored in an extended cell. */
622 #define GRID_ATTR_BRIGHT 0x1
623 #define GRID_ATTR_DIM 0x2
624 #define GRID_ATTR_UNDERSCORE 0x4
625 #define GRID_ATTR_BLINK 0x8
626 #define GRID_ATTR_REVERSE 0x10
627 #define GRID_ATTR_HIDDEN 0x20
628 #define GRID_ATTR_ITALICS 0x40
629 #define GRID_ATTR_CHARSET 0x80 /* alternative character set */
630 #define GRID_ATTR_STRIKETHROUGH 0x100
631 #define GRID_ATTR_UNDERSCORE_2 0x200
632 #define GRID_ATTR_UNDERSCORE_3 0x400
633 #define GRID_ATTR_UNDERSCORE_4 0x800
634 #define GRID_ATTR_UNDERSCORE_5 0x1000
635 #define GRID_ATTR_OVERLINE 0x2000
637 /* All underscore attributes. */
638 #define GRID_ATTR_ALL_UNDERSCORE \
639 (GRID_ATTR_UNDERSCORE| \
640 GRID_ATTR_UNDERSCORE_2| \
641 GRID_ATTR_UNDERSCORE_3| \
642 GRID_ATTR_UNDERSCORE_4| \
643 GRID_ATTR_UNDERSCORE_5)
645 /* Grid flags. */
646 #define GRID_FLAG_FG256 0x1
647 #define GRID_FLAG_BG256 0x2
648 #define GRID_FLAG_PADDING 0x4
649 #define GRID_FLAG_EXTENDED 0x8
650 #define GRID_FLAG_SELECTED 0x10
651 #define GRID_FLAG_NOPALETTE 0x20
652 #define GRID_FLAG_CLEARED 0x40
654 /* Grid line flags. */
655 #define GRID_LINE_WRAPPED 0x1
656 #define GRID_LINE_EXTENDED 0x2
657 #define GRID_LINE_DEAD 0x4
659 #define CELL_INSIDE 0
660 #define CELL_TOPBOTTOM 1
661 #define CELL_LEFTRIGHT 2
662 #define CELL_TOPLEFT 3
663 #define CELL_TOPRIGHT 4
664 #define CELL_BOTTOMLEFT 5
665 #define CELL_BOTTOMRIGHT 6
666 #define CELL_TOPJOIN 7
667 #define CELL_BOTTOMJOIN 8
668 #define CELL_LEFTJOIN 9
669 #define CELL_RIGHTJOIN 10
670 #define CELL_JOIN 11
671 #define CELL_OUTSIDE 12
673 #define CELL_BORDERS " xqlkmjwvtun~"
674 #define SIMPLE_BORDERS " |-+++++++++."
675 #define PADDED_BORDERS " "
677 /* Grid cell data. */
678 struct grid_cell {
679 struct utf8_data data;
680 u_short attr;
681 u_char flags;
682 int fg;
683 int bg;
684 int us;
687 /* Grid extended cell entry. */
688 struct grid_extd_entry {
689 utf8_char data;
690 u_short attr;
691 u_char flags;
692 int fg;
693 int bg;
694 int us;
695 } __packed;
697 /* Grid cell entry. */
698 struct grid_cell_entry {
699 u_char flags;
700 union {
701 u_int offset;
702 struct {
703 u_char attr;
704 u_char fg;
705 u_char bg;
706 u_char data;
707 } data;
709 } __packed;
711 /* Grid line. */
712 struct grid_line {
713 struct grid_cell_entry *celldata;
714 u_int cellused;
715 u_int cellsize;
717 struct grid_extd_entry *extddata;
718 u_int extdsize;
720 int flags;
723 /* Entire grid of cells. */
724 struct grid {
725 int flags;
726 #define GRID_HISTORY 0x1 /* scroll lines into history */
728 u_int sx;
729 u_int sy;
731 u_int hscrolled;
732 u_int hsize;
733 u_int hlimit;
735 struct grid_line *linedata;
738 /* Virtual cursor in a grid. */
739 struct grid_reader {
740 struct grid *gd;
741 u_int cx;
742 u_int cy;
745 /* Style alignment. */
746 enum style_align {
747 STYLE_ALIGN_DEFAULT,
748 STYLE_ALIGN_LEFT,
749 STYLE_ALIGN_CENTRE,
750 STYLE_ALIGN_RIGHT,
751 STYLE_ALIGN_ABSOLUTE_CENTRE
754 /* Style list. */
755 enum style_list {
756 STYLE_LIST_OFF,
757 STYLE_LIST_ON,
758 STYLE_LIST_FOCUS,
759 STYLE_LIST_LEFT_MARKER,
760 STYLE_LIST_RIGHT_MARKER,
763 /* Style range. */
764 enum style_range_type {
765 STYLE_RANGE_NONE,
766 STYLE_RANGE_LEFT,
767 STYLE_RANGE_RIGHT,
768 STYLE_RANGE_WINDOW
770 struct style_range {
771 enum style_range_type type;
772 u_int argument;
774 u_int start;
775 u_int end; /* not included */
777 TAILQ_ENTRY(style_range) entry;
779 TAILQ_HEAD(style_ranges, style_range);
781 /* Style default. */
782 enum style_default_type {
783 STYLE_DEFAULT_BASE,
784 STYLE_DEFAULT_PUSH,
785 STYLE_DEFAULT_POP
788 /* Style option. */
789 struct style {
790 struct grid_cell gc;
791 int ignore;
793 int fill;
794 enum style_align align;
795 enum style_list list;
797 enum style_range_type range_type;
798 u_int range_argument;
800 enum style_default_type default_type;
803 /* Cursor style. */
804 enum screen_cursor_style {
805 SCREEN_CURSOR_DEFAULT,
806 SCREEN_CURSOR_BLOCK,
807 SCREEN_CURSOR_UNDERLINE,
808 SCREEN_CURSOR_BAR
811 /* Virtual screen. */
812 struct screen_sel;
813 struct screen_titles;
814 struct screen {
815 char *title;
816 char *path;
817 struct screen_titles *titles;
819 struct grid *grid; /* grid data */
821 u_int cx; /* cursor x */
822 u_int cy; /* cursor y */
824 enum screen_cursor_style cstyle; /* cursor style */
825 enum screen_cursor_style default_cstyle;
826 int ccolour; /* cursor colour */
827 int default_ccolour;
829 u_int rupper; /* scroll region top */
830 u_int rlower; /* scroll region bottom */
832 int mode;
833 int default_mode;
835 u_int saved_cx;
836 u_int saved_cy;
837 struct grid *saved_grid;
838 struct grid_cell saved_cell;
839 int saved_flags;
841 bitstr_t *tabs;
842 struct screen_sel *sel;
844 struct screen_write_cline *write_list;
847 /* Screen write context. */
848 typedef void (*screen_write_init_ctx_cb)(struct screen_write_ctx *,
849 struct tty_ctx *);
850 struct screen_write_ctx {
851 struct window_pane *wp;
852 struct screen *s;
854 int flags;
855 #define SCREEN_WRITE_SYNC 0x1
856 #define SCREEN_WRITE_ZWJ 0x2
858 screen_write_init_ctx_cb init_ctx_cb;
859 void *arg;
861 struct screen_write_citem *item;
862 u_int scrolled;
863 u_int bg;
866 /* Box border lines option. */
867 enum box_lines {
868 BOX_LINES_DEFAULT = -1,
869 BOX_LINES_SINGLE,
870 BOX_LINES_DOUBLE,
871 BOX_LINES_HEAVY,
872 BOX_LINES_SIMPLE,
873 BOX_LINES_ROUNDED,
874 BOX_LINES_PADDED,
875 BOX_LINES_NONE
878 /* Pane border lines option. */
879 enum pane_lines {
880 PANE_LINES_SINGLE,
881 PANE_LINES_DOUBLE,
882 PANE_LINES_HEAVY,
883 PANE_LINES_SIMPLE,
884 PANE_LINES_NUMBER
887 /* Pane border indicator option. */
888 #define PANE_BORDER_OFF 0
889 #define PANE_BORDER_COLOUR 1
890 #define PANE_BORDER_ARROWS 2
891 #define PANE_BORDER_BOTH 3
893 /* Screen redraw context. */
894 struct screen_redraw_ctx {
895 struct client *c;
897 u_int statuslines;
898 int statustop;
900 int pane_status;
901 enum pane_lines pane_lines;
903 struct grid_cell no_pane_gc;
904 int no_pane_gc_set;
906 u_int sx;
907 u_int sy;
908 u_int ox;
909 u_int oy;
912 /* Screen size. */
913 #define screen_size_x(s) ((s)->grid->sx)
914 #define screen_size_y(s) ((s)->grid->sy)
915 #define screen_hsize(s) ((s)->grid->hsize)
916 #define screen_hlimit(s) ((s)->grid->hlimit)
918 /* Menu. */
919 struct menu_item {
920 const char *name;
921 key_code key;
922 const char *command;
924 struct menu {
925 const char *title;
926 struct menu_item *items;
927 u_int count;
928 u_int width;
930 typedef void (*menu_choice_cb)(struct menu *, u_int, key_code, void *);
933 * Window mode. Windows can be in several modes and this is used to call the
934 * right function to handle input and output.
936 struct window_mode_entry;
937 struct window_mode {
938 const char *name;
939 const char *default_format;
941 struct screen *(*init)(struct window_mode_entry *,
942 struct cmd_find_state *, struct args *);
943 void (*free)(struct window_mode_entry *);
944 void (*resize)(struct window_mode_entry *, u_int, u_int);
945 void (*update)(struct window_mode_entry *);
946 void (*key)(struct window_mode_entry *, struct client *,
947 struct session *, struct winlink *, key_code,
948 struct mouse_event *);
950 const char *(*key_table)(struct window_mode_entry *);
951 void (*command)(struct window_mode_entry *, struct client *,
952 struct session *, struct winlink *, struct args *,
953 struct mouse_event *);
954 void (*formats)(struct window_mode_entry *,
955 struct format_tree *);
958 /* Active window mode. */
959 struct window_mode_entry {
960 struct window_pane *wp;
961 struct window_pane *swp;
963 const struct window_mode *mode;
964 void *data;
966 struct screen *screen;
967 u_int prefix;
969 TAILQ_ENTRY(window_mode_entry) entry;
972 /* Offsets into pane buffer. */
973 struct window_pane_offset {
974 size_t used;
977 /* Queued pane resize. */
978 struct window_pane_resize {
979 u_int sx;
980 u_int sy;
982 u_int osx;
983 u_int osy;
985 TAILQ_ENTRY(window_pane_resize) entry;
987 TAILQ_HEAD(window_pane_resizes, window_pane_resize);
989 /* Child window structure. */
990 struct window_pane {
991 u_int id;
992 u_int active_point;
994 struct window *window;
995 struct options *options;
997 struct layout_cell *layout_cell;
998 struct layout_cell *saved_layout_cell;
1000 u_int sx;
1001 u_int sy;
1003 u_int xoff;
1004 u_int yoff;
1006 int flags;
1007 #define PANE_REDRAW 0x1
1008 #define PANE_DROP 0x2
1009 #define PANE_FOCUSED 0x4
1010 /* 0x8 unused */
1011 /* 0x10 unused */
1012 /* 0x20 unused */
1013 #define PANE_INPUTOFF 0x40
1014 #define PANE_CHANGED 0x80
1015 #define PANE_EXITED 0x100
1016 #define PANE_STATUSREADY 0x200
1017 #define PANE_STATUSDRAWN 0x400
1018 #define PANE_EMPTY 0x800
1019 #define PANE_STYLECHANGED 0x1000
1021 int argc;
1022 char **argv;
1023 char *shell;
1024 char *cwd;
1026 pid_t pid;
1027 char tty[TTY_NAME_MAX];
1028 int status;
1029 struct timeval dead_time;
1031 int fd;
1032 struct bufferevent *event;
1034 struct window_pane_offset offset;
1035 size_t base_offset;
1037 struct window_pane_resizes resize_queue;
1038 struct event resize_timer;
1040 struct input_ctx *ictx;
1042 struct grid_cell cached_gc;
1043 struct grid_cell cached_active_gc;
1044 struct colour_palette palette;
1046 int pipe_fd;
1047 struct bufferevent *pipe_event;
1048 struct window_pane_offset pipe_offset;
1050 struct screen *screen;
1051 struct screen base;
1053 struct screen status_screen;
1054 size_t status_size;
1056 TAILQ_HEAD(, window_mode_entry) modes;
1058 char *searchstr;
1059 int searchregex;
1061 int border_gc_set;
1062 struct grid_cell border_gc;
1064 TAILQ_ENTRY(window_pane) entry;
1065 RB_ENTRY(window_pane) tree_entry;
1067 TAILQ_HEAD(window_panes, window_pane);
1068 RB_HEAD(window_pane_tree, window_pane);
1070 /* Window structure. */
1071 struct window {
1072 u_int id;
1073 void *latest;
1075 char *name;
1076 struct event name_event;
1077 struct timeval name_time;
1079 struct event alerts_timer;
1080 struct event offset_timer;
1082 struct timeval activity_time;
1084 struct window_pane *active;
1085 struct window_pane *last;
1086 struct window_panes panes;
1088 int lastlayout;
1089 struct layout_cell *layout_root;
1090 struct layout_cell *saved_layout_root;
1091 char *old_layout;
1093 u_int sx;
1094 u_int sy;
1095 u_int manual_sx;
1096 u_int manual_sy;
1097 u_int xpixel;
1098 u_int ypixel;
1100 u_int new_sx;
1101 u_int new_sy;
1102 u_int new_xpixel;
1103 u_int new_ypixel;
1105 struct utf8_data *fill_character;
1106 int flags;
1107 #define WINDOW_BELL 0x1
1108 #define WINDOW_ACTIVITY 0x2
1109 #define WINDOW_SILENCE 0x4
1110 #define WINDOW_ZOOMED 0x8
1111 #define WINDOW_WASZOOMED 0x10
1112 #define WINDOW_RESIZE 0x20
1113 #define WINDOW_ALERTFLAGS (WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_SILENCE)
1115 int alerts_queued;
1116 TAILQ_ENTRY(window) alerts_entry;
1118 struct options *options;
1120 u_int references;
1121 TAILQ_HEAD(, winlink) winlinks;
1123 RB_ENTRY(window) entry;
1125 RB_HEAD(windows, window);
1127 /* Entry on local window list. */
1128 struct winlink {
1129 int idx;
1130 struct session *session;
1131 struct window *window;
1133 int flags;
1134 #define WINLINK_BELL 0x1
1135 #define WINLINK_ACTIVITY 0x2
1136 #define WINLINK_SILENCE 0x4
1137 #define WINLINK_ALERTFLAGS (WINLINK_BELL|WINLINK_ACTIVITY|WINLINK_SILENCE)
1139 RB_ENTRY(winlink) entry;
1140 TAILQ_ENTRY(winlink) wentry;
1141 TAILQ_ENTRY(winlink) sentry;
1143 RB_HEAD(winlinks, winlink);
1144 TAILQ_HEAD(winlink_stack, winlink);
1146 /* Window size option. */
1147 #define WINDOW_SIZE_LARGEST 0
1148 #define WINDOW_SIZE_SMALLEST 1
1149 #define WINDOW_SIZE_MANUAL 2
1150 #define WINDOW_SIZE_LATEST 3
1152 /* Pane border status option. */
1153 #define PANE_STATUS_OFF 0
1154 #define PANE_STATUS_TOP 1
1155 #define PANE_STATUS_BOTTOM 2
1157 /* Layout direction. */
1158 enum layout_type {
1159 LAYOUT_LEFTRIGHT,
1160 LAYOUT_TOPBOTTOM,
1161 LAYOUT_WINDOWPANE
1164 /* Layout cells queue. */
1165 TAILQ_HEAD(layout_cells, layout_cell);
1167 /* Layout cell. */
1168 struct layout_cell {
1169 enum layout_type type;
1171 struct layout_cell *parent;
1173 u_int sx;
1174 u_int sy;
1176 u_int xoff;
1177 u_int yoff;
1179 struct window_pane *wp;
1180 struct layout_cells cells;
1182 TAILQ_ENTRY(layout_cell) entry;
1185 /* Environment variable. */
1186 struct environ_entry {
1187 char *name;
1188 char *value;
1190 int flags;
1191 #define ENVIRON_HIDDEN 0x1
1193 RB_ENTRY(environ_entry) entry;
1196 /* Client session. */
1197 struct session_group {
1198 const char *name;
1199 TAILQ_HEAD(, session) sessions;
1201 RB_ENTRY(session_group) entry;
1203 RB_HEAD(session_groups, session_group);
1205 struct session {
1206 u_int id;
1208 char *name;
1209 const char *cwd;
1211 struct timeval creation_time;
1212 struct timeval last_attached_time;
1213 struct timeval activity_time;
1214 struct timeval last_activity_time;
1216 struct event lock_timer;
1218 struct winlink *curw;
1219 struct winlink_stack lastw;
1220 struct winlinks windows;
1222 int statusat;
1223 u_int statuslines;
1225 struct options *options;
1227 #define SESSION_PASTING 0x1
1228 #define SESSION_ALERTED 0x2
1229 int flags;
1231 u_int attached;
1233 struct termios *tio;
1235 struct environ *environ;
1237 int references;
1239 TAILQ_ENTRY(session) gentry;
1240 RB_ENTRY(session) entry;
1242 RB_HEAD(sessions, session);
1244 /* Mouse button masks. */
1245 #define MOUSE_MASK_BUTTONS 195
1246 #define MOUSE_MASK_SHIFT 4
1247 #define MOUSE_MASK_META 8
1248 #define MOUSE_MASK_CTRL 16
1249 #define MOUSE_MASK_DRAG 32
1250 #define MOUSE_MASK_MODIFIERS (MOUSE_MASK_SHIFT|MOUSE_MASK_META|MOUSE_MASK_CTRL)
1252 /* Mouse wheel type. */
1253 #define MOUSE_WHEEL_UP 64
1254 #define MOUSE_WHEEL_DOWN 65
1256 /* Mouse button type. */
1257 #define MOUSE_BUTTON_1 0
1258 #define MOUSE_BUTTON_2 1
1259 #define MOUSE_BUTTON_3 2
1260 #define MOUSE_BUTTON_6 66
1261 #define MOUSE_BUTTON_7 67
1262 #define MOUSE_BUTTON_8 128
1263 #define MOUSE_BUTTON_9 129
1264 #define MOUSE_BUTTON_10 130
1265 #define MOUSE_BUTTON_11 131
1267 /* Mouse helpers. */
1268 #define MOUSE_BUTTONS(b) ((b) & MOUSE_MASK_BUTTONS)
1269 #define MOUSE_WHEEL(b) \
1270 (((b) & MOUSE_MASK_BUTTONS) == MOUSE_WHEEL_UP || \
1271 ((b) & MOUSE_MASK_BUTTONS) == MOUSE_WHEEL_DOWN)
1272 #define MOUSE_DRAG(b) ((b) & MOUSE_MASK_DRAG)
1273 #define MOUSE_RELEASE(b) (((b) & MOUSE_MASK_BUTTONS) == 3)
1275 /* Mouse input. */
1276 struct mouse_event {
1277 int valid;
1278 int ignore;
1280 key_code key;
1282 int statusat;
1283 u_int statuslines;
1285 u_int x;
1286 u_int y;
1287 u_int b;
1289 u_int lx;
1290 u_int ly;
1291 u_int lb;
1293 u_int ox;
1294 u_int oy;
1296 int s;
1297 int w;
1298 int wp;
1300 u_int sgr_type;
1301 u_int sgr_b;
1304 /* Key event. */
1305 struct key_event {
1306 key_code key;
1307 struct mouse_event m;
1310 /* Terminal definition. */
1311 struct tty_term {
1312 char *name;
1313 struct tty *tty;
1314 int features;
1316 char acs[UCHAR_MAX + 1][2];
1318 struct tty_code *codes;
1320 #define TERM_256COLOURS 0x1
1321 #define TERM_NOAM 0x2
1322 #define TERM_DECSLRM 0x4
1323 #define TERM_DECFRA 0x8
1324 #define TERM_RGBCOLOURS 0x10
1325 #define TERM_VT100LIKE 0x20
1326 int flags;
1328 LIST_ENTRY(tty_term) entry;
1330 LIST_HEAD(tty_terms, tty_term);
1332 /* Client terminal. */
1333 struct tty {
1334 struct client *client;
1335 struct event start_timer;
1336 struct event clipboard_timer;
1338 u_int sx;
1339 u_int sy;
1340 u_int xpixel;
1341 u_int ypixel;
1343 u_int cx;
1344 u_int cy;
1345 enum screen_cursor_style cstyle;
1346 int ccolour;
1348 int oflag;
1349 u_int oox;
1350 u_int ooy;
1351 u_int osx;
1352 u_int osy;
1354 int mode;
1356 u_int rlower;
1357 u_int rupper;
1359 u_int rleft;
1360 u_int rright;
1362 struct event event_in;
1363 struct evbuffer *in;
1364 struct event event_out;
1365 struct evbuffer *out;
1366 struct event timer;
1367 size_t discarded;
1369 struct termios tio;
1371 struct grid_cell cell;
1372 struct grid_cell last_cell;
1374 #define TTY_NOCURSOR 0x1
1375 #define TTY_FREEZE 0x2
1376 #define TTY_TIMER 0x4
1377 #define TTY_NOBLOCK 0x8
1378 #define TTY_STARTED 0x10
1379 #define TTY_OPENED 0x20
1380 #define TTY_OSC52QUERY 0x40
1381 #define TTY_BLOCK 0x80
1382 #define TTY_HAVEDA 0x100
1383 #define TTY_HAVEXDA 0x200
1384 #define TTY_SYNCING 0x400
1385 int flags;
1387 struct tty_term *term;
1389 u_int mouse_last_x;
1390 u_int mouse_last_y;
1391 u_int mouse_last_b;
1392 int mouse_drag_flag;
1393 void (*mouse_drag_update)(struct client *,
1394 struct mouse_event *);
1395 void (*mouse_drag_release)(struct client *,
1396 struct mouse_event *);
1398 struct event key_timer;
1399 struct tty_key *key_tree;
1402 /* Terminal command context. */
1403 typedef void (*tty_ctx_redraw_cb)(const struct tty_ctx *);
1404 typedef int (*tty_ctx_set_client_cb)(struct tty_ctx *, struct client *);
1405 struct tty_ctx {
1406 struct screen *s;
1408 tty_ctx_redraw_cb redraw_cb;
1409 tty_ctx_set_client_cb set_client_cb;
1410 void *arg;
1412 const struct grid_cell *cell;
1413 int wrapped;
1415 u_int num;
1416 void *ptr;
1419 * Cursor and region position before the screen was updated - this is
1420 * where the command should be applied; the values in the screen have
1421 * already been updated.
1423 u_int ocx;
1424 u_int ocy;
1426 u_int orupper;
1427 u_int orlower;
1429 /* Target region (usually pane) offset and size. */
1430 u_int xoff;
1431 u_int yoff;
1432 u_int rxoff;
1433 u_int ryoff;
1434 u_int sx;
1435 u_int sy;
1437 /* The background colour used for clearing (erasing). */
1438 u_int bg;
1440 /* The default colours and palette. */
1441 struct grid_cell defaults;
1442 struct colour_palette *palette;
1444 /* Containing region (usually window) offset and size. */
1445 int bigger;
1446 u_int wox;
1447 u_int woy;
1448 u_int wsx;
1449 u_int wsy;
1452 /* Saved message entry. */
1453 struct message_entry {
1454 char *msg;
1455 u_int msg_num;
1456 struct timeval msg_time;
1458 TAILQ_ENTRY(message_entry) entry;
1460 TAILQ_HEAD(message_list, message_entry);
1462 /* Argument type. */
1463 enum args_type {
1464 ARGS_NONE,
1465 ARGS_STRING,
1466 ARGS_COMMANDS
1469 /* Argument value. */
1470 struct args_value {
1471 enum args_type type;
1472 union {
1473 char *string;
1474 struct cmd_list *cmdlist;
1476 char *cached;
1477 TAILQ_ENTRY(args_value) entry;
1480 /* Arguments set. */
1481 struct args_entry;
1482 RB_HEAD(args_tree, args_entry);
1484 /* Arguments parsing type. */
1485 enum args_parse_type {
1486 ARGS_PARSE_INVALID,
1487 ARGS_PARSE_STRING,
1488 ARGS_PARSE_COMMANDS_OR_STRING,
1489 ARGS_PARSE_COMMANDS
1492 /* Arguments parsing state. */
1493 typedef enum args_parse_type (*args_parse_cb)(struct args *, u_int, char **);
1494 struct args_parse {
1495 const char *template;
1496 int lower;
1497 int upper;
1498 args_parse_cb cb;
1501 /* Command find structures. */
1502 enum cmd_find_type {
1503 CMD_FIND_PANE,
1504 CMD_FIND_WINDOW,
1505 CMD_FIND_SESSION,
1507 struct cmd_find_state {
1508 int flags;
1509 struct cmd_find_state *current;
1511 struct session *s;
1512 struct winlink *wl;
1513 struct window *w;
1514 struct window_pane *wp;
1515 int idx;
1518 /* Command find flags. */
1519 #define CMD_FIND_PREFER_UNATTACHED 0x1
1520 #define CMD_FIND_QUIET 0x2
1521 #define CMD_FIND_WINDOW_INDEX 0x4
1522 #define CMD_FIND_DEFAULT_MARKED 0x8
1523 #define CMD_FIND_EXACT_SESSION 0x10
1524 #define CMD_FIND_EXACT_WINDOW 0x20
1525 #define CMD_FIND_CANFAIL 0x40
1527 /* List of commands. */
1528 struct cmd_list {
1529 int references;
1530 u_int group;
1531 struct cmds *list;
1534 /* Command return values. */
1535 enum cmd_retval {
1536 CMD_RETURN_ERROR = -1,
1537 CMD_RETURN_NORMAL = 0,
1538 CMD_RETURN_WAIT,
1539 CMD_RETURN_STOP
1542 /* Command parse result. */
1543 enum cmd_parse_status {
1544 CMD_PARSE_ERROR,
1545 CMD_PARSE_SUCCESS
1547 struct cmd_parse_result {
1548 enum cmd_parse_status status;
1549 struct cmd_list *cmdlist;
1550 char *error;
1552 struct cmd_parse_input {
1553 int flags;
1554 #define CMD_PARSE_QUIET 0x1
1555 #define CMD_PARSE_PARSEONLY 0x2
1556 #define CMD_PARSE_NOALIAS 0x4
1557 #define CMD_PARSE_VERBOSE 0x8
1558 #define CMD_PARSE_ONEGROUP 0x10
1560 const char *file;
1561 u_int line;
1563 struct cmdq_item *item;
1564 struct client *c;
1565 struct cmd_find_state fs;
1568 /* Command queue flags. */
1569 #define CMDQ_STATE_REPEAT 0x1
1570 #define CMDQ_STATE_CONTROL 0x2
1571 #define CMDQ_STATE_NOHOOKS 0x4
1573 /* Command queue callback. */
1574 typedef enum cmd_retval (*cmdq_cb) (struct cmdq_item *, void *);
1576 /* Command definition flag. */
1577 struct cmd_entry_flag {
1578 char flag;
1579 enum cmd_find_type type;
1580 int flags;
1583 /* Command definition. */
1584 struct cmd_entry {
1585 const char *name;
1586 const char *alias;
1588 struct args_parse args;
1589 const char *usage;
1591 struct cmd_entry_flag source;
1592 struct cmd_entry_flag target;
1594 #define CMD_STARTSERVER 0x1
1595 #define CMD_READONLY 0x2
1596 #define CMD_AFTERHOOK 0x4
1597 #define CMD_CLIENT_CFLAG 0x8
1598 #define CMD_CLIENT_TFLAG 0x10
1599 #define CMD_CLIENT_CANFAIL 0x20
1600 int flags;
1602 enum cmd_retval (*exec)(struct cmd *, struct cmdq_item *);
1605 /* Status line. */
1606 #define STATUS_LINES_LIMIT 5
1607 struct status_line_entry {
1608 char *expanded;
1609 struct style_ranges ranges;
1611 struct status_line {
1612 struct event timer;
1614 struct screen screen;
1615 struct screen *active;
1616 int references;
1618 struct grid_cell style;
1619 struct status_line_entry entries[STATUS_LINES_LIMIT];
1622 /* Prompt type. */
1623 #define PROMPT_NTYPES 4
1624 enum prompt_type {
1625 PROMPT_TYPE_COMMAND,
1626 PROMPT_TYPE_SEARCH,
1627 PROMPT_TYPE_TARGET,
1628 PROMPT_TYPE_WINDOW_TARGET,
1629 PROMPT_TYPE_INVALID = 0xff
1632 /* File in client. */
1633 typedef void (*client_file_cb) (struct client *, const char *, int, int,
1634 struct evbuffer *, void *);
1635 struct client_file {
1636 struct client *c;
1637 struct tmuxpeer *peer;
1638 struct client_files *tree;
1639 int references;
1640 int stream;
1642 char *path;
1643 struct evbuffer *buffer;
1644 struct bufferevent *event;
1646 int fd;
1647 int error;
1648 int closed;
1650 client_file_cb cb;
1651 void *data;
1653 RB_ENTRY(client_file) entry;
1655 RB_HEAD(client_files, client_file);
1657 /* Client window. */
1658 struct client_window {
1659 u_int window;
1660 struct window_pane *pane;
1662 u_int sx;
1663 u_int sy;
1665 RB_ENTRY(client_window) entry;
1667 RB_HEAD(client_windows, client_window);
1669 /* Visible areas not obstructed by overlays. */
1670 #define OVERLAY_MAX_RANGES 3
1671 struct overlay_ranges {
1672 u_int px[OVERLAY_MAX_RANGES];
1673 u_int nx[OVERLAY_MAX_RANGES];
1676 /* Client connection. */
1677 typedef int (*prompt_input_cb)(struct client *, void *, const char *, int);
1678 typedef void (*prompt_free_cb)(void *);
1679 typedef void (*overlay_check_cb)(struct client*, void *, u_int, u_int, u_int,
1680 struct overlay_ranges *);
1681 typedef struct screen *(*overlay_mode_cb)(struct client *, void *, u_int *,
1682 u_int *);
1683 typedef void (*overlay_draw_cb)(struct client *, void *,
1684 struct screen_redraw_ctx *);
1685 typedef int (*overlay_key_cb)(struct client *, void *, struct key_event *);
1686 typedef void (*overlay_free_cb)(struct client *, void *);
1687 typedef void (*overlay_resize_cb)(struct client *, void *);
1688 struct client {
1689 const char *name;
1690 struct tmuxpeer *peer;
1691 struct cmdq_list *queue;
1693 struct client_windows windows;
1695 struct control_state *control_state;
1696 u_int pause_age;
1698 pid_t pid;
1699 int fd;
1700 int out_fd;
1701 struct event event;
1702 int retval;
1704 struct timeval creation_time;
1705 struct timeval activity_time;
1707 struct environ *environ;
1708 struct format_job_tree *jobs;
1710 char *title;
1711 const char *cwd;
1713 char *term_name;
1714 int term_features;
1715 char *term_type;
1716 char **term_caps;
1717 u_int term_ncaps;
1719 char *ttyname;
1720 struct tty tty;
1722 size_t written;
1723 size_t discarded;
1724 size_t redraw;
1726 struct event repeat_timer;
1728 struct event click_timer;
1729 u_int click_button;
1730 struct mouse_event click_event;
1732 struct status_line status;
1734 #define CLIENT_TERMINAL 0x1
1735 #define CLIENT_LOGIN 0x2
1736 #define CLIENT_EXIT 0x4
1737 #define CLIENT_REDRAWWINDOW 0x8
1738 #define CLIENT_REDRAWSTATUS 0x10
1739 #define CLIENT_REPEAT 0x20
1740 #define CLIENT_SUSPENDED 0x40
1741 #define CLIENT_ATTACHED 0x80
1742 #define CLIENT_EXITED 0x100
1743 #define CLIENT_DEAD 0x200
1744 #define CLIENT_REDRAWBORDERS 0x400
1745 #define CLIENT_READONLY 0x800
1746 #define CLIENT_NOSTARTSERVER 0x1000
1747 #define CLIENT_CONTROL 0x2000
1748 #define CLIENT_CONTROLCONTROL 0x4000
1749 #define CLIENT_FOCUSED 0x8000
1750 #define CLIENT_UTF8 0x10000
1751 #define CLIENT_IGNORESIZE 0x20000
1752 #define CLIENT_IDENTIFIED 0x40000
1753 #define CLIENT_STATUSFORCE 0x80000
1754 #define CLIENT_DOUBLECLICK 0x100000
1755 #define CLIENT_TRIPLECLICK 0x200000
1756 #define CLIENT_SIZECHANGED 0x400000
1757 #define CLIENT_STATUSOFF 0x800000
1758 #define CLIENT_REDRAWSTATUSALWAYS 0x1000000
1759 #define CLIENT_REDRAWOVERLAY 0x2000000
1760 #define CLIENT_CONTROL_NOOUTPUT 0x4000000
1761 #define CLIENT_DEFAULTSOCKET 0x8000000
1762 #define CLIENT_STARTSERVER 0x10000000
1763 #define CLIENT_REDRAWPANES 0x20000000
1764 #define CLIENT_NOFORK 0x40000000
1765 #define CLIENT_ACTIVEPANE 0x80000000ULL
1766 #define CLIENT_CONTROL_PAUSEAFTER 0x100000000ULL
1767 #define CLIENT_CONTROL_WAITEXIT 0x200000000ULL
1768 #define CLIENT_WINDOWSIZECHANGED 0x400000000ULL
1769 #define CLIENT_CLIPBOARDBUFFER 0x800000000ULL
1770 #define CLIENT_ALLREDRAWFLAGS \
1771 (CLIENT_REDRAWWINDOW| \
1772 CLIENT_REDRAWSTATUS| \
1773 CLIENT_REDRAWSTATUSALWAYS| \
1774 CLIENT_REDRAWBORDERS| \
1775 CLIENT_REDRAWOVERLAY| \
1776 CLIENT_REDRAWPANES)
1777 #define CLIENT_UNATTACHEDFLAGS \
1778 (CLIENT_DEAD| \
1779 CLIENT_SUSPENDED| \
1780 CLIENT_EXIT)
1781 #define CLIENT_NODETACHFLAGS \
1782 (CLIENT_DEAD| \
1783 CLIENT_EXIT)
1784 #define CLIENT_NOSIZEFLAGS \
1785 (CLIENT_DEAD| \
1786 CLIENT_SUSPENDED| \
1787 CLIENT_EXIT)
1788 uint64_t flags;
1790 enum {
1791 CLIENT_EXIT_RETURN,
1792 CLIENT_EXIT_SHUTDOWN,
1793 CLIENT_EXIT_DETACH
1794 } exit_type;
1795 enum msgtype exit_msgtype;
1796 char *exit_session;
1797 char *exit_message;
1799 struct key_table *keytable;
1801 uint64_t redraw_panes;
1803 int message_ignore_keys;
1804 int message_ignore_styles;
1805 char *message_string;
1806 struct event message_timer;
1808 char *prompt_string;
1809 struct utf8_data *prompt_buffer;
1810 char *prompt_last;
1811 size_t prompt_index;
1812 prompt_input_cb prompt_inputcb;
1813 prompt_free_cb prompt_freecb;
1814 void *prompt_data;
1815 u_int prompt_hindex[PROMPT_NTYPES];
1816 enum {
1817 PROMPT_ENTRY,
1818 PROMPT_COMMAND
1819 } prompt_mode;
1820 struct utf8_data *prompt_saved;
1821 #define PROMPT_SINGLE 0x1
1822 #define PROMPT_NUMERIC 0x2
1823 #define PROMPT_INCREMENTAL 0x4
1824 #define PROMPT_NOFORMAT 0x8
1825 #define PROMPT_KEY 0x10
1826 int prompt_flags;
1827 enum prompt_type prompt_type;
1828 int prompt_cursor;
1830 struct session *session;
1831 struct session *last_session;
1833 int references;
1835 void *pan_window;
1836 u_int pan_ox;
1837 u_int pan_oy;
1839 overlay_check_cb overlay_check;
1840 overlay_mode_cb overlay_mode;
1841 overlay_draw_cb overlay_draw;
1842 overlay_key_cb overlay_key;
1843 overlay_free_cb overlay_free;
1844 overlay_resize_cb overlay_resize;
1845 void *overlay_data;
1846 struct event overlay_timer;
1848 struct client_files files;
1850 u_int *clipboard_panes;
1851 u_int clipboard_npanes;
1853 TAILQ_ENTRY(client) entry;
1855 TAILQ_HEAD(clients, client);
1857 /* Control mode subscription type. */
1858 enum control_sub_type {
1859 CONTROL_SUB_SESSION,
1860 CONTROL_SUB_PANE,
1861 CONTROL_SUB_ALL_PANES,
1862 CONTROL_SUB_WINDOW,
1863 CONTROL_SUB_ALL_WINDOWS
1866 /* Key binding and key table. */
1867 struct key_binding {
1868 key_code key;
1869 struct cmd_list *cmdlist;
1870 const char *note;
1872 int flags;
1873 #define KEY_BINDING_REPEAT 0x1
1875 RB_ENTRY(key_binding) entry;
1877 RB_HEAD(key_bindings, key_binding);
1879 struct key_table {
1880 const char *name;
1881 struct key_bindings key_bindings;
1882 struct key_bindings default_key_bindings;
1884 u_int references;
1886 RB_ENTRY(key_table) entry;
1888 RB_HEAD(key_tables, key_table);
1890 /* Option data. */
1891 RB_HEAD(options_array, options_array_item);
1892 union options_value {
1893 char *string;
1894 long long number;
1895 struct style style;
1896 struct options_array array;
1897 struct cmd_list *cmdlist;
1900 /* Option table entries. */
1901 enum options_table_type {
1902 OPTIONS_TABLE_STRING,
1903 OPTIONS_TABLE_NUMBER,
1904 OPTIONS_TABLE_KEY,
1905 OPTIONS_TABLE_COLOUR,
1906 OPTIONS_TABLE_FLAG,
1907 OPTIONS_TABLE_CHOICE,
1908 OPTIONS_TABLE_COMMAND
1911 #define OPTIONS_TABLE_NONE 0
1912 #define OPTIONS_TABLE_SERVER 0x1
1913 #define OPTIONS_TABLE_SESSION 0x2
1914 #define OPTIONS_TABLE_WINDOW 0x4
1915 #define OPTIONS_TABLE_PANE 0x8
1917 #define OPTIONS_TABLE_IS_ARRAY 0x1
1918 #define OPTIONS_TABLE_IS_HOOK 0x2
1919 #define OPTIONS_TABLE_IS_STYLE 0x4
1921 struct options_table_entry {
1922 const char *name;
1923 const char *alternative_name;
1924 enum options_table_type type;
1925 int scope;
1926 int flags;
1928 u_int minimum;
1929 u_int maximum;
1930 const char **choices;
1932 const char *default_str;
1933 long long default_num;
1934 const char **default_arr;
1936 const char *separator;
1937 const char *pattern;
1939 const char *text;
1940 const char *unit;
1943 struct options_name_map {
1944 const char *from;
1945 const char *to;
1948 /* Common command usages. */
1949 #define CMD_TARGET_PANE_USAGE "[-t target-pane]"
1950 #define CMD_TARGET_WINDOW_USAGE "[-t target-window]"
1951 #define CMD_TARGET_SESSION_USAGE "[-t target-session]"
1952 #define CMD_TARGET_CLIENT_USAGE "[-t target-client]"
1953 #define CMD_SRCDST_PANE_USAGE "[-s src-pane] [-t dst-pane]"
1954 #define CMD_SRCDST_WINDOW_USAGE "[-s src-window] [-t dst-window]"
1955 #define CMD_SRCDST_SESSION_USAGE "[-s src-session] [-t dst-session]"
1956 #define CMD_SRCDST_CLIENT_USAGE "[-s src-client] [-t dst-client]"
1957 #define CMD_BUFFER_USAGE "[-b buffer-name]"
1959 /* Spawn common context. */
1960 struct spawn_context {
1961 struct cmdq_item *item;
1963 struct session *s;
1964 struct winlink *wl;
1965 struct client *tc;
1967 struct window_pane *wp0;
1968 struct layout_cell *lc;
1970 const char *name;
1971 char **argv;
1972 int argc;
1973 struct environ *environ;
1975 int idx;
1976 const char *cwd;
1978 int flags;
1979 #define SPAWN_KILL 0x1
1980 #define SPAWN_DETACHED 0x2
1981 #define SPAWN_RESPAWN 0x4
1982 #define SPAWN_BEFORE 0x8
1983 #define SPAWN_NONOTIFY 0x10
1984 #define SPAWN_FULLSIZE 0x20
1985 #define SPAWN_EMPTY 0x40
1986 #define SPAWN_ZOOM 0x80
1989 /* Mode tree sort order. */
1990 struct mode_tree_sort_criteria {
1991 u_int field;
1992 int reversed;
1995 /* tmux.c */
1996 extern struct options *global_options;
1997 extern struct options *global_s_options;
1998 extern struct options *global_w_options;
1999 extern struct environ *global_environ;
2000 extern struct timeval start_time;
2001 extern const char *socket_path;
2002 extern const char *shell_command;
2003 extern int ptm_fd;
2004 extern const char *shell_command;
2005 int checkshell(const char *);
2006 void setblocking(int, int);
2007 uint64_t get_timer(void);
2008 const char *sig2name(int);
2009 const char *find_cwd(void);
2010 const char *find_home(void);
2011 const char *getversion(void);
2013 /* proc.c */
2014 struct imsg;
2015 int proc_send(struct tmuxpeer *, enum msgtype, int, const void *, size_t);
2016 struct tmuxproc *proc_start(const char *);
2017 void proc_loop(struct tmuxproc *, int (*)(void));
2018 void proc_exit(struct tmuxproc *);
2019 void proc_set_signals(struct tmuxproc *, void(*)(int));
2020 void proc_clear_signals(struct tmuxproc *, int);
2021 struct tmuxpeer *proc_add_peer(struct tmuxproc *, int,
2022 void (*)(struct imsg *, void *), void *);
2023 void proc_remove_peer(struct tmuxpeer *);
2024 void proc_kill_peer(struct tmuxpeer *);
2025 void proc_toggle_log(struct tmuxproc *);
2026 pid_t proc_fork_and_daemon(int *);
2027 uid_t proc_get_peer_uid(struct tmuxpeer *);
2029 /* cfg.c */
2030 extern int cfg_finished;
2031 extern struct client *cfg_client;
2032 extern char **cfg_files;
2033 extern u_int cfg_nfiles;
2034 extern int cfg_quiet;
2035 void start_cfg(void);
2036 int load_cfg(const char *, struct client *, struct cmdq_item *, int,
2037 struct cmdq_item **);
2038 int load_cfg_from_buffer(const void *, size_t, const char *,
2039 struct client *, struct cmdq_item *, int, struct cmdq_item **);
2040 void printflike(1, 2) cfg_add_cause(const char *, ...);
2041 void cfg_print_causes(struct cmdq_item *);
2042 void cfg_show_causes(struct session *);
2044 /* paste.c */
2045 struct paste_buffer;
2046 const char *paste_buffer_name(struct paste_buffer *);
2047 u_int paste_buffer_order(struct paste_buffer *);
2048 time_t paste_buffer_created(struct paste_buffer *);
2049 const char *paste_buffer_data(struct paste_buffer *, size_t *);
2050 struct paste_buffer *paste_walk(struct paste_buffer *);
2051 struct paste_buffer *paste_get_top(const char **);
2052 struct paste_buffer *paste_get_name(const char *);
2053 void paste_free(struct paste_buffer *);
2054 void paste_add(const char *, char *, size_t);
2055 int paste_rename(const char *, const char *, char **);
2056 int paste_set(char *, size_t, const char *, char **);
2057 void paste_replace(struct paste_buffer *, char *, size_t);
2058 char *paste_make_sample(struct paste_buffer *);
2060 /* format.c */
2061 #define FORMAT_STATUS 0x1
2062 #define FORMAT_FORCE 0x2
2063 #define FORMAT_NOJOBS 0x4
2064 #define FORMAT_VERBOSE 0x8
2065 #define FORMAT_NONE 0
2066 #define FORMAT_PANE 0x80000000U
2067 #define FORMAT_WINDOW 0x40000000U
2068 struct format_tree;
2069 struct format_modifier;
2070 typedef void *(*format_cb)(struct format_tree *);
2071 void format_tidy_jobs(void);
2072 const char *format_skip(const char *, const char *);
2073 int format_true(const char *);
2074 struct format_tree *format_create(struct client *, struct cmdq_item *, int,
2075 int);
2076 void format_free(struct format_tree *);
2077 void format_merge(struct format_tree *, struct format_tree *);
2078 struct window_pane *format_get_pane(struct format_tree *);
2079 void printflike(3, 4) format_add(struct format_tree *, const char *,
2080 const char *, ...);
2081 void format_add_tv(struct format_tree *, const char *,
2082 struct timeval *);
2083 void format_add_cb(struct format_tree *, const char *, format_cb);
2084 void format_log_debug(struct format_tree *, const char *);
2085 void format_each(struct format_tree *, void (*)(const char *,
2086 const char *, void *), void *);
2087 char *format_expand_time(struct format_tree *, const char *);
2088 char *format_expand(struct format_tree *, const char *);
2089 char *format_single(struct cmdq_item *, const char *,
2090 struct client *, struct session *, struct winlink *,
2091 struct window_pane *);
2092 char *format_single_from_state(struct cmdq_item *, const char *,
2093 struct client *, struct cmd_find_state *);
2094 char *format_single_from_target(struct cmdq_item *, const char *);
2095 struct format_tree *format_create_defaults(struct cmdq_item *, struct client *,
2096 struct session *, struct winlink *, struct window_pane *);
2097 struct format_tree *format_create_from_state(struct cmdq_item *,
2098 struct client *, struct cmd_find_state *);
2099 struct format_tree *format_create_from_target(struct cmdq_item *);
2100 void format_defaults(struct format_tree *, struct client *,
2101 struct session *, struct winlink *, struct window_pane *);
2102 void format_defaults_window(struct format_tree *, struct window *);
2103 void format_defaults_pane(struct format_tree *,
2104 struct window_pane *);
2105 void format_defaults_paste_buffer(struct format_tree *,
2106 struct paste_buffer *);
2107 void format_lost_client(struct client *);
2108 char *format_grid_word(struct grid *, u_int, u_int);
2109 char *format_grid_line(struct grid *, u_int);
2111 /* format-draw.c */
2112 void format_draw(struct screen_write_ctx *,
2113 const struct grid_cell *, u_int, const char *,
2114 struct style_ranges *, int);
2115 u_int format_width(const char *);
2116 char *format_trim_left(const char *, u_int);
2117 char *format_trim_right(const char *, u_int);
2119 /* notify.c */
2120 void notify_hook(struct cmdq_item *, const char *);
2121 void notify_client(const char *, struct client *);
2122 void notify_session(const char *, struct session *);
2123 void notify_winlink(const char *, struct winlink *);
2124 void notify_session_window(const char *, struct session *, struct window *);
2125 void notify_window(const char *, struct window *);
2126 void notify_pane(const char *, struct window_pane *);
2128 /* options.c */
2129 struct options *options_create(struct options *);
2130 void options_free(struct options *);
2131 struct options *options_get_parent(struct options *);
2132 void options_set_parent(struct options *, struct options *);
2133 struct options_entry *options_first(struct options *);
2134 struct options_entry *options_next(struct options_entry *);
2135 struct options_entry *options_empty(struct options *,
2136 const struct options_table_entry *);
2137 struct options_entry *options_default(struct options *,
2138 const struct options_table_entry *);
2139 char *options_default_to_string(const struct options_table_entry *);
2140 const char *options_name(struct options_entry *);
2141 struct options *options_owner(struct options_entry *);
2142 const struct options_table_entry *options_table_entry(struct options_entry *);
2143 struct options_entry *options_get_only(struct options *, const char *);
2144 struct options_entry *options_get(struct options *, const char *);
2145 void options_array_clear(struct options_entry *);
2146 union options_value *options_array_get(struct options_entry *, u_int);
2147 int options_array_set(struct options_entry *, u_int, const char *,
2148 int, char **);
2149 int options_array_assign(struct options_entry *, const char *,
2150 char **);
2151 struct options_array_item *options_array_first(struct options_entry *);
2152 struct options_array_item *options_array_next(struct options_array_item *);
2153 u_int options_array_item_index(struct options_array_item *);
2154 union options_value *options_array_item_value(struct options_array_item *);
2155 int options_is_array(struct options_entry *);
2156 int options_is_string(struct options_entry *);
2157 char *options_to_string(struct options_entry *, int, int);
2158 char *options_parse(const char *, int *);
2159 struct options_entry *options_parse_get(struct options *, const char *, int *,
2160 int);
2161 char *options_match(const char *, int *, int *);
2162 struct options_entry *options_match_get(struct options *, const char *, int *,
2163 int, int *);
2164 const char *options_get_string(struct options *, const char *);
2165 long long options_get_number(struct options *, const char *);
2166 struct options_entry * printflike(4, 5) options_set_string(struct options *,
2167 const char *, int, const char *, ...);
2168 struct options_entry *options_set_number(struct options *, const char *,
2169 long long);
2170 int options_scope_from_name(struct args *, int,
2171 const char *, struct cmd_find_state *, struct options **,
2172 char **);
2173 int options_scope_from_flags(struct args *, int,
2174 struct cmd_find_state *, struct options **, char **);
2175 struct style *options_string_to_style(struct options *, const char *,
2176 struct format_tree *);
2177 int options_from_string(struct options *,
2178 const struct options_table_entry *, const char *,
2179 const char *, int, char **);
2180 int options_find_choice(const struct options_table_entry *,
2181 const char *, char **);
2182 void options_push_changes(const char *);
2183 int options_remove_or_default(struct options_entry *, int,
2184 char **);
2186 /* options-table.c */
2187 extern const struct options_table_entry options_table[];
2188 extern const struct options_name_map options_other_names[];
2190 /* job.c */
2191 typedef void (*job_update_cb) (struct job *);
2192 typedef void (*job_complete_cb) (struct job *);
2193 typedef void (*job_free_cb) (void *);
2194 #define JOB_NOWAIT 0x1
2195 #define JOB_KEEPWRITE 0x2
2196 #define JOB_PTY 0x4
2197 struct job *job_run(const char *, int, char **, struct environ *,
2198 struct session *, const char *, job_update_cb,
2199 job_complete_cb, job_free_cb, void *, int, int, int);
2200 void job_free(struct job *);
2201 int job_transfer(struct job *, pid_t *, char *, size_t);
2202 void job_resize(struct job *, u_int, u_int);
2203 void job_check_died(pid_t, int);
2204 int job_get_status(struct job *);
2205 void *job_get_data(struct job *);
2206 struct bufferevent *job_get_event(struct job *);
2207 void job_kill_all(void);
2208 int job_still_running(void);
2209 void job_print_summary(struct cmdq_item *, int);
2211 /* environ.c */
2212 struct environ *environ_create(void);
2213 void environ_free(struct environ *);
2214 struct environ_entry *environ_first(struct environ *);
2215 struct environ_entry *environ_next(struct environ_entry *);
2216 void environ_copy(struct environ *, struct environ *);
2217 struct environ_entry *environ_find(struct environ *, const char *);
2218 void printflike(4, 5) environ_set(struct environ *, const char *, int,
2219 const char *, ...);
2220 void environ_clear(struct environ *, const char *);
2221 void environ_put(struct environ *, const char *, int);
2222 void environ_unset(struct environ *, const char *);
2223 void environ_update(struct options *, struct environ *, struct environ *);
2224 void environ_push(struct environ *);
2225 void printflike(2, 3) environ_log(struct environ *, const char *, ...);
2226 struct environ *environ_for_session(struct session *, int);
2228 /* tty.c */
2229 void tty_create_log(void);
2230 int tty_window_bigger(struct tty *);
2231 int tty_window_offset(struct tty *, u_int *, u_int *, u_int *, u_int *);
2232 void tty_update_window_offset(struct window *);
2233 void tty_update_client_offset(struct client *);
2234 void tty_raw(struct tty *, const char *);
2235 void tty_attributes(struct tty *, const struct grid_cell *,
2236 const struct grid_cell *, struct colour_palette *);
2237 void tty_reset(struct tty *);
2238 void tty_region_off(struct tty *);
2239 void tty_margin_off(struct tty *);
2240 void tty_cursor(struct tty *, u_int, u_int);
2241 void tty_clipboard_query(struct tty *);
2242 void tty_putcode(struct tty *, enum tty_code_code);
2243 void tty_putcode1(struct tty *, enum tty_code_code, int);
2244 void tty_putcode2(struct tty *, enum tty_code_code, int, int);
2245 void tty_putcode3(struct tty *, enum tty_code_code, int, int, int);
2246 void tty_putcode_ptr1(struct tty *, enum tty_code_code, const void *);
2247 void tty_putcode_ptr2(struct tty *, enum tty_code_code, const void *,
2248 const void *);
2249 void tty_puts(struct tty *, const char *);
2250 void tty_putc(struct tty *, u_char);
2251 void tty_putn(struct tty *, const void *, size_t, u_int);
2252 void tty_cell(struct tty *, const struct grid_cell *,
2253 const struct grid_cell *, struct colour_palette *);
2254 int tty_init(struct tty *, struct client *);
2255 void tty_resize(struct tty *);
2256 void tty_set_size(struct tty *, u_int, u_int, u_int, u_int);
2257 void tty_start_tty(struct tty *);
2258 void tty_send_requests(struct tty *);
2259 void tty_stop_tty(struct tty *);
2260 void tty_set_title(struct tty *, const char *);
2261 void tty_update_mode(struct tty *, int, struct screen *);
2262 void tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int,
2263 u_int, u_int, const struct grid_cell *, struct colour_palette *);
2264 void tty_sync_start(struct tty *);
2265 void tty_sync_end(struct tty *);
2266 int tty_open(struct tty *, char **);
2267 void tty_close(struct tty *);
2268 void tty_free(struct tty *);
2269 void tty_update_features(struct tty *);
2270 void tty_set_selection(struct tty *, const char *, size_t);
2271 void tty_write(void (*)(struct tty *, const struct tty_ctx *),
2272 struct tty_ctx *);
2273 void tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);
2274 void tty_cmd_cell(struct tty *, const struct tty_ctx *);
2275 void tty_cmd_cells(struct tty *, const struct tty_ctx *);
2276 void tty_cmd_clearendofline(struct tty *, const struct tty_ctx *);
2277 void tty_cmd_clearendofscreen(struct tty *, const struct tty_ctx *);
2278 void tty_cmd_clearline(struct tty *, const struct tty_ctx *);
2279 void tty_cmd_clearscreen(struct tty *, const struct tty_ctx *);
2280 void tty_cmd_clearstartofline(struct tty *, const struct tty_ctx *);
2281 void tty_cmd_clearstartofscreen(struct tty *, const struct tty_ctx *);
2282 void tty_cmd_deletecharacter(struct tty *, const struct tty_ctx *);
2283 void tty_cmd_clearcharacter(struct tty *, const struct tty_ctx *);
2284 void tty_cmd_deleteline(struct tty *, const struct tty_ctx *);
2285 void tty_cmd_erasecharacter(struct tty *, const struct tty_ctx *);
2286 void tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);
2287 void tty_cmd_insertline(struct tty *, const struct tty_ctx *);
2288 void tty_cmd_linefeed(struct tty *, const struct tty_ctx *);
2289 void tty_cmd_scrollup(struct tty *, const struct tty_ctx *);
2290 void tty_cmd_scrolldown(struct tty *, const struct tty_ctx *);
2291 void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);
2292 void tty_cmd_setselection(struct tty *, const struct tty_ctx *);
2293 void tty_cmd_rawstring(struct tty *, const struct tty_ctx *);
2294 void tty_cmd_syncstart(struct tty *, const struct tty_ctx *);
2295 void tty_default_colours(struct grid_cell *, struct window_pane *);
2297 /* tty-term.c */
2298 extern struct tty_terms tty_terms;
2299 u_int tty_term_ncodes(void);
2300 void tty_term_apply(struct tty_term *, const char *, int);
2301 void tty_term_apply_overrides(struct tty_term *);
2302 struct tty_term *tty_term_create(struct tty *, char *, char **, u_int, int *,
2303 char **);
2304 void tty_term_free(struct tty_term *);
2305 int tty_term_read_list(const char *, int, char ***, u_int *,
2306 char **);
2307 void tty_term_free_list(char **, u_int);
2308 int tty_term_has(struct tty_term *, enum tty_code_code);
2309 const char *tty_term_string(struct tty_term *, enum tty_code_code);
2310 const char *tty_term_string1(struct tty_term *, enum tty_code_code, int);
2311 const char *tty_term_string2(struct tty_term *, enum tty_code_code, int,
2312 int);
2313 const char *tty_term_string3(struct tty_term *, enum tty_code_code, int,
2314 int, int);
2315 const char *tty_term_ptr1(struct tty_term *, enum tty_code_code,
2316 const void *);
2317 const char *tty_term_ptr2(struct tty_term *, enum tty_code_code,
2318 const void *, const void *);
2319 int tty_term_number(struct tty_term *, enum tty_code_code);
2320 int tty_term_flag(struct tty_term *, enum tty_code_code);
2321 const char *tty_term_describe(struct tty_term *, enum tty_code_code);
2323 /* tty-features.c */
2324 void tty_add_features(int *, const char *, const char *);
2325 const char *tty_get_features(int);
2326 int tty_apply_features(struct tty_term *, int);
2327 void tty_default_features(int *, const char *, u_int);
2329 /* tty-acs.c */
2330 int tty_acs_needed(struct tty *);
2331 const char *tty_acs_get(struct tty *, u_char);
2332 int tty_acs_reverse_get(struct tty *, const char *, size_t);
2333 const struct utf8_data *tty_acs_double_borders(int);
2334 const struct utf8_data *tty_acs_heavy_borders(int);
2335 const struct utf8_data *tty_acs_rounded_borders(int);
2337 /* tty-keys.c */
2338 void tty_keys_build(struct tty *);
2339 void tty_keys_free(struct tty *);
2340 int tty_keys_next(struct tty *);
2342 /* arguments.c */
2343 void args_set(struct args *, u_char, struct args_value *);
2344 struct args *args_create(void);
2345 struct args *args_parse(const struct args_parse *, struct args_value *,
2346 u_int, char **);
2347 struct args *args_copy(struct args *, int, char **);
2348 void args_to_vector(struct args *, int *, char ***);
2349 struct args_value *args_from_vector(int, char **);
2350 void args_free_value(struct args_value *);
2351 void args_free_values(struct args_value *, u_int);
2352 void args_free(struct args *);
2353 char *args_print(struct args *);
2354 char *args_escape(const char *);
2355 int args_has(struct args *, u_char);
2356 const char *args_get(struct args *, u_char);
2357 u_char args_first(struct args *, struct args_entry **);
2358 u_char args_next(struct args_entry **);
2359 u_int args_count(struct args *);
2360 struct args_value *args_values(struct args *);
2361 struct args_value *args_value(struct args *, u_int);
2362 const char *args_string(struct args *, u_int);
2363 struct cmd_list *args_make_commands_now(struct cmd *, struct cmdq_item *,
2364 u_int, int);
2365 struct args_command_state *args_make_commands_prepare(struct cmd *,
2366 struct cmdq_item *, u_int, const char *, int, int);
2367 struct cmd_list *args_make_commands(struct args_command_state *, int, char **,
2368 char **);
2369 void args_make_commands_free(struct args_command_state *);
2370 char *args_make_commands_get_command(struct args_command_state *);
2371 struct args_value *args_first_value(struct args *, u_char);
2372 struct args_value *args_next_value(struct args_value *);
2373 long long args_strtonum(struct args *, u_char, long long, long long,
2374 char **);
2375 long long args_percentage(struct args *, u_char, long long,
2376 long long, long long, char **);
2377 long long args_string_percentage(const char *, long long, long long,
2378 long long, char **);
2380 /* cmd-find.c */
2381 int cmd_find_target(struct cmd_find_state *, struct cmdq_item *,
2382 const char *, enum cmd_find_type, int);
2383 struct client *cmd_find_best_client(struct session *);
2384 struct client *cmd_find_client(struct cmdq_item *, const char *, int);
2385 void cmd_find_clear_state(struct cmd_find_state *, int);
2386 int cmd_find_empty_state(struct cmd_find_state *);
2387 int cmd_find_valid_state(struct cmd_find_state *);
2388 void cmd_find_copy_state(struct cmd_find_state *,
2389 struct cmd_find_state *);
2390 void cmd_find_from_session(struct cmd_find_state *,
2391 struct session *, int);
2392 void cmd_find_from_winlink(struct cmd_find_state *,
2393 struct winlink *, int);
2394 int cmd_find_from_session_window(struct cmd_find_state *,
2395 struct session *, struct window *, int);
2396 int cmd_find_from_window(struct cmd_find_state *, struct window *,
2397 int);
2398 void cmd_find_from_winlink_pane(struct cmd_find_state *,
2399 struct winlink *, struct window_pane *, int);
2400 int cmd_find_from_pane(struct cmd_find_state *,
2401 struct window_pane *, int);
2402 int cmd_find_from_client(struct cmd_find_state *, struct client *,
2403 int);
2404 int cmd_find_from_mouse(struct cmd_find_state *,
2405 struct mouse_event *, int);
2406 int cmd_find_from_nothing(struct cmd_find_state *, int);
2408 /* cmd.c */
2409 extern const struct cmd_entry *cmd_table[];
2410 void printflike(3, 4) cmd_log_argv(int, char **, const char *, ...);
2411 void cmd_prepend_argv(int *, char ***, const char *);
2412 void cmd_append_argv(int *, char ***, const char *);
2413 int cmd_pack_argv(int, char **, char *, size_t);
2414 int cmd_unpack_argv(char *, size_t, int, char ***);
2415 char **cmd_copy_argv(int, char **);
2416 void cmd_free_argv(int, char **);
2417 char *cmd_stringify_argv(int, char **);
2418 char *cmd_get_alias(const char *);
2419 const struct cmd_entry *cmd_get_entry(struct cmd *);
2420 struct args *cmd_get_args(struct cmd *);
2421 u_int cmd_get_group(struct cmd *);
2422 void cmd_get_source(struct cmd *, const char **, u_int *);
2423 struct cmd *cmd_parse(struct args_value *, u_int, const char *, u_int,
2424 char **);
2425 struct cmd *cmd_copy(struct cmd *, int, char **);
2426 void cmd_free(struct cmd *);
2427 char *cmd_print(struct cmd *);
2428 struct cmd_list *cmd_list_new(void);
2429 struct cmd_list *cmd_list_copy(struct cmd_list *, int, char **);
2430 void cmd_list_append(struct cmd_list *, struct cmd *);
2431 void cmd_list_append_all(struct cmd_list *, struct cmd_list *);
2432 void cmd_list_move(struct cmd_list *, struct cmd_list *);
2433 void cmd_list_free(struct cmd_list *);
2434 char *cmd_list_print(struct cmd_list *, int);
2435 struct cmd *cmd_list_first(struct cmd_list *);
2436 struct cmd *cmd_list_next(struct cmd *);
2437 int cmd_list_all_have(struct cmd_list *, int);
2438 int cmd_list_any_have(struct cmd_list *, int);
2439 int cmd_mouse_at(struct window_pane *, struct mouse_event *,
2440 u_int *, u_int *, int);
2441 struct winlink *cmd_mouse_window(struct mouse_event *, struct session **);
2442 struct window_pane *cmd_mouse_pane(struct mouse_event *, struct session **,
2443 struct winlink **);
2444 char *cmd_template_replace(const char *, const char *, int);
2446 /* cmd-attach-session.c */
2447 enum cmd_retval cmd_attach_session(struct cmdq_item *, const char *, int, int,
2448 int, const char *, int, const char *);
2450 /* cmd-parse.c */
2451 void cmd_parse_empty(struct cmd_parse_input *);
2452 struct cmd_parse_result *cmd_parse_from_file(FILE *, struct cmd_parse_input *);
2453 struct cmd_parse_result *cmd_parse_from_string(const char *,
2454 struct cmd_parse_input *);
2455 enum cmd_parse_status cmd_parse_and_insert(const char *,
2456 struct cmd_parse_input *, struct cmdq_item *,
2457 struct cmdq_state *, char **);
2458 enum cmd_parse_status cmd_parse_and_append(const char *,
2459 struct cmd_parse_input *, struct client *,
2460 struct cmdq_state *, char **);
2461 struct cmd_parse_result *cmd_parse_from_buffer(const void *, size_t,
2462 struct cmd_parse_input *);
2463 struct cmd_parse_result *cmd_parse_from_arguments(struct args_value *, u_int,
2464 struct cmd_parse_input *);
2466 /* cmd-queue.c */
2467 struct cmdq_state *cmdq_new_state(struct cmd_find_state *, struct key_event *,
2468 int);
2469 struct cmdq_state *cmdq_link_state(struct cmdq_state *);
2470 struct cmdq_state *cmdq_copy_state(struct cmdq_state *);
2471 void cmdq_free_state(struct cmdq_state *);
2472 void printflike(3, 4) cmdq_add_format(struct cmdq_state *, const char *,
2473 const char *, ...);
2474 void cmdq_add_formats(struct cmdq_state *, struct format_tree *);
2475 void cmdq_merge_formats(struct cmdq_item *, struct format_tree *);
2476 struct cmdq_list *cmdq_new(void);
2477 void cmdq_free(struct cmdq_list *);
2478 const char *cmdq_get_name(struct cmdq_item *);
2479 struct client *cmdq_get_client(struct cmdq_item *);
2480 struct client *cmdq_get_target_client(struct cmdq_item *);
2481 struct cmdq_state *cmdq_get_state(struct cmdq_item *);
2482 struct cmd_find_state *cmdq_get_target(struct cmdq_item *);
2483 struct cmd_find_state *cmdq_get_source(struct cmdq_item *);
2484 struct key_event *cmdq_get_event(struct cmdq_item *);
2485 struct cmd_find_state *cmdq_get_current(struct cmdq_item *);
2486 int cmdq_get_flags(struct cmdq_item *);
2487 struct cmdq_item *cmdq_get_command(struct cmd_list *, struct cmdq_state *);
2488 #define cmdq_get_callback(cb, data) cmdq_get_callback1(#cb, cb, data)
2489 struct cmdq_item *cmdq_get_callback1(const char *, cmdq_cb, void *);
2490 struct cmdq_item *cmdq_get_error(const char *);
2491 struct cmdq_item *cmdq_insert_after(struct cmdq_item *, struct cmdq_item *);
2492 struct cmdq_item *cmdq_append(struct client *, struct cmdq_item *);
2493 void printflike(4, 5) cmdq_insert_hook(struct session *, struct cmdq_item *,
2494 struct cmd_find_state *, const char *, ...);
2495 void cmdq_continue(struct cmdq_item *);
2496 u_int cmdq_next(struct client *);
2497 struct cmdq_item *cmdq_running(struct client *);
2498 void cmdq_guard(struct cmdq_item *, const char *, int);
2499 void printflike(2, 3) cmdq_print(struct cmdq_item *, const char *, ...);
2500 void printflike(2, 3) cmdq_error(struct cmdq_item *, const char *, ...);
2502 /* cmd-wait-for.c */
2503 void cmd_wait_for_flush(void);
2505 /* client.c */
2506 int client_main(struct event_base *, int, char **, uint64_t, int);
2508 /* key-bindings.c */
2509 struct key_table *key_bindings_get_table(const char *, int);
2510 struct key_table *key_bindings_first_table(void);
2511 struct key_table *key_bindings_next_table(struct key_table *);
2512 void key_bindings_unref_table(struct key_table *);
2513 struct key_binding *key_bindings_get(struct key_table *, key_code);
2514 struct key_binding *key_bindings_get_default(struct key_table *, key_code);
2515 struct key_binding *key_bindings_first(struct key_table *);
2516 struct key_binding *key_bindings_next(struct key_table *, struct key_binding *);
2517 void key_bindings_add(const char *, key_code, const char *, int,
2518 struct cmd_list *);
2519 void key_bindings_remove(const char *, key_code);
2520 void key_bindings_reset(const char *, key_code);
2521 void key_bindings_remove_table(const char *);
2522 void key_bindings_reset_table(const char *);
2523 void key_bindings_init(void);
2524 struct cmdq_item *key_bindings_dispatch(struct key_binding *,
2525 struct cmdq_item *, struct client *, struct key_event *,
2526 struct cmd_find_state *);
2528 /* key-string.c */
2529 key_code key_string_lookup_string(const char *);
2530 const char *key_string_lookup_key(key_code, int);
2532 /* alerts.c */
2533 void alerts_reset_all(void);
2534 void alerts_queue(struct window *, int);
2535 void alerts_check_session(struct session *);
2537 /* file.c */
2538 int file_cmp(struct client_file *, struct client_file *);
2539 RB_PROTOTYPE(client_files, client_file, entry, file_cmp);
2540 struct client_file *file_create_with_peer(struct tmuxpeer *,
2541 struct client_files *, int, client_file_cb, void *);
2542 struct client_file *file_create_with_client(struct client *, int,
2543 client_file_cb, void *);
2544 void file_free(struct client_file *);
2545 void file_fire_done(struct client_file *);
2546 void file_fire_read(struct client_file *);
2547 int file_can_print(struct client *);
2548 void printflike(2, 3) file_print(struct client *, const char *, ...);
2549 void printflike(2, 0) file_vprint(struct client *, const char *, va_list);
2550 void file_print_buffer(struct client *, void *, size_t);
2551 void printflike(2, 3) file_error(struct client *, const char *, ...);
2552 void file_write(struct client *, const char *, int, const void *, size_t,
2553 client_file_cb, void *);
2554 void file_read(struct client *, const char *, client_file_cb, void *);
2555 void file_push(struct client_file *);
2556 int file_write_left(struct client_files *);
2557 void file_write_open(struct client_files *, struct tmuxpeer *,
2558 struct imsg *, int, int, client_file_cb, void *);
2559 void file_write_data(struct client_files *, struct imsg *);
2560 void file_write_close(struct client_files *, struct imsg *);
2561 void file_read_open(struct client_files *, struct tmuxpeer *, struct imsg *,
2562 int, int, client_file_cb, void *);
2563 void file_write_ready(struct client_files *, struct imsg *);
2564 void file_read_data(struct client_files *, struct imsg *);
2565 void file_read_done(struct client_files *, struct imsg *);
2567 /* server.c */
2568 extern struct tmuxproc *server_proc;
2569 extern struct clients clients;
2570 extern struct cmd_find_state marked_pane;
2571 extern struct message_list message_log;
2572 void server_set_marked(struct session *, struct winlink *,
2573 struct window_pane *);
2574 void server_clear_marked(void);
2575 int server_is_marked(struct session *, struct winlink *,
2576 struct window_pane *);
2577 int server_check_marked(void);
2578 int server_start(struct tmuxproc *, int, struct event_base *, int, char *);
2579 void server_update_socket(void);
2580 void server_add_accept(int);
2581 void printflike(1, 2) server_add_message(const char *, ...);
2583 /* server-client.c */
2584 RB_PROTOTYPE(client_windows, client_window, entry, server_client_window_cmp);
2585 u_int server_client_how_many(void);
2586 void server_client_set_overlay(struct client *, u_int, overlay_check_cb,
2587 overlay_mode_cb, overlay_draw_cb, overlay_key_cb,
2588 overlay_free_cb, overlay_resize_cb, void *);
2589 void server_client_clear_overlay(struct client *);
2590 void server_client_overlay_range(u_int, u_int, u_int, u_int, u_int, u_int,
2591 u_int, struct overlay_ranges *);
2592 void server_client_set_key_table(struct client *, const char *);
2593 const char *server_client_get_key_table(struct client *);
2594 int server_client_check_nested(struct client *);
2595 int server_client_handle_key(struct client *, struct key_event *);
2596 struct client *server_client_create(int);
2597 int server_client_open(struct client *, char **);
2598 void server_client_unref(struct client *);
2599 void server_client_set_session(struct client *, struct session *);
2600 void server_client_lost(struct client *);
2601 void server_client_suspend(struct client *);
2602 void server_client_detach(struct client *, enum msgtype);
2603 void server_client_exec(struct client *, const char *);
2604 void server_client_loop(void);
2605 void server_client_push_stdout(struct client *);
2606 void server_client_push_stderr(struct client *);
2607 const char *server_client_get_cwd(struct client *, struct session *);
2608 void server_client_set_flags(struct client *, const char *);
2609 const char *server_client_get_flags(struct client *);
2610 struct client_window *server_client_get_client_window(struct client *, u_int);
2611 struct client_window *server_client_add_client_window(struct client *, u_int);
2612 struct window_pane *server_client_get_pane(struct client *);
2613 void server_client_set_pane(struct client *, struct window_pane *);
2614 void server_client_remove_pane(struct window_pane *);
2616 /* server-fn.c */
2617 void server_redraw_client(struct client *);
2618 void server_status_client(struct client *);
2619 void server_redraw_session(struct session *);
2620 void server_redraw_session_group(struct session *);
2621 void server_status_session(struct session *);
2622 void server_status_session_group(struct session *);
2623 void server_redraw_window(struct window *);
2624 void server_redraw_window_borders(struct window *);
2625 void server_status_window(struct window *);
2626 void server_lock(void);
2627 void server_lock_session(struct session *);
2628 void server_lock_client(struct client *);
2629 void server_kill_pane(struct window_pane *);
2630 void server_kill_window(struct window *, int);
2631 void server_renumber_session(struct session *);
2632 void server_renumber_all(void);
2633 int server_link_window(struct session *,
2634 struct winlink *, struct session *, int, int, int, char **);
2635 void server_unlink_window(struct session *, struct winlink *);
2636 void server_destroy_pane(struct window_pane *, int);
2637 void server_destroy_session(struct session *);
2638 void server_check_unattached(void);
2639 void server_unzoom_window(struct window *);
2641 /* status.c */
2642 extern char **status_prompt_hlist[];
2643 extern u_int status_prompt_hsize[];
2644 void status_timer_start(struct client *);
2645 void status_timer_start_all(void);
2646 void status_update_cache(struct session *);
2647 int status_at_line(struct client *);
2648 u_int status_line_size(struct client *);
2649 struct style_range *status_get_range(struct client *, u_int, u_int);
2650 void status_init(struct client *);
2651 void status_free(struct client *);
2652 int status_redraw(struct client *);
2653 void printflike(5, 6) status_message_set(struct client *, int, int, int,
2654 const char *, ...);
2655 void status_message_clear(struct client *);
2656 int status_message_redraw(struct client *);
2657 void status_prompt_set(struct client *, struct cmd_find_state *,
2658 const char *, const char *, prompt_input_cb, prompt_free_cb,
2659 void *, int, enum prompt_type);
2660 void status_prompt_clear(struct client *);
2661 int status_prompt_redraw(struct client *);
2662 int status_prompt_key(struct client *, key_code);
2663 void status_prompt_update(struct client *, const char *, const char *);
2664 void status_prompt_load_history(void);
2665 void status_prompt_save_history(void);
2666 const char *status_prompt_type_string(u_int);
2667 enum prompt_type status_prompt_type(const char *type);
2669 /* resize.c */
2670 void resize_window(struct window *, u_int, u_int, int, int);
2671 void default_window_size(struct client *, struct session *, struct window *,
2672 u_int *, u_int *, u_int *, u_int *, int);
2673 void recalculate_size(struct window *, int);
2674 void recalculate_sizes(void);
2675 void recalculate_sizes_now(int);
2677 /* input.c */
2678 struct input_ctx *input_init(struct window_pane *, struct bufferevent *,
2679 struct colour_palette *);
2680 void input_free(struct input_ctx *);
2681 void input_reset(struct input_ctx *, int);
2682 struct evbuffer *input_pending(struct input_ctx *);
2683 void input_parse_pane(struct window_pane *);
2684 void input_parse_buffer(struct window_pane *, u_char *, size_t);
2685 void input_parse_screen(struct input_ctx *, struct screen *,
2686 screen_write_init_ctx_cb, void *, u_char *, size_t);
2687 void input_reply_clipboard(struct bufferevent *, const char *, size_t,
2688 const char *);
2690 /* input-key.c */
2691 void input_key_build(void);
2692 int input_key_pane(struct window_pane *, key_code, struct mouse_event *);
2693 int input_key(struct screen *, struct bufferevent *, key_code);
2694 int input_key_get_mouse(struct screen *, struct mouse_event *, u_int,
2695 u_int, const char **, size_t *);
2697 /* colour.c */
2698 int colour_find_rgb(u_char, u_char, u_char);
2699 int colour_join_rgb(u_char, u_char, u_char);
2700 void colour_split_rgb(int, u_char *, u_char *, u_char *);
2701 int colour_force_rgb(int);
2702 const char *colour_tostring(int);
2703 int colour_fromstring(const char *s);
2704 int colour_256toRGB(int);
2705 int colour_256to16(int);
2706 int colour_byname(const char *);
2707 void colour_palette_init(struct colour_palette *);
2708 void colour_palette_clear(struct colour_palette *);
2709 void colour_palette_free(struct colour_palette *);
2710 int colour_palette_get(struct colour_palette *, int);
2711 int colour_palette_set(struct colour_palette *, int, int);
2712 void colour_palette_from_option(struct colour_palette *, struct options *);
2714 /* attributes.c */
2715 const char *attributes_tostring(int);
2716 int attributes_fromstring(const char *);
2718 /* grid.c */
2719 extern const struct grid_cell grid_default_cell;
2720 void grid_empty_line(struct grid *, u_int, u_int);
2721 int grid_cells_equal(const struct grid_cell *, const struct grid_cell *);
2722 int grid_cells_look_equal(const struct grid_cell *,
2723 const struct grid_cell *);
2724 struct grid *grid_create(u_int, u_int, u_int);
2725 void grid_destroy(struct grid *);
2726 int grid_compare(struct grid *, struct grid *);
2727 void grid_collect_history(struct grid *);
2728 void grid_remove_history(struct grid *, u_int );
2729 void grid_scroll_history(struct grid *, u_int);
2730 void grid_scroll_history_region(struct grid *, u_int, u_int, u_int);
2731 void grid_clear_history(struct grid *);
2732 const struct grid_line *grid_peek_line(struct grid *, u_int);
2733 void grid_get_cell(struct grid *, u_int, u_int, struct grid_cell *);
2734 void grid_set_cell(struct grid *, u_int, u_int, const struct grid_cell *);
2735 void grid_set_padding(struct grid *, u_int, u_int);
2736 void grid_set_cells(struct grid *, u_int, u_int, const struct grid_cell *,
2737 const char *, size_t);
2738 struct grid_line *grid_get_line(struct grid *, u_int);
2739 void grid_adjust_lines(struct grid *, u_int);
2740 void grid_clear(struct grid *, u_int, u_int, u_int, u_int, u_int);
2741 void grid_clear_lines(struct grid *, u_int, u_int, u_int);
2742 void grid_move_lines(struct grid *, u_int, u_int, u_int, u_int);
2743 void grid_move_cells(struct grid *, u_int, u_int, u_int, u_int, u_int);
2744 char *grid_string_cells(struct grid *, u_int, u_int, u_int,
2745 struct grid_cell **, int, int, int);
2746 void grid_duplicate_lines(struct grid *, u_int, struct grid *, u_int,
2747 u_int);
2748 void grid_reflow(struct grid *, u_int);
2749 void grid_wrap_position(struct grid *, u_int, u_int, u_int *, u_int *);
2750 void grid_unwrap_position(struct grid *, u_int *, u_int *, u_int, u_int);
2751 u_int grid_line_length(struct grid *, u_int);
2753 /* grid-reader.c */
2754 void grid_reader_start(struct grid_reader *, struct grid *, u_int, u_int);
2755 void grid_reader_get_cursor(struct grid_reader *, u_int *, u_int *);
2756 u_int grid_reader_line_length(struct grid_reader *);
2757 int grid_reader_in_set(struct grid_reader *, const char *);
2758 void grid_reader_cursor_right(struct grid_reader *, int, int);
2759 void grid_reader_cursor_left(struct grid_reader *, int);
2760 void grid_reader_cursor_down(struct grid_reader *);
2761 void grid_reader_cursor_up(struct grid_reader *);
2762 void grid_reader_cursor_start_of_line(struct grid_reader *, int);
2763 void grid_reader_cursor_end_of_line(struct grid_reader *, int, int);
2764 void grid_reader_cursor_next_word(struct grid_reader *, const char *);
2765 void grid_reader_cursor_next_word_end(struct grid_reader *, const char *);
2766 void grid_reader_cursor_previous_word(struct grid_reader *, const char *,
2767 int, int);
2768 int grid_reader_cursor_jump(struct grid_reader *,
2769 const struct utf8_data *);
2770 int grid_reader_cursor_jump_back(struct grid_reader *,
2771 const struct utf8_data *);
2772 void grid_reader_cursor_back_to_indentation(struct grid_reader *);
2774 /* grid-view.c */
2775 void grid_view_get_cell(struct grid *, u_int, u_int, struct grid_cell *);
2776 void grid_view_set_cell(struct grid *, u_int, u_int,
2777 const struct grid_cell *);
2778 void grid_view_set_padding(struct grid *, u_int, u_int);
2779 void grid_view_set_cells(struct grid *, u_int, u_int,
2780 const struct grid_cell *, const char *, size_t);
2781 void grid_view_clear_history(struct grid *, u_int);
2782 void grid_view_clear(struct grid *, u_int, u_int, u_int, u_int, u_int);
2783 void grid_view_scroll_region_up(struct grid *, u_int, u_int, u_int);
2784 void grid_view_scroll_region_down(struct grid *, u_int, u_int, u_int);
2785 void grid_view_insert_lines(struct grid *, u_int, u_int, u_int);
2786 void grid_view_insert_lines_region(struct grid *, u_int, u_int, u_int,
2787 u_int);
2788 void grid_view_delete_lines(struct grid *, u_int, u_int, u_int);
2789 void grid_view_delete_lines_region(struct grid *, u_int, u_int, u_int,
2790 u_int);
2791 void grid_view_insert_cells(struct grid *, u_int, u_int, u_int, u_int);
2792 void grid_view_delete_cells(struct grid *, u_int, u_int, u_int, u_int);
2793 char *grid_view_string_cells(struct grid *, u_int, u_int, u_int);
2795 /* screen-write.c */
2796 void screen_write_make_list(struct screen *);
2797 void screen_write_free_list(struct screen *);
2798 void screen_write_start_pane(struct screen_write_ctx *,
2799 struct window_pane *, struct screen *);
2800 void screen_write_start(struct screen_write_ctx *, struct screen *);
2801 void screen_write_start_callback(struct screen_write_ctx *, struct screen *,
2802 screen_write_init_ctx_cb, void *);
2803 void screen_write_stop(struct screen_write_ctx *);
2804 void screen_write_reset(struct screen_write_ctx *);
2805 size_t printflike(1, 2) screen_write_strlen(const char *, ...);
2806 int printflike(7, 8) screen_write_text(struct screen_write_ctx *, u_int, u_int,
2807 u_int, int, const struct grid_cell *, const char *, ...);
2808 void printflike(3, 4) screen_write_puts(struct screen_write_ctx *,
2809 const struct grid_cell *, const char *, ...);
2810 void printflike(4, 5) screen_write_nputs(struct screen_write_ctx *,
2811 ssize_t, const struct grid_cell *, const char *, ...);
2812 void printflike(4, 0) screen_write_vnputs(struct screen_write_ctx *, ssize_t,
2813 const struct grid_cell *, const char *, va_list);
2814 void screen_write_putc(struct screen_write_ctx *, const struct grid_cell *,
2815 u_char);
2816 void screen_write_fast_copy(struct screen_write_ctx *, struct screen *,
2817 u_int, u_int, u_int, u_int);
2818 void screen_write_hline(struct screen_write_ctx *, u_int, int, int);
2819 void screen_write_vline(struct screen_write_ctx *, u_int, int, int);
2820 void screen_write_menu(struct screen_write_ctx *, struct menu *, int,
2821 const struct grid_cell *);
2822 void screen_write_box(struct screen_write_ctx *, u_int, u_int, int,
2823 const struct grid_cell *, const char *);
2824 void screen_write_preview(struct screen_write_ctx *, struct screen *, u_int,
2825 u_int);
2826 void screen_write_backspace(struct screen_write_ctx *);
2827 void screen_write_mode_set(struct screen_write_ctx *, int);
2828 void screen_write_mode_clear(struct screen_write_ctx *, int);
2829 void screen_write_cursorup(struct screen_write_ctx *, u_int);
2830 void screen_write_cursordown(struct screen_write_ctx *, u_int);
2831 void screen_write_cursorright(struct screen_write_ctx *, u_int);
2832 void screen_write_cursorleft(struct screen_write_ctx *, u_int);
2833 void screen_write_alignmenttest(struct screen_write_ctx *);
2834 void screen_write_insertcharacter(struct screen_write_ctx *, u_int, u_int);
2835 void screen_write_deletecharacter(struct screen_write_ctx *, u_int, u_int);
2836 void screen_write_clearcharacter(struct screen_write_ctx *, u_int, u_int);
2837 void screen_write_insertline(struct screen_write_ctx *, u_int, u_int);
2838 void screen_write_deleteline(struct screen_write_ctx *, u_int, u_int);
2839 void screen_write_clearline(struct screen_write_ctx *, u_int);
2840 void screen_write_clearendofline(struct screen_write_ctx *, u_int);
2841 void screen_write_clearstartofline(struct screen_write_ctx *, u_int);
2842 void screen_write_cursormove(struct screen_write_ctx *, int, int, int);
2843 void screen_write_reverseindex(struct screen_write_ctx *, u_int);
2844 void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
2845 void screen_write_linefeed(struct screen_write_ctx *, int, u_int);
2846 void screen_write_scrollup(struct screen_write_ctx *, u_int, u_int);
2847 void screen_write_scrolldown(struct screen_write_ctx *, u_int, u_int);
2848 void screen_write_carriagereturn(struct screen_write_ctx *);
2849 void screen_write_clearendofscreen(struct screen_write_ctx *, u_int);
2850 void screen_write_clearstartofscreen(struct screen_write_ctx *, u_int);
2851 void screen_write_clearscreen(struct screen_write_ctx *, u_int);
2852 void screen_write_clearhistory(struct screen_write_ctx *);
2853 void screen_write_fullredraw(struct screen_write_ctx *);
2854 void screen_write_collect_end(struct screen_write_ctx *);
2855 void screen_write_collect_add(struct screen_write_ctx *,
2856 const struct grid_cell *);
2857 void screen_write_cell(struct screen_write_ctx *, const struct grid_cell *);
2858 void screen_write_setselection(struct screen_write_ctx *, u_char *, u_int);
2859 void screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int);
2860 void screen_write_alternateon(struct screen_write_ctx *,
2861 struct grid_cell *, int);
2862 void screen_write_alternateoff(struct screen_write_ctx *,
2863 struct grid_cell *, int);
2865 /* screen-redraw.c */
2866 void screen_redraw_screen(struct client *);
2867 void screen_redraw_pane(struct client *, struct window_pane *);
2869 /* screen.c */
2870 void screen_init(struct screen *, u_int, u_int, u_int);
2871 void screen_reinit(struct screen *);
2872 void screen_free(struct screen *);
2873 void screen_reset_tabs(struct screen *);
2874 void screen_set_cursor_style(u_int, enum screen_cursor_style *, int *);
2875 void screen_set_cursor_colour(struct screen *, int);
2876 int screen_set_title(struct screen *, const char *);
2877 void screen_set_path(struct screen *, const char *);
2878 void screen_push_title(struct screen *);
2879 void screen_pop_title(struct screen *);
2880 void screen_resize(struct screen *, u_int, u_int, int);
2881 void screen_resize_cursor(struct screen *, u_int, u_int, int, int, int);
2882 void screen_set_selection(struct screen *, u_int, u_int, u_int, u_int,
2883 u_int, int, struct grid_cell *);
2884 void screen_clear_selection(struct screen *);
2885 void screen_hide_selection(struct screen *);
2886 int screen_check_selection(struct screen *, u_int, u_int);
2887 void screen_select_cell(struct screen *, struct grid_cell *,
2888 const struct grid_cell *);
2889 void screen_alternate_on(struct screen *, struct grid_cell *, int);
2890 void screen_alternate_off(struct screen *, struct grid_cell *, int);
2891 const char *screen_mode_to_string(int);
2893 /* window.c */
2894 extern struct windows windows;
2895 extern struct window_pane_tree all_window_panes;
2896 int window_cmp(struct window *, struct window *);
2897 RB_PROTOTYPE(windows, window, entry, window_cmp);
2898 int winlink_cmp(struct winlink *, struct winlink *);
2899 RB_PROTOTYPE(winlinks, winlink, entry, winlink_cmp);
2900 int window_pane_cmp(struct window_pane *, struct window_pane *);
2901 RB_PROTOTYPE(window_pane_tree, window_pane, tree_entry, window_pane_cmp);
2902 struct winlink *winlink_find_by_index(struct winlinks *, int);
2903 struct winlink *winlink_find_by_window(struct winlinks *, struct window *);
2904 struct winlink *winlink_find_by_window_id(struct winlinks *, u_int);
2905 u_int winlink_count(struct winlinks *);
2906 struct winlink *winlink_add(struct winlinks *, int);
2907 void winlink_set_window(struct winlink *, struct window *);
2908 void winlink_remove(struct winlinks *, struct winlink *);
2909 struct winlink *winlink_next(struct winlink *);
2910 struct winlink *winlink_previous(struct winlink *);
2911 struct winlink *winlink_next_by_number(struct winlink *, struct session *,
2912 int);
2913 struct winlink *winlink_previous_by_number(struct winlink *, struct session *,
2914 int);
2915 void winlink_stack_push(struct winlink_stack *, struct winlink *);
2916 void winlink_stack_remove(struct winlink_stack *, struct winlink *);
2917 struct window *window_find_by_id_str(const char *);
2918 struct window *window_find_by_id(u_int);
2919 void window_update_activity(struct window *);
2920 struct window *window_create(u_int, u_int, u_int, u_int);
2921 void window_pane_set_event(struct window_pane *);
2922 struct window_pane *window_get_active_at(struct window *, u_int, u_int);
2923 struct window_pane *window_find_string(struct window *, const char *);
2924 int window_has_pane(struct window *, struct window_pane *);
2925 int window_set_active_pane(struct window *, struct window_pane *,
2926 int);
2927 void window_update_focus(struct window *);
2928 void window_pane_update_focus(struct window_pane *);
2929 void window_redraw_active_switch(struct window *,
2930 struct window_pane *);
2931 struct window_pane *window_add_pane(struct window *, struct window_pane *,
2932 u_int, int);
2933 void window_resize(struct window *, u_int, u_int, int, int);
2934 void window_pane_send_resize(struct window_pane *, u_int, u_int);
2935 int window_zoom(struct window_pane *);
2936 int window_unzoom(struct window *);
2937 int window_push_zoom(struct window *, int, int);
2938 int window_pop_zoom(struct window *);
2939 void window_lost_pane(struct window *, struct window_pane *);
2940 void window_remove_pane(struct window *, struct window_pane *);
2941 struct window_pane *window_pane_at_index(struct window *, u_int);
2942 struct window_pane *window_pane_next_by_number(struct window *,
2943 struct window_pane *, u_int);
2944 struct window_pane *window_pane_previous_by_number(struct window *,
2945 struct window_pane *, u_int);
2946 int window_pane_index(struct window_pane *, u_int *);
2947 u_int window_count_panes(struct window *);
2948 void window_destroy_panes(struct window *);
2949 struct window_pane *window_pane_find_by_id_str(const char *);
2950 struct window_pane *window_pane_find_by_id(u_int);
2951 int window_pane_destroy_ready(struct window_pane *);
2952 void window_pane_resize(struct window_pane *, u_int, u_int);
2953 int window_pane_set_mode(struct window_pane *,
2954 struct window_pane *, const struct window_mode *,
2955 struct cmd_find_state *, struct args *);
2956 void window_pane_reset_mode(struct window_pane *);
2957 void window_pane_reset_mode_all(struct window_pane *);
2958 int window_pane_key(struct window_pane *, struct client *,
2959 struct session *, struct winlink *, key_code,
2960 struct mouse_event *);
2961 int window_pane_visible(struct window_pane *);
2962 u_int window_pane_search(struct window_pane *, const char *, int,
2963 int);
2964 const char *window_printable_flags(struct winlink *, int);
2965 struct window_pane *window_pane_find_up(struct window_pane *);
2966 struct window_pane *window_pane_find_down(struct window_pane *);
2967 struct window_pane *window_pane_find_left(struct window_pane *);
2968 struct window_pane *window_pane_find_right(struct window_pane *);
2969 void window_set_name(struct window *, const char *);
2970 void window_add_ref(struct window *, const char *);
2971 void window_remove_ref(struct window *, const char *);
2972 void winlink_clear_flags(struct winlink *);
2973 int winlink_shuffle_up(struct session *, struct winlink *, int);
2974 int window_pane_start_input(struct window_pane *,
2975 struct cmdq_item *, char **);
2976 void *window_pane_get_new_data(struct window_pane *,
2977 struct window_pane_offset *, size_t *);
2978 void window_pane_update_used_data(struct window_pane *,
2979 struct window_pane_offset *, size_t);
2980 void window_set_fill_character(struct window *);
2982 /* layout.c */
2983 u_int layout_count_cells(struct layout_cell *);
2984 struct layout_cell *layout_create_cell(struct layout_cell *);
2985 void layout_free_cell(struct layout_cell *);
2986 void layout_print_cell(struct layout_cell *, const char *, u_int);
2987 void layout_destroy_cell(struct window *, struct layout_cell *,
2988 struct layout_cell **);
2989 void layout_resize_layout(struct window *, struct layout_cell *,
2990 enum layout_type, int, int);
2991 struct layout_cell *layout_search_by_border(struct layout_cell *, u_int, u_int);
2992 void layout_set_size(struct layout_cell *, u_int, u_int, u_int,
2993 u_int);
2994 void layout_make_leaf(struct layout_cell *, struct window_pane *);
2995 void layout_make_node(struct layout_cell *, enum layout_type);
2996 void layout_fix_offsets(struct window *);
2997 void layout_fix_panes(struct window *, struct window_pane *);
2998 void layout_resize_adjust(struct window *, struct layout_cell *,
2999 enum layout_type, int);
3000 void layout_init(struct window *, struct window_pane *);
3001 void layout_free(struct window *);
3002 void layout_resize(struct window *, u_int, u_int);
3003 void layout_resize_pane(struct window_pane *, enum layout_type,
3004 int, int);
3005 void layout_resize_pane_to(struct window_pane *, enum layout_type,
3006 u_int);
3007 void layout_assign_pane(struct layout_cell *, struct window_pane *,
3008 int);
3009 struct layout_cell *layout_split_pane(struct window_pane *, enum layout_type,
3010 int, int);
3011 void layout_close_pane(struct window_pane *);
3012 int layout_spread_cell(struct window *, struct layout_cell *);
3013 void layout_spread_out(struct window_pane *);
3015 /* layout-custom.c */
3016 char *layout_dump(struct layout_cell *);
3017 int layout_parse(struct window *, const char *);
3019 /* layout-set.c */
3020 int layout_set_lookup(const char *);
3021 u_int layout_set_select(struct window *, u_int);
3022 u_int layout_set_next(struct window *);
3023 u_int layout_set_previous(struct window *);
3025 /* mode-tree.c */
3026 typedef void (*mode_tree_build_cb)(void *, struct mode_tree_sort_criteria *,
3027 uint64_t *, const char *);
3028 typedef void (*mode_tree_draw_cb)(void *, void *, struct screen_write_ctx *,
3029 u_int, u_int);
3030 typedef int (*mode_tree_search_cb)(void *, void *, const char *);
3031 typedef void (*mode_tree_menu_cb)(void *, struct client *, key_code);
3032 typedef u_int (*mode_tree_height_cb)(void *, u_int);
3033 typedef key_code (*mode_tree_key_cb)(void *, void *, u_int);
3034 typedef void (*mode_tree_each_cb)(void *, void *, struct client *, key_code);
3035 u_int mode_tree_count_tagged(struct mode_tree_data *);
3036 void *mode_tree_get_current(struct mode_tree_data *);
3037 const char *mode_tree_get_current_name(struct mode_tree_data *);
3038 void mode_tree_expand_current(struct mode_tree_data *);
3039 void mode_tree_collapse_current(struct mode_tree_data *);
3040 void mode_tree_expand(struct mode_tree_data *, uint64_t);
3041 int mode_tree_set_current(struct mode_tree_data *, uint64_t);
3042 void mode_tree_each_tagged(struct mode_tree_data *, mode_tree_each_cb,
3043 struct client *, key_code, int);
3044 void mode_tree_up(struct mode_tree_data *, int);
3045 void mode_tree_down(struct mode_tree_data *, int);
3046 struct mode_tree_data *mode_tree_start(struct window_pane *, struct args *,
3047 mode_tree_build_cb, mode_tree_draw_cb, mode_tree_search_cb,
3048 mode_tree_menu_cb, mode_tree_height_cb, mode_tree_key_cb, void *,
3049 const struct menu_item *, const char **, u_int, struct screen **);
3050 void mode_tree_zoom(struct mode_tree_data *, struct args *);
3051 void mode_tree_build(struct mode_tree_data *);
3052 void mode_tree_free(struct mode_tree_data *);
3053 void mode_tree_resize(struct mode_tree_data *, u_int, u_int);
3054 struct mode_tree_item *mode_tree_add(struct mode_tree_data *,
3055 struct mode_tree_item *, void *, uint64_t, const char *,
3056 const char *, int);
3057 void mode_tree_draw_as_parent(struct mode_tree_item *);
3058 void mode_tree_no_tag(struct mode_tree_item *);
3059 void mode_tree_remove(struct mode_tree_data *, struct mode_tree_item *);
3060 void mode_tree_draw(struct mode_tree_data *);
3061 int mode_tree_key(struct mode_tree_data *, struct client *, key_code *,
3062 struct mouse_event *, u_int *, u_int *);
3063 void mode_tree_run_command(struct client *, struct cmd_find_state *,
3064 const char *, const char *);
3066 /* window-buffer.c */
3067 extern const struct window_mode window_buffer_mode;
3069 /* window-tree.c */
3070 extern const struct window_mode window_tree_mode;
3072 /* window-clock.c */
3073 extern const struct window_mode window_clock_mode;
3074 extern const char window_clock_table[14][5][5];
3076 /* window-client.c */
3077 extern const struct window_mode window_client_mode;
3079 /* window-copy.c */
3080 extern const struct window_mode window_copy_mode;
3081 extern const struct window_mode window_view_mode;
3082 void printflike(2, 3) window_copy_add(struct window_pane *, const char *, ...);
3083 void printflike(2, 0) window_copy_vadd(struct window_pane *, const char *,
3084 va_list);
3085 void window_copy_pageup(struct window_pane *, int);
3086 void window_copy_start_drag(struct client *, struct mouse_event *);
3087 char *window_copy_get_word(struct window_pane *, u_int, u_int);
3088 char *window_copy_get_line(struct window_pane *, u_int);
3090 /* window-option.c */
3091 extern const struct window_mode window_customize_mode;
3093 /* names.c */
3094 void check_window_name(struct window *);
3095 char *default_window_name(struct window *);
3096 char *parse_window_name(const char *);
3098 /* control.c */
3099 void control_discard(struct client *);
3100 void control_start(struct client *);
3101 void control_stop(struct client *);
3102 void control_set_pane_on(struct client *, struct window_pane *);
3103 void control_set_pane_off(struct client *, struct window_pane *);
3104 void control_continue_pane(struct client *, struct window_pane *);
3105 void control_pause_pane(struct client *, struct window_pane *);
3106 struct window_pane_offset *control_pane_offset(struct client *,
3107 struct window_pane *, int *);
3108 void control_reset_offsets(struct client *);
3109 void printflike(2, 3) control_write(struct client *, const char *, ...);
3110 void control_write_output(struct client *, struct window_pane *);
3111 int control_all_done(struct client *);
3112 void control_add_sub(struct client *, const char *, enum control_sub_type,
3113 int, const char *);
3114 void control_remove_sub(struct client *, const char *);
3116 /* control-notify.c */
3117 void control_notify_input(struct client *, struct window_pane *,
3118 const u_char *, size_t);
3119 void control_notify_pane_mode_changed(int);
3120 void control_notify_window_layout_changed(struct window *);
3121 void control_notify_window_pane_changed(struct window *);
3122 void control_notify_window_unlinked(struct session *, struct window *);
3123 void control_notify_window_linked(struct session *, struct window *);
3124 void control_notify_window_renamed(struct window *);
3125 void control_notify_client_session_changed(struct client *);
3126 void control_notify_client_detached(struct client *);
3127 void control_notify_session_renamed(struct session *);
3128 void control_notify_session_created(struct session *);
3129 void control_notify_session_closed(struct session *);
3130 void control_notify_session_window_changed(struct session *);
3132 /* session.c */
3133 extern struct sessions sessions;
3134 extern u_int next_session_id;
3135 int session_cmp(struct session *, struct session *);
3136 RB_PROTOTYPE(sessions, session, entry, session_cmp);
3137 int session_alive(struct session *);
3138 struct session *session_find(const char *);
3139 struct session *session_find_by_id_str(const char *);
3140 struct session *session_find_by_id(u_int);
3141 struct session *session_create(const char *, const char *, const char *,
3142 struct environ *, struct options *, struct termios *);
3143 void session_destroy(struct session *, int, const char *);
3144 void session_add_ref(struct session *, const char *);
3145 void session_remove_ref(struct session *, const char *);
3146 char *session_check_name(const char *);
3147 void session_update_activity(struct session *, struct timeval *);
3148 struct session *session_next_session(struct session *);
3149 struct session *session_previous_session(struct session *);
3150 struct winlink *session_new(struct session *, const char *, int, char **,
3151 const char *, const char *, int, char **);
3152 struct winlink *session_attach(struct session *, struct window *, int,
3153 char **);
3154 int session_detach(struct session *, struct winlink *);
3155 int session_has(struct session *, struct window *);
3156 int session_is_linked(struct session *, struct window *);
3157 int session_next(struct session *, int);
3158 int session_previous(struct session *, int);
3159 int session_select(struct session *, int);
3160 int session_last(struct session *);
3161 int session_set_current(struct session *, struct winlink *);
3162 struct session_group *session_group_contains(struct session *);
3163 struct session_group *session_group_find(const char *);
3164 struct session_group *session_group_new(const char *);
3165 void session_group_add(struct session_group *, struct session *);
3166 void session_group_synchronize_to(struct session *);
3167 void session_group_synchronize_from(struct session *);
3168 u_int session_group_count(struct session_group *);
3169 u_int session_group_attached_count(struct session_group *);
3170 void session_renumber_windows(struct session *);
3172 /* utf8.c */
3173 utf8_char utf8_build_one(u_char);
3174 enum utf8_state utf8_from_data(const struct utf8_data *, utf8_char *);
3175 void utf8_to_data(utf8_char, struct utf8_data *);
3176 void utf8_set(struct utf8_data *, u_char);
3177 void utf8_copy(struct utf8_data *, const struct utf8_data *);
3178 enum utf8_state utf8_open(struct utf8_data *, u_char);
3179 enum utf8_state utf8_append(struct utf8_data *, u_char);
3180 int utf8_isvalid(const char *);
3181 int utf8_strvis(char *, const char *, size_t, int);
3182 int utf8_stravis(char **, const char *, int);
3183 int utf8_stravisx(char **, const char *, size_t, int);
3184 char *utf8_sanitize(const char *);
3185 size_t utf8_strlen(const struct utf8_data *);
3186 u_int utf8_strwidth(const struct utf8_data *, ssize_t);
3187 struct utf8_data *utf8_fromcstr(const char *);
3188 char *utf8_tocstr(struct utf8_data *);
3189 u_int utf8_cstrwidth(const char *);
3190 char *utf8_padcstr(const char *, u_int);
3191 char *utf8_rpadcstr(const char *, u_int);
3192 int utf8_cstrhas(const char *, const struct utf8_data *);
3194 /* procname.c */
3195 char *get_proc_name(int, char *);
3196 char *get_proc_cwd(int);
3198 /* log.c */
3199 void log_add_level(void);
3200 int log_get_level(void);
3201 void log_open(const char *);
3202 void log_toggle(const char *);
3203 void log_close(void);
3204 void printflike(1, 2) log_debug(const char *, ...);
3205 __dead void printflike(1, 2) fatal(const char *, ...);
3206 __dead void printflike(1, 2) fatalx(const char *, ...);
3208 /* menu.c */
3209 #define MENU_NOMOUSE 0x1
3210 #define MENU_TAB 0x2
3211 #define MENU_STAYOPEN 0x4
3212 struct menu *menu_create(const char *);
3213 void menu_add_items(struct menu *, const struct menu_item *,
3214 struct cmdq_item *, struct client *,
3215 struct cmd_find_state *);
3216 void menu_add_item(struct menu *, const struct menu_item *,
3217 struct cmdq_item *, struct client *,
3218 struct cmd_find_state *);
3219 void menu_free(struct menu *);
3220 struct menu_data *menu_prepare(struct menu *, int, struct cmdq_item *, u_int,
3221 u_int, struct client *, struct cmd_find_state *,
3222 menu_choice_cb, void *);
3223 int menu_display(struct menu *, int, struct cmdq_item *, u_int,
3224 u_int, struct client *, struct cmd_find_state *,
3225 menu_choice_cb, void *);
3226 struct screen *menu_mode_cb(struct client *, void *, u_int *, u_int *);
3227 void menu_check_cb(struct client *, void *, u_int, u_int, u_int,
3228 struct overlay_ranges *);
3229 void menu_draw_cb(struct client *, void *,
3230 struct screen_redraw_ctx *);
3231 void menu_free_cb(struct client *, void *);
3232 int menu_key_cb(struct client *, void *, struct key_event *);
3234 /* popup.c */
3235 #define POPUP_CLOSEEXIT 0x1
3236 #define POPUP_CLOSEEXITZERO 0x2
3237 #define POPUP_INTERNAL 0x4
3238 typedef void (*popup_close_cb)(int, void *);
3239 typedef void (*popup_finish_edit_cb)(char *, size_t, void *);
3240 int popup_display(int, int, struct cmdq_item *, u_int, u_int,
3241 u_int, u_int, struct environ *, const char *, int, char **,
3242 const char *, const char *, struct client *,
3243 struct session *, const char *, const char *,
3244 popup_close_cb, void *);
3245 int popup_editor(struct client *, const char *, size_t,
3246 popup_finish_edit_cb, void *);
3248 /* style.c */
3249 int style_parse(struct style *,const struct grid_cell *,
3250 const char *);
3251 const char *style_tostring(struct style *);
3252 void style_add(struct grid_cell *, struct options *,
3253 const char *, struct format_tree *);
3254 void style_apply(struct grid_cell *, struct options *,
3255 const char *, struct format_tree *);
3256 void style_set(struct style *, const struct grid_cell *);
3257 void style_copy(struct style *, struct style *);
3259 /* spawn.c */
3260 struct winlink *spawn_window(struct spawn_context *, char **);
3261 struct window_pane *spawn_pane(struct spawn_context *, char **);
3263 /* regsub.c */
3264 char *regsub(const char *, const char *, const char *, int);
3266 #endif /* TMUX_H */