[BACK]Return to tmux.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/tmux.h, Revision 1.660

1.660   ! nicm        1: /* $OpenBSD: tmux.h,v 1.659 2016/10/12 15:26:37 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.617     nicm        4:  * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
1.1       nicm        5:  *
                      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.
                      9:  *
                     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.
                     17:  */
                     18:
                     19: #ifndef TMUX_H
                     20: #define TMUX_H
                     21:
1.423     nicm       22: #define PROTOCOL_VERSION 8
1.1       nicm       23:
                     24: #include <sys/time.h>
                     25: #include <sys/queue.h>
                     26: #include <sys/tree.h>
                     27:
1.6       nicm       28: #include <bitstring.h>
1.159     nicm       29: #include <event.h>
1.1       nicm       30: #include <limits.h>
                     31: #include <stdarg.h>
                     32: #include <stdint.h>
                     33: #include <stdio.h>
                     34: #include <termios.h>
1.621     nicm       35: #include <wchar.h>
1.1       nicm       36:
1.583     nicm       37: #include "xmalloc.h"
                     38:
1.73      nicm       39: extern char   **environ;
1.1       nicm       40:
1.652     nicm       41: struct args;
1.568     nicm       42: struct client;
                     43: struct environ;
                     44: struct input_ctx;
1.655     nicm       45: struct mode_key_cmdstr;
1.568     nicm       46: struct mouse_event;
                     47: struct options;
                     48: struct session;
                     49: struct tmuxpeer;
                     50: struct tmuxproc;
                     51:
1.409     nicm       52: /* Default global configuration file. */
                     53: #define TMUX_CONF "/etc/tmux.conf"
1.1       nicm       54:
1.195     nicm       55: /*
1.39      nicm       56:  * Minimum layout cell size, NOT including separator line. The scroll region
                     57:  * cannot be one line in height so this must be at least two.
                     58:  */
                     59: #define PANE_MINIMUM 2
1.1       nicm       60:
1.540     nicm       61: /* Automatic name refresh interval, in microseconds. Must be < 1 second. */
                     62: #define NAME_INTERVAL 500000
1.152     nicm       63:
1.645     nicm       64: /*
                     65:  * Event watermarks. We start with FAST then if we hit full size for HITS reads
                     66:  * in succession switch to SLOW, and return when we hit EMPTY the same number
                     67:  * of times.
                     68:  */
                     69: #define READ_FAST_SIZE 4096
                     70: #define READ_SLOW_SIZE 128
                     71:
                     72: #define READ_FULL_SIZE (4096 - 16)
                     73: #define READ_EMPTY_SIZE 16
                     74:
                     75: #define READ_CHANGE_HITS 3
1.1       nicm       76:
                     77: /* Attribute to make gcc check printf-like arguments. */
1.476     nicm       78: #define printflike(a, b) __attribute__ ((format (printf, a, b)))
1.1       nicm       79:
                     80: /* Number of items in array. */
1.14      nicm       81: #ifndef nitems
1.1       nicm       82: #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
1.14      nicm       83: #endif
1.335     nicm       84:
1.1       nicm       85: /* Bell option values. */
                     86: #define BELL_NONE 0
                     87: #define BELL_ANY 1
                     88: #define BELL_CURRENT 2
1.513     nicm       89: #define BELL_OTHER 3
1.1       nicm       90:
1.174     nicm       91: /* Special key codes. */
1.571     nicm       92: #define KEYC_NONE 0xffff00000000ULL
1.601     nicm       93: #define KEYC_UNKNOWN 0xfffe00000000ULL
1.571     nicm       94: #define KEYC_BASE 0x100000000000ULL
1.174     nicm       95:
                     96: /* Key modifier bits. */
1.571     nicm       97: #define KEYC_ESCAPE 0x200000000000ULL
                     98: #define KEYC_CTRL   0x400000000000ULL
                     99: #define KEYC_SHIFT  0x800000000000ULL
1.225     nicm      100:
1.275     nicm      101: /* Mask to obtain key w/o modifiers. */
1.493     nicm      102: #define KEYC_MASK_MOD (KEYC_ESCAPE|KEYC_CTRL|KEYC_SHIFT)
1.225     nicm      103: #define KEYC_MASK_KEY (~KEYC_MASK_MOD)
1.41      nicm      104:
1.492     nicm      105: /* Is this a mouse key? */
                    106: #define KEYC_IS_MOUSE(key) (((key) & KEYC_MASK_KEY) >= KEYC_MOUSE &&   \
                    107:     ((key) & KEYC_MASK_KEY) < KEYC_BSPACE)
                    108:
1.653     nicm      109: /* Multiple click timeout. */
                    110: #define KEYC_CLICK_TIMEOUT 300
                    111:
