[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.348

1.348   ! nicm        1: /* $OpenBSD: tmux.h,v 1.347 2012/07/10 11:53:01 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
                      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.332     nicm       22: #define PROTOCOL_VERSION 7
1.1       nicm       23:
                     24: #include <sys/param.h>
                     25: #include <sys/time.h>
                     26: #include <sys/queue.h>
                     27: #include <sys/tree.h>
1.75      nicm       28: #include <sys/uio.h>
1.1       nicm       29:
1.6       nicm       30: #include <bitstring.h>
1.159     nicm       31: #include <event.h>
1.1       nicm       32: #include <getopt.h>
1.222     nicm       33: #include <imsg.h>
1.1       nicm       34: #include <limits.h>
                     35: #include <signal.h>
                     36: #include <stdarg.h>
                     37: #include <stdint.h>
                     38: #include <stdio.h>
                     39: #include <termios.h>
                     40:
                     41: #include "array.h"
                     42:
1.42      nicm       43: extern char    *__progname;
1.73      nicm       44: extern char   **environ;
1.1       nicm       45:
1.22      nicm       46: /* Default configuration files. */
1.1       nicm       47: #define DEFAULT_CFG ".tmux.conf"
1.22      nicm       48: #define SYSTEM_CFG "/etc/tmux.conf"
1.1       nicm       49:
                     50: /* Default prompt history length. */
                     51: #define PROMPT_HISTORY 100
                     52:
1.195     nicm       53: /*
1.39      nicm       54:  * Minimum layout cell size, NOT including separator line. The scroll region
                     55:  * cannot be one line in height so this must be at least two.
                     56:  */
                     57: #define PANE_MINIMUM 2
1.1       nicm       58:
                     59: /* Automatic name refresh interval, in milliseconds. */
                     60: #define NAME_INTERVAL 500
1.152     nicm       61:
1.55      nicm       62: /*
                     63:  * Maximum sizes of strings in message data. Don't forget to bump
                     64:  * PROTOCOL_VERSION if any of these change!
                     65:  */
                     66: #define COMMAND_LENGTH 2048    /* packed argv size */
                     67: #define TERMINAL_LENGTH 128    /* length of TERM environment variable */
1.73      nicm       68: #define ENVIRON_LENGTH 1024    /* environment variable length */
1.55      nicm       69:
1.181     nicm       70: /*
                     71:  * UTF-8 data size. This must be big enough to hold combined characters as well
                     72:  * as single.
                     73:  */
                     74: #define UTF8_SIZE 9
                     75:
1.1       nicm       76: /* Fatal errors. */
                     77: #define fatal(msg) log_fatal("%s: %s", __func__, msg);
                     78: #define fatalx(msg) log_fatalx("%s: %s", __func__, msg);
                     79:
                     80: /* Definition to shut gcc up about unused arguments. */
                     81: #define unused __attribute__ ((unused))
                     82:
                     83: /* Attribute to make gcc check printf-like arguments. */
                     84: #define printflike1 __attribute__ ((format (printf, 1, 2)))
                     85: #define printflike2 __attribute__ ((format (printf, 2, 3)))
                     86: #define printflike3 __attribute__ ((format (printf, 3, 4)))
                     87: #define printflike4 __attribute__ ((format (printf, 4, 5)))
1.4       nicm       88: #define printflike5 __attribute__ ((format (printf, 5, 6)))
1.1       nicm       89:
                     90: /* Number of items in array. */
1.14      nicm       91: #ifndef nitems
1.1       nicm       92: #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
1.14      nicm       93: #endif
1.1       nicm       94:
1.335     nicm       95: /* Default format templates. */
                     96: #define DEFAULT_BUFFER_LIST_TEMPLATE                           \
                     97:        "#{line}: #{buffer_size} bytes: \"#{buffer_sample}\""
                     98: #define DEFAULT_CLIENT_TEMPLATE                                        \
                     99:        "#{client_tty}: #{session_name} "                       \
1.340     nicm      100:        "[#{client_width}x#{client_height} #{client_termname}]" \
                    101:        "#{?client_utf8, (utf8),} #{?client_readonly, (ro),}"
1.335     nicm      102: #define DEFAULT_DISPLAY_MESSAGE_TEMPLATE                       \
                    103:        "[#{session_name}] #{window_index}:"                    \
                    104:        "#{window_name}, current pane #{pane_index} "           \
                    105:        "- (%H:%M %d-%b-%y)"
                    106: #define DEFAULT_FIND_WINDOW_TEMPLATE                           \
                    107:        "#{window_index}: #{window_name} "                      \
                    108:        "[#{window_width}x#{window_height}] "                   \
                    109:        "(#{window_panes} panes) #{window_find_matches}"
                    110: #define DEFAULT_SESSION_TEMPLATE \
                    111:        "#{session_name}: #{session_windows} windows "          \
                    112:        "(created #{session_created_string}) "                  \
                    113:        "[#{session_width}x#{session_height}]"                  \
                    114:        "#{?session_grouped, (group ,}"                         \
                    115:        "#{session_group}#{?session_grouped,),}"                \
                    116:        "#{?session_attached, (attached),}"
                    117: #define DEFAULT_WINDOW_TEMPLATE                                        \
                    118:        "#{window_index}: #{window_name}#{window_flags} "       \
                    119:        "(#{window_panes} panes) "                              \
1.341     nicm      120:        "[#{window_width}x#{window_height}]"
1.335     nicm      121: #define DEFAULT_PANE_INFO_TEMPLATE                             \
                    122:        "#{session_name}:#{window_index}.#{pane_index}"
                    123:
1.1       nicm      124: /* Bell option values. */
                    125: #define BELL_NONE 0
                    126: #define BELL_ANY 1
                    127: #define BELL_CURRENT 2
                    128:
1.174     nicm      129: /* Special key codes. */
1.54      nicm      130: #define KEYC_NONE 0xfff
1.174     nicm      131: #define KEYC_BASE 0x1000
                    132:
                    133: /* Key modifier bits. */
1.54      nicm      134: #define KEYC_ESCAPE 0x2000
                    135: #define KEYC_CTRL 0x4000
                    136: #define KEYC_SHIFT 0x8000
                    137: #define KEYC_PREFIX 0x10000
1.225     nicm      138:
1.275     nicm      139: /* Mask to obtain key w/o modifiers. */
1.225     nicm      140: #define KEYC_MASK_MOD (KEYC_ESCAPE|KEYC_CTRL|KEYC_SHIFT|KEYC_PREFIX)
                    141: #define KEYC_MASK_KEY (~KEYC_MASK_MOD)
1.41      nicm      142:
1.174     nicm      143: /* Other key codes. */
1.41      nicm      144: enum key_code {
                    145:        /* Mouse key. */
1.174     nicm      146:        KEYC_MOUSE = KEYC_BASE,
1.56      nicm      147:
                    148:        /* Backspace key. */
                    149:        KEYC_BSPACE,
1.41      nicm      150:
                    151:        /* Function keys. */
                    152:        KEYC_F1,
                    153:        KEYC_F2,
                    154:        KEYC_F3,
                    155:        KEYC_F4,
                    156:        KEYC_F5,
                    157:        KEYC_F6,
                    158:        KEYC_F7,
                    159:        KEYC_F8,
                    160:        KEYC_F9,
                    161:        KEYC_F10,
                    162:        KEYC_F11,
                    163:        KEYC_F12,
                    164:        KEYC_F13,
                    165:        KEYC_F14,
                    166:        KEYC_F15,
                    167:        KEYC_F16,
                    168:        KEYC_F17,
                    169:        KEYC_F18,
                    170:        KEYC_F19,
                    171:        KEYC_F20,
                    172:        KEYC_IC,
                    173:        KEYC_DC,
                    174:        KEYC_HOME,
                    175:        KEYC_END,
                    176:        KEYC_NPAGE,
                    177:        KEYC_PPAGE,
                    178:        KEYC_BTAB,
                    179:
                    180:        /* Arrow keys. */
                    181:        KEYC_UP,
                    182:        KEYC_DOWN,
                    183:        KEYC_LEFT,
                    184:        KEYC_RIGHT,
                    185:
1.148     nicm      186:        /* Numeric keypad. */
                    187:        KEYC_KP_SLASH,
                    188:        KEYC_KP_STAR,
                    189:        KEYC_KP_MINUS,
                    190:        KEYC_KP_SEVEN,
                    191:        KEYC_KP_EIGHT,
                    192:        KEYC_KP_NINE,
                    193:        KEYC_KP_PLUS,
                    194:        KEYC_KP_FOUR,
                    195:        KEYC_KP_FIVE,
                    196:        KEYC_KP_SIX,
                    197:        KEYC_KP_ONE,
                    198:        KEYC_KP_TWO,
                    199:        KEYC_KP_THREE,
                    200:        KEYC_KP_ENTER,
                    201:        KEYC_KP_ZERO,
                    202:        KEYC_KP_PERIOD,
1.41      nicm      203: };
1.1       nicm      204:
                    205: /* Termcap codes. */
                    206: enum tty_code_code {
                    207:        TTYC_AX = 0,
                    208:        TTYC_ACSC,      /* acs_chars, ac */
                    209:        TTYC_BEL,       /* bell, bl */
                    210:        TTYC_BLINK,     /* enter_blink_mode, mb */
                    211:        TTYC_BOLD,      /* enter_bold_mode, md */
1.287     nicm      212:        TTYC_CC,        /* set colour cursor, Cc */
1.1       nicm      213:        TTYC_CIVIS,     /* cursor_invisible, vi */
                    214:        TTYC_CLEAR,     /* clear_screen, cl */
                    215:        TTYC_CNORM,     /* cursor_normal, ve */
                    216:        TTYC_COLORS,    /* max_colors, Co */
1.287     nicm      217:        TTYC_CR,        /* restore cursor colour, Cr */
1.288     nicm      218:        TTYC_CS1,       /* set cursor style, Cs */
1.1       nicm      219:        TTYC_CSR,       /* change_scroll_region, cs */
1.288     nicm      220:        TTYC_CSR1,      /* reset cursor style, Csr */
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.1       nicm      230:        TTYC_DCH,       /* parm_dch, DC */
                    231:        TTYC_DCH1,      /* delete_character, dc */
                    232:        TTYC_DIM,       /* enter_dim_mode, mh */
                    233:        TTYC_DL,        /* parm_delete_line, DL */
                    234:        TTYC_DL1,       /* delete_line, dl */
1.297     nicm      235:        TTYC_E3,
1.1       nicm      236:        TTYC_EL,        /* clr_eol, ce */
                    237:        TTYC_EL1,       /* clr_bol, cb */
                    238:        TTYC_ENACS,     /* ena_acs, eA */
1.283     nicm      239:        TTYC_FSL,       /* from_status_line, fsl */
1.135     nicm      240:        TTYC_HOME,      /* cursor_home, ho */
                    241:        TTYC_HPA,       /* column_address, ch */
1.1       nicm      242:        TTYC_ICH,       /* parm_ich, IC */
                    243:        TTYC_ICH1,      /* insert_character, ic */
                    244:        TTYC_IL,        /* parm_insert_line, IL */
                    245:        TTYC_IL1,       /* insert_line, il */
                    246:        TTYC_INVIS,     /* enter_secure_mode, mk */
                    247:        TTYC_IS1,       /* init_1string, i1 */
                    248:        TTYC_IS2,       /* init_2string, i2 */
                    249:        TTYC_IS3,       /* init_3string, i3 */
                    250:        TTYC_KCBT,      /* key_btab, kB */
                    251:        TTYC_KCUB1,     /* key_left, kl */
                    252:        TTYC_KCUD1,     /* key_down, kd */
                    253:        TTYC_KCUF1,     /* key_right, kr */
                    254:        TTYC_KCUU1,     /* key_up, ku */
1.149     nicm      255:        TTYC_KDC2,
                    256:        TTYC_KDC3,
                    257:        TTYC_KDC4,
                    258:        TTYC_KDC5,
                    259:        TTYC_KDC6,
                    260:        TTYC_KDC7,
1.1       nicm      261:        TTYC_KDCH1,     /* key_dc, kD */
1.149     nicm      262:        TTYC_KDN2,
                    263:        TTYC_KDN3,
                    264:        TTYC_KDN4,
                    265:        TTYC_KDN5,
                    266:        TTYC_KDN6,
                    267:        TTYC_KDN7,
1.1       nicm      268:        TTYC_KEND,      /* key_end, ke */
1.149     nicm      269:        TTYC_KEND2,
                    270:        TTYC_KEND3,
                    271:        TTYC_KEND4,
                    272:        TTYC_KEND5,
                    273:        TTYC_KEND6,
                    274:        TTYC_KEND7,
1.1       nicm      275:        TTYC_KF1,       /* key_f1, k1 */
                    276:        TTYC_KF10,      /* key_f10, k; */
                    277:        TTYC_KF11,      /* key_f11, F1 */
                    278:        TTYC_KF12,      /* key_f12, F2 */
                    279:        TTYC_KF13,      /* key_f13, F3 */
                    280:        TTYC_KF14,      /* key_f14, F4 */
                    281:        TTYC_KF15,      /* key_f15, F5 */
                    282:        TTYC_KF16,      /* key_f16, F6 */
                    283:        TTYC_KF17,      /* key_f17, F7 */
                    284:        TTYC_KF18,      /* key_f18, F8 */
                    285:        TTYC_KF19,      /* key_f19, F9 */
1.135     nicm      286:        TTYC_KF2,       /* key_f2, k2 */
1.1       nicm      287:        TTYC_KF20,      /* key_f20, F10 */
                    288:        TTYC_KF3,       /* key_f3, k3 */
                    289:        TTYC_KF4,       /* key_f4, k4 */
                    290:        TTYC_KF5,       /* key_f5, k5 */
                    291:        TTYC_KF6,       /* key_f6, k6 */
                    292:        TTYC_KF7,       /* key_f7, k7 */
                    293:        TTYC_KF8,       /* key_f8, k8 */
                    294:        TTYC_KF9,       /* key_f9, k9 */
1.149     nicm      295:        TTYC_KHOM2,
                    296:        TTYC_KHOM3,
                    297:        TTYC_KHOM4,
                    298:        TTYC_KHOM5,
                    299:        TTYC_KHOM6,
                    300:        TTYC_KHOM7,
1.1       nicm      301:        TTYC_KHOME,     /* key_home, kh */
1.149     nicm      302:        TTYC_KIC2,
                    303:        TTYC_KIC3,
                    304:        TTYC_KIC4,
                    305:        TTYC_KIC5,
                    306:        TTYC_KIC6,
                    307:        TTYC_KIC7,
1.1       nicm      308:        TTYC_KICH1,     /* key_ic, kI */
1.149     nicm      309:        TTYC_KLFT2,
                    310:        TTYC_KLFT3,
                    311:        TTYC_KLFT4,
                    312:        TTYC_KLFT5,
                    313:        TTYC_KLFT6,
                    314:        TTYC_KLFT7,
1.1       nicm      315:        TTYC_KMOUS,     /* key_mouse, Km */
                    316:        TTYC_KNP,       /* key_npage, kN */
1.149     nicm      317:        TTYC_KNXT2,
                    318:        TTYC_KNXT3,
                    319:        TTYC_KNXT4,
                    320:        TTYC_KNXT5,
                    321:        TTYC_KNXT6,
                    322:        TTYC_KNXT7,
1.1       nicm      323:        TTYC_KPP,       /* key_ppage, kP */
1.149     nicm      324:        TTYC_KPRV2,
                    325:        TTYC_KPRV3,
                    326:        TTYC_KPRV4,
                    327:        TTYC_KPRV5,
                    328:        TTYC_KPRV6,
                    329:        TTYC_KPRV7,
                    330:        TTYC_KRIT2,
                    331:        TTYC_KRIT3,
                    332:        TTYC_KRIT4,
                    333:        TTYC_KRIT5,
                    334:        TTYC_KRIT6,
                    335:        TTYC_KRIT7,
                    336:        TTYC_KUP2,
                    337:        TTYC_KUP3,
                    338:        TTYC_KUP4,
                    339:        TTYC_KUP5,
                    340:        TTYC_KUP6,
                    341:        TTYC_KUP7,
1.286     nicm      342:        TTYC_MS,        /* modify xterm(1) selection */
1.1       nicm      343:        TTYC_OP,        /* orig_pair, op */
                    344:        TTYC_REV,       /* enter_reverse_mode, mr */
                    345:        TTYC_RI,        /* scroll_reverse, sr */
                    346:        TTYC_RMACS,     /* exit_alt_charset_mode */
                    347:        TTYC_RMCUP,     /* exit_ca_mode, te */
                    348:        TTYC_RMKX,      /* keypad_local, ke */
                    349:        TTYC_SETAB,     /* set_a_background, AB */
                    350:        TTYC_SETAF,     /* set_a_foreground, AF */
                    351:        TTYC_SGR0,      /* exit_attribute_mode, me */
1.283     nicm      352:        TTYC_SITM,      /* enter_italics_mode, it */
1.1       nicm      353:        TTYC_SMACS,     /* enter_alt_charset_mode, as */
                    354:        TTYC_SMCUP,     /* enter_ca_mode, ti */
                    355:        TTYC_SMKX,      /* keypad_xmit, ks */
                    356:        TTYC_SMSO,      /* enter_standout_mode, so */
                    357:        TTYC_SMUL,      /* enter_underline_mode, us */
1.283     nicm      358:        TTYC_TSL,       /* to_status_line, tsl */
1.135     nicm      359:        TTYC_VPA,       /* row_address, cv */
1.1       nicm      360:        TTYC_XENL,      /* eat_newline_glitch, xn */
1.283     nicm      361:        TTYC_XT,        /* xterm(1)-compatible title, XT */
1.1       nicm      362: };
1.283     nicm      363: #define NTTYCODE (TTYC_XT + 1)
1.1       nicm      364:
                    365: /* Termcap types. */
                    366: enum tty_code_type {
                    367:        TTYCODE_NONE = 0,
                    368:        TTYCODE_STRING,
                    369:        TTYCODE_NUMBER,
                    370:        TTYCODE_FLAG,
                    371: };
                    372:
                    373: /* Termcap code. */
                    374: struct tty_code {
                    375:        enum tty_code_type      type;
                    376:        union {
1.192     nicm      377:                char           *string;
                    378:                int             number;
                    379:                int             flag;
1.1       nicm      380:        } value;
                    381: };
                    382:
                    383: /* Entry in terminal code table. */
                    384: struct tty_term_code_entry {
                    385:        enum tty_code_code      code;
                    386:        enum tty_code_type      type;
                    387:        const char             *name;
                    388: };
                    389:
                    390: /* Message codes. */
1.64      nicm      391: enum msgtype {
1.1       nicm      392:        MSG_COMMAND,
                    393:        MSG_DETACH,
                    394:        MSG_ERROR,
                    395:        MSG_EXIT,
                    396:        MSG_EXITED,
                    397:        MSG_EXITING,
                    398:        MSG_IDENTIFY,
1.332     nicm      399:        MSG_STDIN,
1.1       nicm      400:        MSG_READY,
                    401:        MSG_RESIZE,
                    402:        MSG_SHUTDOWN,
                    403:        MSG_SUSPEND,
1.75      nicm      404:        MSG_VERSION,
1.1       nicm      405:        MSG_WAKEUP,
1.115     nicm      406:        MSG_ENVIRON,
                    407:        MSG_UNLOCK,
1.116     nicm      408:        MSG_LOCK,
1.231     nicm      409:        MSG_SHELL,
                    410:        MSG_STDERR,
                    411:        MSG_STDOUT,
1.272     nicm      412:        MSG_DETACHKILL
1.1       nicm      413: };
                    414:
1.55      nicm      415: /*
1.75      nicm      416:  * Message data.
1.55      nicm      417:  *
                    418:  * Don't forget to bump PROTOCOL_VERSION if any of these change!
                    419:  */
1.1       nicm      420: struct msg_command_data {
1.267     nicm      421:        pid_t           pid;    /* PID from $TMUX or -1 */
                    422:        int             idx;    /* index from $TMUX or -1 */
1.1       nicm      423:
1.55      nicm      424:        int             argc;
                    425:        char            argv[COMMAND_LENGTH];
1.1       nicm      426: };
                    427:
                    428: struct msg_identify_data {
                    429:        char            cwd[MAXPATHLEN];
                    430:
1.55      nicm      431:        char            term[TERMINAL_LENGTH];
                    432:
1.1       nicm      433: #define IDENTIFY_UTF8 0x1
                    434: #define IDENTIFY_256COLOURS 0x2
                    435: #define IDENTIFY_88COLOURS 0x4
1.342     nicm      436: #define IDENTIFY_CONTROL 0x8
                    437: #define IDENTIFY_TERMIOS 0x10
1.1       nicm      438:        int             flags;
                    439: };
                    440:
1.115     nicm      441: struct msg_lock_data {
1.192     nicm      442:        char            cmd[COMMAND_LENGTH];
1.55      nicm      443: };
                    444:
1.73      nicm      445: struct msg_environ_data {
1.192     nicm      446:        char            var[ENVIRON_LENGTH];
1.116     nicm      447: };
                    448:
                    449: struct msg_shell_data {
1.192     nicm      450:        char            shell[MAXPATHLEN];
1.73      nicm      451: };
                    452:
1.234     nicm      453: struct msg_exit_data {
                    454:        int             retcode;
                    455: };
                    456:
1.332     nicm      457: struct msg_stdin_data {
                    458:        ssize_t size;
                    459:        char    data[BUFSIZ];
                    460: };
                    461:
                    462: struct msg_stdout_data {
                    463:        ssize_t size;
                    464:        char    data[BUFSIZ];
                    465: };
                    466:
                    467: struct msg_stderr_data {
                    468:        ssize_t size;
                    469:        char    data[BUFSIZ];
                    470: };
                    471:
1.62      nicm      472: /* Mode key commands. */
1.1       nicm      473: enum mode_key_cmd {
1.59      nicm      474:        MODEKEY_NONE,
                    475:        MODEKEY_OTHER,
                    476:
                    477:        /* Editing keys. */
                    478:        MODEKEYEDIT_BACKSPACE,
                    479:        MODEKEYEDIT_CANCEL,
                    480:        MODEKEYEDIT_COMPLETE,
                    481:        MODEKEYEDIT_CURSORLEFT,
                    482:        MODEKEYEDIT_CURSORRIGHT,
                    483:        MODEKEYEDIT_DELETE,
1.84      nicm      484:        MODEKEYEDIT_DELETELINE,
1.59      nicm      485:        MODEKEYEDIT_DELETETOENDOFLINE,
1.299     nicm      486:        MODEKEYEDIT_DELETEWORD,
1.59      nicm      487:        MODEKEYEDIT_ENDOFLINE,
                    488:        MODEKEYEDIT_ENTER,
                    489:        MODEKEYEDIT_HISTORYDOWN,
                    490:        MODEKEYEDIT_HISTORYUP,
1.302     nicm      491:        MODEKEYEDIT_NEXTSPACE,
                    492:        MODEKEYEDIT_NEXTSPACEEND,
1.299     nicm      493:        MODEKEYEDIT_NEXTWORD,
                    494:        MODEKEYEDIT_NEXTWORDEND,
1.59      nicm      495:        MODEKEYEDIT_PASTE,
1.302     nicm      496:        MODEKEYEDIT_PREVIOUSSPACE,
1.299     nicm      497:        MODEKEYEDIT_PREVIOUSWORD,
1.59      nicm      498:        MODEKEYEDIT_STARTOFLINE,
                    499:        MODEKEYEDIT_SWITCHMODE,
                    500:        MODEKEYEDIT_SWITCHMODEAPPEND,
1.318     nicm      501:        MODEKEYEDIT_SWITCHMODEAPPENDLINE,
                    502:        MODEKEYEDIT_SWITCHMODEBEGINLINE,
1.94      nicm      503:        MODEKEYEDIT_TRANSPOSECHARS,
1.192     nicm      504:
1.59      nicm      505:        /* Menu (choice) keys. */
                    506:        MODEKEYCHOICE_CANCEL,
                    507:        MODEKEYCHOICE_CHOOSE,
                    508:        MODEKEYCHOICE_DOWN,
                    509:        MODEKEYCHOICE_PAGEDOWN,
                    510:        MODEKEYCHOICE_PAGEUP,
1.201     nicm      511:        MODEKEYCHOICE_SCROLLDOWN,
                    512:        MODEKEYCHOICE_SCROLLUP,
1.59      nicm      513:        MODEKEYCHOICE_UP,
                    514:
                    515:        /* Copy keys. */
1.82      nicm      516:        MODEKEYCOPY_BACKTOINDENTATION,
1.138     nicm      517:        MODEKEYCOPY_BOTTOMLINE,
1.59      nicm      518:        MODEKEYCOPY_CANCEL,
                    519:        MODEKEYCOPY_CLEARSELECTION,
1.285     nicm      520:        MODEKEYCOPY_COPYLINE,
                    521:        MODEKEYCOPY_COPYENDOFLINE,
1.59      nicm      522:        MODEKEYCOPY_COPYSELECTION,
                    523:        MODEKEYCOPY_DOWN,
                    524:        MODEKEYCOPY_ENDOFLINE,
1.83      nicm      525:        MODEKEYCOPY_GOTOLINE,
1.82      nicm      526:        MODEKEYCOPY_HALFPAGEDOWN,
                    527:        MODEKEYCOPY_HALFPAGEUP,
1.199     nicm      528:        MODEKEYCOPY_HISTORYBOTTOM,
                    529:        MODEKEYCOPY_HISTORYTOP,
1.212     nicm      530:        MODEKEYCOPY_JUMP,
                    531:        MODEKEYCOPY_JUMPAGAIN,
                    532:        MODEKEYCOPY_JUMPREVERSE,
                    533:        MODEKEYCOPY_JUMPBACK,
1.300     nicm      534:        MODEKEYCOPY_JUMPTO,
                    535:        MODEKEYCOPY_JUMPTOBACK,
1.59      nicm      536:        MODEKEYCOPY_LEFT,
1.138     nicm      537:        MODEKEYCOPY_MIDDLELINE,
1.59      nicm      538:        MODEKEYCOPY_NEXTPAGE,
1.202     nicm      539:        MODEKEYCOPY_NEXTSPACE,
                    540:        MODEKEYCOPY_NEXTSPACEEND,
1.59      nicm      541:        MODEKEYCOPY_NEXTWORD,
1.200     nicm      542:        MODEKEYCOPY_NEXTWORDEND,
1.59      nicm      543:        MODEKEYCOPY_PREVIOUSPAGE,
1.202     nicm      544:        MODEKEYCOPY_PREVIOUSSPACE,
1.59      nicm      545:        MODEKEYCOPY_PREVIOUSWORD,
1.204     nicm      546:        MODEKEYCOPY_RECTANGLETOGGLE,
1.59      nicm      547:        MODEKEYCOPY_RIGHT,
1.120     nicm      548:        MODEKEYCOPY_SCROLLDOWN,
                    549:        MODEKEYCOPY_SCROLLUP,
1.83      nicm      550:        MODEKEYCOPY_SEARCHAGAIN,
                    551:        MODEKEYCOPY_SEARCHDOWN,
1.207     nicm      552:        MODEKEYCOPY_SEARCHREVERSE,
1.83      nicm      553:        MODEKEYCOPY_SEARCHUP,
1.285     nicm      554:        MODEKEYCOPY_SELECTLINE,
1.209     nicm      555:        MODEKEYCOPY_STARTNUMBERPREFIX,
1.59      nicm      556:        MODEKEYCOPY_STARTOFLINE,
                    557:        MODEKEYCOPY_STARTSELECTION,
1.138     nicm      558:        MODEKEYCOPY_TOPLINE,
1.59      nicm      559:        MODEKEYCOPY_UP,
1.1       nicm      560: };
                    561:
1.62      nicm      562: /* Entry in the default mode key tables. */
1.59      nicm      563: struct mode_key_entry {
                    564:        int                     key;
                    565:
                    566:        /*
                    567:         * Editing mode for vi: 0 is edit mode, keys not in the table are
                    568:         * returned as MODEKEY_OTHER; 1 is command mode, keys not in the table
                    569:         * are returned as MODEKEY_NONE. This is also matched on, allowing some
                    570:         * keys to be bound in edit mode.
                    571:         */
                    572:        int                     mode;
                    573:        enum mode_key_cmd       cmd;
                    574: };
1.62      nicm      575:
                    576: /* Data required while mode keys are in use. */
1.1       nicm      577: struct mode_key_data {
1.62      nicm      578:        struct mode_key_tree   *tree;
                    579:        int                     mode;
1.1       nicm      580: };
                    581: #define MODEKEY_EMACS 0
                    582: #define MODEKEY_VI 1
                    583:
1.62      nicm      584: /* Binding between a key and a command. */
                    585: struct mode_key_binding {
                    586:        int                     key;
                    587:
                    588:        int                     mode;
                    589:        enum mode_key_cmd       cmd;
                    590:
1.306     nicm      591:        RB_ENTRY(mode_key_binding) entry;
1.62      nicm      592: };
1.306     nicm      593: RB_HEAD(mode_key_tree, mode_key_binding);
1.62      nicm      594:
                    595: /* Command to string mapping. */
                    596: struct mode_key_cmdstr {
1.192     nicm      597:        enum mode_key_cmd        cmd;
1.62      nicm      598:        const char              *name;
                    599: };
                    600:
                    601: /* Named mode key table description. */
                    602: struct mode_key_table {
1.261     nicm      603:        const char                      *name;
                    604:        const struct mode_key_cmdstr    *cmdstr;
                    605:        struct mode_key_tree            *tree;
                    606:        const struct mode_key_entry     *table; /* default entries */
1.62      nicm      607: };
                    608:
1.1       nicm      609: /* Modes. */
                    610: #define MODE_CURSOR 0x1
                    611: #define MODE_INSERT 0x2
                    612: #define MODE_KCURSOR 0x4
1.185     nicm      613: #define MODE_KKEYPAD 0x8       /* set = application, clear = number */
1.255     nicm      614: #define MODE_WRAP 0x10         /* whether lines wrap */
                    615: #define MODE_MOUSE_STANDARD 0x20
1.266     nicm      616: #define MODE_MOUSE_BUTTON 0x40
                    617: #define MODE_MOUSE_ANY 0x80
                    618: #define MODE_MOUSE_UTF8 0x100
1.317     nicm      619: #define MODE_BRACKETPASTE 0x200
1.255     nicm      620:
1.266     nicm      621: #define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ANY)
1.1       nicm      622:
1.143     nicm      623: /*
1.181     nicm      624:  * A single UTF-8 character.
1.143     nicm      625:  *
                    626:  * The data member in this must be UTF8_SIZE to allow screen_write_copy to
                    627:  * reinject stored UTF-8 data back into screen_write_cell after combining (ugh
                    628:  * XXX XXX).
                    629:  */
                    630: struct utf8_data {
                    631:        u_char  data[UTF8_SIZE];
                    632:
                    633:        size_t  have;
                    634:        size_t  size;
                    635:
                    636:        u_int   width;
                    637: };
                    638:
1.1       nicm      639: /* Grid output. */
                    640: #if defined(DEBUG) && \
                    641:     ((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
                    642:      (defined(__GNUC__) && __GNUC__ >= 3))
1.48      nicm      643: #define GRID_DEBUG(gd, fmt, ...) log_debug2("%s: (sx=%u, sy=%u, hsize=%u) " \
1.1       nicm      644:     fmt, __func__, (gd)->sx, (gd)->sy, (gd)->hsize, ## __VA_ARGS__)
                    645: #else
                    646: #define GRID_DEBUG(...)
                    647: #endif
                    648:
                    649: /* Grid attributes. */
                    650: #define GRID_ATTR_BRIGHT 0x1
                    651: #define GRID_ATTR_DIM 0x2
                    652: #define GRID_ATTR_UNDERSCORE 0x4
                    653: #define GRID_ATTR_BLINK 0x8
                    654: #define GRID_ATTR_REVERSE 0x10
                    655: #define GRID_ATTR_HIDDEN 0x20
                    656: #define GRID_ATTR_ITALICS 0x40
                    657: #define GRID_ATTR_CHARSET 0x80 /* alternative character set */
                    658:
                    659: /* Grid flags. */
                    660: #define GRID_FLAG_FG256 0x1
                    661: #define GRID_FLAG_BG256 0x2
                    662: #define GRID_FLAG_PADDING 0x4
                    663: #define GRID_FLAG_UTF8 0x8
                    664:
1.72      nicm      665: /* Grid line flags. */
                    666: #define GRID_LINE_WRAPPED 0x1
                    667:
1.1       nicm      668: /* Grid cell data. */
                    669: struct grid_cell {
                    670:        u_char  attr;
                    671:        u_char  flags;
                    672:        u_char  fg;
                    673:        u_char  bg;
                    674:        u_char  data;
                    675: } __packed;
                    676:
                    677: /* Grid cell UTF-8 data. Used instead of data in grid_cell for UTF-8 cells. */
                    678: struct grid_utf8 {
                    679:        u_char  width;
                    680:        u_char  data[UTF8_SIZE];
                    681: } __packed;
                    682:
1.71      nicm      683: /* Grid line. */
                    684: struct grid_line {
                    685:        u_int   cellsize;
                    686:        struct grid_cell *celldata;
                    687:
                    688:        u_int   utf8size;
                    689:        struct grid_utf8 *utf8data;
1.72      nicm      690:
                    691:        int     flags;
1.71      nicm      692: } __packed;
                    693:
1.1       nicm      694: /* Entire grid of cells. */
                    695: struct grid {
1.25      nicm      696:        int     flags;
                    697: #define GRID_HISTORY 0x1       /* scroll lines into history */
                    698:
1.1       nicm      699:        u_int   sx;
                    700:        u_int   sy;
                    701:
                    702:        u_int   hsize;
                    703:        u_int   hlimit;
                    704:
1.71      nicm      705:        struct grid_line *linedata;
1.1       nicm      706: };
                    707:
                    708: /* Option data structures. */
                    709: struct options_entry {
                    710:        char            *name;
                    711:
                    712:        enum {
                    713:                OPTIONS_STRING,
                    714:                OPTIONS_NUMBER,
1.112     nicm      715:                OPTIONS_DATA,
1.1       nicm      716:        } type;
1.109     nicm      717:
                    718:        char            *str;
                    719:        long long        num;
1.1       nicm      720:
1.306     nicm      721:        RB_ENTRY(options_entry) entry;
1.1       nicm      722: };
                    723:
                    724: struct options {
1.306     nicm      725:        RB_HEAD(options_tree, options_entry) tree;
1.1       nicm      726:        struct options  *parent;
                    727: };
                    728:
1.126     nicm      729: /* Scheduled job. */
                    730: struct job {
                    731:        char            *cmd;
                    732:        pid_t            pid;
1.130     nicm      733:        int              status;
1.126     nicm      734:
                    735:        int              fd;
1.160     nicm      736:        struct bufferevent *event;
1.126     nicm      737:
                    738:        void            (*callbackfn)(struct job *);
                    739:        void            (*freefn)(void *);
                    740:        void            *data;
1.130     nicm      741:
1.270     nicm      742:        LIST_ENTRY(job)  lentry;
1.126     nicm      743: };
1.270     nicm      744: LIST_HEAD(joblist, job);
1.126     nicm      745:
1.1       nicm      746: /* Screen selection. */
                    747: struct screen_sel {
                    748:        int              flag;
1.204     nicm      749:        int              rectflag;
1.1       nicm      750:
                    751:        u_int            sx;
                    752:        u_int            sy;
                    753:
                    754:        u_int            ex;
                    755:        u_int            ey;
                    756:
                    757:        struct grid_cell cell;
                    758: };
                    759:
                    760: /* Virtual screen. */
                    761: struct screen {
                    762:        char            *title;
                    763:
1.192     nicm      764:        struct grid     *grid;          /* grid data */
1.1       nicm      765:
                    766:        u_int            cx;            /* cursor x */
                    767:        u_int            cy;            /* cursor y */
                    768:
1.288     nicm      769:        u_int            cstyle;        /* cursor style */
1.287     nicm      770:        char            *ccolour;       /* cursor colour string */
                    771:
1.1       nicm      772:        u_int            rupper;        /* scroll region top */
                    773:        u_int            rlower;        /* scroll region bottom */
                    774:
                    775:        int              mode;
                    776:
1.192     nicm      777:        bitstr_t        *tabs;
1.6       nicm      778:
1.1       nicm      779:        struct screen_sel sel;
                    780: };
                    781:
                    782: /* Screen write context. */
                    783: struct screen_write_ctx {
                    784:        struct window_pane *wp;
                    785:        struct screen   *s;
                    786: };
                    787:
                    788: /* Screen size. */
                    789: #define screen_size_x(s) ((s)->grid->sx)
                    790: #define screen_size_y(s) ((s)->grid->sy)
                    791: #define screen_hsize(s) ((s)->grid->hsize)
                    792: #define screen_hlimit(s) ((s)->grid->hlimit)
                    793:
                    794: /* Input parser context. */
                    795: struct input_ctx {
1.210     nicm      796:        struct window_pane     *wp;
1.1       nicm      797:        struct screen_write_ctx ctx;
                    798:
1.210     nicm      799:        struct grid_cell        cell;
                    800:
                    801:        struct grid_cell        old_cell;
                    802:        u_int                   old_cx;
                    803:        u_int                   old_cy;
                    804:
                    805:        u_char                  interm_buf[4];
                    806:        size_t                  interm_len;
1.1       nicm      807:
1.210     nicm      808:        u_char                  param_buf[64];
                    809:        size_t                  param_len;
1.1       nicm      810:
1.210     nicm      811:        u_char                  input_buf[256];
                    812:        size_t                  input_len;
1.1       nicm      813:
1.210     nicm      814:        int                     param_list[24]; /* -1 not present */
                    815:        u_int                   param_list_len;
1.1       nicm      816:
1.210     nicm      817:        struct utf8_data        utf8data;
1.1       nicm      818:
1.210     nicm      819:        int                     ch;
                    820:        int                     flags;
                    821: #define INPUT_DISCARD 0x1
1.1       nicm      822:
1.210     nicm      823:        const struct input_state *state;
1.329     nicm      824:
                    825:        /*
                    826:         * All input received since we were last in the ground state. Sent to
                    827:         * control clients on connection.
                    828:         */
                    829:        struct evbuffer         *since_ground;
1.1       nicm      830: };
                    831:
                    832: /*
                    833:  * Window mode. Windows can be in several modes and this is used to call the
                    834:  * right function to handle input and output.
                    835:  */
1.221     nicm      836: struct session;
1.1       nicm      837: struct window;
1.129     nicm      838: struct mouse_event;
1.1       nicm      839: struct window_mode {
                    840:        struct screen *(*init)(struct window_pane *);
                    841:        void    (*free)(struct window_pane *);
                    842:        void    (*resize)(struct window_pane *, u_int, u_int);
1.221     nicm      843:        void    (*key)(struct window_pane *, struct session *, int);
1.1       nicm      844:        void    (*mouse)(struct window_pane *,
1.221     nicm      845:                    struct session *, struct mouse_event *);
1.1       nicm      846:        void    (*timer)(struct window_pane *);
                    847: };
                    848:
1.343     nicm      849: /* Structures for choose mode. */
                    850: struct window_choose_data {
                    851:        struct client           *client;
                    852:        struct session          *session;
                    853:        struct format_tree      *ft;
                    854:        char                    *ft_template;
1.344     nicm      855:        char                    *command;
1.343     nicm      856:        u_int                    idx;
                    857: };
                    858:
                    859: struct window_choose_mode_item {
                    860:     struct window_choose_data   *wcd;
                    861:     char                        *name;
                    862: };
                    863:
1.1       nicm      864: /* Child window structure. */
                    865: struct window_pane {
1.274     nicm      866:        u_int            id;
                    867:
1.1       nicm      868:        struct window   *window;
1.39      nicm      869:        struct layout_cell *layout_cell;
1.1       nicm      870:
                    871:        u_int            sx;
                    872:        u_int            sy;
                    873:
                    874:        u_int            xoff;
                    875:        u_int            yoff;
                    876:
                    877:        int              flags;
1.28      nicm      878: #define PANE_REDRAW 0x1
1.325     nicm      879: #define PANE_DROP 0x2
1.1       nicm      880:
                    881:        char            *cmd;
1.93      nicm      882:        char            *shell;
1.1       nicm      883:        char            *cwd;
                    884:
                    885:        pid_t            pid;
1.159     nicm      886:        char             tty[TTY_NAME_MAX];
                    887:
1.325     nicm      888:        u_int            changes;
                    889:        struct event     changes_timer;
                    890:        u_int            changes_redraw;
                    891:
1.1       nicm      892:        int              fd;
1.163     nicm      893:        struct bufferevent *event;
1.1       nicm      894:
                    895:        struct input_ctx ictx;
                    896:
1.131     nicm      897:        int              pipe_fd;
1.162     nicm      898:        struct bufferevent *pipe_event;
1.131     nicm      899:        size_t           pipe_off;
                    900:
1.1       nicm      901:        struct screen   *screen;
                    902:        struct screen    base;
                    903:
1.25      nicm      904:        /* Saved in alternative screen mode. */
1.192     nicm      905:        u_int            saved_cx;
                    906:        u_int            saved_cy;
1.25      nicm      907:        struct grid     *saved_grid;
1.69      nicm      908:        struct grid_cell saved_cell;
1.25      nicm      909:
1.1       nicm      910:        const struct window_mode *mode;
                    911:        void            *modedata;
                    912:
                    913:        TAILQ_ENTRY(window_pane) entry;
1.274     nicm      914:        RB_ENTRY(window_pane) tree_entry;
1.1       nicm      915: };
                    916: TAILQ_HEAD(window_panes, window_pane);
1.274     nicm      917: RB_HEAD(window_pane_tree, window_pane);
1.1       nicm      918:
1.326     nicm      919: /* Window last layout. */
                    920: struct last_layout {
                    921:        char    *layout;
                    922:
                    923:        TAILQ_ENTRY(last_layout) entry;
                    924: };
                    925:
1.1       nicm      926: /* Window structure. */
                    927: struct window {
1.309     nicm      928:        u_int            id;
1.1       nicm      929:        char            *name;
1.168     nicm      930:        struct event     name_timer;
1.248     nicm      931:        struct timeval   silence_timer;
1.1       nicm      932:
                    933:        struct window_pane *active;
1.244     nicm      934:        struct window_pane *last;
1.1       nicm      935:        struct window_panes panes;
1.39      nicm      936:
1.61      nicm      937:        int              lastlayout;
1.39      nicm      938:        struct layout_cell *layout_root;
1.326     nicm      939:        TAILQ_HEAD(last_layouts, last_layout) layout_list;
                    940:        u_int            layout_list_size;
                    941:        struct last_layout *layout_list_last;
1.1       nicm      942:
                    943:        u_int            sx;
                    944:        u_int            sy;
                    945:
                    946:        int              flags;
                    947: #define WINDOW_BELL 0x1
1.247     nicm      948: #define WINDOW_ACTIVITY 0x2
                    949: #define WINDOW_REDRAW 0x4
1.248     nicm      950: #define WINDOW_SILENCE 0x8
1.1       nicm      951:
                    952:        struct options   options;
                    953:
                    954:        u_int            references;
                    955: };
                    956: ARRAY_DECL(windows, struct window *);
                    957:
                    958: /* Entry on local window list. */
                    959: struct winlink {
                    960:        int              idx;
                    961:        struct window   *window;
1.184     nicm      962:
                    963:        size_t           status_width;
                    964:        struct grid_cell status_cell;
                    965:        char            *status_text;
1.1       nicm      966:
1.226     nicm      967:        int              flags;
                    968: #define WINLINK_BELL 0x1
                    969: #define WINLINK_ACTIVITY 0x2
                    970: #define WINLINK_CONTENT 0x4
1.248     nicm      971: #define WINLINK_SILENCE 0x8
                    972: #define WINLINK_ALERTFLAGS \
                    973:     (WINLINK_BELL|WINLINK_ACTIVITY|WINLINK_CONTENT|WINLINK_SILENCE)
1.226     nicm      974:
1.1       nicm      975:        RB_ENTRY(winlink) entry;
1.124     nicm      976:        TAILQ_ENTRY(winlink) sentry;
1.1       nicm      977: };
                    978: RB_HEAD(winlinks, winlink);
1.124     nicm      979: TAILQ_HEAD(winlink_stack, winlink);
1.1       nicm      980:
1.39      nicm      981: /* Layout direction. */
                    982: enum layout_type {
                    983:        LAYOUT_LEFTRIGHT,
                    984:        LAYOUT_TOPBOTTOM,
                    985:        LAYOUT_WINDOWPANE
                    986: };
                    987:
                    988: /* Layout cells queue. */
                    989: TAILQ_HEAD(layout_cells, layout_cell);
                    990:
                    991: /* Layout cell. */
                    992: struct layout_cell {
                    993:        enum layout_type type;
                    994:
                    995:        struct layout_cell *parent;
                    996:
                    997:        u_int            sx;
                    998:        u_int            sy;
                    999:
                   1000:        u_int            xoff;
                   1001:        u_int            yoff;
                   1002:
                   1003:        struct window_pane *wp;
                   1004:        struct layout_cells cells;
                   1005:
                   1006:        TAILQ_ENTRY(layout_cell) entry;
                   1007: };
                   1008:
1.1       nicm     1009: /* Paste buffer. */
                   1010: struct paste_buffer {
1.187     nicm     1011:        char            *data;
1.100     nicm     1012:        size_t           size;
1.1       nicm     1013: };
                   1014: ARRAY_DECL(paste_stack, struct paste_buffer *);
                   1015:
1.73      nicm     1016: /* Environment variable. */
                   1017: struct environ_entry {
                   1018:        char            *name;
                   1019:        char            *value;
                   1020:
                   1021:        RB_ENTRY(environ_entry) entry;
                   1022: };
                   1023: RB_HEAD(environ, environ_entry);
                   1024:
1.1       nicm     1025: /* Client session. */
1.124     nicm     1026: struct session_group {
                   1027:        TAILQ_HEAD(, session) sessions;
                   1028:
                   1029:        TAILQ_ENTRY(session_group) entry;
                   1030: };
                   1031: TAILQ_HEAD(session_groups, session_group);
                   1032:
1.1       nicm     1033: struct session {
1.254     nicm     1034:        u_int            idx;
                   1035:
1.1       nicm     1036:        char            *name;
1.230     nicm     1037:        char            *cwd;
1.156     nicm     1038:
                   1039:        struct timeval   creation_time;
                   1040:        struct timeval   activity_time;
1.1       nicm     1041:
                   1042:        u_int            sx;
                   1043:        u_int            sy;
                   1044:
                   1045:        struct winlink  *curw;
                   1046:        struct winlink_stack lastw;
                   1047:        struct winlinks  windows;
                   1048:
                   1049:        struct options   options;
                   1050:
                   1051: #define SESSION_UNATTACHED 0x1 /* not attached to any clients */
                   1052:        int              flags;
1.73      nicm     1053:
1.105     nicm     1054:        struct termios  *tio;
1.80      nicm     1055:
1.73      nicm     1056:        struct environ   environ;
1.101     nicm     1057:
                   1058:        int              references;
1.124     nicm     1059:
                   1060:        TAILQ_ENTRY(session) gentry;
1.254     nicm     1061:        RB_ENTRY(session)    entry;
1.1       nicm     1062: };
1.254     nicm     1063: RB_HEAD(sessions, session);
                   1064: ARRAY_DECL(sessionslist, struct session *);
1.1       nicm     1065:
1.336     nicm     1066: /*
                   1067:  * Mouse input. xterm mouse mode is fairly silly. Buttons are in the bottom two
                   1068:  * bits: 0 = button 1; 1 = button 2; 2 = button 3; 3 = buttons released. Bits
                   1069:  * 3, 4 and 5 are for keys. Bit 6 is set for dragging and 7 for mouse buttons 4
                   1070:  * and 5.
                   1071:  */
                   1072: struct mouse_event {
                   1073:        u_int   b;
                   1074: #define MOUSE_1 0
                   1075: #define MOUSE_2 1
                   1076: #define MOUSE_3 2
                   1077: #define MOUSE_UP 3
                   1078: #define MOUSE_BUTTON 3
                   1079: #define MOUSE_SHIFT 4
                   1080: #define MOUSE_ESCAPE 8
                   1081: #define MOUSE_CTRL 16
                   1082: #define MOUSE_DRAG 32
                   1083: #define MOUSE_45 64
                   1084: #define MOUSE_RESIZE_PANE 128 /* marker for resizing */
                   1085:        u_int   x;
                   1086:        u_int   y;
                   1087: };
                   1088:
1.1       nicm     1089: /* TTY information. */
                   1090: struct tty_key {
1.173     nicm     1091:        char             ch;
1.192     nicm     1092:        int              key;
1.1       nicm     1093:
1.173     nicm     1094:        struct tty_key  *left;
                   1095:        struct tty_key  *right;
                   1096:
                   1097:        struct tty_key  *next;
1.1       nicm     1098: };
                   1099:
                   1100: struct tty_term {
                   1101:        char            *name;
                   1102:        u_int            references;
                   1103:
1.240     nicm     1104:        char             acs[UCHAR_MAX + 1][2];
                   1105:
1.1       nicm     1106:        struct tty_code  codes[NTTYCODE];
                   1107:
1.147     nicm     1108: #define TERM_256COLOURS 0x1
                   1109: #define TERM_88COLOURS 0x2
                   1110: #define TERM_EARLYWRAP 0x4
1.1       nicm     1111:        int              flags;
                   1112:
1.270     nicm     1113:        LIST_ENTRY(tty_term) entry;
1.1       nicm     1114: };
1.270     nicm     1115: LIST_HEAD(tty_terms, tty_term);
1.1       nicm     1116:
                   1117: struct tty {
1.337     nicm     1118:        struct client   *client;
                   1119:
1.1       nicm     1120:        char            *path;
1.321     nicm     1121:        u_int            xterm_version;
1.1       nicm     1122:
1.192     nicm     1123:        u_int            sx;
                   1124:        u_int            sy;
1.1       nicm     1125:
                   1126:        u_int            cx;
                   1127:        u_int            cy;
1.288     nicm     1128:        u_int            cstyle;
1.287     nicm     1129:        char            *ccolour;
1.1       nicm     1130:
                   1131:        int              mode;
                   1132:
                   1133:        u_int            rlower;
                   1134:        u_int            rupper;
                   1135:
                   1136:        char            *termname;
                   1137:        struct tty_term *term;
                   1138:
                   1139:        int              fd;
1.161     nicm     1140:        struct bufferevent *event;
1.1       nicm     1141:
                   1142:        int              log_fd;
                   1143:
1.192     nicm     1144:        struct termios   tio;
1.1       nicm     1145:
                   1146:        struct grid_cell cell;
                   1147:
                   1148: #define TTY_NOCURSOR 0x1
                   1149: #define TTY_FREEZE 0x2
                   1150: #define TTY_ESCAPE 0x4
                   1151: #define TTY_UTF8 0x8
1.76      nicm     1152: #define TTY_STARTED 0x10
1.77      nicm     1153: #define TTY_OPENED 0x20
1.192     nicm     1154:        int              flags;
1.1       nicm     1155:
                   1156:        int              term_flags;
                   1157:
1.337     nicm     1158:        struct mouse_event mouse;
                   1159:
1.170     nicm     1160:        struct event     key_timer;
1.173     nicm     1161:        struct tty_key  *key_tree;
1.1       nicm     1162: };
                   1163:
1.47      nicm     1164: /* TTY command context and function pointer. */
                   1165: struct tty_ctx {
                   1166:        struct window_pane *wp;
                   1167:
                   1168:        const struct grid_cell *cell;
                   1169:        const struct grid_utf8 *utf8;
                   1170:
1.49      nicm     1171:        u_int            num;
1.196     nicm     1172:        void            *ptr;
1.49      nicm     1173:
1.196     nicm     1174:        /*
1.49      nicm     1175:         * Cursor and region position before the screen was updated - this is
                   1176:         * where the command should be applied; the values in the screen have
                   1177:         * already been updated.
                   1178:         */
                   1179:        u_int            ocx;
                   1180:        u_int            ocy;
                   1181:
                   1182:        u_int            orupper;
                   1183:        u_int            orlower;
1.140     nicm     1184:
1.308     nicm     1185:        u_int            xoff;
                   1186:        u_int            yoff;
                   1187:
1.140     nicm     1188:        /* Saved last cell on line. */
                   1189:        struct grid_cell last_cell;
                   1190:        struct grid_utf8 last_utf8;
                   1191:        u_int            last_width;
1.47      nicm     1192: };
                   1193:
1.180     nicm     1194: /* Saved message entry. */
                   1195: struct message_entry {
                   1196:        char   *msg;
                   1197:        time_t  msg_time;
                   1198: };
                   1199:
1.271     nicm     1200: /* Status output data from a job. */
                   1201: struct status_out {
                   1202:        char   *cmd;
                   1203:        char   *out;
                   1204:
                   1205:        RB_ENTRY(status_out) entry;
                   1206: };
                   1207: RB_HEAD(status_out_tree, status_out);
                   1208:
1.1       nicm     1209: /* Client connection. */
                   1210: struct client {
1.75      nicm     1211:        struct imsgbuf   ibuf;
1.159     nicm     1212:        struct event     event;
1.234     nicm     1213:        int              retcode;
1.156     nicm     1214:
                   1215:        struct timeval   creation_time;
1.158     nicm     1216:        struct timeval   activity_time;
1.1       nicm     1217:
1.73      nicm     1218:        struct environ   environ;
                   1219:
1.1       nicm     1220:        char            *title;
                   1221:        char            *cwd;
                   1222:
1.192     nicm     1223:        struct tty       tty;
1.236     nicm     1224:
1.332     nicm     1225:        void            (*stdin_callback)(struct client *, int, void *);
                   1226:        void            *stdin_callback_data;
                   1227:        struct evbuffer *stdin_data;
                   1228:        int              stdin_closed;
                   1229:        struct evbuffer *stdout_data;
                   1230:        struct evbuffer *stderr_data;
1.231     nicm     1231:
1.169     nicm     1232:        struct event     repeat_timer;
1.1       nicm     1233:
1.271     nicm     1234:        struct status_out_tree status_old;
                   1235:        struct status_out_tree status_new;
1.126     nicm     1236:        struct timeval   status_timer;
1.1       nicm     1237:        struct screen    status;
                   1238:
                   1239: #define CLIENT_TERMINAL 0x1
                   1240: #define CLIENT_PREFIX 0x2
1.236     nicm     1241: #define CLIENT_EXIT 0x4
1.1       nicm     1242: #define CLIENT_REDRAW 0x8
                   1243: #define CLIENT_STATUS 0x10
1.336     nicm     1244: #define CLIENT_REPEAT 0x20 /* allow command to repeat within repeat time */
1.1       nicm     1245: #define CLIENT_SUSPENDED 0x40
1.70      nicm     1246: #define CLIENT_BAD 0x80
1.92      nicm     1247: #define CLIENT_IDENTIFY 0x100
1.101     nicm     1248: #define CLIENT_DEAD 0x200
1.197     nicm     1249: #define CLIENT_BORDERS 0x400
1.205     nicm     1250: #define CLIENT_READONLY 0x800
1.307     nicm     1251: #define CLIENT_REDRAWWINDOW 0x1000
1.342     nicm     1252: #define CLIENT_CONTROL 0x2000
1.1       nicm     1253:        int              flags;
                   1254:
1.166     nicm     1255:        struct event     identify_timer;
1.92      nicm     1256:
1.1       nicm     1257:        char            *message_string;
1.166     nicm     1258:        struct event     message_timer;
1.180     nicm     1259:        ARRAY_DECL(, struct message_entry) message_log;
1.1       nicm     1260:
                   1261:        char            *prompt_string;
                   1262:        char            *prompt_buffer;
                   1263:        size_t           prompt_index;
1.33      nicm     1264:        int              (*prompt_callbackfn)(void *, const char *);
                   1265:        void             (*prompt_freefn)(void *);
1.1       nicm     1266:        void            *prompt_data;
1.249     nicm     1267:        u_int            prompt_hindex;
1.1       nicm     1268:
1.117     nicm     1269: #define PROMPT_SINGLE 0x1
1.1       nicm     1270:        int              prompt_flags;
                   1271:
                   1272:        struct mode_key_data prompt_mdata;
                   1273:
                   1274:        struct session  *session;
1.252     nicm     1275:        struct session  *last_session;
1.101     nicm     1276:
1.284     nicm     1277:        struct mouse_event last_mouse;
1.316     nicm     1278:
                   1279:        int              wlmouse;
1.284     nicm     1280:
1.101     nicm     1281:        int              references;
1.1       nicm     1282: };
                   1283: ARRAY_DECL(clients, struct client *);
                   1284:
1.264     nicm     1285: /* Parsed arguments. */
                   1286: struct args {
                   1287:        bitstr_t        *flags;
                   1288:        char            *values[SCHAR_MAX]; /* XXX This is awfully big. */
                   1289:
                   1290:        int              argc;
                   1291:        char           **argv;
                   1292: };
                   1293:
1.1       nicm     1294: /* Key/command line command. */
                   1295: struct cmd_ctx {
1.35      nicm     1296:        /*
                   1297:         * curclient is the client where this command was executed if inside
                   1298:         * tmux. This is NULL if the command came from the command-line.
                   1299:         *
                   1300:         * cmdclient is the client which sent the MSG_COMMAND to the server, if
                   1301:         * any. This is NULL unless the command came from the command-line.
                   1302:         *
1.52      nicm     1303:         * cmdclient and curclient may both be NULL if the command is in the
                   1304:         * configuration file.
1.35      nicm     1305:         */
1.1       nicm     1306:        struct client  *curclient;
1.54      nicm     1307:        struct client  *cmdclient;
1.35      nicm     1308:
1.1       nicm     1309:        struct msg_command_data *msgdata;
                   1310:
1.90      nicm     1311:        /* gcc2 doesn't understand attributes on function pointers... */
                   1312: #if defined(__GNUC__) && __GNUC__ >= 3
1.85      nicm     1313:        void printflike2 (*print)(struct cmd_ctx *, const char *, ...);
                   1314:        void printflike2 (*info)(struct cmd_ctx *, const char *, ...);
                   1315:        void printflike2 (*error)(struct cmd_ctx *, const char *, ...);
1.90      nicm     1316: #else
                   1317:        void (*print)(struct cmd_ctx *, const char *, ...);
                   1318:        void (*info)(struct cmd_ctx *, const char *, ...);
                   1319:        void (*error)(struct cmd_ctx *, const char *, ...);
                   1320: #endif
1.1       nicm     1321: };
                   1322:
                   1323: struct cmd {
1.264     nicm     1324:        const struct cmd_entry  *entry;
                   1325:        struct args             *args;
1.1       nicm     1326:
1.264     nicm     1327:        TAILQ_ENTRY(cmd)         qentry;
1.1       nicm     1328: };
1.229     nicm     1329: struct cmd_list {
1.264     nicm     1330:        int                      references;
                   1331:        TAILQ_HEAD(, cmd)        list;
1.229     nicm     1332: };
1.1       nicm     1333:
1.348   ! nicm     1334: enum cmd_retval {
        !          1335:        CMD_RETURN_ERROR = -1,
        !          1336:        CMD_RETURN_NORMAL = 0,
        !          1337:        CMD_RETURN_YIELD,
        !          1338:        CMD_RETURN_ATTACH
        !          1339: };
        !          1340:
1.1       nicm     1341: struct cmd_entry {
                   1342:        const char      *name;
                   1343:        const char      *alias;
1.264     nicm     1344:
                   1345:        const char      *args_template;
                   1346:        int              args_lower;
                   1347:        int              args_upper;
                   1348:
1.1       nicm     1349:        const char      *usage;
                   1350:
                   1351: #define CMD_STARTSERVER 0x1
                   1352: #define CMD_CANTNEST 0x2
1.74      nicm     1353: #define CMD_SENDENVIRON 0x4
1.264     nicm     1354: #define CMD_READONLY 0x8
1.27      nicm     1355:        int              flags;
1.1       nicm     1356:
1.264     nicm     1357:        void             (*key_binding)(struct cmd *, int);
                   1358:        int              (*check)(struct args *);
1.348   ! nicm     1359:        enum cmd_retval  (*exec)(struct cmd *, struct cmd_ctx *);
1.1       nicm     1360: };
                   1361:
                   1362: /* Key binding. */
                   1363: struct key_binding {
                   1364:        int              key;
                   1365:        struct cmd_list *cmdlist;
                   1366:        int              can_repeat;
                   1367:
1.306     nicm     1368:        RB_ENTRY(key_binding) entry;
1.1       nicm     1369: };
1.306     nicm     1370: RB_HEAD(key_bindings, key_binding);
1.1       nicm     1371:
1.262     nicm     1372: /*
                   1373:  * Option table entries. The option table is the user-visible part of the
                   1374:  * option, as opposed to the internal options (struct option) which are just
                   1375:  * number or string.
                   1376:  */
                   1377: enum options_table_type {
                   1378:        OPTIONS_TABLE_STRING,
                   1379:        OPTIONS_TABLE_NUMBER,
1.305     nicm     1380:        OPTIONS_TABLE_KEY,
1.262     nicm     1381:        OPTIONS_TABLE_COLOUR,
                   1382:        OPTIONS_TABLE_ATTRIBUTES,
                   1383:        OPTIONS_TABLE_FLAG,
                   1384:        OPTIONS_TABLE_CHOICE
                   1385: };
                   1386:
                   1387: struct options_table_entry {
                   1388:        const char             *name;
                   1389:        enum options_table_type type;
1.1       nicm     1390:
1.262     nicm     1391:        u_int                   minimum;
                   1392:        u_int                   maximum;
                   1393:        const char            **choices;
1.1       nicm     1394:
1.262     nicm     1395:        const char             *default_str;
                   1396:        long long               default_num;
1.1       nicm     1397: };
                   1398:
1.294     nicm     1399: /* Tree of format entries. */
                   1400: struct format_entry {
                   1401:        char                   *key;
                   1402:        char                   *value;
                   1403:
                   1404:        RB_ENTRY(format_entry)  entry;
                   1405: };
                   1406: RB_HEAD(format_tree, format_entry);
                   1407:
1.206     nicm     1408: /* List of configuration causes. */
                   1409: ARRAY_DECL(causelist, char *);
                   1410:
1.264     nicm     1411: /* Common command usages. */
                   1412: #define CMD_TARGET_PANE_USAGE "[-t target-pane]"
                   1413: #define CMD_TARGET_WINDOW_USAGE "[-t target-window]"
                   1414: #define CMD_TARGET_SESSION_USAGE "[-t target-session]"
                   1415: #define CMD_TARGET_CLIENT_USAGE "[-t target-client]"
                   1416: #define CMD_SRCDST_PANE_USAGE "[-s src-pane] [-t dst-pane]"
                   1417: #define CMD_SRCDST_WINDOW_USAGE "[-s src-window] [-t dst-window]"
                   1418: #define CMD_SRCDST_SESSION_USAGE "[-s src-session] [-t dst-session]"
                   1419: #define CMD_SRCDST_CLIENT_USAGE "[-s src-client] [-t dst-client]"
                   1420: #define CMD_BUFFER_USAGE "[-b buffer-index]"
                   1421:
1.1       nicm     1422: /* tmux.c */
1.194     nicm     1423: extern struct options global_options;
1.16      nicm     1424: extern struct options global_s_options;
                   1425: extern struct options global_w_options;
1.73      nicm     1426: extern struct environ global_environ;
1.219     nicm     1427: extern struct event_base *ev_base;
1.1       nicm     1428: extern char    *cfg_file;
1.243     nicm     1429: extern char    *shell_cmd;
1.1       nicm     1430: extern int      debug_level;
                   1431: extern time_t   start_time;
1.243     nicm     1432: extern char     socket_path[MAXPATHLEN];
1.96      nicm     1433: extern int      login_shell;
1.243     nicm     1434: extern char    *environ_path;
                   1435: extern pid_t    environ_pid;
1.267     nicm     1436: extern int      environ_idx;
1.1       nicm     1437: void            logfile(const char *);
1.93      nicm     1438: const char     *getshell(void);
                   1439: int             checkshell(const char *);
                   1440: int             areshell(const char *);
1.296     nicm     1441: const char*     get_full_path(const char *, const char *);
1.265     nicm     1442: void            setblocking(int, int);
1.243     nicm     1443: __dead void     shell_exec(const char *, const char *);
1.1       nicm     1444:
                   1445: /* cfg.c */
1.203     nicm     1446: extern int       cfg_finished;
1.246     nicm     1447: extern struct causelist cfg_causes;
1.206     nicm     1448: void printflike2 cfg_add_cause(struct causelist *, const char *, ...);
                   1449: int             load_cfg(const char *, struct cmd_ctx *, struct causelist *);
1.294     nicm     1450:
                   1451: /* format.c */
                   1452: int             format_cmp(struct format_entry *, struct format_entry *);
                   1453: RB_PROTOTYPE(format_tree, format_entry, entry, format_cmp);
                   1454: struct format_tree *format_create(void);
                   1455: void            format_free(struct format_tree *);
1.314     nicm     1456: void printflike3 format_add(
1.294     nicm     1457:                     struct format_tree *, const char *, const char *, ...);
                   1458: const char     *format_find(struct format_tree *, const char *);
                   1459: char           *format_expand(struct format_tree *, const char *);
                   1460: void            format_session(struct format_tree *, struct session *);
1.295     nicm     1461: void            format_client(struct format_tree *, struct client *);
1.294     nicm     1462: void            format_winlink(
                   1463:                     struct format_tree *, struct session *, struct winlink *);
                   1464: void            format_window_pane(struct format_tree *, struct window_pane *);
1.335     nicm     1465: void            format_paste_buffer(struct format_tree *, struct paste_buffer *);
1.1       nicm     1466:
                   1467: /* mode-key.c */
1.62      nicm     1468: extern const struct mode_key_table mode_key_tables[];
                   1469: extern struct mode_key_tree mode_key_tree_vi_edit;
                   1470: extern struct mode_key_tree mode_key_tree_vi_choice;
                   1471: extern struct mode_key_tree mode_key_tree_vi_copy;
                   1472: extern struct mode_key_tree mode_key_tree_emacs_edit;
                   1473: extern struct mode_key_tree mode_key_tree_emacs_choice;
                   1474: extern struct mode_key_tree mode_key_tree_emacs_copy;
                   1475: int    mode_key_cmp(struct mode_key_binding *, struct mode_key_binding *);
1.306     nicm     1476: RB_PROTOTYPE(mode_key_tree, mode_key_binding, entry, mode_key_cmp);
1.261     nicm     1477: const char *mode_key_tostring(const struct mode_key_cmdstr *,
                   1478:            enum mode_key_cmd);
                   1479: enum mode_key_cmd mode_key_fromstring(const struct mode_key_cmdstr *,
                   1480:            const char *);
1.63      nicm     1481: const struct mode_key_table *mode_key_findtable(const char *);
1.62      nicm     1482: void   mode_key_init_trees(void);
                   1483: void   mode_key_init(struct mode_key_data *, struct mode_key_tree *);
1.1       nicm     1484: enum mode_key_cmd mode_key_lookup(struct mode_key_data *, int);
1.323     nicm     1485:
                   1486: /* notify.c */
                   1487: void   notify_window_layout_changed(struct window *);
                   1488: void   notify_window_unlinked(struct session *, struct window *);
                   1489: void   notify_window_linked(struct session *, struct window *);
                   1490: void   notify_window_renamed(struct window *);
                   1491: void   notify_attached_session_changed(struct client *);
                   1492: void   notify_session_renamed(struct session *);
                   1493: void   notify_session_created(struct session *);
                   1494: void   notify_session_closed(struct session *);
1.1       nicm     1495:
                   1496: /* options.c */
                   1497: int    options_cmp(struct options_entry *, struct options_entry *);
1.306     nicm     1498: RB_PROTOTYPE(options_tree, options_entry, entry, options_cmp);
1.1       nicm     1499: void   options_init(struct options *, struct options *);
                   1500: void   options_free(struct options *);
                   1501: struct options_entry *options_find1(struct options *, const char *);
                   1502: struct options_entry *options_find(struct options *, const char *);
1.44      nicm     1503: void   options_remove(struct options *, const char *);
1.111     nicm     1504: struct options_entry *printflike3 options_set_string(
1.192     nicm     1505:            struct options *, const char *, const char *, ...);
1.1       nicm     1506: char   *options_get_string(struct options *, const char *);
1.111     nicm     1507: struct options_entry *options_set_number(
1.192     nicm     1508:            struct options *, const char *, long long);
1.1       nicm     1509: long long options_get_number(struct options *, const char *);
                   1510:
1.262     nicm     1511: /* options-table.c */
                   1512: extern const struct options_table_entry server_options_table[];
                   1513: extern const struct options_table_entry session_options_table[];
                   1514: extern const struct options_table_entry window_options_table[];
                   1515: void   options_table_populate_tree(
                   1516:            const struct options_table_entry *, struct options *);
                   1517: const char *options_table_print_entry(
                   1518:            const struct options_table_entry *, struct options_entry *);
1.313     nicm     1519: int    options_table_find(
                   1520:            const char *, const struct options_table_entry **,
                   1521:            const struct options_table_entry **);
1.262     nicm     1522:
1.126     nicm     1523: /* job.c */
1.128     nicm     1524: extern struct joblist all_jobs;
1.271     nicm     1525: struct job *job_run(
1.126     nicm     1526:            const char *, void (*)(struct job *), void (*)(void *), void *);
                   1527: void   job_free(struct job *);
1.160     nicm     1528: void   job_died(struct job *, int);
1.126     nicm     1529:
1.73      nicm     1530: /* environ.c */
                   1531: int    environ_cmp(struct environ_entry *, struct environ_entry *);
                   1532: RB_PROTOTYPE(environ, environ_entry, entry, environ_cmp);
                   1533: void   environ_init(struct environ *);
                   1534: void   environ_free(struct environ *);
                   1535: void   environ_copy(struct environ *, struct environ *);
                   1536: struct environ_entry *environ_find(struct environ *, const char *);
                   1537: void   environ_set(struct environ *, const char *, const char *);
                   1538: void   environ_put(struct environ *, const char *);
                   1539: void   environ_unset(struct environ *, const char *);
1.192     nicm     1540: void   environ_update(const char *, struct environ *, struct environ *);
1.215     nicm     1541: void   environ_push(struct environ *);
1.73      nicm     1542:
1.1       nicm     1543: /* tty.c */
1.322     nicm     1544: void   tty_init_termios(int, struct termios *, struct bufferevent *);
1.115     nicm     1545: void   tty_raw(struct tty *, const char *);
1.92      nicm     1546: void   tty_attributes(struct tty *, const struct grid_cell *);
1.47      nicm     1547: void   tty_reset(struct tty *);
1.132     nicm     1548: void   tty_region_pane(struct tty *, const struct tty_ctx *, u_int, u_int);
1.133     nicm     1549: void   tty_region(struct tty *, u_int, u_int);
1.134     nicm     1550: void   tty_cursor_pane(struct tty *, const struct tty_ctx *, u_int, u_int);
                   1551: void   tty_cursor(struct tty *, u_int, u_int);
1.47      nicm     1552: void   tty_putcode(struct tty *, enum tty_code_code);
                   1553: void   tty_putcode1(struct tty *, enum tty_code_code, int);
                   1554: void   tty_putcode2(struct tty *, enum tty_code_code, int, int);
1.287     nicm     1555: void   tty_putcode_ptr1(struct tty *, enum tty_code_code, const void *);
1.286     nicm     1556: void   tty_putcode_ptr2(struct tty *, enum tty_code_code, const void *, const void *);
1.47      nicm     1557: void   tty_puts(struct tty *, const char *);
                   1558: void   tty_putc(struct tty *, u_char);
                   1559: void   tty_pututf8(struct tty *, const struct grid_utf8 *);
1.337     nicm     1560: void   tty_init(struct tty *, struct client *, int, char *);
1.224     nicm     1561: int    tty_resize(struct tty *);
1.324     nicm     1562: int    tty_set_size(struct tty *, u_int, u_int);
1.47      nicm     1563: void   tty_start_tty(struct tty *);
1.324     nicm     1564: void   tty_set_version(struct tty *, u_int);
1.47      nicm     1565: void   tty_stop_tty(struct tty *);
                   1566: void   tty_set_title(struct tty *, const char *);
1.287     nicm     1567: void   tty_update_mode(struct tty *, int, struct screen *);
                   1568: void   tty_force_cursor_colour(struct tty *, const char *);
1.47      nicm     1569: void   tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int);
1.67      nicm     1570: int    tty_open(struct tty *, const char *, char **);
1.76      nicm     1571: void   tty_close(struct tty *);
                   1572: void   tty_free(struct tty *);
1.308     nicm     1573: void   tty_write(
                   1574:            void (*)(struct tty *, const struct tty_ctx *), struct tty_ctx *);
1.79      nicm     1575: void   tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);
                   1576: void   tty_cmd_cell(struct tty *, const struct tty_ctx *);
                   1577: void   tty_cmd_clearendofline(struct tty *, const struct tty_ctx *);
                   1578: void   tty_cmd_clearendofscreen(struct tty *, const struct tty_ctx *);
                   1579: void   tty_cmd_clearline(struct tty *, const struct tty_ctx *);
                   1580: void   tty_cmd_clearscreen(struct tty *, const struct tty_ctx *);
                   1581: void   tty_cmd_clearstartofline(struct tty *, const struct tty_ctx *);
                   1582: void   tty_cmd_clearstartofscreen(struct tty *, const struct tty_ctx *);
                   1583: void   tty_cmd_deletecharacter(struct tty *, const struct tty_ctx *);
                   1584: void   tty_cmd_deleteline(struct tty *, const struct tty_ctx *);