1.492     nicm      112: /* Mouse key codes. */
                    113: #define KEYC_MOUSE_KEY(name)                           \
                    114:        KEYC_ ## name ## _PANE,                         \
                    115:        KEYC_ ## name ## _STATUS,                       \
                    116:        KEYC_ ## name ## _BORDER
                    117: #define KEYC_MOUSE_STRING(name, s)                     \
                    118:        { #s "Pane", KEYC_ ## name ## _PANE },          \
                    119:        { #s "Status", KEYC_ ## name ## _STATUS },      \
                    120:        { #s "Border", KEYC_ ## name ## _BORDER }
                    121:
1.571     nicm      122: /*
                    123:  * A single key. This can be ASCII or Unicode or one of the keys starting at
                    124:  * KEYC_BASE.
                    125:  */
1.580     nicm      126: typedef unsigned long long key_code;
1.571     nicm      127:
1.492     nicm      128: /* Special key codes. */
1.571     nicm      129: enum {
1.492     nicm      130:        /* Focus events. */
                    131:        KEYC_FOCUS_IN = KEYC_BASE,
                    132:        KEYC_FOCUS_OUT,
                    133:
                    134:        /* Mouse keys. */
                    135:        KEYC_MOUSE, /* unclassified mouse event */
                    136:        KEYC_MOUSE_KEY(MOUSEDOWN1),
                    137:        KEYC_MOUSE_KEY(MOUSEDOWN2),
                    138:        KEYC_MOUSE_KEY(MOUSEDOWN3),
                    139:        KEYC_MOUSE_KEY(MOUSEUP1),
                    140:        KEYC_MOUSE_KEY(MOUSEUP2),
                    141:        KEYC_MOUSE_KEY(MOUSEUP3),
                    142:        KEYC_MOUSE_KEY(MOUSEDRAG1),
                    143:        KEYC_MOUSE_KEY(MOUSEDRAG2),
                    144:        KEYC_MOUSE_KEY(MOUSEDRAG3),
1.623     nicm      145:        KEYC_MOUSE_KEY(MOUSEDRAGEND1),
                    146:        KEYC_MOUSE_KEY(MOUSEDRAGEND2),
                    147:        KEYC_MOUSE_KEY(MOUSEDRAGEND3),
1.492     nicm      148:        KEYC_MOUSE_KEY(WHEELUP),
                    149:        KEYC_MOUSE_KEY(WHEELDOWN),
1.653     nicm      150:        KEYC_MOUSE_KEY(DOUBLECLICK1),
                    151:        KEYC_MOUSE_KEY(DOUBLECLICK2),
                    152:        KEYC_MOUSE_KEY(DOUBLECLICK3),
                    153:        KEYC_MOUSE_KEY(TRIPLECLICK1),
                    154:        KEYC_MOUSE_KEY(TRIPLECLICK2),
                    155:        KEYC_MOUSE_KEY(TRIPLECLICK3),
1.56      nicm      156:
                    157:        /* Backspace key. */
                    158:        KEYC_BSPACE,
1.41      nicm      159:
                    160:        /* Function keys. */
                    161:        KEYC_F1,
                    162:        KEYC_F2,
                    163:        KEYC_F3,
                    164:        KEYC_F4,
                    165:        KEYC_F5,
                    166:        KEYC_F6,
                    167:        KEYC_F7,
                    168:        KEYC_F8,
                    169:        KEYC_F9,
                    170:        KEYC_F10,
                    171:        KEYC_F11,
                    172:        KEYC_F12,
                    173:        KEYC_IC,
                    174:        KEYC_DC,
                    175:        KEYC_HOME,
                    176:        KEYC_END,
                    177:        KEYC_NPAGE,
                    178:        KEYC_PPAGE,
                    179:        KEYC_BTAB,
                    180:
                    181:        /* Arrow keys. */
                    182:        KEYC_UP,
                    183:        KEYC_DOWN,
                    184:        KEYC_LEFT,
                    185:        KEYC_RIGHT,
                    186:
1.148     nicm      187:        /* Numeric keypad. */
                    188:        KEYC_KP_SLASH,
                    189:        KEYC_KP_STAR,
                    190:        KEYC_KP_MINUS,
                    191:        KEYC_KP_SEVEN,
                    192:        KEYC_KP_EIGHT,
                    193:        KEYC_KP_NINE,
                    194:        KEYC_KP_PLUS,
                    195:        KEYC_KP_FOUR,
                    196:        KEYC_KP_FIVE,
                    197:        KEYC_KP_SIX,
                    198:        KEYC_KP_ONE,
                    199:        KEYC_KP_TWO,
                    200:        KEYC_KP_THREE,
                    201:        KEYC_KP_ENTER,
                    202:        KEYC_KP_ZERO,
                    203:        KEYC_KP_PERIOD,
1.41      nicm      204: };
1.1       nicm      205:
                    206: /* Termcap codes. */
                    207: enum tty_code_code {
                    208:        TTYC_AX = 0,
                    209:        TTYC_ACSC,      /* acs_chars, ac */
1.491     nicm      210:        TTYC_BCE,       /* back_color_erase, ut */
1.1       nicm      211:        TTYC_BEL,       /* bell, bl */
                    212:        TTYC_BLINK,     /* enter_blink_mode, mb */
                    213:        TTYC_BOLD,      /* enter_bold_mode, md */
                    214:        TTYC_CIVIS,     /* cursor_invisible, vi */
                    215:        TTYC_CLEAR,     /* clear_screen, cl */
                    216:        TTYC_CNORM,     /* cursor_normal, ve */
                    217:        TTYC_COLORS,    /* max_colors, Co */
1.287     nicm      218:        TTYC_CR,        /* restore cursor colour, Cr */
1.411     nicm      219:        TTYC_CS,        /* set cursor colour, Cs */
1.1       nicm      220:        TTYC_CSR,       /* change_scroll_region, cs */
1.135     nicm      221:        TTYC_CUB,       /* parm_left_cursor, LE */
                    222:        TTYC_CUB1,      /* cursor_left, le */
1.1       nicm      223:        TTYC_CUD,       /* parm_down_cursor, DO */
                    224:        TTYC_CUD1,      /* cursor_down, do */
1.135     nicm      225:        TTYC_CUF,       /* parm_right_cursor, RI */
                    226:        TTYC_CUF1,      /* cursor_right, nd */
1.1       nicm      227:        TTYC_CUP,       /* cursor_address, cm */
1.135     nicm      228:        TTYC_CUU,       /* parm_up_cursor, UP */
                    229:        TTYC_CUU1,      /* cursor_up, up */
1.485     nicm      230:        TTYC_CVVIS,     /* cursor_visible, vs */
1.1       nicm      231:        TTYC_DCH,       /* parm_dch, DC */
                    232:        TTYC_DCH1,      /* delete_character, dc */
                    233:        TTYC_DIM,       /* enter_dim_mode, mh */
                    234:        TTYC_DL,        /* parm_delete_line, DL */
                    235:        TTYC_DL1,       /* delete_line, dl */
1.297     nicm      236:        TTYC_E3,
1.371     nicm      237:        TTYC_ECH,       /* erase_chars, ec */
1.1       nicm      238:        TTYC_EL,        /* clr_eol, ce */
                    239:        TTYC_EL1,       /* clr_bol, cb */
                    240:        TTYC_ENACS,     /* ena_acs, eA */
1.283     nicm      241:        TTYC_FSL,       /* from_status_line, fsl */
1.135     nicm      242:        TTYC_HOME,      /* cursor_home, ho */
                    243:        TTYC_HPA,       /* column_address, ch */
1.1       nicm      244:        TTYC_ICH,       /* parm_ich, IC */
                    245:        TTYC_ICH1,      /* insert_character, ic */
                    246:        TTYC_IL,        /* parm_insert_line, IL */
                    247:        TTYC_IL1,       /* insert_line, il */
                    248:        TTYC_INVIS,     /* enter_secure_mode, mk */
                    249:        TTYC_IS1,       /* init_1string, i1 */
                    250:        TTYC_IS2,       /* init_2string, i2 */
                    251:        TTYC_IS3,       /* init_3string, i3 */
                    252:        TTYC_KCBT,      /* key_btab, kB */
                    253:        TTYC_KCUB1,     /* key_left, kl */
                    254:        TTYC_KCUD1,     /* key_down, kd */
                    255:        TTYC_KCUF1,     /* key_right, kr */
                    256:        TTYC_KCUU1,     /* key_up, ku */
1.149     nicm      257:        TTYC_KDC2,
                    258:        TTYC_KDC3,
                    259:        TTYC_KDC4,
                    260:        TTYC_KDC5,
                    261:        TTYC_KDC6,
                    262:        TTYC_KDC7,
1.1       nicm      263:        TTYC_KDCH1,     /* key_dc, kD */
1.149     nicm      264:        TTYC_KDN2,
                    265:        TTYC_KDN3,
                    266:        TTYC_KDN4,
                    267:        TTYC_KDN5,
                    268:        TTYC_KDN6,
                    269:        TTYC_KDN7,
1.1       nicm      270:        TTYC_KEND,      /* key_end, ke */
1.149     nicm      271:        TTYC_KEND2,
                    272:        TTYC_KEND3,
                    273:        TTYC_KEND4,
                    274:        TTYC_KEND5,
                    275:        TTYC_KEND6,
                    276:        TTYC_KEND7,
1.466     nicm      277:        TTYC_KF1,
                    278:        TTYC_KF10,
                    279:        TTYC_KF11,
                    280:        TTYC_KF12,
                    281:        TTYC_KF13,
                    282:        TTYC_KF14,
                    283:        TTYC_KF15,
                    284:        TTYC_KF16,
                    285:        TTYC_KF17,
                    286:        TTYC_KF18,
                    287:        TTYC_KF19,
                    288:        TTYC_KF2,
                    289:        TTYC_KF20,
                    290:        TTYC_KF21,
                    291:        TTYC_KF22,
                    292:        TTYC_KF23,
                    293:        TTYC_KF24,
                    294:        TTYC_KF25,
                    295:        TTYC_KF26,
                    296:        TTYC_KF27,
                    297:        TTYC_KF28,
                    298:        TTYC_KF29,
                    299:        TTYC_KF3,
                    300:        TTYC_KF30,
                    301:        TTYC_KF31,
                    302:        TTYC_KF32,
                    303:        TTYC_KF33,
                    304:        TTYC_KF34,
                    305:        TTYC_KF35,
                    306:        TTYC_KF36,
                    307:        TTYC_KF37,
                    308:        TTYC_KF38,
                    309:        TTYC_KF39,
                    310:        TTYC_KF4,
                    311:        TTYC_KF40,
                    312:        TTYC_KF41,
                    313:        TTYC_KF42,
                    314:        TTYC_KF43,
                    315:        TTYC_KF44,
                    316:        TTYC_KF45,
                    317:        TTYC_KF46,
                    318:        TTYC_KF47,
                    319:        TTYC_KF48,
                    320:        TTYC_KF49,
                    321:        TTYC_KF5,
                    322:        TTYC_KF50,
                    323:        TTYC_KF51,
                    324:        TTYC_KF52,
                    325:        TTYC_KF53,
                    326:        TTYC_KF54,
                    327:        TTYC_KF55,
                    328:        TTYC_KF56,
                    329:        TTYC_KF57,
                    330:        TTYC_KF58,
                    331:        TTYC_KF59,
                    332:        TTYC_KF6,
                    333:        TTYC_KF60,
                    334:        TTYC_KF61,
                    335:        TTYC_KF62,
                    336:        TTYC_KF63,
                    337:        TTYC_KF7,
                    338:        TTYC_KF8,
                    339:        TTYC_KF9,
1.149     nicm      340:        TTYC_KHOM2,
                    341:        TTYC_KHOM3,
                    342:        TTYC_KHOM4,
                    343:        TTYC_KHOM5,
                    344:        TTYC_KHOM6,
                    345:        TTYC_KHOM7,
1.1       nicm      346:        TTYC_KHOME,     /* key_home, kh */
1.149     nicm      347:        TTYC_KIC2,
                    348:        TTYC_KIC3,
                    349:        TTYC_KIC4,
                    350:        TTYC_KIC5,
                    351:        TTYC_KIC6,
                    352:        TTYC_KIC7,
1.1       nicm      353:        TTYC_KICH1,     /* key_ic, kI */
1.149     nicm      354:        TTYC_KLFT2,
                    355:        TTYC_KLFT3,
                    356:        TTYC_KLFT4,
                    357:        TTYC_KLFT5,
                    358:        TTYC_KLFT6,
                    359:        TTYC_KLFT7,
1.1       nicm      360:        TTYC_KMOUS,     /* key_mouse, Km */
                    361:        TTYC_KNP,       /* key_npage, kN */
1.149     nicm      362:        TTYC_KNXT2,
                    363:        TTYC_KNXT3,
                    364:        TTYC_KNXT4,
                    365:        TTYC_KNXT5,
                    366:        TTYC_KNXT6,
                    367:        TTYC_KNXT7,
1.1       nicm      368:        TTYC_KPP,       /* key_ppage, kP */
1.149     nicm      369:        TTYC_KPRV2,
                    370:        TTYC_KPRV3,
                    371:        TTYC_KPRV4,
                    372:        TTYC_KPRV5,
                    373:        TTYC_KPRV6,
                    374:        TTYC_KPRV7,
                    375:        TTYC_KRIT2,
                    376:        TTYC_KRIT3,
                    377:        TTYC_KRIT4,
                    378:        TTYC_KRIT5,
                    379:        TTYC_KRIT6,
                    380:        TTYC_KRIT7,
                    381:        TTYC_KUP2,
                    382:        TTYC_KUP3,
                    383:        TTYC_KUP4,
                    384:        TTYC_KUP5,
                    385:        TTYC_KUP6,
                    386:        TTYC_KUP7,
1.286     nicm      387:        TTYC_MS,        /* modify xterm(1) selection */
1.1       nicm      388:        TTYC_OP,        /* orig_pair, op */
                    389:        TTYC_REV,       /* enter_reverse_mode, mr */
                    390:        TTYC_RI,        /* scroll_reverse, sr */
                    391:        TTYC_RMACS,     /* exit_alt_charset_mode */
                    392:        TTYC_RMCUP,     /* exit_ca_mode, te */
                    393:        TTYC_RMKX,      /* keypad_local, ke */
1.411     nicm      394:        TTYC_SE,        /* reset cursor style, Se */
1.1       nicm      395:        TTYC_SETAB,     /* set_a_background, AB */
                    396:        TTYC_SETAF,     /* set_a_foreground, AF */
                    397:        TTYC_SGR0,      /* exit_attribute_mode, me */
1.283     nicm      398:        TTYC_SITM,      /* enter_italics_mode, it */
1.1       nicm      399:        TTYC_SMACS,     /* enter_alt_charset_mode, as */
                    400:        TTYC_SMCUP,     /* enter_ca_mode, ti */
                    401:        TTYC_SMKX,      /* keypad_xmit, ks */
                    402:        TTYC_SMSO,      /* enter_standout_mode, so */
                    403:        TTYC_SMUL,      /* enter_underline_mode, us */
1.411     nicm      404:        TTYC_SS,        /* set cursor style, Ss */
1.619     nicm      405:        TTYC_TC,        /* 24-bit "true" colour, Tc */
1.283     nicm      406:        TTYC_TSL,       /* to_status_line, tsl */
1.135     nicm      407:        TTYC_VPA,       /* row_address, cv */
1.1       nicm      408:        TTYC_XENL,      /* eat_newline_glitch, xn */
1.283     nicm      409:        TTYC_XT,        /* xterm(1)-compatible title, XT */
1.1       nicm      410: };
                    411:
                    412: /* Message codes. */
1.64      nicm      413: enum msgtype {
1.423     nicm      414:        MSG_VERSION = 12,
                    415:
                    416:        MSG_IDENTIFY_FLAGS = 100,
                    417:        MSG_IDENTIFY_TERM,
                    418:        MSG_IDENTIFY_TTYNAME,
1.563     nicm      419:        MSG_IDENTIFY_OLDCWD, /* unused */
1.423     nicm      420:        MSG_IDENTIFY_STDIN,
                    421:        MSG_IDENTIFY_ENVIRON,
                    422:        MSG_IDENTIFY_DONE,
1.523     nicm      423:        MSG_IDENTIFY_CLIENTPID,
1.563     nicm      424:        MSG_IDENTIFY_CWD,
1.423     nicm      425:
                    426:        MSG_COMMAND = 200,
1.1       nicm      427:        MSG_DETACH,
1.423     nicm      428:        MSG_DETACHKILL,
1.1       nicm      429:        MSG_EXIT,
                    430:        MSG_EXITED,
                    431:        MSG_EXITING,
1.423     nicm      432:        MSG_LOCK,
1.1       nicm      433:        MSG_READY,
                    434:        MSG_RESIZE,
1.423     nicm      435:        MSG_SHELL,
1.1       nicm      436:        MSG_SHUTDOWN,
1.423     nicm      437:        MSG_STDERR,
                    438:        MSG_STDIN,
                    439:        MSG_STDOUT,
1.1       nicm      440:        MSG_SUSPEND,
1.423     nicm      441:        MSG_UNLOCK,
1.1       nicm      442:        MSG_WAKEUP,
                    443: };
                    444:
1.55      nicm      445: /*
1.75      nicm      446:  * Message data.
1.55      nicm      447:  *
                    448:  * Don't forget to bump PROTOCOL_VERSION if any of these change!
                    449:  */
1.1       nicm      450: struct msg_command_data {
1.427     nicm      451:        int     argc;
                    452: }; /* followed by packed argv */
1.1       nicm      453:
1.332     nicm      454: struct msg_stdin_data {
                    455:        ssize_t size;
                    456:        char    data[BUFSIZ];
                    457: };
                    458:
                    459: struct msg_stdout_data {
                    460:        ssize_t size;
                    461:        char    data[BUFSIZ];
                    462: };
                    463:
                    464: struct msg_stderr_data {
                    465:        ssize_t size;
                    466:        char    data[BUFSIZ];
                    467: };
                    468:
1.62      nicm      469: /* Mode key commands. */
1.1       nicm      470: enum mode_key_cmd {
1.59      nicm      471:        MODEKEY_NONE,
                    472:        MODEKEY_OTHER,
                    473:
                    474:        /* Menu (choice) keys. */
1.350     nicm      475:        MODEKEYCHOICE_BACKSPACE,
1.439     nicm      476:        MODEKEYCHOICE_BOTTOMLINE,
1.59      nicm      477:        MODEKEYCHOICE_CANCEL,
                    478:        MODEKEYCHOICE_CHOOSE,
                    479:        MODEKEYCHOICE_DOWN,
1.439     nicm      480:        MODEKEYCHOICE_ENDOFLIST,
1.59      nicm      481:        MODEKEYCHOICE_PAGEDOWN,
                    482:        MODEKEYCHOICE_PAGEUP,
1.201     nicm      483:        MODEKEYCHOICE_SCROLLDOWN,
                    484:        MODEKEYCHOICE_SCROLLUP,
1.350     nicm      485:        MODEKEYCHOICE_STARTNUMBERPREFIX,
1.439     nicm      486:        MODEKEYCHOICE_STARTOFLIST,
                    487:        MODEKEYCHOICE_TOPLINE,
1.359     nicm      488:        MODEKEYCHOICE_TREE_COLLAPSE,
                    489:        MODEKEYCHOICE_TREE_COLLAPSE_ALL,
                    490:        MODEKEYCHOICE_TREE_EXPAND,
                    491:        MODEKEYCHOICE_TREE_EXPAND_ALL,
                    492:        MODEKEYCHOICE_TREE_TOGGLE,
1.59      nicm      493:        MODEKEYCHOICE_UP,
1.1       nicm      494: };
                    495:
1.62      nicm      496: /* Data required while mode keys are in use. */
1.1       nicm      497: struct mode_key_data {
1.62      nicm      498:        struct mode_key_tree   *tree;
1.1       nicm      499: };
                    500: #define MODEKEY_EMACS 0
                    501: #define MODEKEY_VI 1
                    502:
1.62      nicm      503: /* Binding between a key and a command. */
                    504: struct mode_key_binding {
1.571     nicm      505:        key_code                         key;
1.389     nicm      506:        enum mode_key_cmd                cmd;
1.62      nicm      507:
1.389     nicm      508:        RB_ENTRY(mode_key_binding)       entry;
1.62      nicm      509: };
1.306     nicm      510: RB_HEAD(mode_key_tree, mode_key_binding);
1.62      nicm      511:
                    512: /* Named mode key table description. */
1.509     nicm      513: struct mode_key_entry;
1.62      nicm      514: struct mode_key_table {
1.261     nicm      515:        const char                      *name;
                    516:        const struct mode_key_cmdstr    *cmdstr;
                    517:        struct mode_key_tree            *tree;
                    518:        const struct mode_key_entry     *table; /* default entries */
1.62      nicm      519: };
                    520:
1.1       nicm      521: /* Modes. */
                    522: #define MODE_CURSOR 0x1
                    523: #define MODE_INSERT 0x2
                    524: #define MODE_KCURSOR 0x4
1.185     nicm      525: #define MODE_KKEYPAD 0x8       /* set = application, clear = number */
1.255     nicm      526: #define MODE_WRAP 0x10         /* whether lines wrap */
                    527: #define MODE_MOUSE_STANDARD 0x20
1.266     nicm      528: #define MODE_MOUSE_BUTTON 0x40
1.485     nicm      529: #define MODE_BLINKING 0x80
1.586     nicm      530: #define MODE_MOUSE_UTF8 0x100
1.384     nicm      531: #define MODE_MOUSE_SGR 0x200
                    532: #define MODE_BRACKETPASTE 0x400
1.393     nicm      533: #define MODE_FOCUSON 0x800
1.255     nicm      534:
1.467     nicm      535: #define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON)
1.1       nicm      536:
1.580     nicm      537: /*
                    538:  * A single UTF-8 character. UTF8_SIZE must be big enough to hold at least one
                    539:  * combining character as well.
                    540: */
                    541: #define UTF8_SIZE 9
1.143     nicm      542: struct utf8_data {
                    543:        u_char  data[UTF8_SIZE];
                    544:
1.576     nicm      545:        u_char  have;
                    546:        u_char  size;
1.143     nicm      547:
1.578     nicm      548:        u_char  width;  /* 0xff if invalid */
1.576     nicm      549: } __packed;
1.579     nicm      550: enum utf8_state {
                    551:        UTF8_MORE,
                    552:        UTF8_DONE,
                    553:        UTF8_ERROR
                    554: };
1.1       nicm      555:
1.637     nicm      556: /* Colour flags. */
                    557: #define COLOUR_FLAG_256 0x01000000
                    558: #define COLOUR_FLAG_RGB 0x02000000
                    559:
1.1       nicm      560: /* Grid attributes. */
                    561: #define GRID_ATTR_BRIGHT 0x1
                    562: #define GRID_ATTR_DIM 0x2
                    563: #define GRID_ATTR_UNDERSCORE 0x4
                    564: #define GRID_ATTR_BLINK 0x8
                    565: #define GRID_ATTR_REVERSE 0x10
                    566: #define GRID_ATTR_HIDDEN 0x20
                    567: #define GRID_ATTR_ITALICS 0x40
                    568: #define GRID_ATTR_CHARSET 0x80 /* alternative character set */
                    569:
                    570: /* Grid flags. */
                    571: #define GRID_FLAG_FG256 0x1
                    572: #define GRID_FLAG_BG256 0x2
                    573: #define GRID_FLAG_PADDING 0x4
1.576     nicm      574: #define GRID_FLAG_EXTENDED 0x8
1.637     nicm      575: #define GRID_FLAG_SELECTED 0x10
1.1       nicm      576:
1.72      nicm      577: /* Grid line flags. */
                    578: #define GRID_LINE_WRAPPED 0x1
1.638     nicm      579: #define GRID_LINE_EXTENDED 0x2
1.72      nicm      580:
1.1       nicm      581: /* Grid cell data. */
                    582: struct grid_cell {
1.576     nicm      583:        u_char                  flags;
                    584:        u_char                  attr;
1.637     nicm      585:        int                     fg;
                    586:        int                     bg;
1.576     nicm      587:        struct utf8_data        data;
                    588:
                    589: };
                    590: struct grid_cell_entry {
                    591:        u_char                  flags;
                    592:        union {
                    593:                u_int           offset;
                    594:                struct {
                    595:                        u_char  attr;
                    596:                        u_char  fg;
                    597:                        u_char  bg;
                    598:                        u_char  data;
                    599:                } data;
                    600:        };
1.1       nicm      601: } __packed;
                    602:
1.71      nicm      603: /* Grid line. */
                    604: struct grid_line {
1.576     nicm      605:        u_int                    cellsize;
                    606:        struct grid_cell_entry  *celldata;
                    607:
                    608:        u_int                    extdsize;
                    609:        struct grid_cell        *extddata;
1.71      nicm      610:
1.576     nicm      611:        int                      flags;
1.71      nicm      612: } __packed;
                    613:
1.1       nicm      614: /* Entire grid of cells. */
                    615: struct grid {
1.576     nicm      616:        int                      flags;
                    617: #define GRID_HISTORY 0x1 /* scroll lines into history */
1.25      nicm      618:
1.576     nicm      619:        u_int                    sx;
                    620:        u_int                    sy;
1.1       nicm      621:
1.642     nicm      622:        u_int                    hscrolled;
1.576     nicm      623:        u_int                    hsize;
                    624:        u_int                    hlimit;
1.1       nicm      625:
1.576     nicm      626:        struct grid_line        *linedata;
1.1       nicm      627: };
                    628:
1.595     nicm      629: /* Hook data structures. */
                    630: struct hook {
1.596     nicm      631:        const char      *name;
                    632:
                    633:        struct cmd_q    *cmdq;
                    634:        struct cmd_list *cmdlist;
                    635:
                    636:        RB_ENTRY(hook)   entry;
1.595     nicm      637: };
                    638:
1.1       nicm      639: /* Option data structures. */
                    640: struct options_entry {
1.599     nicm      641:        const char              *name;
1.1       nicm      642:
                    643:        enum {
                    644:                OPTIONS_STRING,
                    645:                OPTIONS_NUMBER,
1.435     nicm      646:                OPTIONS_STYLE
1.1       nicm      647:        } type;
1.109     nicm      648:
1.435     nicm      649:        char                    *str;
1.511     nicm      650:        long long                num;
1.435     nicm      651:        struct grid_cell         style;
1.1       nicm      652:
1.306     nicm      653:        RB_ENTRY(options_entry) entry;
1.1       nicm      654: };
                    655:
1.126     nicm      656: /* Scheduled job. */
                    657: struct job {
1.525     nicm      658:        enum {
                    659:                JOB_RUNNING,
                    660:                JOB_DEAD,
                    661:                JOB_CLOSED
                    662:        } state;
                    663:
1.126     nicm      664:        char            *cmd;
                    665:        pid_t            pid;
1.130     nicm      666:        int              status;
1.126     nicm      667:
                    668:        int              fd;
1.160     nicm      669:        struct bufferevent *event;
1.126     nicm      670:
                    671:        void            (*callbackfn)(struct job *);
                    672:        void            (*freefn)(void *);
                    673:        void            *data;
1.130     nicm      674:
1.270     nicm      675:        LIST_ENTRY(job)  lentry;
1.126     nicm      676: };
1.270     nicm      677: LIST_HEAD(joblist, job);
1.126     nicm      678:
1.1       nicm      679: /* Screen selection. */
                    680: struct screen_sel {
                    681:        int              flag;
1.204     nicm      682:        int              rectflag;
1.480     nicm      683:        enum {
                    684:                LINE_SEL_NONE,
                    685:                LINE_SEL_LEFT_RIGHT,
                    686:                LINE_SEL_RIGHT_LEFT,
                    687:        } lineflag;
                    688:
1.469     nicm      689:        int              modekeys;
1.1       nicm      690:
                    691:        u_int            sx;
                    692:        u_int            sy;
                    693:
                    694:        u_int            ex;
                    695:        u_int            ey;
                    696:
                    697:        struct grid_cell cell;
                    698: };
                    699:
                    700: /* Virtual screen. */
                    701: struct screen {
1.638     nicm      702:        char                    *title;
                    703:
                    704:        struct grid             *grid;          /* grid data */
1.1       nicm      705:
1.638     nicm      706:        u_int                    cx;            /* cursor x */
                    707:        u_int                    cy;            /* cursor y */
1.1       nicm      708:
1.638     nicm      709:        u_int                    cstyle;        /* cursor style */
                    710:        char                    *ccolour;       /* cursor colour string */
1.1       nicm      711:
1.638     nicm      712:        u_int                    rupper;        /* scroll region top */
                    713:        u_int                    rlower;        /* scroll region bottom */
1.287     nicm      714:
1.638     nicm      715:        int                      mode;
1.1       nicm      716:
1.638     nicm      717:        bitstr_t                *tabs;
1.1       nicm      718:
1.638     nicm      719:        bitstr_t                *dirty;
                    720:        u_int                    dirtysize;
1.6       nicm      721:
1.638     nicm      722:        struct screen_sel        sel;
1.1       nicm      723: };
                    724:
                    725: /* Screen write context. */
                    726: struct screen_write_ctx {
1.638     nicm      727:        struct window_pane      *wp;
                    728:        struct screen           *s;
                    729:        u_int                    dirty;
                    730:
                    731:        u_int                    cells;
                    732:        u_int                    written;
                    733:        u_int                    skipped;
1.1       nicm      734: };
                    735:
                    736: /* Screen size. */
                    737: #define screen_size_x(s) ((s)->grid->sx)
                    738: #define screen_size_y(s) ((s)->grid->sy)
                    739: #define screen_hsize(s) ((s)->grid->hsize)
                    740: #define screen_hlimit(s) ((s)->grid->hlimit)
                    741:
                    742: /*
                    743:  * Window mode. Windows can be in several modes and this is used to call the
                    744:  * right function to handle input and output.
                    745:  */
                    746: struct window_mode {
                    747:        struct screen *(*init)(struct window_pane *);
                    748:        void    (*free)(struct window_pane *);
                    749:        void    (*resize)(struct window_pane *, u_int, u_int);
1.492     nicm      750:        void    (*key)(struct window_pane *, struct client *, struct session *,
1.571     nicm      751:                    key_code, struct mouse_event *);
1.652     nicm      752:
                    753:        const char *(*key_table)(struct window_pane *);
                    754:        void    (*command)(struct window_pane *, struct client *,
                    755:                    struct session *, struct args *, struct mouse_event *);
1.1       nicm      756: };
1.635     nicm      757: #define WINDOW_MODE_TIMEOUT 180
1.1       nicm      758:
1.343     nicm      759: /* Structures for choose mode. */
                    760: struct window_choose_data {
1.375     nicm      761:        struct client           *start_client;
                    762:        struct session          *start_session;
                    763:
1.343     nicm      764:        u_int                    idx;
1.359     nicm      765:        int                      type;
1.375     nicm      766: #define TREE_OTHER 0x0
1.359     nicm      767: #define TREE_WINDOW 0x1
                    768: #define TREE_SESSION 0x2
1.375     nicm      769:
                    770:        struct session          *tree_session; /* session of items in tree */
                    771:
                    772:        struct winlink          *wl;
1.355     nicm      773:        int                      pane_id;
1.375     nicm      774:
1.511     nicm      775:        char                    *ft_template;
1.375     nicm      776:        struct format_tree      *ft;
                    777:
                    778:        char                    *command;
1.343     nicm      779: };
                    780:
1.1       nicm      781: /* Child window structure. */
                    782: struct window_pane {
1.274     nicm      783:        u_int            id;
1.458     nicm      784:        u_int            active_point;
1.274     nicm      785:
1.1       nicm      786:        struct window   *window;
1.398     nicm      787:
1.39      nicm      788:        struct layout_cell *layout_cell;
1.398     nicm      789:        struct layout_cell *saved_layout_cell;
1.1       nicm      790:
                    791:        u_int            sx;
                    792:        u_int            sy;
                    793:
                    794:        u_int            xoff;
                    795:        u_int            yoff;
                    796:
                    797:        int              flags;
1.28      nicm      798: #define PANE_REDRAW 0x1
1.325     nicm      799: #define PANE_DROP 0x2
1.393     nicm      800: #define PANE_FOCUSED 0x4
1.394     nicm      801: #define PANE_RESIZE 0x8
1.413     nicm      802: #define PANE_FOCUSPUSH 0x10
1.468     nicm      803: #define PANE_INPUTOFF 0x20
1.532     nicm      804: #define PANE_CHANGED 0x40
1.1       nicm      805:
1.463     nicm      806:        int              argc;
                    807:        char           **argv;
1.93      nicm      808:        char            *shell;
1.569     nicm      809:        const char      *cwd;
1.1       nicm      810:
                    811:        pid_t            pid;
1.159     nicm      812:        char             tty[TTY_NAME_MAX];
1.484     nicm      813:        int              status;
1.159     nicm      814:
1.1       nicm      815:        int              fd;
1.163     nicm      816:        struct bufferevent *event;
1.646     nicm      817:
                    818:        struct event     resize_timer;
1.645     nicm      819:
                    820:        u_int            wmark_size;
                    821:        u_int            wmark_hits;
1.1       nicm      822:
1.507     nicm      823:        struct input_ctx *ictx;
1.1       nicm      824:
1.491     nicm      825:        struct grid_cell colgc;
                    826:
1.131     nicm      827:        int              pipe_fd;
1.162     nicm      828:        struct bufferevent *pipe_event;
1.131     nicm      829:        size_t           pipe_off;
                    830:
1.1       nicm      831:        struct screen   *screen;
                    832:        struct screen    base;
1.627     nicm      833:
                    834:        struct screen    status_screen;
                    835:        size_t           status_size;
1.1       nicm      836:
1.25      nicm      837:        /* Saved in alternative screen mode. */
1.192     nicm      838:        u_int            saved_cx;
                    839:        u_int            saved_cy;
1.25      nicm      840:        struct grid     *saved_grid;
1.69      nicm      841:        struct grid_cell saved_cell;
1.25      nicm      842:
1.1       nicm      843:        const struct window_mode *mode;
                    844:        void            *modedata;
1.635     nicm      845:        struct event     modetimer;
                    846:        time_t           modelast;
1.652     nicm      847:        u_int            modeprefix;
1.1       nicm      848:
                    849:        TAILQ_ENTRY(window_pane) entry;
1.274     nicm      850:        RB_ENTRY(window_pane) tree_entry;
1.1       nicm      851: };
                    852: TAILQ_HEAD(window_panes, window_pane);
1.274     nicm      853: RB_HEAD(window_pane_tree, window_pane);
1.1       nicm      854:
                    855: /* Window structure. */
                    856: struct window {
1.309     nicm      857:        u_int            id;
1.540     nicm      858:
1.1       nicm      859:        char            *name;
1.540     nicm      860:        struct event     name_event;
                    861:        struct timeval   name_time;
                    862:
1.541     nicm      863:        struct event     alerts_timer;
                    864:
1.524     nicm      865:        struct timeval   activity_time;
1.1       nicm      866:
                    867:        struct window_pane *active;
1.244     nicm      868:        struct window_pane *last;
1.1       nicm      869:        struct window_panes panes;
1.39      nicm      870:
1.61      nicm      871:        int              lastlayout;
1.39      nicm      872:        struct layout_cell *layout_root;
1.398     nicm      873:        struct layout_cell *saved_layout_root;
1.503     nicm      874:        char            *old_layout;
1.1       nicm      875:
                    876:        u_int            sx;
                    877:        u_int            sy;
                    878:
                    879:        int              flags;
                    880: #define WINDOW_BELL 0x1
1.247     nicm      881: #define WINDOW_ACTIVITY 0x2
                    882: #define WINDOW_REDRAW 0x4
1.248     nicm      883: #define WINDOW_SILENCE 0x8
1.481     nicm      884: #define WINDOW_ZOOMED 0x1000
                    885: #define WINDOW_FORCEWIDTH 0x2000
                    886: #define WINDOW_FORCEHEIGHT 0x4000
1.632     nicm      887: #define WINDOW_STYLECHANGED 0x8000
1.418     nicm      888: #define WINDOW_ALERTFLAGS (WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_SILENCE)
1.1       nicm      889:
1.567     nicm      890:        struct options  *options;
1.632     nicm      891:
                    892:        struct grid_cell style;
                    893:        struct grid_cell active_style;
1.1       nicm      894:
                    895:        u_int            references;
1.496     nicm      896:
                    897:        RB_ENTRY(window) entry;
1.1       nicm      898: };
1.496     nicm      899: RB_HEAD(windows, window);
1.1       nicm      900:
                    901: /* Entry on local window list. */
                    902: struct winlink {
                    903:        int              idx;
                    904:        struct window   *window;
1.184     nicm      905:
                    906:        size_t           status_width;
                    907:        struct grid_cell status_cell;
                    908:        char            *status_text;
1.1       nicm      909:
1.511     nicm      910:        int              flags;
1.226     nicm      911: #define WINLINK_BELL 0x1
                    912: #define WINLINK_ACTIVITY 0x2
1.451     nicm      913: #define WINLINK_SILENCE 0x4
                    914: #define WINLINK_ALERTFLAGS (WINLINK_BELL|WINLINK_ACTIVITY|WINLINK_SILENCE)
1.226     nicm      915:
1.1       nicm      916:        RB_ENTRY(winlink) entry;
1.124     nicm      917:        TAILQ_ENTRY(winlink) sentry;
1.1       nicm      918: };
                    919: RB_HEAD(winlinks, winlink);
1.124     nicm      920: TAILQ_HEAD(winlink_stack, winlink);
1.1       nicm      921:
1.39      nicm      922: /* Layout direction. */
                    923: enum layout_type {
                    924:        LAYOUT_LEFTRIGHT,
                    925:        LAYOUT_TOPBOTTOM,
                    926:        LAYOUT_WINDOWPANE
                    927: };
                    928:
                    929: /* Layout cells queue. */
                    930: TAILQ_HEAD(layout_cells, layout_cell);
                    931:
                    932: /* Layout cell. */
                    933: struct layout_cell {
                    934:        enum layout_type type;
                    935:
                    936:        struct layout_cell *parent;
                    937:
                    938:        u_int            sx;
                    939:        u_int            sy;
                    940:
                    941:        u_int            xoff;
                    942:        u_int            yoff;
                    943:
                    944:        struct window_pane *wp;
                    945:        struct layout_cells cells;
                    946:
                    947:        TAILQ_ENTRY(layout_cell) entry;
                    948: };
                    949:
1.73      nicm      950: /* Environment variable. */
                    951: struct environ_entry {
                    952:        char            *name;
                    953:        char            *value;
                    954:
                    955:        RB_ENTRY(environ_entry) entry;
                    956: };
                    957:
1.1       nicm      958: /* Client session. */
1.124     nicm      959: struct session_group {
                    960:        TAILQ_HEAD(, session) sessions;
                    961:
                    962:        TAILQ_ENTRY(session_group) entry;
                    963: };
                    964: TAILQ_HEAD(session_groups, session_group);
                    965:
1.1       nicm      966: struct session {
1.402     nicm      967:        u_int            id;
1.254     nicm      968:
1.1       nicm      969:        char            *name;
1.569     nicm      970:        const char      *cwd;
1.156     nicm      971:
                    972:        struct timeval   creation_time;
1.555     nicm      973:        struct timeval   last_attached_time;
1.156     nicm      974:        struct timeval   activity_time;
1.370     nicm      975:        struct timeval   last_activity_time;
1.537     nicm      976:
                    977:        struct event     lock_timer;
1.1       nicm      978:
                    979:        u_int            sx;
                    980:        u_int            sy;
                    981:
                    982:        struct winlink  *curw;
                    983:        struct winlink_stack lastw;
                    984:        struct winlinks  windows;
                    985:
1.595     nicm      986:        struct hooks    *hooks;
1.567     nicm      987:        struct options  *options;
1.1       nicm      988:
                    989: #define SESSION_UNATTACHED 0x1 /* not attached to any clients */
1.583     nicm      990: #define SESSION_PASTING 0x2
1.1       nicm      991:        int              flags;
1.440     nicm      992:
1.511     nicm      993:        u_int            attached;
1.73      nicm      994:
1.105     nicm      995:        struct termios  *tio;
1.80      nicm      996:
1.568     nicm      997:        struct environ  *environ;
1.101     nicm      998:
                    999:        int              references;
1.124     nicm     1000:
                   1001:        TAILQ_ENTRY(session) gentry;
1.254     nicm     1002:        RB_ENTRY(session)    entry;
1.1       nicm     1003: };
1.254     nicm     1004: RB_HEAD(sessions, session);
1.1       nicm     1005:
1.443     nicm     1006: /* Mouse button masks. */
                   1007: #define MOUSE_MASK_BUTTONS 3
                   1008: #define MOUSE_MASK_SHIFT 4
                   1009: #define MOUSE_MASK_META 8
                   1010: #define MOUSE_MASK_CTRL 16
                   1011: #define MOUSE_MASK_DRAG 32
                   1012: #define MOUSE_MASK_WHEEL 64
                   1013:
1.360     nicm     1014: /* Mouse wheel states. */
                   1015: #define MOUSE_WHEEL_UP 0
1.492     nicm     1016: #define MOUSE_WHEEL_DOWN 64
1.459     nicm     1017:
1.492     nicm     1018: /* Mouse helpers. */
                   1019: #define MOUSE_BUTTONS(b) ((b) & MOUSE_MASK_BUTTONS)
                   1020: #define MOUSE_WHEEL(b) ((b) & MOUSE_MASK_WHEEL)
                   1021: #define MOUSE_DRAG(b) ((b) & MOUSE_MASK_DRAG)
                   1022: #define MOUSE_RELEASE(b) (((b) & MOUSE_MASK_BUTTONS) == 3)
1.360     nicm     1023:
1.492     nicm     1024: /* Mouse input. */
                   1025: struct mouse_event {
1.571     nicm     1026:        int             valid;
1.360     nicm     1027:
1.571     nicm     1028:        key_code        key;
                   1029:        int             statusat;
1.360     nicm     1030:
1.571     nicm     1031:        u_int           x;
                   1032:        u_int           y;
                   1033:        u_int           b;
1.360     nicm     1034:
1.571     nicm     1035:        u_int           lx;
                   1036:        u_int           ly;
                   1037:        u_int           lb;
1.360     nicm     1038:
1.571     nicm     1039:        int             s;
                   1040:        int             w;
                   1041:        int             wp;
1.384     nicm     1042:
1.571     nicm     1043:        u_int           sgr_type;
                   1044:        u_int           sgr_b;
1.360     nicm     1045: };
                   1046:
1.511     nicm     1047: /* TTY information. */
                   1048: struct tty_key {
                   1049:        char             ch;
1.571     nicm     1050:        key_code         key;
1.511     nicm     1051:
                   1052:        struct tty_key  *left;
                   1053:        struct tty_key  *right;
                   1054:
                   1055:        struct tty_key  *next;
                   1056: };
                   1057:
1.530     nicm     1058: struct tty_code;
1.511     nicm     1059: struct tty_term {
                   1060:        char            *name;
                   1061:        u_int            references;
                   1062:
                   1063:        char             acs[UCHAR_MAX + 1][2];
                   1064:
1.530     nicm     1065:        struct tty_code *codes;
1.511     nicm     1066:
                   1067: #define TERM_256COLOURS 0x1
                   1068: #define TERM_EARLYWRAP 0x2
                   1069:        int              flags;
                   1070:
                   1071:        LIST_ENTRY(tty_term) entry;
                   1072: };
                   1073: LIST_HEAD(tty_terms, tty_term);
                   1074:
1.1       nicm     1075: struct tty {
1.337     nicm     1076:        struct client   *client;
1.1       nicm     1077:        char            *path;
                   1078:
1.192     nicm     1079:        u_int            sx;
                   1080:        u_int            sy;
1.1       nicm     1081:
                   1082:        u_int            cx;
                   1083:        u_int            cy;
1.288     nicm     1084:        u_int            cstyle;
1.287     nicm     1085:        char            *ccolour;
1.1       nicm     1086:
                   1087:        int              mode;
                   1088:
                   1089:        u_int            rlower;
                   1090:        u_int            rupper;
                   1091:
                   1092:        char            *termname;
                   1093:        struct tty_term *term;
                   1094:
                   1095:        int              fd;
1.161     nicm     1096:        struct bufferevent *event;
1.1       nicm     1097:
1.192     nicm     1098:        struct termios   tio;
1.1       nicm     1099:
                   1100:        struct grid_cell cell;
                   1101:
                   1102: #define TTY_NOCURSOR 0x1
                   1103: #define TTY_FREEZE 0x2
1.382     nicm     1104: #define TTY_TIMER 0x4
1.1       nicm     1105: #define TTY_UTF8 0x8
1.76      nicm     1106: #define TTY_STARTED 0x10
1.77      nicm     1107: #define TTY_OPENED 0x20
1.414     nicm     1108: #define TTY_FOCUS 0x40
1.192     nicm     1109:        int              flags;
1.1       nicm     1110:
                   1111:        int              term_flags;
                   1112:
1.337     nicm     1113:        struct mouse_event mouse;
1.492     nicm     1114:        int              mouse_drag_flag;
                   1115:        void            (*mouse_drag_update)(struct client *,
                   1116:                            struct mouse_event *);
                   1117:        void            (*mouse_drag_release)(struct client *,
1.511     nicm     1118:                            struct mouse_event *);
1.337     nicm     1119:
1.170     nicm     1120:        struct event     key_timer;
1.173     nicm     1121:        struct tty_key  *key_tree;
1.1       nicm     1122: };
                   1123:
1.583     nicm     1124: /* TTY command context. */
1.47      nicm     1125: struct tty_ctx {
                   1126:        struct window_pane *wp;
                   1127:
                   1128:        const struct grid_cell *cell;
                   1129:
1.49      nicm     1130:        u_int            num;
1.196     nicm     1131:        void            *ptr;
1.49      nicm     1132:
1.196     nicm     1133:        /*
1.49      nicm     1134:         * Cursor and region position before the screen was updated - this is
                   1135:         * where the command should be applied; the values in the screen have
                   1136:         * already been updated.
                   1137:         */
                   1138:        u_int            ocx;
                   1139:        u_int            ocy;
                   1140:
                   1141:        u_int            orupper;
                   1142:        u_int            orlower;
1.140     nicm     1143:
1.308     nicm     1144:        u_int            xoff;
                   1145:        u_int            yoff;
                   1146:
1.140     nicm     1147:        /* Saved last cell on line. */
                   1148:        struct grid_cell last_cell;
1.47      nicm     1149: };
                   1150:
1.180     nicm     1151: /* Saved message entry. */
                   1152: struct message_entry {
1.509     nicm     1153:        char    *msg;
                   1154:        u_int    msg_num;
                   1155:        time_t   msg_time;
1.501     nicm     1156:        TAILQ_ENTRY(message_entry) entry;
1.180     nicm     1157: };
                   1158:
1.1       nicm     1159: /* Client connection. */
                   1160: struct client {
1.566     nicm     1161:        struct tmuxpeer *peer;
1.425     nicm     1162:
1.523     nicm     1163:        pid_t            pid;
1.428     nicm     1164:        int              fd;
1.159     nicm     1165:        struct event     event;
1.425     nicm     1166:        int              retval;
1.156     nicm     1167:
                   1168:        struct timeval   creation_time;
1.158     nicm     1169:        struct timeval   activity_time;
1.1       nicm     1170:
1.568     nicm     1171:        struct environ  *environ;
1.73      nicm     1172:
1.1       nicm     1173:        char            *title;
1.569     nicm     1174:        const char      *cwd;
1.1       nicm     1175:
1.428     nicm     1176:        char            *term;
                   1177:        char            *ttyname;
1.192     nicm     1178:        struct tty       tty;
1.236     nicm     1179:
1.332     nicm     1180:        void            (*stdin_callback)(struct client *, int, void *);
                   1181:        void            *stdin_callback_data;
                   1182:        struct evbuffer *stdin_data;
1.511     nicm     1183:        int              stdin_closed;
1.332     nicm     1184:        struct evbuffer *stdout_data;
                   1185:        struct evbuffer *stderr_data;
1.231     nicm     1186:
1.169     nicm     1187:        struct event     repeat_timer;
1.1       nicm     1188:
1.653     nicm     1189:        struct event     click_timer;
                   1190:        u_int            click_button;
                   1191:
1.534     nicm     1192:        struct event     status_timer;
1.1       nicm     1193:        struct screen    status;
                   1194:
                   1195: #define CLIENT_TERMINAL 0x1
1.547     nicm     1196: #define CLIENT_LOGIN 0x2
1.236     nicm     1197: #define CLIENT_EXIT 0x4
1.1       nicm     1198: #define CLIENT_REDRAW 0x8
                   1199: #define CLIENT_STATUS 0x10
1.427     nicm     1200: #define CLIENT_REPEAT 0x20
1.1       nicm     1201: #define CLIENT_SUSPENDED 0x40
1.566     nicm     1202: /* 0x80 unused */
1.92      nicm     1203: #define CLIENT_IDENTIFY 0x100
1.101     nicm     1204: #define CLIENT_DEAD 0x200
1.197     nicm     1205: #define CLIENT_BORDERS 0x400
1.205     nicm     1206: #define CLIENT_READONLY 0x800
1.307     nicm     1207: #define CLIENT_REDRAWWINDOW 0x1000
1.342     nicm     1208: #define CLIENT_CONTROL 0x2000
1.424     nicm     1209: #define CLIENT_CONTROLCONTROL 0x4000
                   1210: #define CLIENT_FOCUSED 0x8000
                   1211: #define CLIENT_UTF8 0x10000
                   1212: #define CLIENT_256COLOURS 0x20000
                   1213: #define CLIENT_IDENTIFIED 0x40000
1.558     nicm     1214: #define CLIENT_STATUSFORCE 0x80000
1.653     nicm     1215: #define CLIENT_DOUBLECLICK 0x100000
                   1216: #define CLIENT_TRIPLECLICK 0x200000
1.1       nicm     1217:        int              flags;
1.493     nicm     1218:        struct key_table *keytable;
1.1       nicm     1219:
1.166     nicm     1220:        struct event     identify_timer;
1.636     nicm     1221:        void            (*identify_callback)(struct client *, struct window_pane *);
                   1222:        void            *identify_callback_data;
1.92      nicm     1223:
1.1       nicm     1224:        char            *message_string;
1.166     nicm     1225:        struct event     message_timer;
1.501     nicm     1226:        u_int            message_next;
                   1227:        TAILQ_HEAD(, message_entry) message_log;
1.1       nicm     1228:
                   1229:        char            *prompt_string;
1.651     nicm     1230:        struct utf8_data *prompt_buffer;
1.1       nicm     1231:        size_t           prompt_index;
1.33      nicm     1232:        int              (*prompt_callbackfn)(void *, const char *);
                   1233:        void             (*prompt_freefn)(void *);
1.1       nicm     1234:        void            *prompt_data;
1.511     nicm     1235:        u_int            prompt_hindex;
1.658     nicm     1236:        enum { PROMPT_ENTRY, PROMPT_COMMAND } prompt_mode;
1.1       nicm     1237:
1.117     nicm     1238: #define PROMPT_SINGLE 0x1
1.656     nicm     1239: #define PROMPT_NUMERIC 0x2
1.1       nicm     1240:        int              prompt_flags;
                   1241:
                   1242:        struct session  *session;
1.252     nicm     1243:        struct session  *last_session;
1.101     nicm     1244:
1.316     nicm     1245:        int              wlmouse;
1.284     nicm     1246:
1.397     nicm     1247:        struct cmd_q    *cmdq;
1.101     nicm     1248:        int              references;
1.499     nicm     1249:
                   1250:        TAILQ_ENTRY(client) entry;
1.1       nicm     1251: };
1.499     nicm     1252: TAILQ_HEAD(clients, client);
1.1       nicm     1253:
1.410     nicm     1254: /* Parsed arguments structures. */
1.544     nicm     1255: struct args_entry;
1.410     nicm     1256: RB_HEAD(args_tree, args_entry);
1.264     nicm     1257: struct args {
1.410     nicm     1258:        struct args_tree          tree;
1.511     nicm     1259:        int                       argc;
                   1260:        char                    **argv;
1.264     nicm     1261: };
                   1262:
1.606     nicm     1263: /* Command find structures. */
                   1264: enum cmd_find_type {
                   1265:        CMD_FIND_PANE,
                   1266:        CMD_FIND_WINDOW,
                   1267:        CMD_FIND_SESSION,
                   1268: };
                   1269: struct cmd_find_state {
                   1270:        struct cmd_q            *cmdq;
                   1271:        int                      flags;
                   1272:        struct cmd_find_state   *current;
                   1273:
                   1274:        struct session          *s;
                   1275:        struct winlink          *wl;
                   1276:        struct window           *w;
                   1277:        struct window_pane      *wp;
1.603     nicm     1278:        int                      idx;
1.606     nicm     1279: };
                   1280:
                   1281: /* Command find flags. */
                   1282: #define CMD_FIND_PREFER_UNATTACHED 0x1
                   1283: #define CMD_FIND_QUIET 0x2
                   1284: #define CMD_FIND_WINDOW_INDEX 0x4
                   1285: #define CMD_FIND_DEFAULT_MARKED 0x8
                   1286: #define CMD_FIND_EXACT_SESSION 0x10
                   1287: #define CMD_FIND_EXACT_WINDOW 0x20
1.603     nicm     1288:
1.606     nicm     1289: /* Context for command being executed. */
1.603     nicm     1290: struct cmd_state {
                   1291:        struct client           *c;
1.606     nicm     1292:        struct cmd_find_state    tflag;
                   1293:        struct cmd_find_state    sflag;
1.603     nicm     1294: };
                   1295:
1.397     nicm     1296: /* Command and list of commands. */
1.1       nicm     1297: struct cmd {
1.264     nicm     1298:        const struct cmd_entry  *entry;
                   1299:        struct args             *args;
1.1       nicm     1300:
1.397     nicm     1301:        char                    *file;
                   1302:        u_int                    line;
1.412     nicm     1303:
                   1304: #define CMD_CONTROL 0x1
                   1305:        int                      flags;
1.397     nicm     1306:
1.264     nicm     1307:        TAILQ_ENTRY(cmd)         qentry;
1.1       nicm     1308: };
1.509     nicm     1309:
1.229     nicm     1310: struct cmd_list {
1.511     nicm     1311:        int                      references;
                   1312:        TAILQ_HEAD(, cmd)        list;
1.229     nicm     1313: };
1.1       nicm     1314:
1.397     nicm     1315: /* Command return values. */
1.348     nicm     1316: enum cmd_retval {
                   1317:        CMD_RETURN_ERROR = -1,
                   1318:        CMD_RETURN_NORMAL = 0,
1.397     nicm     1319:        CMD_RETURN_WAIT,
                   1320:        CMD_RETURN_STOP
                   1321: };
                   1322:
                   1323: /* Command queue entry. */
                   1324: struct cmd_q_item {
                   1325:        struct cmd_list         *cmdlist;
1.492     nicm     1326:
                   1327:        struct mouse_event       mouse;
                   1328:
1.397     nicm     1329:        TAILQ_ENTRY(cmd_q_item)  qentry;
                   1330: };
                   1331: TAILQ_HEAD(cmd_q_items, cmd_q_item);
                   1332:
                   1333: /* Command queue. */
                   1334: struct cmd_q {
                   1335:        int                      references;
1.561     nicm     1336:        int                      flags;
                   1337: #define CMD_Q_DEAD 0x1
1.612     nicm     1338: #define CMD_Q_REENTRY 0x2
                   1339: #define CMD_Q_NOHOOKS 0x4
1.397     nicm     1340:
                   1341:        struct client           *client;
                   1342:        int                      client_exit;
                   1343:
                   1344:        struct cmd_q_items       queue;
                   1345:        struct cmd_q_item       *item;
                   1346:        struct cmd              *cmd;
1.612     nicm     1347:        struct cmd_q            *parent;
1.397     nicm     1348:
1.613     nicm     1349:        struct cmd_find_state    current;
1.603     nicm     1350:        struct cmd_state         state;
                   1351:
1.403     nicm     1352:        time_t                   time;
                   1353:        u_int                    number;
                   1354:
1.397     nicm     1355:        void                     (*emptyfn)(struct cmd_q *);
                   1356:        void                    *data;
                   1357:
1.511     nicm     1358:        TAILQ_ENTRY(cmd_q)       waitentry;
1.348     nicm     1359: };
                   1360:
1.609     nicm     1361: /* Command -c, -t or -s flags. */
                   1362: enum cmd_entry_flag {
                   1363:        CMD_NONE,
                   1364:
                   1365:        CMD_CLIENT,
                   1366:        CMD_CLIENT_CANFAIL,
                   1367:
                   1368:        CMD_SESSION,
                   1369:        CMD_SESSION_CANFAIL,
                   1370:        CMD_SESSION_PREFERUNATTACHED,
                   1371:        CMD_SESSION_WITHPANE,
                   1372:
                   1373:        CMD_WINDOW,
                   1374:        CMD_WINDOW_CANFAIL,
                   1375:        CMD_WINDOW_MARKED,
                   1376:        CMD_WINDOW_INDEX,
                   1377:
                   1378:        CMD_PANE,
                   1379:        CMD_PANE_CANFAIL,
                   1380:        CMD_PANE_MARKED,
                   1381:
                   1382:        CMD_MOVEW_R,
                   1383: };
                   1384:
1.397     nicm     1385: /* Command definition. */
1.1       nicm     1386: struct cmd_entry {
1.608     nicm     1387:        const char              *name;
                   1388:        const char              *alias;
1.264     nicm     1389:
1.608     nicm     1390:        struct {
                   1391:                const char      *template;
                   1392:                int              lower;
                   1393:                int              upper;
                   1394:        } args;
1.609     nicm     1395:        const char              *usage;
1.264     nicm     1396:
1.609     nicm     1397:        enum cmd_entry_flag      tflag;
                   1398:        enum cmd_entry_flag      sflag;
                   1399:        enum cmd_entry_flag      cflag;
1.1       nicm     1400:
                   1401: #define CMD_STARTSERVER 0x1
1.517     nicm     1402: #define CMD_READONLY 0x2
1.609     nicm     1403:        int              flags;
1.1       nicm     1404:
1.608     nicm     1405:        enum cmd_retval          (*exec)(struct cmd *, struct cmd_q *);
1.1       nicm     1406: };
1.604     nicm     1407:
1.493     nicm     1408: /* Key binding and key table. */
1.1       nicm     1409: struct key_binding {
1.571     nicm     1410:        key_code                 key;
1.493     nicm     1411:        struct cmd_list         *cmdlist;
                   1412:        int                      can_repeat;
1.1       nicm     1413:
1.493     nicm     1414:        RB_ENTRY(key_binding)    entry;
1.1       nicm     1415: };
1.306     nicm     1416: RB_HEAD(key_bindings, key_binding);
1.509     nicm     1417:
1.493     nicm     1418: struct key_table {
                   1419:        const char               *name;
                   1420:        struct key_bindings      key_bindings;
                   1421:
                   1422:        u_int                    references;
                   1423:
                   1424:        RB_ENTRY(key_table)      entry;
                   1425: };
                   1426: RB_HEAD(key_tables, key_table);
1.1       nicm     1427:
1.262     nicm     1428: /*
                   1429:  * Option table entries. The option table is the user-visible part of the
                   1430:  * option, as opposed to the internal options (struct option) which are just
                   1431:  * number or string.
                   1432:  */
                   1433: enum options_table_type {
                   1434:        OPTIONS_TABLE_STRING,
                   1435:        OPTIONS_TABLE_NUMBER,
1.305     nicm     1436:        OPTIONS_TABLE_KEY,
1.262     nicm     1437:        OPTIONS_TABLE_COLOUR,
                   1438:        OPTIONS_TABLE_ATTRIBUTES,
                   1439:        OPTIONS_TABLE_FLAG,
1.435     nicm     1440:        OPTIONS_TABLE_CHOICE,
                   1441:        OPTIONS_TABLE_STYLE
1.262     nicm     1442: };
1.584     nicm     1443: enum options_table_scope {
1.587     nicm     1444:        OPTIONS_TABLE_NONE,
1.584     nicm     1445:        OPTIONS_TABLE_SERVER,
                   1446:        OPTIONS_TABLE_SESSION,
                   1447:        OPTIONS_TABLE_WINDOW,
                   1448: };
1.262     nicm     1449:
                   1450: struct options_table_entry {
1.584     nicm     1451:        const char               *name;
                   1452:        enum options_table_type   type;
                   1453:        enum options_table_scope  scope;
1.1       nicm     1454:
1.584     nicm     1455:        u_int                     minimum;
                   1456:        u_int                     maximum;
                   1457:        const char              **choices;
1.1       nicm     1458:
1.584     nicm     1459:        const char               *default_str;
                   1460:        long long                 default_num;
1.435     nicm     1461:
1.584     nicm     1462:        const char               *style;
1.1       nicm     1463: };
                   1464:
1.264     nicm     1465: /* Common command usages. */
                   1466: #define CMD_TARGET_PANE_USAGE "[-t target-pane]"
                   1467: #define CMD_TARGET_WINDOW_USAGE "[-t target-window]"
                   1468: #define CMD_TARGET_SESSION_USAGE "[-t target-session]"
                   1469: #define CMD_TARGET_CLIENT_USAGE "[-t target-client]"
                   1470: #define CMD_SRCDST_PANE_USAGE "[-s src-pane] [-t dst-pane]"
                   1471: #define CMD_SRCDST_WINDOW_USAGE "[-s src-window] [-t dst-window]"
                   1472: #define CMD_SRCDST_SESSION_USAGE "[-s src-session] [-t dst-session]"
                   1473: #define CMD_SRCDST_CLIENT_USAGE "[-s src-client] [-t dst-client]"
1.461     nicm     1474: #define CMD_BUFFER_USAGE "[-b buffer-name]"
1.264     nicm     1475:
1.1       nicm     1476: /* tmux.c */
1.595     nicm     1477: extern struct hooks    *global_hooks;
                   1478: extern struct options  *global_options;
                   1479: extern struct options  *global_s_options;
                   1480: extern struct options  *global_w_options;
                   1481: extern struct environ  *global_environ;
1.589     nicm     1482: extern struct timeval   start_time;
1.590     nicm     1483: extern const char      *socket_path;
1.93      nicm     1484: int             areshell(const char *);
1.265     nicm     1485: void            setblocking(int, int);
1.529     nicm     1486: const char     *find_home(void);
1.1       nicm     1487:
1.566     nicm     1488: /* proc.c */
                   1489: struct imsg;
                   1490: int    proc_send(struct tmuxpeer *, enum msgtype, int, const void *, size_t);
                   1491: int    proc_send_s(struct tmuxpeer *, enum msgtype, const char *);
                   1492: struct tmuxproc *proc_start(const char *, struct event_base *, int,
                   1493:            void (*)(int));
                   1494: void   proc_loop(struct tmuxproc *, int (*)(void));
                   1495: void   proc_exit(struct tmuxproc *);
                   1496: struct tmuxpeer *proc_add_peer(struct tmuxproc *, int,
                   1497:            void (*)(struct imsg *, void *), void *);
                   1498: void   proc_remove_peer(struct tmuxpeer *);
                   1499: void   proc_kill_peer(struct tmuxpeer *);
                   1500:
1.1       nicm     1501: /* cfg.c */
1.397     nicm     1502: extern int cfg_finished;
                   1503: extern int cfg_references;
1.431     nicm     1504: extern struct client *cfg_client;
1.550     nicm     1505: void            start_cfg(void);
1.630     tim      1506: int             load_cfg(const char *, struct cmd_q *, int);
1.551     nicm     1507: void            set_cfg_file(const char *);
1.615     nicm     1508: void printflike(1, 2) cfg_add_cause(const char *, ...);
1.479     nicm     1509: void            cfg_print_causes(struct cmd_q *);
1.397     nicm     1510: void            cfg_show_causes(struct session *);
1.294     nicm     1511:
1.542     nicm     1512: /* paste.c */
                   1513: struct paste_buffer;
                   1514: const char     *paste_buffer_name(struct paste_buffer *);
1.647     nicm     1515: u_int           paste_buffer_order(struct paste_buffer *);
                   1516: time_t          paste_buffer_created(struct paste_buffer *);
1.542     nicm     1517: const char     *paste_buffer_data(struct paste_buffer *, size_t *);
                   1518: struct paste_buffer *paste_walk(struct paste_buffer *);
                   1519: struct paste_buffer *paste_get_top(const char **);
                   1520: struct paste_buffer *paste_get_name(const char *);
1.556     nicm     1521: void            paste_free(struct paste_buffer *);
1.542     nicm     1522: void            paste_add(char *, size_t);
                   1523: int             paste_rename(const char *, const char *, char **);
                   1524: int             paste_set(char *, size_t, const char *, char **);
1.572     nicm     1525: char           *paste_make_sample(struct paste_buffer *);
1.542     nicm     1526:
1.294     nicm     1527: /* format.c */
1.558     nicm     1528: #define FORMAT_STATUS 0x1
                   1529: #define FORMAT_FORCE 0x2
1.483     nicm     1530: struct format_tree;
1.598     nicm     1531: struct format_tree *format_create(struct cmd_q *, int);
1.294     nicm     1532: void            format_free(struct format_tree *);
1.476     nicm     1533: void printflike(3, 4) format_add(struct format_tree *, const char *,
                   1534:                     const char *, ...);
1.489     nicm     1535: char           *format_expand_time(struct format_tree *, const char *, time_t);
1.294     nicm     1536: char           *format_expand(struct format_tree *, const char *);
1.488     nicm     1537: void            format_defaults(struct format_tree *, struct client *,
                   1538:                     struct session *, struct winlink *, struct window_pane *);
                   1539: void            format_defaults_window(struct format_tree *, struct window *);
                   1540: void            format_defaults_pane(struct format_tree *,
1.417     nicm     1541:                     struct window_pane *);
1.488     nicm     1542: void            format_defaults_paste_buffer(struct format_tree *,
1.572     nicm     1543:                     struct paste_buffer *);
1.1       nicm     1544:
1.595     nicm     1545: /* hooks.c */
                   1546: struct hook;
1.613     nicm     1547: struct hooks   *hooks_get(struct session *);
1.595     nicm     1548: struct hooks   *hooks_create(struct hooks *);
                   1549: void            hooks_free(struct hooks *);
                   1550: struct hook    *hooks_first(struct hooks *);
                   1551: struct hook    *hooks_next(struct hook *);
                   1552: void            hooks_add(struct hooks *, const char *, struct cmd_list *);
                   1553: void            hooks_copy(struct hooks *, struct hooks *);
1.599     nicm     1554: void            hooks_remove(struct hooks *, const char *);
1.595     nicm     1555: struct hook    *hooks_find(struct hooks *, const char *);
1.613     nicm     1556: int printflike(4, 5) hooks_run(struct hooks *, struct client *,
                   1557:                    struct cmd_find_state *, const char *, ...);
                   1558: int printflike(4, 5) hooks_wait(struct hooks *, struct cmd_q *,
                   1559:                    struct cmd_find_state *, const char *, ...);
1.595     nicm     1560:
1.1       nicm     1561: /* mode-key.c */
1.62      nicm     1562: extern struct mode_key_tree mode_key_tree_vi_choice;
                   1563: extern struct mode_key_tree mode_key_tree_emacs_choice;
                   1564: int    mode_key_cmp(struct mode_key_binding *, struct mode_key_binding *);
1.306     nicm     1565: RB_PROTOTYPE(mode_key_tree, mode_key_binding, entry, mode_key_cmp);
1.261     nicm     1566: const char *mode_key_tostring(const struct mode_key_cmdstr *,
                   1567:            enum mode_key_cmd);
                   1568: enum mode_key_cmd mode_key_fromstring(const struct mode_key_cmdstr *,
                   1569:            const char *);
1.63      nicm     1570: const struct mode_key_table *mode_key_findtable(const char *);
1.62      nicm     1571: void   mode_key_init_trees(void);
                   1572: void   mode_key_init(struct mode_key_data *, struct mode_key_tree *);
1.652     nicm     1573: enum mode_key_cmd mode_key_lookup(struct mode_key_data *, key_code);
1.323     nicm     1574:
                   1575: /* notify.c */
1.349     nicm     1576: void   notify_enable(void);
                   1577: void   notify_disable(void);
1.358     nicm     1578: void   notify_input(struct window_pane *, struct evbuffer *);
1.323     nicm     1579: void   notify_window_layout_changed(struct window *);
                   1580: void   notify_window_unlinked(struct session *, struct window *);
                   1581: void   notify_window_linked(struct session *, struct window *);
                   1582: void   notify_window_renamed(struct window *);
                   1583: void   notify_attached_session_changed(struct client *);
                   1584: void   notify_session_renamed(struct session *);
                   1585: void   notify_session_created(struct session *);
                   1586: void   notify_session_closed(struct session *);
1.1       nicm     1587:
                   1588: /* options.c */
1.567     nicm     1589: struct options *options_create(struct options *);
1.1       nicm     1590: void   options_free(struct options *);
1.567     nicm     1591: struct options_entry *options_first(struct options *);
                   1592: struct options_entry *options_next(struct options_entry *);
1.1       nicm     1593: struct options_entry *options_find1(struct options *, const char *);
                   1594: struct options_entry *options_find(struct options *, const char *);
1.44      nicm     1595: void   options_remove(struct options *, const char *);
1.476     nicm     1596: struct options_entry *printflike(3, 4) options_set_string(struct options *,
1.435     nicm     1597:            const char *, const char *, ...);
1.1       nicm     1598: char   *options_get_string(struct options *, const char *);
1.435     nicm     1599: struct options_entry *options_set_number(struct options *, const char *,
                   1600:            long long);
1.1       nicm     1601: long long options_get_number(struct options *, const char *);
1.435     nicm     1602: struct options_entry *options_set_style(struct options *, const char *,
                   1603:            const char *, int);
                   1604: struct grid_cell *options_get_style(struct options *, const char *);
1.1       nicm     1605:
1.262     nicm     1606: /* options-table.c */
1.584     nicm     1607: extern const struct options_table_entry options_table[];
                   1608: void   options_table_populate_tree(enum options_table_scope, struct options *);
1.379     nicm     1609: const char *options_table_print_entry(const struct options_table_entry *,
                   1610:            struct options_entry *, int);
1.584     nicm     1611: int    options_table_find(const char *, const struct options_table_entry **);
1.262     nicm     1612:
1.126     nicm     1613: /* job.c */
1.128     nicm     1614: extern struct joblist all_jobs;
1.569     nicm     1615: struct job *job_run(const char *, struct session *, const char *,
1.405     nicm     1616:            void (*)(struct job *), void (*)(void *), void *);
1.126     nicm     1617: void   job_free(struct job *);
1.160     nicm     1618: void   job_died(struct job *, int);
1.126     nicm     1619:
1.73      nicm     1620: /* environ.c */
1.568     nicm     1621: struct environ *environ_create(void);
1.73      nicm     1622: void   environ_free(struct environ *);
1.568     nicm     1623: struct environ_entry *environ_first(struct environ *);
                   1624: struct environ_entry *environ_next(struct environ_entry *);
1.73      nicm     1625: void   environ_copy(struct environ *, struct environ *);
                   1626: struct environ_entry *environ_find(struct environ *, const char *);
1.592     nicm     1627: void printflike(3, 4) environ_set(struct environ *, const char *, const char *,
                   1628:            ...);
                   1629: void   environ_clear(struct environ *, const char *);
1.73      nicm     1630: void   environ_put(struct environ *, const char *);
                   1631: void   environ_unset(struct environ *, const char *);
1.192     nicm     1632: void   environ_update(const char *, struct environ *, struct environ *);
1.215     nicm     1633: void   environ_push(struct environ *);
1.640     nicm     1634: void   environ_log(struct environ *, const char *);
1.73      nicm     1635:
1.1       nicm     1636: /* tty.c */
1.570     nicm     1637: void   tty_create_log(void);
1.115     nicm     1638: void   tty_raw(struct tty *, const char *);
1.491     nicm     1639: void   tty_attributes(struct tty *, const struct grid_cell *,
                   1640:            const struct window_pane *);
1.47      nicm     1641: void   tty_reset(struct tty *);
1.133     nicm     1642: void   tty_region(struct tty *, u_int, u_int);
1.134     nicm     1643: void   tty_cursor(struct tty *, u_int, u_int);
1.47      nicm     1644: void   tty_putcode(struct tty *, enum tty_code_code);
                   1645: void   tty_putcode1(struct tty *, enum tty_code_code, int);
                   1646: void   tty_putcode2(struct tty *, enum tty_code_code, int, int);
1.287     nicm     1647: void   tty_putcode_ptr1(struct tty *, enum tty_code_code, const void *);
1.373     nicm     1648: void   tty_putcode_ptr2(struct tty *, enum tty_code_code, const void *,
                   1649:            const void *);
1.47      nicm     1650: void   tty_puts(struct tty *, const char *);
                   1651: void   tty_putc(struct tty *, u_char);
1.373     nicm     1652: void   tty_putn(struct tty *, const void *, size_t, u_int);
1.528     nicm     1653: int    tty_init(struct tty *, struct client *, int, char *);
1.224     nicm     1654: int    tty_resize(struct tty *);
1.324     nicm     1655: int    tty_set_size(struct tty *, u_int, u_int);
1.47      nicm     1656: void   tty_start_tty(struct tty *);
                   1657: void   tty_stop_tty(struct tty *);
                   1658: void   tty_set_title(struct tty *, const char *);
1.287     nicm     1659: void   tty_update_mode(struct tty *, int, struct screen *);
1.491     nicm     1660: void   tty_draw_pane(struct tty *, const struct window_pane *, u_int, u_int,
                   1661:            u_int);
                   1662: void   tty_draw_line(struct tty *, const struct window_pane *, struct screen *,
                   1663:            u_int, u_int, u_int);
1.437     nicm     1664: int    tty_open(struct tty *, char **);
1.76      nicm     1665: void   tty_close(struct tty *);
                   1666: void   tty_free(struct tty *);
1.514     nicm     1667: void   tty_write(void (*)(struct tty *, const struct tty_ctx *),
                   1668:            struct tty_ctx *);
1.79      nicm     1669: void   tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);
                   1670: void   tty_cmd_cell(struct tty *, const struct tty_ctx *);
                   1671: void   tty_cmd_clearendofline(struct tty *, const struct tty_ctx *);
                   1672: void   tty_cmd_clearendofscreen(struct tty *, const struct tty_ctx *);
                   1673: void   tty_cmd_clearline(struct tty *, const struct tty_ctx *);
                   1674: void   tty_cmd_clearscreen(struct tty *, const struct tty_ctx *);
                   1675: void   tty_cmd_clearstartofline(struct tty *, const struct tty_ctx *);
                   1676: void   tty_cmd_clearstartofscreen(struct tty *, const struct tty_ctx *);
                   1677: void   tty_cmd_deletecharacter(struct tty *, const struct tty_ctx *);
1.371     nicm     1678: void   tty_cmd_clearcharacter(struct tty *, const struct tty_ctx *);
1.79      nicm     1679: void   tty_cmd_deleteline(struct tty *, const struct tty_ctx *);
1.282     nicm     1680: void   tty_cmd_erasecharacter(struct tty *, const struct tty_ctx *);
1.79      nicm     1681: void   tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);
                   1682: void   tty_cmd_insertline(struct tty *, const struct tty_ctx *);
                   1683: void   tty_cmd_linefeed(struct tty *, const struct tty_ctx *);
                   1684: void   tty_cmd_utf8character(struct tty *, const struct tty_ctx *);
                   1685: void   tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);