1.282     nicm     1585: void   tty_cmd_erasecharacter(struct tty *, const struct tty_ctx *);
1.79      nicm     1586: void   tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);
                   1587: void   tty_cmd_insertline(struct tty *, const struct tty_ctx *);
                   1588: void   tty_cmd_linefeed(struct tty *, const struct tty_ctx *);
                   1589: void   tty_cmd_utf8character(struct tty *, const struct tty_ctx *);
                   1590: void   tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);
1.286     nicm     1591: void   tty_cmd_setselection(struct tty *, const struct tty_ctx *);
1.273     nicm     1592: void   tty_cmd_rawstring(struct tty *, const struct tty_ctx *);
1.293     nicm     1593: void   tty_bell(struct tty *);
1.1       nicm     1594:
                   1595: /* tty-term.c */
                   1596: extern struct tty_terms tty_terms;
1.260     nicm     1597: extern const struct tty_term_code_entry tty_term_codes[NTTYCODE];
1.67      nicm     1598: struct tty_term *tty_term_find(char *, int, const char *, char **);
1.192     nicm     1599: void            tty_term_free(struct tty_term *);
1.1       nicm     1600: int             tty_term_has(struct tty_term *, enum tty_code_code);
                   1601: const char     *tty_term_string(struct tty_term *, enum tty_code_code);
                   1602: const char     *tty_term_string1(struct tty_term *, enum tty_code_code, int);
                   1603: const char     *tty_term_string2(
1.192     nicm     1604:                     struct tty_term *, enum tty_code_code, int, int);
1.287     nicm     1605: const char     *tty_term_ptr1(
                   1606:                     struct tty_term *, enum tty_code_code, const void *);
1.286     nicm     1607: const char     *tty_term_ptr2(
                   1608:                     struct tty_term *, enum tty_code_code, const void *, const void *);
1.1       nicm     1609: int             tty_term_number(struct tty_term *, enum tty_code_code);
                   1610: int             tty_term_flag(struct tty_term *, enum tty_code_code);
1.240     nicm     1611:
                   1612: /* tty-acs.c */
                   1613: const char     *tty_acs_get(struct tty *, u_char);
1.1       nicm     1614:
                   1615: /* tty-keys.c */
1.47      nicm     1616: void   tty_keys_init(struct tty *);
                   1617: void   tty_keys_free(struct tty *);
1.170     nicm     1618: int    tty_keys_next(struct tty *);
1.1       nicm     1619:
                   1620: /* paste.c */
1.276     nicm     1621: struct paste_buffer *paste_walk_stack(struct paste_stack *, u_int *);
1.1       nicm     1622: struct paste_buffer *paste_get_top(struct paste_stack *);
                   1623: struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
1.192     nicm     1624: int             paste_free_top(struct paste_stack *);
1.1       nicm     1625: int             paste_free_index(struct paste_stack *, u_int);
1.187     nicm     1626: void            paste_add(struct paste_stack *, char *, size_t, u_int);
                   1627: int             paste_replace(struct paste_stack *, u_int, char *, size_t);