1.286     nicm     1686: void   tty_cmd_setselection(struct tty *, const struct tty_ctx *);
1.273     nicm     1687: void   tty_cmd_rawstring(struct tty *, const struct tty_ctx *);
1.1       nicm     1688:
                   1689: /* tty-term.c */
                   1690: extern struct tty_terms tty_terms;
1.530     nicm     1691: u_int           tty_term_ncodes(void);
1.437     nicm     1692: struct tty_term *tty_term_find(char *, int, char **);
1.192     nicm     1693: void            tty_term_free(struct tty_term *);
1.1       nicm     1694: int             tty_term_has(struct tty_term *, enum tty_code_code);
                   1695: const char     *tty_term_string(struct tty_term *, enum tty_code_code);
                   1696: const char     *tty_term_string1(struct tty_term *, enum tty_code_code, int);
1.600     nicm     1697: const char     *tty_term_string2(struct tty_term *, enum tty_code_code, int,
                   1698:                     int);
                   1699: const char     *tty_term_ptr1(struct tty_term *, enum tty_code_code,
                   1700:                     const void *);
1.367     nicm     1701: const char     *tty_term_ptr2(struct tty_term *, enum tty_code_code,
                   1702:                     const void *, const void *);
1.1       nicm     1703: int             tty_term_number(struct tty_term *, enum tty_code_code);
                   1704: int             tty_term_flag(struct tty_term *, enum tty_code_code);
1.530     nicm     1705: const char     *tty_term_describe(struct tty_term *, enum tty_code_code);
1.240     nicm     1706:
                   1707: /* tty-acs.c */
                   1708: const char     *tty_acs_get(struct tty *, u_char);
1.1       nicm     1709:
                   1710: /* tty-keys.c */
1.571     nicm     1711: void           tty_keys_build(struct tty *);
                   1712: void           tty_keys_free(struct tty *);
                   1713: key_code       tty_keys_next(struct tty *);
1.1       nicm     1714:
1.264     nicm     1715: /* arguments.c */
                   1716: struct args    *args_parse(const char *, int, char **);
                   1717: void            args_free(struct args *);
1.593     nicm     1718: char           *args_print(struct args *);
1.264     nicm     1719: int             args_has(struct args *, u_char);
                   1720: const char     *args_get(struct args *, u_char);
1.502     nicm     1721: long long       args_strtonum(struct args *, u_char, long long, long long,
                   1722:                     char **);
                   1723:
                   1724: /* cmd-find.c */
1.618     nicm     1725: int             cmd_find_current(struct cmd_find_state *, struct cmd_q *,
                   1726:                     int);
                   1727: int             cmd_find_target(struct cmd_find_state *,
                   1728:                     struct cmd_find_state *, struct cmd_q *, const char *,
                   1729:                     enum cmd_find_type, int);