1.228     nicm     1628: char           *paste_print(struct paste_buffer *, size_t);
1.1       nicm     1629:
                   1630: /* clock.c */
1.92      nicm     1631: extern const char clock_table[14][5][5];
1.188     nicm     1632: void            clock_draw(struct screen_write_ctx *, int, int);
1.1       nicm     1633:
1.264     nicm     1634: /* arguments.c */
                   1635: struct args    *args_create(int, ...);
                   1636: struct args    *args_parse(const char *, int, char **);
                   1637: void            args_free(struct args *);
                   1638: size_t          args_print(struct args *, char *, size_t);
                   1639: int             args_has(struct args *, u_char);
                   1640: void            args_set(struct args *, u_char, const char *);
                   1641: const char     *args_get(struct args *, u_char);
                   1642: long long       args_strtonum(
                   1643:                    struct args *, u_char, long long, long long, char **);
                   1644:
1.1       nicm     1645: /* cmd.c */
1.55      nicm     1646: int             cmd_pack_argv(int, char **, char *, size_t);
                   1647: int             cmd_unpack_argv(char *, size_t, int, char ***);
1.264     nicm     1648: char          **cmd_copy_argv(int, char *const *);
1.55      nicm     1649: void            cmd_free_argv(int, char **);
1.1       nicm     1650: struct cmd     *cmd_parse(int, char **, char **);
1.348   ! nicm     1651: enum cmd_retval         cmd_exec(struct cmd *, struct cmd_ctx *);
1.1       nicm     1652: void            cmd_free(struct cmd *);
                   1653: size_t          cmd_print(struct cmd *, char *, size_t);