1.502     nicm     1730: struct client  *cmd_find_client(struct cmd_q *, const char *, int);
1.610     nicm     1731: void            cmd_find_clear_state(struct cmd_find_state *, struct cmd_q *,
                   1732:                     int);
1.660   ! nicm     1733: int             cmd_find_empty_state(struct cmd_find_state *);
1.611     nicm     1734: int             cmd_find_valid_state(struct cmd_find_state *);
                   1735: void            cmd_find_copy_state(struct cmd_find_state *,
                   1736:                     struct cmd_find_state *);
1.610     nicm     1737: void            cmd_find_log_state(const char *, struct cmd_find_state *);
1.613     nicm     1738: int             cmd_find_from_session(struct cmd_find_state *,
                   1739:                     struct session *);
1.616     nicm     1740: int             cmd_find_from_winlink(struct cmd_find_state *,
                   1741:                     struct session *, struct winlink *);
1.613     nicm     1742: int             cmd_find_from_window(struct cmd_find_state *, struct window *);
                   1743: int             cmd_find_from_pane(struct cmd_find_state *,
                   1744:                     struct window_pane *);
1.264     nicm     1745:
1.1       nicm     1746: /* cmd.c */
1.55      nicm     1747: int             cmd_pack_argv(int, char **, char *, size_t);
                   1748: int             cmd_unpack_argv(char *, size_t, int, char ***);
1.460     nicm     1749: char          **cmd_copy_argv(int, char **);
1.55      nicm     1750: void            cmd_free_argv(int, char **);
1.463     nicm     1751: char           *cmd_stringify_argv(int, char **);
1.397     nicm     1752: struct cmd     *cmd_parse(int, char **, const char *, u_int, char **);
1.618     nicm     1753: int             cmd_prepare_state(struct cmd *, struct cmd_q *,
                   1754:                     struct cmd_q *);
1.593     nicm     1755: char           *cmd_print(struct cmd *);
1.492     nicm     1756: int             cmd_mouse_at(struct window_pane *, struct mouse_event *,
                   1757:                     u_int *, u_int *, int);
                   1758: struct winlink *cmd_mouse_window(struct mouse_event *, struct session **);
                   1759: struct window_pane *cmd_mouse_pane(struct mouse_event *, struct session **,
                   1760:                     struct winlink **);
1.380     nicm     1761: char           *cmd_template_replace(const char *, const char *, int);
1.1       nicm     1762: extern const struct cmd_entry *cmd_table[];
1.399     nicm     1763:
                   1764: /* cmd-attach-session.c */
1.603     nicm     1765: enum cmd_retval         cmd_attach_session(struct cmd_q *, int, int, const char *,
                   1766:     int);
1.1       nicm     1767:
                   1768: /* cmd-list.c */
1.397     nicm     1769: struct cmd_list        *cmd_list_parse(int, char **, const char *, u_int, char **);
1.1       nicm     1770: void            cmd_list_free(struct cmd_list *);
1.593     nicm     1771: char           *cmd_list_print(struct cmd_list *);
1.1       nicm     1772:
1.397     nicm     1773: /* cmd-queue.c */
                   1774: struct cmd_q   *cmdq_new(struct client *);
                   1775: int             cmdq_free(struct cmd_q *);
1.476     nicm     1776: void printflike(2, 3) cmdq_print(struct cmd_q *, const char *, ...);
                   1777: void printflike(2, 3) cmdq_error(struct cmd_q *, const char *, ...);
1.487     nicm     1778: void            cmdq_guard(struct cmd_q *, const char *, int);
1.492     nicm     1779: void            cmdq_run(struct cmd_q *, struct cmd_list *,
1.511     nicm     1780:                     struct mouse_event *);
1.492     nicm     1781: void            cmdq_append(struct cmd_q *, struct cmd_list *,
                   1782:                     struct mouse_event *);
1.397     nicm     1783: int             cmdq_continue(struct cmd_q *);
                   1784:
1.1       nicm     1785: /* cmd-string.c */
1.397     nicm     1786: int    cmd_string_parse(const char *, struct cmd_list **, const char *,
                   1787:            u_int, char **);
1.471     nicm     1788:
                   1789: /* cmd-wait-for.c */
                   1790: void   cmd_wait_for_flush(void);
1.1       nicm     1791:
                   1792: /* client.c */
1.591     nicm     1793: int    client_main(struct event_base *, int, char **, int, const char *);
1.1       nicm     1794:
                   1795: /* key-bindings.c */
1.493     nicm     1796: RB_PROTOTYPE(key_bindings, key_binding, entry, key_bindings_cmp);
                   1797: RB_PROTOTYPE(key_tables, key_table, entry, key_table_cmp);
                   1798: extern struct key_tables key_tables;
                   1799: int     key_table_cmp(struct key_table *, struct key_table *);
1.1       nicm     1800: int     key_bindings_cmp(struct key_binding *, struct key_binding *);
1.592     nicm     1801: struct key_table *key_bindings_get_table(const char *, int);
1.511     nicm     1802: void    key_bindings_unref_table(struct key_table *);
1.571     nicm     1803: void    key_bindings_add(const char *, key_code, int, struct cmd_list *);
                   1804: void    key_bindings_remove(const char *, key_code);
1.493     nicm     1805: void    key_bindings_remove_table(const char *);
1.1       nicm     1806: void    key_bindings_init(void);
1.492     nicm     1807: void    key_bindings_dispatch(struct key_binding *, struct client *,
                   1808:             struct mouse_event *);
1.1       nicm     1809:
                   1810: /* key-string.c */
1.571     nicm     1811: key_code        key_string_lookup_string(const char *);
                   1812: const char     *key_string_lookup_key(key_code);
1.1       nicm     1813:
1.541     nicm     1814: /* alerts.c */
                   1815: void   alerts_reset_all(void);
                   1816: void   alerts_queue(struct window *, int);
1.594     nicm     1817: void   alerts_check_session(struct session *);
1.541     nicm     1818:
1.1       nicm     1819: /* server.c */
1.566     nicm     1820: extern struct tmuxproc *server_proc;
1.1       nicm     1821: extern struct clients clients;
1.611     nicm     1822: extern struct cmd_find_state marked_pane;
1.516     nicm     1823: void    server_set_marked(struct session *, struct winlink *,
                   1824:             struct window_pane *);
                   1825: void    server_clear_marked(void);
                   1826: int     server_is_marked(struct session *, struct winlink *,
                   1827:             struct window_pane *);
                   1828: int     server_check_marked(void);
1.546     nicm     1829: int     server_start(struct event_base *, int, char *);
1.175     nicm     1830: void    server_update_socket(void);
1.328     nicm     1831: void    server_add_accept(int);
1.1       nicm     1832:
1.146     nicm     1833: /* server-client.c */
1.602     nicm     1834: void    server_client_set_key_table(struct client *, const char *);
                   1835: const char *server_client_get_key_table(struct client *);