1.278     nicm     1654: struct session *cmd_current_session(struct cmd_ctx *, int);
1.157     nicm     1655: struct client  *cmd_current_client(struct cmd_ctx *);
1.1       nicm     1656: struct client  *cmd_find_client(struct cmd_ctx *, const char *);
1.278     nicm     1657: struct session *cmd_find_session(struct cmd_ctx *, const char *, int);
1.1       nicm     1658: struct winlink *cmd_find_window(
1.26      nicm     1659:                     struct cmd_ctx *, const char *, struct session **);
                   1660: int             cmd_find_index(
                   1661:                     struct cmd_ctx *, const char *, struct session **);
1.65      nicm     1662: struct winlink *cmd_find_pane(struct cmd_ctx *,
                   1663:                     const char *, struct session **, struct window_pane **);
1.91      nicm     1664: char           *cmd_template_replace(char *, const char *, int);
1.310     nicm     1665: const char             *cmd_get_default_path(struct cmd_ctx *, const char *);
1.1       nicm     1666: extern const struct cmd_entry *cmd_table[];
                   1667: extern const struct cmd_entry cmd_attach_session_entry;
                   1668: extern const struct cmd_entry cmd_bind_key_entry;
                   1669: extern const struct cmd_entry cmd_break_pane_entry;