1.652     nicm     1836: int     server_client_is_default_key_table(struct client *);
1.517     nicm     1837: int     server_client_check_nested(struct client *);
1.571     nicm     1838: void    server_client_handle_key(struct client *, key_code);
1.146     nicm     1839: void    server_client_create(int);
1.511     nicm     1840: int     server_client_open(struct client *, char **);
1.519     nicm     1841: void    server_client_unref(struct client *);
1.146     nicm     1842: void    server_client_lost(struct client *);
1.595     nicm     1843: void    server_client_detach(struct client *, enum msgtype);
1.146     nicm     1844: void    server_client_loop(void);
1.577     nicm     1845: void    server_client_push_stdout(struct client *);
                   1846: void    server_client_push_stderr(struct client *);
1.146     nicm     1847:
1.1       nicm     1848: /* server-fn.c */
1.73      nicm     1849: void    server_fill_environ(struct session *, struct environ *);
1.1       nicm     1850: void    server_redraw_client(struct client *);
                   1851: void    server_status_client(struct client *);
                   1852: void    server_redraw_session(struct session *);
1.124     nicm     1853: void    server_redraw_session_group(struct session *);
1.1       nicm     1854: void    server_status_session(struct session *);
1.124     nicm     1855: void    server_status_session_group(struct session *);
1.1       nicm     1856: void    server_redraw_window(struct window *);
1.197     nicm     1857: void    server_redraw_window_borders(struct window *);
1.1       nicm     1858: void    server_status_window(struct window *);
                   1859: void    server_lock(void);
1.118     nicm     1860: void    server_lock_session(struct session *);
                   1861: void    server_lock_client(struct client *);
1.37      nicm     1862: void    server_kill_window(struct window *);
1.124     nicm     1863: int     server_link_window(struct session *,
1.106     nicm     1864:             struct winlink *, struct session *, int, int, int, char **);
                   1865: void    server_unlink_window(struct session *, struct winlink *);
1.613     nicm     1866: void    server_destroy_pane(struct window_pane *, int);
1.103     nicm     1867: void    server_destroy_session(struct session *);
1.367     nicm     1868: void    server_check_unattached(void);
1.92      nicm     1869: void    server_set_identify(struct client *);
1.636     nicm     1870: void    server_clear_identify(struct client *, struct window_pane *);
1.332     nicm     1871: int     server_set_stdin_callback(struct client *, void (*)(struct client *,
                   1872:             int, void *), void *, char **);
1.398     nicm     1873: void    server_unzoom_window(struct window *);
1.1       nicm     1874:
                   1875: /* status.c */
1.534     nicm     1876: void    status_timer_start(struct client *);
                   1877: void    status_timer_start_all(void);
1.308     nicm     1878: int     status_at_line(struct client *);
1.492     nicm     1879: struct window *status_get_window_at(struct client *, u_int);
1.1       nicm     1880: int     status_redraw(struct client *);
1.476     nicm     1881: void printflike(2, 3) status_message_set(struct client *, const char *, ...);
1.1       nicm     1882: void    status_message_clear(struct client *);
                   1883: int     status_message_redraw(struct client *);
1.292     nicm     1884: void    status_prompt_set(struct client *, const char *, const char *,
1.192     nicm     1885:             int (*)(void *, const char *), void (*)(void *), void *, int);
1.1       nicm     1886: void    status_prompt_clear(struct client *);
                   1887: int     status_prompt_redraw(struct client *);
1.656     nicm     1888: int     status_prompt_key(struct client *, key_code);
1.292     nicm     1889: void    status_prompt_update(struct client *, const char *, const char *);
1.529     nicm     1890: void    status_prompt_load_history(void);
                   1891: void    status_prompt_save_history(void);
1.1       nicm     1892:
                   1893: /* resize.c */
                   1894: void    recalculate_sizes(void);
                   1895:
                   1896: /* input.c */
                   1897: void    input_init(struct window_pane *);
                   1898: void    input_free(struct window_pane *);
1.614     nicm     1899: void    input_reset(struct window_pane *, int);
1.507     nicm     1900: struct evbuffer *input_pending(struct window_pane *);
1.1       nicm     1901: void    input_parse(struct window_pane *);
                   1902:
                   1903: /* input-key.c */
1.571     nicm     1904: void    input_key(struct window_pane *, key_code, struct mouse_event *);
1.150     nicm     1905:
                   1906: /* xterm-keys.c */
1.571     nicm     1907: char   *xterm_keys_lookup(key_code);
                   1908: int     xterm_keys_find(const char *, size_t, size_t *, key_code *);
1.1       nicm     1909:
                   1910: /* colour.c */
1.521     nicm     1911: int     colour_find_rgb(u_char, u_char, u_char);
1.637     nicm     1912: int     colour_join_rgb(u_char, u_char, u_char);
                   1913: void    colour_split_rgb(int, u_char *, u_char *, u_char *);
1.102     nicm     1914: const char *colour_tostring(int);
1.637     nicm     1915: int     colour_fromstring(const char *s);
1.1       nicm     1916: u_char  colour_256to16(u_char);
                   1917:
                   1918: /* attributes.c */
                   1919: const char *attributes_tostring(u_char);
                   1920: int     attributes_fromstring(const char *);
                   1921:
                   1922: /* grid.c */
                   1923: extern const struct grid_cell grid_default_cell;
1.638     nicm     1924: int     grid_cells_equal(const struct grid_cell *, const struct grid_cell *);
1.1       nicm     1925: struct grid *grid_create(u_int, u_int, u_int);
                   1926: void    grid_destroy(struct grid *);
                   1927: int     grid_compare(struct grid *, struct grid *);
1.139     nicm     1928: void    grid_collect_history(struct grid *);
                   1929: void    grid_scroll_history(struct grid *);
                   1930: void    grid_scroll_history_region(struct grid *, u_int, u_int);
1.562     nicm     1931: void    grid_clear_history(struct grid *);
1.391     nicm     1932: const struct grid_line *grid_peek_line(struct grid *, u_int);
1.576     nicm     1933: void    grid_get_cell(struct grid *, u_int, u_int, struct grid_cell *);
1.1       nicm     1934: void    grid_set_cell(struct grid *, u_int, u_int, const struct grid_cell *);
                   1935: void    grid_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1936: void    grid_clear_lines(struct grid *, u_int, u_int);
                   1937: void    grid_move_lines(struct grid *, u_int, u_int, u_int);
                   1938: void    grid_move_cells(struct grid *, u_int, u_int, u_int, u_int);
1.388     nicm     1939: char   *grid_string_cells(struct grid *, u_int, u_int, u_int,
1.400     nicm     1940:             struct grid_cell **, int, int, int);
1.600     nicm     1941: void    grid_duplicate_lines(struct grid *, u_int, struct grid *, u_int,
                   1942:             u_int);
1.378     nicm     1943: u_int   grid_reflow(struct grid *, struct grid *, u_int);
1.181     nicm     1944:
1.1       nicm     1945: /* grid-view.c */
1.576     nicm     1946: void    grid_view_get_cell(struct grid *, u_int, u_int, struct grid_cell *);
                   1947: void    grid_view_set_cell(struct grid *, u_int, u_int,
                   1948:             const struct grid_cell *);
1.269     nicm     1949: void    grid_view_clear_history(struct grid *);
1.1       nicm     1950: void    grid_view_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1951: void    grid_view_scroll_region_up(struct grid *, u_int, u_int);
                   1952: void    grid_view_scroll_region_down(struct grid *, u_int, u_int);
                   1953: void    grid_view_insert_lines(struct grid *, u_int, u_int);
1.18      nicm     1954: void    grid_view_insert_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1955: void    grid_view_delete_lines(struct grid *, u_int, u_int);
1.18      nicm     1956: void    grid_view_delete_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1957: void    grid_view_insert_cells(struct grid *, u_int, u_int, u_int);
                   1958: void    grid_view_delete_cells(struct grid *, u_int, u_int, u_int);
1.9       nicm     1959: char   *grid_view_string_cells(struct grid *, u_int, u_int, u_int);
1.1       nicm     1960:
                   1961: /* screen-write.c */
1.572     nicm     1962: void    screen_write_start(struct screen_write_ctx *, struct window_pane *,
                   1963:             struct screen *);
1.1       nicm     1964: void    screen_write_stop(struct screen_write_ctx *);
1.304     nicm     1965: void    screen_write_reset(struct screen_write_ctx *);
1.572     nicm     1966: size_t printflike(1, 2) screen_write_cstrlen(const char *, ...);
                   1967: void printflike(4, 5) screen_write_cnputs(struct screen_write_ctx *,
1.625     nicm     1968:             ssize_t, const struct grid_cell *, const char *, ...);
1.572     nicm     1969: size_t printflike(1, 2) screen_write_strlen(const char *, ...);
1.476     nicm     1970: void printflike(3, 4) screen_write_puts(struct screen_write_ctx *,
1.625     nicm     1971:             const struct grid_cell *, const char *, ...);
1.572     nicm     1972: void printflike(4, 5) screen_write_nputs(struct screen_write_ctx *,
1.625     nicm     1973:             ssize_t, const struct grid_cell *, const char *, ...);
1.572     nicm     1974: void    screen_write_vnputs(struct screen_write_ctx *, ssize_t,
1.625     nicm     1975:             const struct grid_cell *, const char *, va_list);
                   1976: void    screen_write_putc(struct screen_write_ctx *, const struct grid_cell *,
1.572     nicm     1977:             u_char);
                   1978: void    screen_write_copy(struct screen_write_ctx *, struct screen *, u_int,
                   1979:             u_int, u_int, u_int);
1.136     nicm     1980: void    screen_write_backspace(struct screen_write_ctx *);
1.383     nicm     1981: void    screen_write_mode_set(struct screen_write_ctx *, int);
                   1982: void    screen_write_mode_clear(struct screen_write_ctx *, int);
1.1       nicm     1983: void    screen_write_cursorup(struct screen_write_ctx *, u_int);
                   1984: void    screen_write_cursordown(struct screen_write_ctx *, u_int);
                   1985: void    screen_write_cursorright(struct screen_write_ctx *, u_int);
                   1986: void    screen_write_cursorleft(struct screen_write_ctx *, u_int);
1.5       nicm     1987: void    screen_write_alignmenttest(struct screen_write_ctx *);
1.1       nicm     1988: void    screen_write_insertcharacter(struct screen_write_ctx *, u_int);
                   1989: void    screen_write_deletecharacter(struct screen_write_ctx *, u_int);
1.371     nicm     1990: void    screen_write_clearcharacter(struct screen_write_ctx *, u_int);
1.1       nicm     1991: void    screen_write_insertline(struct screen_write_ctx *, u_int);
                   1992: void    screen_write_deleteline(struct screen_write_ctx *, u_int);
                   1993: void    screen_write_clearline(struct screen_write_ctx *);
                   1994: void    screen_write_clearendofline(struct screen_write_ctx *);
                   1995: void    screen_write_clearstartofline(struct screen_write_ctx *);
                   1996: void    screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);
                   1997: void    screen_write_reverseindex(struct screen_write_ctx *);
                   1998: void    screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
1.72      nicm     1999: void    screen_write_linefeed(struct screen_write_ctx *, int);
1.1       nicm     2000: void    screen_write_carriagereturn(struct screen_write_ctx *);
                   2001: void    screen_write_clearendofscreen(struct screen_write_ctx *);
                   2002: void    screen_write_clearstartofscreen(struct screen_write_ctx *);
                   2003: void    screen_write_clearscreen(struct screen_write_ctx *);
1.297     nicm     2004: void    screen_write_clearhistory(struct screen_write_ctx *);
1.373     nicm     2005: void    screen_write_cell(struct screen_write_ctx *, const struct grid_cell *);
1.286     nicm     2006: void    screen_write_setselection(struct screen_write_ctx *, u_char *, u_int);
1.273     nicm     2007: void    screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int);
1.1       nicm     2008:
                   2009: /* screen-redraw.c */
1.648     nicm     2010: void    screen_redraw_update(struct client *);
1.436     nicm     2011: void    screen_redraw_screen(struct client *, int, int, int);
1.1       nicm     2012: void    screen_redraw_pane(struct client *, struct window_pane *);
                   2013:
                   2014: /* screen.c */
                   2015: void    screen_init(struct screen *, u_int, u_int, u_int);
                   2016: void    screen_reinit(struct screen *);
                   2017: void    screen_free(struct screen *);
1.6       nicm     2018: void    screen_reset_tabs(struct screen *);
1.288     nicm     2019: void    screen_set_cursor_style(struct screen *, u_int);
1.287     nicm     2020: void    screen_set_cursor_colour(struct screen *, const char *);
1.1       nicm     2021: void    screen_set_title(struct screen *, const char *);
1.374     nicm     2022: void    screen_resize(struct screen *, u_int, u_int, int);
1.204     nicm     2023: void    screen_set_selection(struct screen *,
                   2024:             u_int, u_int, u_int, u_int, u_int, struct grid_cell *);
1.1       nicm     2025: void    screen_clear_selection(struct screen *);
                   2026: int     screen_check_selection(struct screen *, u_int, u_int);
1.657     nicm     2027: void    screen_select_cell(struct screen *, struct grid_cell *,
                   2028:             const struct grid_cell *);
1.1       nicm     2029:
                   2030: /* window.c */
                   2031: extern struct windows windows;
1.274     nicm     2032: extern struct window_pane_tree all_window_panes;
1.496     nicm     2033: int             window_cmp(struct window *, struct window *);
                   2034: RB_PROTOTYPE(windows, window, entry, window_cmp);
1.1       nicm     2035: int             winlink_cmp(struct winlink *, struct winlink *);
                   2036: RB_PROTOTYPE(winlinks, winlink, entry, winlink_cmp);
1.274     nicm     2037: int             window_pane_cmp(struct window_pane *, struct window_pane *);
                   2038: RB_PROTOTYPE(window_pane_tree, window_pane, tree_entry, window_pane_cmp);
1.1       nicm     2039: struct winlink *winlink_find_by_index(struct winlinks *, int);
1.192     nicm     2040: struct winlink *winlink_find_by_window(struct winlinks *, struct window *);
1.309     nicm     2041: struct winlink *winlink_find_by_window_id(struct winlinks *, u_int);
1.1       nicm     2042: u_int           winlink_count(struct winlinks *);
1.268     nicm     2043: struct winlink *winlink_add(struct winlinks *, int);
                   2044: void            winlink_set_window(struct winlink *, struct window *);
1.1       nicm     2045: void            winlink_remove(struct winlinks *, struct winlink *);
1.186     nicm     2046: struct winlink *winlink_next(struct winlink *);
                   2047: struct winlink *winlink_previous(struct winlink *);
1.235     nicm     2048: struct winlink *winlink_next_by_number(struct winlink *, struct session *,
                   2049:                     int);
                   2050: struct winlink *winlink_previous_by_number(struct winlink *, struct session *,
                   2051:                     int);
1.1       nicm     2052: void            winlink_stack_push(struct winlink_stack *, struct winlink *);
                   2053: void            winlink_stack_remove(struct winlink_stack *, struct winlink *);
1.500     nicm     2054: struct window  *window_find_by_id_str(const char *);
1.309     nicm     2055: struct window  *window_find_by_id(u_int);
1.541     nicm     2056: void            window_update_activity(struct window *);
1.1       nicm     2057: struct window  *window_create1(u_int, u_int);
1.463     nicm     2058: struct window  *window_create(const char *, int, char **, const char *,
1.569     nicm     2059:                     const char *, const char *, struct environ *,
                   2060:                     struct termios *, u_int, u_int, u_int, char **);
1.1       nicm     2061: void            window_destroy(struct window *);
1.289     nicm     2062: struct window_pane *window_get_active_at(struct window *, u_int, u_int);
                   2063: struct window_pane *window_find_string(struct window *, const char *);
1.492     nicm     2064: int             window_has_pane(struct window *, struct window_pane *);
1.477     nicm     2065: int             window_set_active_pane(struct window *, struct window_pane *);
1.559     nicm     2066: void            window_redraw_active_switch(struct window *,
                   2067:                     struct window_pane *);
1.633     nicm     2068: struct window_pane *window_add_pane(struct window *, struct window_pane *,
                   2069:                     u_int);
1.44      nicm     2070: void            window_resize(struct window *, u_int, u_int);
1.398     nicm     2071: int             window_zoom(struct window_pane *);
                   2072: int             window_unzoom(struct window *);
1.453     nicm     2073: void            window_lost_pane(struct window *, struct window_pane *);
1.1       nicm     2074: void            window_remove_pane(struct window *, struct window_pane *);
                   2075: struct window_pane *window_pane_at_index(struct window *, u_int);
1.235     nicm     2076: struct window_pane *window_pane_next_by_number(struct window *,
1.511     nicm     2077:                        struct window_pane *, u_int);
1.235     nicm     2078: struct window_pane *window_pane_previous_by_number(struct window *,
1.511     nicm     2079:                        struct window_pane *, u_int);
1.298     nicm     2080: int             window_pane_index(struct window_pane *, u_int *);
1.1       nicm     2081: u_int           window_count_panes(struct window *);
                   2082: void            window_destroy_panes(struct window *);
1.500     nicm     2083: struct window_pane *window_pane_find_by_id_str(const char *);
1.274     nicm     2084: struct window_pane *window_pane_find_by_id(u_int);
1.463     nicm     2085: int             window_pane_spawn(struct window_pane *, int, char **,
1.569     nicm     2086:                     const char *, const char *, const char *, struct environ *,
1.455     nicm     2087:                     struct termios *, char **);
1.44      nicm     2088: void            window_pane_resize(struct window_pane *, u_int, u_int);
1.366     nicm     2089: void            window_pane_alternate_on(struct window_pane *,
                   2090:                     struct grid_cell *, int);
                   2091: void            window_pane_alternate_off(struct window_pane *,
                   2092:                     struct grid_cell *, int);
1.600     nicm     2093: int             window_pane_set_mode(struct window_pane *,
                   2094:                     const struct window_mode *);
1.1       nicm     2095: void            window_pane_reset_mode(struct window_pane *);
1.492     nicm     2096: void            window_pane_key(struct window_pane *, struct client *,
1.571     nicm     2097:                     struct session *, key_code, struct mouse_event *);
1.28      nicm     2098: int             window_pane_visible(struct window_pane *);
1.600     nicm     2099: char           *window_pane_search(struct window_pane *, const char *,
                   2100:                     u_int *);
1.256     nicm     2101: char           *window_printable_flags(struct session *, struct winlink *);
1.211     nicm     2102: struct window_pane *window_pane_find_up(struct window_pane *);
                   2103: struct window_pane *window_pane_find_down(struct window_pane *);
                   2104: struct window_pane *window_pane_find_left(struct window_pane *);
                   2105: struct window_pane *window_pane_find_right(struct window_pane *);
1.311     nicm     2106: void            window_set_name(struct window *, const char *);
1.352     nicm     2107: void            window_remove_ref(struct window *);
1.345     nicm     2108: void            winlink_clear_flags(struct winlink *);
1.526     nicm     2109: int             winlink_shuffle_up(struct session *, struct winlink *);
1.1       nicm     2110:
                   2111: /* layout.c */
1.232     nicm     2112: u_int           layout_count_cells(struct layout_cell *);
1.39      nicm     2113: struct layout_cell *layout_create_cell(struct layout_cell *);
                   2114: void            layout_free_cell(struct layout_cell *);
                   2115: void            layout_print_cell(struct layout_cell *, const char *, u_int);
1.641     nicm     2116: void            layout_destroy_cell(struct window *, struct layout_cell *,
1.600     nicm     2117:                     struct layout_cell **);
                   2118: void            layout_set_size(struct layout_cell *, u_int, u_int, u_int,
                   2119:                     u_int);
                   2120: void            layout_make_leaf(struct layout_cell *, struct window_pane *);
1.39      nicm     2121: void            layout_make_node(struct layout_cell *, enum layout_type);
                   2122: void            layout_fix_offsets(struct layout_cell *);
                   2123: void            layout_fix_panes(struct window *, u_int, u_int);
1.641     nicm     2124: void            layout_resize_adjust(struct window *, struct layout_cell *,
                   2125:                     enum layout_type, int);
1.398     nicm     2126: void            layout_init(struct window *, struct window_pane *);
1.39      nicm     2127: void            layout_free(struct window *);
                   2128: void            layout_resize(struct window *, u_int, u_int);
1.385     nicm     2129: void            layout_resize_pane(struct window_pane *, enum layout_type,
1.650     nicm     2130:                     int, int);
1.385     nicm     2131: void            layout_resize_pane_to(struct window_pane *, enum layout_type,
                   2132:                     u_int);
1.198     nicm     2133: void            layout_assign_pane(struct layout_cell *, struct window_pane *);
1.600     nicm     2134: struct layout_cell *layout_split_pane(struct window_pane *, enum layout_type,
1.643     nicm     2135:                     int, int, int);
1.39      nicm     2136: void            layout_close_pane(struct window_pane *);
                   2137:
1.232     nicm     2138: /* layout-custom.c */
1.494     nicm     2139: char           *layout_dump(struct layout_cell *);
1.232     nicm     2140: int             layout_parse(struct window *, const char *);
                   2141:
1.39      nicm     2142: /* layout-set.c */
                   2143: int             layout_set_lookup(const char *);
                   2144: u_int           layout_set_select(struct window *, u_int);
                   2145: u_int           layout_set_next(struct window *);
                   2146: u_int           layout_set_previous(struct window *);
1.1       nicm     2147:
                   2148: /* window-clock.c */
                   2149: extern const struct window_mode window_clock_mode;
1.438     nicm     2150: extern const char window_clock_table[14][5][5];
1.1       nicm     2151:
                   2152: /* window-copy.c */
                   2153: extern const struct window_mode window_copy_mode;
1.560     nicm     2154: void            window_copy_init_from_pane(struct window_pane *, int);
1.216     nicm     2155: void            window_copy_init_for_output(struct window_pane *);
1.476     nicm     2156: void printflike(2, 3) window_copy_add(struct window_pane *, const char *, ...);
1.216     nicm     2157: void            window_copy_vadd(struct window_pane *, const char *, va_list);
1.629     nicm     2158: void            window_copy_pageup(struct window_pane *, int);
1.492     nicm     2159: void            window_copy_start_drag(struct client *, struct mouse_event *);
1.564     nicm     2160: int             window_copy_scroll_position(struct window_pane *);
1.1       nicm     2161:
                   2162: /* window-choose.c */
                   2163: extern const struct window_mode window_choose_mode;
1.343     nicm     2164: void            window_choose_add(struct window_pane *,
                   2165:                         struct window_choose_data *);
1.1       nicm     2166: void            window_choose_ready(struct window_pane *,
1.376     nicm     2167:                     u_int, void (*)(struct window_choose_data *));
1.375     nicm     2168: struct window_choose_data      *window_choose_data_create (int,
                   2169:                     struct client *, struct session *);
                   2170: void   window_choose_data_run(struct window_choose_data *);
1.344     nicm     2171: struct window_choose_data      *window_choose_add_window(struct window_pane *,
1.377     nicm     2172:                        struct client *, struct session *, struct winlink *,
1.380     nicm     2173:                        const char *, const char *, u_int);
1.344     nicm     2174: struct window_choose_data      *window_choose_add_session(struct window_pane *,
1.377     nicm     2175:                        struct client *, struct session *, const char *,
1.380     nicm     2176:                        const char *, u_int);
1.369     nicm     2177: void   window_choose_expand_all(struct window_pane *);
1.408     nicm     2178: void   window_choose_set_current(struct window_pane *, u_int);
1.1       nicm     2179:
                   2180: /* names.c */
1.540     nicm     2181: void    check_window_name(struct window *);
1.417     nicm     2182: char   *default_window_name(struct window *);
                   2183: char   *parse_window_name(const char *);
1.219     nicm     2184:
                   2185: /* signal.c */
1.566     nicm     2186: void   set_signals(void(*)(int, short, void *), void *);
1.349     nicm     2187: void   clear_signals(int);
1.342     nicm     2188:
                   2189: /* control.c */
1.470     nicm     2190: void   control_callback(struct client *, int, void *);
1.476     nicm     2191: void printflike(2, 3) control_write(struct client *, const char *, ...);
1.357     nicm     2192: void   control_write_buffer(struct client *, struct evbuffer *);
1.353     nicm     2193:
                   2194: /* control-notify.c */
1.358     nicm     2195: void   control_notify_input(struct client *, struct window_pane *,
                   2196:            struct evbuffer *);
1.353     nicm     2197: void   control_notify_window_layout_changed(struct window *);
                   2198: void   control_notify_window_unlinked(struct session *, struct window *);
                   2199: void   control_notify_window_linked(struct session *, struct window *);
                   2200: void   control_notify_window_renamed(struct window *);
                   2201: void   control_notify_attached_session_changed(struct client *);
                   2202: void   control_notify_session_renamed(struct session *);
                   2203: void   control_notify_session_created(struct session *);
                   2204: void   control_notify_session_close(struct session *);
1.1       nicm     2205:
                   2206: /* session.c */
                   2207: extern struct sessions sessions;
1.124     nicm     2208: extern struct session_groups session_groups;
1.254     nicm     2209: int    session_cmp(struct session *, struct session *);
                   2210: RB_PROTOTYPE(sessions, session, entry, session_cmp);
1.251     nicm     2211: int             session_alive(struct session *);
1.1       nicm     2212: struct session *session_find(const char *);
1.500     nicm     2213: struct session *session_find_by_id_str(const char *);
1.402     nicm     2214: struct session *session_find_by_id(u_int);
1.463     nicm     2215: struct session *session_create(const char *, int, char **, const char *,
1.569     nicm     2216:                     const char *, struct environ *, struct termios *, int,
                   2217:                     u_int, u_int, char **);
1.192     nicm     2218: void            session_destroy(struct session *);
1.520     nicm     2219: void            session_unref(struct session *);
1.279     nicm     2220: int             session_check_name(const char *);
1.536     nicm     2221: void            session_update_activity(struct session *, struct timeval *);
1.239     nicm     2222: struct session *session_next_session(struct session *);
                   2223: struct session *session_previous_session(struct session *);
1.463     nicm     2224: struct winlink *session_new(struct session *, const char *, int, char **,
1.569     nicm     2225:                     const char *, const char *, int, char **);
1.463     nicm     2226: struct winlink *session_attach(struct session *, struct window *, int,
                   2227:                     char **);
1.1       nicm     2228: int             session_detach(struct session *, struct winlink *);
1.497     nicm     2229: int             session_has(struct session *, struct window *);
1.504     nicm     2230: int             session_is_linked(struct session *, struct window *);
1.1       nicm     2231: int             session_next(struct session *, int);
                   2232: int             session_previous(struct session *, int);
                   2233: int             session_select(struct session *, int);
                   2234: int             session_last(struct session *);
1.392     nicm     2235: int             session_set_current(struct session *, struct winlink *);
1.124     nicm     2236: struct session_group *session_group_find(struct session *);
                   2237: u_int           session_group_index(struct session_group *);
                   2238: void            session_group_add(struct session *, struct session *);
                   2239: void            session_group_synchronize_to(struct session *);
                   2240: void            session_group_synchronize_from(struct session *);
1.330     nicm     2241: void            session_renumber_windows(struct session *);
1.1       nicm     2242:
                   2243: /* utf8.c */
1.456     nicm     2244: void            utf8_set(struct utf8_data *, u_char);
1.576     nicm     2245: void            utf8_copy(struct utf8_data *, const struct utf8_data *);
1.579     nicm     2246: enum utf8_state         utf8_open(struct utf8_data *, u_char);
                   2247: enum utf8_state         utf8_append(struct utf8_data *, u_char);
1.622     nicm     2248: enum utf8_state         utf8_combine(const struct utf8_data *, wchar_t *);
1.621     nicm     2249: enum utf8_state         utf8_split(wchar_t, struct utf8_data *);
1.456     nicm     2250: int             utf8_strvis(char *, const char *, size_t, int);
1.573     nicm     2251: char           *utf8_sanitize(const char *);
1.651     nicm     2252: size_t          utf8_strlen(const struct utf8_data *);
                   2253: u_int           utf8_strwidth(const struct utf8_data *, ssize_t);
1.456     nicm     2254: struct utf8_data *utf8_fromcstr(const char *);
                   2255: char           *utf8_tocstr(struct utf8_data *);
                   2256: u_int           utf8_cstrwidth(const char *);
1.620     nicm     2257: char           *utf8_rtrimcstr(const char *, u_int);
1.456     nicm     2258: char           *utf8_trimcstr(const char *, u_int);
1.575     nicm     2259: char           *utf8_padcstr(const char *, u_int);
1.1       nicm     2260:
                   2261: /* procname.c */
                   2262: char   *get_proc_name(int, char *);
                   2263:
                   2264: /* log.c */
1.588     nicm     2265: void   log_add_level(void);
                   2266: int    log_get_level(void);
                   2267: void   log_open(const char *);
                   2268: void   log_close(void);
1.476     nicm     2269: void printflike(1, 2) log_debug(const char *, ...);
1.581     nicm     2270: __dead void printflike(1, 2) fatal(const char *, ...);
                   2271: __dead void printflike(1, 2) fatalx(const char *, ...);
1.435     nicm     2272:
                   2273: /* style.c */
                   2274: int             style_parse(const struct grid_cell *,
                   2275:                     struct grid_cell *, const char *);
                   2276: const char     *style_tostring(struct grid_cell *);
                   2277: void            style_update_new(struct options *, const char *, const char *);
                   2278: void            style_update_old(struct options *, const char *,
                   2279:                     struct grid_cell *);
1.450     nicm     2280: void            style_apply(struct grid_cell *, struct options *,
                   2281:                     const char *);
                   2282: void            style_apply_update(struct grid_cell *, struct options *,
                   2283:                     const char *);
1.559     nicm     2284: int             style_equal(const struct grid_cell *,
                   2285:                     const struct grid_cell *);
1.1       nicm     2286:
                   2287: #endif /* TMUX_H */