1.190     nicm     1670: extern const struct cmd_entry cmd_capture_pane_entry;
1.228     nicm     1671: extern const struct cmd_entry cmd_choose_buffer_entry;
1.91      nicm     1672: extern const struct cmd_entry cmd_choose_client_entry;
1.1       nicm     1673: extern const struct cmd_entry cmd_choose_session_entry;
1.346     nicm     1674: extern const struct cmd_entry cmd_choose_tree_entry;
1.1       nicm     1675: extern const struct cmd_entry cmd_choose_window_entry;
                   1676: extern const struct cmd_entry cmd_clear_history_entry;
                   1677: extern const struct cmd_entry cmd_clock_mode_entry;
                   1678: extern const struct cmd_entry cmd_command_prompt_entry;
                   1679: extern const struct cmd_entry cmd_confirm_before_entry;
                   1680: extern const struct cmd_entry cmd_copy_mode_entry;
                   1681: extern const struct cmd_entry cmd_delete_buffer_entry;
                   1682: extern const struct cmd_entry cmd_detach_client_entry;
1.36      nicm     1683: extern const struct cmd_entry cmd_display_message_entry;
1.92      nicm     1684: extern const struct cmd_entry cmd_display_panes_entry;
1.1       nicm     1685: extern const struct cmd_entry cmd_down_pane_entry;
                   1686: extern const struct cmd_entry cmd_find_window_entry;
                   1687: extern const struct cmd_entry cmd_has_session_entry;
1.19      nicm     1688: extern const struct cmd_entry cmd_if_shell_entry;
1.198     nicm     1689: extern const struct cmd_entry cmd_join_pane_entry;
1.1       nicm     1690: extern const struct cmd_entry cmd_kill_pane_entry;
                   1691: extern const struct cmd_entry cmd_kill_server_entry;
                   1692: extern const struct cmd_entry cmd_kill_session_entry;
                   1693: extern const struct cmd_entry cmd_kill_window_entry;
1.244     nicm     1694: extern const struct cmd_entry cmd_last_pane_entry;
1.1       nicm     1695: extern const struct cmd_entry cmd_last_window_entry;
                   1696: extern const struct cmd_entry cmd_link_window_entry;
                   1697: extern const struct cmd_entry cmd_list_buffers_entry;
                   1698: extern const struct cmd_entry cmd_list_clients_entry;
                   1699: extern const struct cmd_entry cmd_list_commands_entry;
                   1700: extern const struct cmd_entry cmd_list_keys_entry;
1.127     nicm     1701: extern const struct cmd_entry cmd_list_panes_entry;
1.1       nicm     1702: extern const struct cmd_entry cmd_list_sessions_entry;
                   1703: extern const struct cmd_entry cmd_list_windows_entry;
                   1704: extern const struct cmd_entry cmd_load_buffer_entry;
1.118     nicm     1705: extern const struct cmd_entry cmd_lock_client_entry;
1.1       nicm     1706: extern const struct cmd_entry cmd_lock_server_entry;
1.118     nicm     1707: extern const struct cmd_entry cmd_lock_session_entry;
1.315     nicm     1708: extern const struct cmd_entry cmd_move_pane_entry;
1.1       nicm     1709: extern const struct cmd_entry cmd_move_window_entry;
                   1710: extern const struct cmd_entry cmd_new_session_entry;
                   1711: extern const struct cmd_entry cmd_new_window_entry;
                   1712: extern const struct cmd_entry cmd_next_layout_entry;
                   1713: extern const struct cmd_entry cmd_next_window_entry;
                   1714: extern const struct cmd_entry cmd_paste_buffer_entry;
1.131     nicm     1715: extern const struct cmd_entry cmd_pipe_pane_entry;
1.1       nicm     1716: extern const struct cmd_entry cmd_previous_layout_entry;
                   1717: extern const struct cmd_entry cmd_previous_window_entry;
                   1718: extern const struct cmd_entry cmd_refresh_client_entry;
                   1719: extern const struct cmd_entry cmd_rename_session_entry;
                   1720: extern const struct cmd_entry cmd_rename_window_entry;
                   1721: extern const struct cmd_entry cmd_resize_pane_entry;
1.290     nicm     1722: extern const struct cmd_entry cmd_respawn_pane_entry;
1.1       nicm     1723: extern const struct cmd_entry cmd_respawn_window_entry;
                   1724: extern const struct cmd_entry cmd_rotate_window_entry;
1.107     nicm     1725: extern const struct cmd_entry cmd_run_shell_entry;
1.1       nicm     1726: extern const struct cmd_entry cmd_save_buffer_entry;
                   1727: extern const struct cmd_entry cmd_select_layout_entry;
                   1728: extern const struct cmd_entry cmd_select_pane_entry;
                   1729: extern const struct cmd_entry cmd_select_window_entry;
                   1730: extern const struct cmd_entry cmd_send_keys_entry;
                   1731: extern const struct cmd_entry cmd_send_prefix_entry;
                   1732: extern const struct cmd_entry cmd_server_info_entry;
                   1733: extern const struct cmd_entry cmd_set_buffer_entry;
1.73      nicm     1734: extern const struct cmd_entry cmd_set_environment_entry;
1.1       nicm     1735: extern const struct cmd_entry cmd_set_option_entry;
                   1736: extern const struct cmd_entry cmd_set_window_option_entry;
                   1737: extern const struct cmd_entry cmd_show_buffer_entry;
1.73      nicm     1738: extern const struct cmd_entry cmd_show_environment_entry;
1.180     nicm     1739: extern const struct cmd_entry cmd_show_messages_entry;
1.1       nicm     1740: extern const struct cmd_entry cmd_show_options_entry;
                   1741: extern const struct cmd_entry cmd_show_window_options_entry;
                   1742: extern const struct cmd_entry cmd_source_file_entry;
                   1743: extern const struct cmd_entry cmd_split_window_entry;
                   1744: extern const struct cmd_entry cmd_start_server_entry;
                   1745: extern const struct cmd_entry cmd_suspend_client_entry;
                   1746: extern const struct cmd_entry cmd_swap_pane_entry;
                   1747: extern const struct cmd_entry cmd_swap_window_entry;
                   1748: extern const struct cmd_entry cmd_switch_client_entry;
                   1749: extern const struct cmd_entry cmd_unbind_key_entry;
                   1750: extern const struct cmd_entry cmd_unlink_window_entry;
                   1751: extern const struct cmd_entry cmd_up_pane_entry;
                   1752:
                   1753: /* cmd-list.c */
                   1754: struct cmd_list        *cmd_list_parse(int, char **, char **);
1.348   ! nicm     1755: enum cmd_retval         cmd_list_exec(struct cmd_list *, struct cmd_ctx *);
1.1       nicm     1756: void            cmd_list_free(struct cmd_list *);
                   1757: size_t          cmd_list_print(struct cmd_list *, char *, size_t);
                   1758:
                   1759: /* cmd-string.c */
                   1760: int    cmd_string_parse(const char *, struct cmd_list **, char **);
                   1761:
                   1762: /* client.c */
1.243     nicm     1763: int    client_main(int, char **, int);
1.1       nicm     1764:
                   1765: /* key-bindings.c */
                   1766: extern struct key_bindings key_bindings;
                   1767: int     key_bindings_cmp(struct key_binding *, struct key_binding *);
1.306     nicm     1768: RB_PROTOTYPE(key_bindings, key_binding, entry, key_bindings_cmp);
1.1       nicm     1769: struct key_binding *key_bindings_lookup(int);
                   1770: void    key_bindings_add(int, int, struct cmd_list *);
                   1771: void    key_bindings_remove(int);
1.24      nicm     1772: void    key_bindings_clean(void);
1.1       nicm     1773: void    key_bindings_init(void);
                   1774: void    key_bindings_dispatch(struct key_binding *, struct client *);
                   1775: void printflike2 key_bindings_error(struct cmd_ctx *, const char *, ...);
                   1776: void printflike2 key_bindings_print(struct cmd_ctx *, const char *, ...);
                   1777: void printflike2 key_bindings_info(struct cmd_ctx *, const char *, ...);
                   1778:
                   1779: /* key-string.c */
                   1780: int     key_string_lookup_string(const char *);
                   1781: const char *key_string_lookup_key(int);
                   1782:
                   1783: /* server.c */
                   1784: extern struct clients clients;
1.101     nicm     1785: extern struct clients dead_clients;
1.257     nicm     1786: extern struct paste_stack global_buffers;
1.319     nicm     1787: int     server_start(int, char *);
1.175     nicm     1788: void    server_update_socket(void);
1.328     nicm     1789: void    server_add_accept(int);
1.1       nicm     1790:
1.146     nicm     1791: /* server-client.c */
1.337     nicm     1792: void    server_client_handle_key(struct client *, int);
1.146     nicm     1793: void    server_client_create(int);
1.331     nicm     1794: int      server_client_open(struct client *, struct session *, char **);
1.146     nicm     1795: void    server_client_lost(struct client *);
1.159     nicm     1796: void    server_client_callback(int, short, void *);
1.167     nicm     1797: void    server_client_status_timer(void);
1.146     nicm     1798: void    server_client_loop(void);
                   1799:
                   1800: /* server-window.c */
                   1801: void    server_window_loop(void);
1.1       nicm     1802:
                   1803: /* server-fn.c */
1.73      nicm     1804: void    server_fill_environ(struct session *, struct environ *);
1.334     nicm     1805: void    server_write_ready(struct client *);
1.332     nicm     1806: int     server_write_client(
1.192     nicm     1807:             struct client *, enum msgtype, const void *, size_t);
1.1       nicm     1808: void    server_write_session(
1.192     nicm     1809:             struct session *, enum msgtype, const void *, size_t);
1.1       nicm     1810: void    server_redraw_client(struct client *);
                   1811: void    server_status_client(struct client *);
                   1812: void    server_redraw_session(struct session *);
1.124     nicm     1813: void    server_redraw_session_group(struct session *);
1.1       nicm     1814: void    server_status_session(struct session *);
1.124     nicm     1815: void    server_status_session_group(struct session *);
1.1       nicm     1816: void    server_redraw_window(struct window *);
1.197     nicm     1817: void    server_redraw_window_borders(struct window *);
1.1       nicm     1818: void    server_status_window(struct window *);
                   1819: void    server_lock(void);
1.118     nicm     1820: void    server_lock_session(struct session *);
                   1821: void    server_lock_client(struct client *);
1.1       nicm     1822: int     server_unlock(const char *);
1.37      nicm     1823: void    server_kill_window(struct window *);
1.124     nicm     1824: int     server_link_window(struct session *,
1.106     nicm     1825:             struct winlink *, struct session *, int, int, int, char **);
                   1826: void    server_unlink_window(struct session *, struct winlink *);
1.177     nicm     1827: void    server_destroy_pane(struct window_pane *);
1.124     nicm     1828: void    server_destroy_session_group(struct session *);
1.103     nicm     1829: void    server_destroy_session(struct session *);
1.241     nicm     1830: void    server_check_unattached (void);
1.92      nicm     1831: void    server_set_identify(struct client *);
                   1832: void    server_clear_identify(struct client *);
1.165     nicm     1833: void    server_update_event(struct client *);
1.332     nicm     1834: void    server_push_stdout(struct client *);
                   1835: void    server_push_stderr(struct client *);
                   1836: int     server_set_stdin_callback(struct client *, void (*)(struct client *,
                   1837:             int, void *), void *, char **);
1.1       nicm     1838:
                   1839: /* status.c */
1.271     nicm     1840: int     status_out_cmp(struct status_out *, struct status_out *);
                   1841: RB_PROTOTYPE(status_out_tree, status_out, entry, status_out_cmp);
1.308     nicm     1842: int     status_at_line(struct client *);
1.271     nicm     1843: void    status_free_jobs(struct status_out_tree *);
                   1844: void    status_update_jobs(struct client *);
1.281     nicm     1845: void    status_set_window_at(struct client *, u_int);
1.1       nicm     1846: int     status_redraw(struct client *);
1.277     nicm     1847: char   *status_replace(struct client *, struct session *,
                   1848:             struct winlink *, struct window_pane *, const char *, time_t, int);
1.32      nicm     1849: void printflike2 status_message_set(struct client *, const char *, ...);
1.1       nicm     1850: void    status_message_clear(struct client *);
                   1851: int     status_message_redraw(struct client *);
1.292     nicm     1852: void    status_prompt_set(struct client *, const char *, const char *,
1.192     nicm     1853:             int (*)(void *, const char *), void (*)(void *), void *, int);
1.1       nicm     1854: void    status_prompt_clear(struct client *);
                   1855: int     status_prompt_redraw(struct client *);
                   1856: void    status_prompt_key(struct client *, int);
1.292     nicm     1857: void    status_prompt_update(struct client *, const char *, const char *);
1.1       nicm     1858:
                   1859: /* resize.c */
                   1860: void    recalculate_sizes(void);
                   1861:
                   1862: /* input.c */
                   1863: void    input_init(struct window_pane *);
                   1864: void    input_free(struct window_pane *);
                   1865: void    input_parse(struct window_pane *);
                   1866:
                   1867: /* input-key.c */
                   1868: void    input_key(struct window_pane *, int);
1.129     nicm     1869: void    input_mouse(struct window_pane *, struct mouse_event *);
1.150     nicm     1870:
                   1871: /* xterm-keys.c */
1.192     nicm     1872: char   *xterm_keys_lookup(int);
1.189     nicm     1873: int     xterm_keys_find(const char *, size_t, size_t *, int *);
1.1       nicm     1874:
                   1875: /* colour.c */
1.102     nicm     1876: void    colour_set_fg(struct grid_cell *, int);
                   1877: void    colour_set_bg(struct grid_cell *, int);
                   1878: const char *colour_tostring(int);
1.1       nicm     1879: int     colour_fromstring(const char *);
                   1880: u_char  colour_256to16(u_char);
                   1881: u_char  colour_256to88(u_char);
                   1882:
                   1883: /* attributes.c */
                   1884: const char *attributes_tostring(u_char);
                   1885: int     attributes_fromstring(const char *);
                   1886:
                   1887: /* grid.c */
                   1888: extern const struct grid_cell grid_default_cell;
1.338     nicm     1889: extern const struct grid_cell grid_marker_cell;
1.1       nicm     1890: struct grid *grid_create(u_int, u_int, u_int);
                   1891: void    grid_destroy(struct grid *);
                   1892: int     grid_compare(struct grid *, struct grid *);
1.139     nicm     1893: void    grid_collect_history(struct grid *);
                   1894: void    grid_scroll_history(struct grid *);
                   1895: void    grid_scroll_history_region(struct grid *, u_int, u_int);
1.1       nicm     1896: void    grid_expand_line(struct grid *, u_int, u_int);
                   1897: void    grid_expand_line_utf8(struct grid *, u_int, u_int);
                   1898: const struct grid_cell *grid_peek_cell(struct grid *, u_int, u_int);
                   1899: struct grid_cell *grid_get_cell(struct grid *, u_int, u_int);
                   1900: void    grid_set_cell(struct grid *, u_int, u_int, const struct grid_cell *);
                   1901: const struct grid_utf8 *grid_peek_utf8(struct grid *, u_int, u_int);
                   1902: struct grid_utf8 *grid_get_utf8(struct grid *, u_int, u_int);
                   1903: void    grid_set_utf8(struct grid *, u_int, u_int, const struct grid_utf8 *);
                   1904: void    grid_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1905: void    grid_clear_lines(struct grid *, u_int, u_int);
                   1906: void    grid_move_lines(struct grid *, u_int, u_int, u_int);
                   1907: void    grid_move_cells(struct grid *, u_int, u_int, u_int, u_int);
1.9       nicm     1908: char   *grid_string_cells(struct grid *, u_int, u_int, u_int);
1.25      nicm     1909: void    grid_duplicate_lines(
1.192     nicm     1910:             struct grid *, u_int, struct grid *, u_int, u_int);
1.181     nicm     1911:
                   1912: /* grid-utf8.c */
                   1913: size_t  grid_utf8_size(const struct grid_utf8 *);
                   1914: size_t  grid_utf8_copy(const struct grid_utf8 *, char *, size_t);
                   1915: void    grid_utf8_set(struct grid_utf8 *, const struct utf8_data *);
                   1916: int     grid_utf8_append(struct grid_utf8 *, const struct utf8_data *);
                   1917: int     grid_utf8_compare(const struct grid_utf8 *, const struct grid_utf8 *);
1.1       nicm     1918:
                   1919: /* grid-view.c */
                   1920: const struct grid_cell *grid_view_peek_cell(struct grid *, u_int, u_int);
                   1921: struct grid_cell *grid_view_get_cell(struct grid *, u_int, u_int);
                   1922: void    grid_view_set_cell(
1.192     nicm     1923:             struct grid *, u_int, u_int, const struct grid_cell *);
1.1       nicm     1924: const struct grid_utf8 *grid_view_peek_utf8(struct grid *, u_int, u_int);
                   1925: struct grid_utf8 *grid_view_get_utf8(struct grid *, u_int, u_int);
                   1926: void    grid_view_set_utf8(
1.192     nicm     1927:             struct grid *, u_int, u_int, const struct grid_utf8 *);
1.269     nicm     1928: void    grid_view_clear_history(struct grid *);
1.1       nicm     1929: void    grid_view_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1930: void    grid_view_scroll_region_up(struct grid *, u_int, u_int);
                   1931: void    grid_view_scroll_region_down(struct grid *, u_int, u_int);
                   1932: void    grid_view_insert_lines(struct grid *, u_int, u_int);
1.18      nicm     1933: void    grid_view_insert_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1934: void    grid_view_delete_lines(struct grid *, u_int, u_int);
1.18      nicm     1935: void    grid_view_delete_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1936: void    grid_view_insert_cells(struct grid *, u_int, u_int, u_int);
                   1937: void    grid_view_delete_cells(struct grid *, u_int, u_int, u_int);
1.9       nicm     1938: char   *grid_view_string_cells(struct grid *, u_int, u_int, u_int);
1.1       nicm     1939:
                   1940: /* screen-write.c */
                   1941: void    screen_write_start(
1.192     nicm     1942:             struct screen_write_ctx *, struct window_pane *, struct screen *);
1.1       nicm     1943: void    screen_write_stop(struct screen_write_ctx *);
1.304     nicm     1944: void    screen_write_reset(struct screen_write_ctx *);
1.99      nicm     1945: size_t printflike2 screen_write_cstrlen(int, const char *, ...);
                   1946: void printflike5 screen_write_cnputs(struct screen_write_ctx *,
1.192     nicm     1947:             ssize_t, struct grid_cell *, int, const char *, ...);
1.4       nicm     1948: size_t printflike2 screen_write_strlen(int, const char *, ...);
1.3       nicm     1949: void printflike3 screen_write_puts(struct screen_write_ctx *,
1.192     nicm     1950:             struct grid_cell *, const char *, ...);
1.4       nicm     1951: void printflike5 screen_write_nputs(struct screen_write_ctx *,
1.192     nicm     1952:             ssize_t, struct grid_cell *, int, const char *, ...);
1.3       nicm     1953: void    screen_write_vnputs(struct screen_write_ctx *,
1.4       nicm     1954:             ssize_t, struct grid_cell *, int, const char *, va_list);
1.99      nicm     1955: void    screen_write_parsestyle(
1.192     nicm     1956:             struct grid_cell *, struct grid_cell *, const char *);
1.1       nicm     1957: void    screen_write_putc(
1.192     nicm     1958:             struct screen_write_ctx *, struct grid_cell *, u_char);
1.1       nicm     1959: void    screen_write_copy(struct screen_write_ctx *,
                   1960:             struct screen *, u_int, u_int, u_int, u_int);
1.136     nicm     1961: void    screen_write_backspace(struct screen_write_ctx *);
1.1       nicm     1962: void    screen_write_cursorup(struct screen_write_ctx *, u_int);
                   1963: void    screen_write_cursordown(struct screen_write_ctx *, u_int);
                   1964: void    screen_write_cursorright(struct screen_write_ctx *, u_int);
                   1965: void    screen_write_cursorleft(struct screen_write_ctx *, u_int);
1.5       nicm     1966: void    screen_write_alignmenttest(struct screen_write_ctx *);
1.1       nicm     1967: void    screen_write_insertcharacter(struct screen_write_ctx *, u_int);
                   1968: void    screen_write_deletecharacter(struct screen_write_ctx *, u_int);
                   1969: void    screen_write_insertline(struct screen_write_ctx *, u_int);
                   1970: void    screen_write_deleteline(struct screen_write_ctx *, u_int);
                   1971: void    screen_write_clearline(struct screen_write_ctx *);
                   1972: void    screen_write_clearendofline(struct screen_write_ctx *);
                   1973: void    screen_write_clearstartofline(struct screen_write_ctx *);
                   1974: void    screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);
                   1975: void    screen_write_cursormode(struct screen_write_ctx *, int);
                   1976: void    screen_write_reverseindex(struct screen_write_ctx *);
                   1977: void    screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
                   1978: void    screen_write_insertmode(struct screen_write_ctx *, int);
1.263     nicm     1979: void    screen_write_utf8mousemode(struct screen_write_ctx *, int);
1.255     nicm     1980: void    screen_write_mousemode_on(struct screen_write_ctx *, int);
                   1981: void    screen_write_mousemode_off(struct screen_write_ctx *);
1.72      nicm     1982: void    screen_write_linefeed(struct screen_write_ctx *, int);
1.137     nicm     1983: void    screen_write_linefeedscreen(struct screen_write_ctx *, int);
1.1       nicm     1984: void    screen_write_carriagereturn(struct screen_write_ctx *);
                   1985: void    screen_write_kcursormode(struct screen_write_ctx *, int);
                   1986: void    screen_write_kkeypadmode(struct screen_write_ctx *, int);
                   1987: void    screen_write_clearendofscreen(struct screen_write_ctx *);
                   1988: void    screen_write_clearstartofscreen(struct screen_write_ctx *);
                   1989: void    screen_write_clearscreen(struct screen_write_ctx *);
1.297     nicm     1990: void    screen_write_clearhistory(struct screen_write_ctx *);
1.143     nicm     1991: void    screen_write_cell(struct screen_write_ctx *,
1.192     nicm     1992:             const struct grid_cell *, const struct utf8_data *);
1.286     nicm     1993: void    screen_write_setselection(struct screen_write_ctx *, u_char *, u_int);
1.273     nicm     1994: void    screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int);
1.317     nicm     1995: void    screen_write_bracketpaste(struct screen_write_ctx *, int);
1.1       nicm     1996:
                   1997: /* screen-redraw.c */
1.197     nicm     1998: void    screen_redraw_screen(struct client *, int, int);
1.1       nicm     1999: void    screen_redraw_pane(struct client *, struct window_pane *);
                   2000:
                   2001: /* screen.c */
                   2002: void    screen_init(struct screen *, u_int, u_int, u_int);
                   2003: void    screen_reinit(struct screen *);
                   2004: void    screen_free(struct screen *);
1.6       nicm     2005: void    screen_reset_tabs(struct screen *);
1.288     nicm     2006: void    screen_set_cursor_style(struct screen *, u_int);
1.287     nicm     2007: void    screen_set_cursor_colour(struct screen *, const char *);
1.1       nicm     2008: void    screen_set_title(struct screen *, const char *);
                   2009: void    screen_resize(struct screen *, u_int, u_int);
1.204     nicm     2010: void    screen_set_selection(struct screen *,
                   2011:             u_int, u_int, u_int, u_int, u_int, struct grid_cell *);
1.1       nicm     2012: void    screen_clear_selection(struct screen *);
                   2013: int     screen_check_selection(struct screen *, u_int, u_int);
                   2014:
                   2015: /* window.c */
                   2016: extern struct windows windows;
1.274     nicm     2017: extern struct window_pane_tree all_window_panes;
1.1       nicm     2018: int             winlink_cmp(struct winlink *, struct winlink *);
                   2019: RB_PROTOTYPE(winlinks, winlink, entry, winlink_cmp);
1.274     nicm     2020: int             window_pane_cmp(struct window_pane *, struct window_pane *);
                   2021: RB_PROTOTYPE(window_pane_tree, window_pane, tree_entry, window_pane_cmp);
1.1       nicm     2022: struct winlink *winlink_find_by_index(struct winlinks *, int);
1.192     nicm     2023: struct winlink *winlink_find_by_window(struct winlinks *, struct window *);
1.309     nicm     2024: struct winlink *winlink_find_by_window_id(struct winlinks *, u_int);
1.81      nicm     2025: int             winlink_next_index(struct winlinks *, int);
1.1       nicm     2026: u_int           winlink_count(struct winlinks *);
1.268     nicm     2027: struct winlink *winlink_add(struct winlinks *, int);
                   2028: void            winlink_set_window(struct winlink *, struct window *);
1.1       nicm     2029: void            winlink_remove(struct winlinks *, struct winlink *);
1.186     nicm     2030: struct winlink *winlink_next(struct winlink *);
                   2031: struct winlink *winlink_previous(struct winlink *);
1.235     nicm     2032: struct winlink *winlink_next_by_number(struct winlink *, struct session *,
                   2033:                     int);
                   2034: struct winlink *winlink_previous_by_number(struct winlink *, struct session *,
                   2035:                     int);
1.1       nicm     2036: void            winlink_stack_push(struct winlink_stack *, struct winlink *);
                   2037: void            winlink_stack_remove(struct winlink_stack *, struct winlink *);
1.192     nicm     2038: int             window_index(struct window *, u_int *);
1.309     nicm     2039: struct window  *window_find_by_id(u_int);
1.1       nicm     2040: struct window  *window_create1(u_int, u_int);
1.73      nicm     2041: struct window  *window_create(const char *, const char *, const char *,
1.93      nicm     2042:                     const char *, struct environ *, struct termios *,
1.192     nicm     2043:                     u_int, u_int, u_int, char **);
1.1       nicm     2044: void            window_destroy(struct window *);
1.289     nicm     2045: struct window_pane *window_get_active_at(struct window *, u_int, u_int);
1.125     nicm     2046: void            window_set_active_at(struct window *, u_int, u_int);
1.289     nicm     2047: struct window_pane *window_find_string(struct window *, const char *);
1.1       nicm     2048: void            window_set_active_pane(struct window *, struct window_pane *);
1.51      nicm     2049: struct window_pane *window_add_pane(struct window *, u_int);
1.44      nicm     2050: void            window_resize(struct window *, u_int, u_int);
1.1       nicm     2051: void            window_remove_pane(struct window *, struct window_pane *);
                   2052: struct window_pane *window_pane_at_index(struct window *, u_int);
1.235     nicm     2053: struct window_pane *window_pane_next_by_number(struct window *,
                   2054:                        struct window_pane *, u_int);
                   2055: struct window_pane *window_pane_previous_by_number(struct window *,
                   2056:                        struct window_pane *, u_int);
1.298     nicm     2057: int             window_pane_index(struct window_pane *, u_int *);
1.1       nicm     2058: u_int           window_count_panes(struct window *);
                   2059: void            window_destroy_panes(struct window *);
1.274     nicm     2060: struct window_pane *window_pane_find_by_id(u_int);
1.1       nicm     2061: struct window_pane *window_pane_create(struct window *, u_int, u_int, u_int);
                   2062: void            window_pane_destroy(struct window_pane *);
1.325     nicm     2063: void            window_pane_timer_start(struct window_pane *);
1.80      nicm     2064: int             window_pane_spawn(struct window_pane *, const char *,
1.93      nicm     2065:                     const char *, const char *, struct environ *,
                   2066:                     struct termios *, char **);
1.44      nicm     2067: void            window_pane_resize(struct window_pane *, u_int, u_int);
1.210     nicm     2068: void            window_pane_alternate_on(
                   2069:                     struct window_pane *, struct grid_cell *);
                   2070: void            window_pane_alternate_off(
                   2071:                     struct window_pane *, struct grid_cell *);
1.1       nicm     2072: int             window_pane_set_mode(
                   2073:                     struct window_pane *, const struct window_mode *);
                   2074: void            window_pane_reset_mode(struct window_pane *);
1.221     nicm     2075: void            window_pane_key(struct window_pane *, struct session *, int);
1.1       nicm     2076: void            window_pane_mouse(struct window_pane *,
1.221     nicm     2077:                     struct session *, struct mouse_event *);
1.28      nicm     2078: int             window_pane_visible(struct window_pane *);
1.10      nicm     2079: char           *window_pane_search(
1.192     nicm     2080:                     struct window_pane *, const char *, u_int *);
1.256     nicm     2081: char           *window_printable_flags(struct session *, struct winlink *);
1.211     nicm     2082: struct window_pane *window_pane_find_up(struct window_pane *);
                   2083: struct window_pane *window_pane_find_down(struct window_pane *);
                   2084: struct window_pane *window_pane_find_left(struct window_pane *);
                   2085: struct window_pane *window_pane_find_right(struct window_pane *);
1.311     nicm     2086: void            window_set_name(struct window *, const char *);
1.345     nicm     2087: void            winlink_clear_flags(struct winlink *);
1.1       nicm     2088:
                   2089: /* layout.c */
1.232     nicm     2090: u_int           layout_count_cells(struct layout_cell *);
1.39      nicm     2091: struct layout_cell *layout_create_cell(struct layout_cell *);
                   2092: void            layout_free_cell(struct layout_cell *);
                   2093: void            layout_print_cell(struct layout_cell *, const char *, u_int);
1.326     nicm     2094: void            layout_destroy_cell(
                   2095:                     struct layout_cell *, struct layout_cell **);
1.39      nicm     2096: void            layout_set_size(
                   2097:                     struct layout_cell *, u_int, u_int, u_int, u_int);
                   2098: void            layout_make_leaf(
                   2099:                     struct layout_cell *, struct window_pane *);
                   2100: void            layout_make_node(struct layout_cell *, enum layout_type);
                   2101: void            layout_fix_offsets(struct layout_cell *);
                   2102: void            layout_fix_panes(struct window *, u_int, u_int);
                   2103: u_int           layout_resize_check(struct layout_cell *, enum layout_type);
                   2104: void            layout_resize_adjust(
                   2105:                     struct layout_cell *, enum layout_type, int);
                   2106: void            layout_init(struct window *);
                   2107: void            layout_free(struct window *);
                   2108: void            layout_resize(struct window *, u_int, u_int);
                   2109: void            layout_resize_pane(
1.192     nicm     2110:                     struct window_pane *, enum layout_type, int);
1.284     nicm     2111: void            layout_resize_pane_mouse(
                   2112:                     struct client *c, struct mouse_event *mouse);
1.198     nicm     2113: void            layout_assign_pane(struct layout_cell *, struct window_pane *);
                   2114: struct layout_cell *layout_split_pane(
1.315     nicm     2115:                     struct window_pane *, enum layout_type, int, int);
1.39      nicm     2116: void            layout_close_pane(struct window_pane *);
1.326     nicm     2117: void            layout_list_add(struct window *);
                   2118: const char     *layout_list_redo(struct window *);
                   2119: const char     *layout_list_undo(struct window *);
1.39      nicm     2120:
1.232     nicm     2121: /* layout-custom.c */
                   2122: char           *layout_dump(struct window *);
                   2123: int             layout_parse(struct window *, const char *);
                   2124:
1.39      nicm     2125: /* layout-set.c */
                   2126: const char     *layout_set_name(u_int);
                   2127: int             layout_set_lookup(const char *);
                   2128: u_int           layout_set_select(struct window *, u_int);
                   2129: u_int           layout_set_next(struct window *);
                   2130: u_int           layout_set_previous(struct window *);
                   2131: void            layout_set_active_changed(struct window *);
1.1       nicm     2132:
                   2133: /* window-clock.c */
                   2134: extern const struct window_mode window_clock_mode;
                   2135:
                   2136: /* window-copy.c */
                   2137: extern const struct window_mode window_copy_mode;
1.216     nicm     2138: void            window_copy_init_from_pane(struct window_pane *);
                   2139: void            window_copy_init_for_output(struct window_pane *);
1.314     nicm     2140: void printflike2 window_copy_add(struct window_pane *, const char *, ...);
1.216     nicm     2141: void            window_copy_vadd(struct window_pane *, const char *, va_list);
1.192     nicm     2142: void            window_copy_pageup(struct window_pane *);
1.1       nicm     2143:
                   2144: /* window-choose.c */
                   2145: extern const struct window_mode window_choose_mode;
1.343     nicm     2146: void            window_choose_add(struct window_pane *,
                   2147:                         struct window_choose_data *);
1.1       nicm     2148: void            window_choose_ready(struct window_pane *,
1.343     nicm     2149:                     u_int, void (*)(struct window_choose_data *),
                   2150:                     void (*)(struct window_choose_data *));
1.344     nicm     2151: struct window_choose_data      *window_choose_data_create(struct cmd_ctx *);
1.343     nicm     2152: void            window_choose_ctx(struct window_choose_data *);
1.344     nicm     2153: struct window_choose_data      *window_choose_add_window(struct window_pane *,
                   2154:                        struct cmd_ctx *, struct session *, struct winlink *,
                   2155:                        const char *, char *, u_int);
                   2156: struct window_choose_data      *window_choose_add_session(struct window_pane *,
                   2157:                        struct cmd_ctx *, struct session *, const char *,
                   2158:                        char *, u_int);
1.1       nicm     2159:
                   2160: /* names.c */
1.168     nicm     2161: void            queue_window_name(struct window *);
1.192     nicm     2162: char           *default_window_name(struct window *);
1.219     nicm     2163:
                   2164: /* signal.c */
1.238     nicm     2165: void set_signals(void(*)(int, short, void *));
                   2166: void clear_signals(int);
1.342     nicm     2167:
                   2168: /* control.c */
                   2169: void control_callback(struct client *, int, void*);
1.1       nicm     2170:
                   2171: /* session.c */
                   2172: extern struct sessions sessions;
1.101     nicm     2173: extern struct sessions dead_sessions;
1.124     nicm     2174: extern struct session_groups session_groups;
1.254     nicm     2175: int    session_cmp(struct session *, struct session *);
                   2176: RB_PROTOTYPE(sessions, session, entry, session_cmp);
1.251     nicm     2177: int             session_alive(struct session *);
1.1       nicm     2178: struct session *session_find(const char *);
1.254     nicm     2179: struct session *session_find_by_index(u_int);
1.80      nicm     2180: struct session *session_create(const char *, const char *, const char *,
1.81      nicm     2181:                     struct environ *, struct termios *, int, u_int, u_int,
                   2182:                     char **);
1.192     nicm     2183: void            session_destroy(struct session *);
1.279     nicm     2184: int             session_check_name(const char *);
1.259     nicm     2185: void            session_update_activity(struct session *);
1.239     nicm     2186: struct session *session_next_session(struct session *);
                   2187: struct session *session_previous_session(struct session *);
1.1       nicm     2188: struct winlink *session_new(struct session *,
1.192     nicm     2189:                     const char *, const char *, const char *, int, char **);
1.1       nicm     2190: struct winlink *session_attach(
1.192     nicm     2191:                     struct session *, struct window *, int, char **);
1.1       nicm     2192: int             session_detach(struct session *, struct winlink *);
1.226     nicm     2193: struct winlink*         session_has(struct session *, struct window *);
1.1       nicm     2194: int             session_next(struct session *, int);
                   2195: int             session_previous(struct session *, int);
                   2196: int             session_select(struct session *, int);
                   2197: int             session_last(struct session *);
1.124     nicm     2198: struct session_group *session_group_find(struct session *);
                   2199: u_int           session_group_index(struct session_group *);
                   2200: void            session_group_add(struct session *, struct session *);
                   2201: void            session_group_remove(struct session *);
                   2202: void            session_group_synchronize_to(struct session *);
                   2203: void            session_group_synchronize_from(struct session *);
                   2204: void            session_group_synchronize1(struct session *, struct session *);
1.330     nicm     2205: void            session_renumber_windows(struct session *);
1.1       nicm     2206:
                   2207: /* utf8.c */
                   2208: void   utf8_build(void);
1.143     nicm     2209: int    utf8_open(struct utf8_data *, u_char);
                   2210: int    utf8_append(struct utf8_data *, u_char);
1.263     nicm     2211: u_int  utf8_combine(const struct utf8_data *);
                   2212: u_int  utf8_split2(u_int, u_char *);
1.1       nicm     2213:
                   2214: /* procname.c */
                   2215: char   *get_proc_name(int, char *);
1.301     nicm     2216: char   *get_proc_cwd(pid_t);
1.1       nicm     2217:
                   2218: /* log.c */
1.339     nicm     2219: void            log_open(int, const char *);
1.1       nicm     2220: void            log_close(void);
                   2221: void printflike1 log_warn(const char *, ...);
                   2222: void printflike1 log_warnx(const char *, ...);
                   2223: void printflike1 log_info(const char *, ...);
                   2224: void printflike1 log_debug(const char *, ...);
                   2225: void printflike1 log_debug2(const char *, ...);
1.85      nicm     2226: __dead void printflike1 log_fatal(const char *, ...);
                   2227: __dead void printflike1 log_fatalx(const char *, ...);
1.1       nicm     2228:
                   2229: /* xmalloc.c */
                   2230: char           *xstrdup(const char *);
                   2231: void           *xcalloc(size_t, size_t);
                   2232: void           *xmalloc(size_t);
                   2233: void           *xrealloc(void *, size_t, size_t);
                   2234: int printflike2         xasprintf(char **, const char *, ...);
                   2235: int             xvasprintf(char **, const char *, va_list);
                   2236: int printflike3         xsnprintf(char *, size_t, const char *, ...);
                   2237: int             xvsnprintf(char *, size_t, const char *, va_list);
                   2238:
                   2239: #endif /* TMUX_H */