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

1.341   ! nicm        1: /* $OpenBSD: tmux.h,v 1.340 2012/05/27 21:43:57 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
                    436:        int             flags;
                    437: };
                    438:
1.115     nicm      439: struct msg_lock_data {
1.192     nicm      440:        char            cmd[COMMAND_LENGTH];
1.55      nicm      441: };
                    442:
1.73      nicm      443: struct msg_environ_data {
1.192     nicm      444:        char            var[ENVIRON_LENGTH];
1.116     nicm      445: };
                    446:
                    447: struct msg_shell_data {
1.192     nicm      448:        char            shell[MAXPATHLEN];
1.73      nicm      449: };
                    450:
1.234     nicm      451: struct msg_exit_data {
                    452:        int             retcode;
                    453: };
                    454:
1.332     nicm      455: struct msg_stdin_data {
                    456:        ssize_t size;
                    457:        char    data[BUFSIZ];
                    458: };
                    459:
                    460: struct msg_stdout_data {
                    461:        ssize_t size;
                    462:        char    data[BUFSIZ];
                    463: };
                    464:
                    465: struct msg_stderr_data {
                    466:        ssize_t size;
                    467:        char    data[BUFSIZ];
                    468: };
                    469:
1.62      nicm      470: /* Mode key commands. */
1.1       nicm      471: enum mode_key_cmd {
1.59      nicm      472:        MODEKEY_NONE,
                    473:        MODEKEY_OTHER,
                    474:
                    475:        /* Editing keys. */
                    476:        MODEKEYEDIT_BACKSPACE,
                    477:        MODEKEYEDIT_CANCEL,
                    478:        MODEKEYEDIT_COMPLETE,
                    479:        MODEKEYEDIT_CURSORLEFT,
                    480:        MODEKEYEDIT_CURSORRIGHT,
                    481:        MODEKEYEDIT_DELETE,
1.84      nicm      482:        MODEKEYEDIT_DELETELINE,
1.59      nicm      483:        MODEKEYEDIT_DELETETOENDOFLINE,
1.299     nicm      484:        MODEKEYEDIT_DELETEWORD,
1.59      nicm      485:        MODEKEYEDIT_ENDOFLINE,
                    486:        MODEKEYEDIT_ENTER,
                    487:        MODEKEYEDIT_HISTORYDOWN,
                    488:        MODEKEYEDIT_HISTORYUP,
1.302     nicm      489:        MODEKEYEDIT_NEXTSPACE,
                    490:        MODEKEYEDIT_NEXTSPACEEND,
1.299     nicm      491:        MODEKEYEDIT_NEXTWORD,
                    492:        MODEKEYEDIT_NEXTWORDEND,
1.59      nicm      493:        MODEKEYEDIT_PASTE,
1.302     nicm      494:        MODEKEYEDIT_PREVIOUSSPACE,
1.299     nicm      495:        MODEKEYEDIT_PREVIOUSWORD,
1.59      nicm      496:        MODEKEYEDIT_STARTOFLINE,
                    497:        MODEKEYEDIT_SWITCHMODE,
                    498:        MODEKEYEDIT_SWITCHMODEAPPEND,
1.318     nicm      499:        MODEKEYEDIT_SWITCHMODEAPPENDLINE,
                    500:        MODEKEYEDIT_SWITCHMODEBEGINLINE,
1.94      nicm      501:        MODEKEYEDIT_TRANSPOSECHARS,
1.192     nicm      502:
1.59      nicm      503:        /* Menu (choice) keys. */
                    504:        MODEKEYCHOICE_CANCEL,
                    505:        MODEKEYCHOICE_CHOOSE,
                    506:        MODEKEYCHOICE_DOWN,
                    507:        MODEKEYCHOICE_PAGEDOWN,
                    508:        MODEKEYCHOICE_PAGEUP,
1.201     nicm      509:        MODEKEYCHOICE_SCROLLDOWN,
                    510:        MODEKEYCHOICE_SCROLLUP,
1.59      nicm      511:        MODEKEYCHOICE_UP,
                    512:
                    513:        /* Copy keys. */
1.82      nicm      514:        MODEKEYCOPY_BACKTOINDENTATION,
1.138     nicm      515:        MODEKEYCOPY_BOTTOMLINE,
1.59      nicm      516:        MODEKEYCOPY_CANCEL,
                    517:        MODEKEYCOPY_CLEARSELECTION,
1.285     nicm      518:        MODEKEYCOPY_COPYLINE,
                    519:        MODEKEYCOPY_COPYENDOFLINE,
1.59      nicm      520:        MODEKEYCOPY_COPYSELECTION,
                    521:        MODEKEYCOPY_DOWN,
                    522:        MODEKEYCOPY_ENDOFLINE,
1.83      nicm      523:        MODEKEYCOPY_GOTOLINE,
1.82      nicm      524:        MODEKEYCOPY_HALFPAGEDOWN,
                    525:        MODEKEYCOPY_HALFPAGEUP,
1.199     nicm      526:        MODEKEYCOPY_HISTORYBOTTOM,
                    527:        MODEKEYCOPY_HISTORYTOP,
1.212     nicm      528:        MODEKEYCOPY_JUMP,
                    529:        MODEKEYCOPY_JUMPAGAIN,
                    530:        MODEKEYCOPY_JUMPREVERSE,
                    531:        MODEKEYCOPY_JUMPBACK,
1.300     nicm      532:        MODEKEYCOPY_JUMPTO,
                    533:        MODEKEYCOPY_JUMPTOBACK,
1.59      nicm      534:        MODEKEYCOPY_LEFT,
1.138     nicm      535:        MODEKEYCOPY_MIDDLELINE,
1.59      nicm      536:        MODEKEYCOPY_NEXTPAGE,
1.202     nicm      537:        MODEKEYCOPY_NEXTSPACE,
                    538:        MODEKEYCOPY_NEXTSPACEEND,
1.59      nicm      539:        MODEKEYCOPY_NEXTWORD,
1.200     nicm      540:        MODEKEYCOPY_NEXTWORDEND,
1.59      nicm      541:        MODEKEYCOPY_PREVIOUSPAGE,
1.202     nicm      542:        MODEKEYCOPY_PREVIOUSSPACE,
1.59      nicm      543:        MODEKEYCOPY_PREVIOUSWORD,
1.204     nicm      544:        MODEKEYCOPY_RECTANGLETOGGLE,
1.59      nicm      545:        MODEKEYCOPY_RIGHT,
1.120     nicm      546:        MODEKEYCOPY_SCROLLDOWN,
                    547:        MODEKEYCOPY_SCROLLUP,
1.83      nicm      548:        MODEKEYCOPY_SEARCHAGAIN,
                    549:        MODEKEYCOPY_SEARCHDOWN,
1.207     nicm      550:        MODEKEYCOPY_SEARCHREVERSE,
1.83      nicm      551:        MODEKEYCOPY_SEARCHUP,
1.285     nicm      552:        MODEKEYCOPY_SELECTLINE,
1.209     nicm      553:        MODEKEYCOPY_STARTNUMBERPREFIX,
1.59      nicm      554:        MODEKEYCOPY_STARTOFLINE,
                    555:        MODEKEYCOPY_STARTSELECTION,
1.138     nicm      556:        MODEKEYCOPY_TOPLINE,
1.59      nicm      557:        MODEKEYCOPY_UP,
1.1       nicm      558: };
                    559:
1.62      nicm      560: /* Entry in the default mode key tables. */
1.59      nicm      561: struct mode_key_entry {
                    562:        int                     key;
                    563:
                    564:        /*
                    565:         * Editing mode for vi: 0 is edit mode, keys not in the table are
                    566:         * returned as MODEKEY_OTHER; 1 is command mode, keys not in the table
                    567:         * are returned as MODEKEY_NONE. This is also matched on, allowing some
                    568:         * keys to be bound in edit mode.
                    569:         */
                    570:        int                     mode;
                    571:        enum mode_key_cmd       cmd;
                    572: };
1.62      nicm      573:
                    574: /* Data required while mode keys are in use. */
1.1       nicm      575: struct mode_key_data {
1.62      nicm      576:        struct mode_key_tree   *tree;
                    577:        int                     mode;
1.1       nicm      578: };
                    579: #define MODEKEY_EMACS 0
                    580: #define MODEKEY_VI 1
                    581:
1.62      nicm      582: /* Binding between a key and a command. */
                    583: struct mode_key_binding {
                    584:        int                     key;
                    585:
                    586:        int                     mode;
                    587:        enum mode_key_cmd       cmd;
                    588:
1.306     nicm      589:        RB_ENTRY(mode_key_binding) entry;
1.62      nicm      590: };
1.306     nicm      591: RB_HEAD(mode_key_tree, mode_key_binding);
1.62      nicm      592:
                    593: /* Command to string mapping. */
                    594: struct mode_key_cmdstr {
1.192     nicm      595:        enum mode_key_cmd        cmd;
1.62      nicm      596:        const char              *name;
                    597: };
                    598:
                    599: /* Named mode key table description. */
                    600: struct mode_key_table {
1.261     nicm      601:        const char                      *name;
                    602:        const struct mode_key_cmdstr    *cmdstr;
                    603:        struct mode_key_tree            *tree;
                    604:        const struct mode_key_entry     *table; /* default entries */
1.62      nicm      605: };
                    606:
1.1       nicm      607: /* Modes. */
                    608: #define MODE_CURSOR 0x1
                    609: #define MODE_INSERT 0x2
                    610: #define MODE_KCURSOR 0x4
1.185     nicm      611: #define MODE_KKEYPAD 0x8       /* set = application, clear = number */
1.255     nicm      612: #define MODE_WRAP 0x10         /* whether lines wrap */
                    613: #define MODE_MOUSE_STANDARD 0x20
1.266     nicm      614: #define MODE_MOUSE_BUTTON 0x40
                    615: #define MODE_MOUSE_ANY 0x80
                    616: #define MODE_MOUSE_UTF8 0x100
1.317     nicm      617: #define MODE_BRACKETPASTE 0x200
1.255     nicm      618:
1.266     nicm      619: #define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ANY)
1.1       nicm      620:
1.143     nicm      621: /*
1.181     nicm      622:  * A single UTF-8 character.
1.143     nicm      623:  *
                    624:  * The data member in this must be UTF8_SIZE to allow screen_write_copy to
                    625:  * reinject stored UTF-8 data back into screen_write_cell after combining (ugh
                    626:  * XXX XXX).
                    627:  */
                    628: struct utf8_data {
                    629:        u_char  data[UTF8_SIZE];
                    630:
                    631:        size_t  have;
                    632:        size_t  size;
                    633:
                    634:        u_int   width;
                    635: };
                    636:
1.1       nicm      637: /* Grid output. */
                    638: #if defined(DEBUG) && \
                    639:     ((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
                    640:      (defined(__GNUC__) && __GNUC__ >= 3))
1.48      nicm      641: #define GRID_DEBUG(gd, fmt, ...) log_debug2("%s: (sx=%u, sy=%u, hsize=%u) " \
1.1       nicm      642:     fmt, __func__, (gd)->sx, (gd)->sy, (gd)->hsize, ## __VA_ARGS__)
                    643: #else
                    644: #define GRID_DEBUG(...)
                    645: #endif
                    646:
                    647: /* Grid attributes. */
                    648: #define GRID_ATTR_BRIGHT 0x1
                    649: #define GRID_ATTR_DIM 0x2
                    650: #define GRID_ATTR_UNDERSCORE 0x4
                    651: #define GRID_ATTR_BLINK 0x8
                    652: #define GRID_ATTR_REVERSE 0x10
                    653: #define GRID_ATTR_HIDDEN 0x20
                    654: #define GRID_ATTR_ITALICS 0x40
                    655: #define GRID_ATTR_CHARSET 0x80 /* alternative character set */
                    656:
                    657: /* Grid flags. */
                    658: #define GRID_FLAG_FG256 0x1
                    659: #define GRID_FLAG_BG256 0x2
                    660: #define GRID_FLAG_PADDING 0x4
                    661: #define GRID_FLAG_UTF8 0x8
                    662:
1.72      nicm      663: /* Grid line flags. */
                    664: #define GRID_LINE_WRAPPED 0x1
                    665:
1.1       nicm      666: /* Grid cell data. */
                    667: struct grid_cell {
                    668:        u_char  attr;
                    669:        u_char  flags;
                    670:        u_char  fg;
                    671:        u_char  bg;
                    672:        u_char  data;
                    673: } __packed;
                    674:
                    675: /* Grid cell UTF-8 data. Used instead of data in grid_cell for UTF-8 cells. */
                    676: struct grid_utf8 {
                    677:        u_char  width;
                    678:        u_char  data[UTF8_SIZE];
                    679: } __packed;
                    680:
1.71      nicm      681: /* Grid line. */
                    682: struct grid_line {
                    683:        u_int   cellsize;
                    684:        struct grid_cell *celldata;
                    685:
                    686:        u_int   utf8size;
                    687:        struct grid_utf8 *utf8data;
1.72      nicm      688:
                    689:        int     flags;
1.71      nicm      690: } __packed;
                    691:
1.1       nicm      692: /* Entire grid of cells. */
                    693: struct grid {
1.25      nicm      694:        int     flags;
                    695: #define GRID_HISTORY 0x1       /* scroll lines into history */
                    696:
1.1       nicm      697:        u_int   sx;
                    698:        u_int   sy;
                    699:
                    700:        u_int   hsize;
                    701:        u_int   hlimit;
                    702:
1.71      nicm      703:        struct grid_line *linedata;
1.1       nicm      704: };
                    705:
                    706: /* Option data structures. */
                    707: struct options_entry {
                    708:        char            *name;
                    709:
                    710:        enum {
                    711:                OPTIONS_STRING,
                    712:                OPTIONS_NUMBER,
1.112     nicm      713:                OPTIONS_DATA,
1.1       nicm      714:        } type;
1.109     nicm      715:
                    716:        char            *str;
                    717:        long long        num;
1.1       nicm      718:
1.306     nicm      719:        RB_ENTRY(options_entry) entry;
1.1       nicm      720: };
                    721:
                    722: struct options {
1.306     nicm      723:        RB_HEAD(options_tree, options_entry) tree;
1.1       nicm      724:        struct options  *parent;
                    725: };
                    726:
1.126     nicm      727: /* Scheduled job. */
                    728: struct job {
                    729:        char            *cmd;
                    730:        pid_t            pid;
1.130     nicm      731:        int              status;
1.126     nicm      732:
                    733:        int              fd;
1.160     nicm      734:        struct bufferevent *event;
1.126     nicm      735:
                    736:        void            (*callbackfn)(struct job *);
                    737:        void            (*freefn)(void *);
                    738:        void            *data;
1.130     nicm      739:
1.270     nicm      740:        LIST_ENTRY(job)  lentry;
1.126     nicm      741: };
1.270     nicm      742: LIST_HEAD(joblist, job);
1.126     nicm      743:
1.1       nicm      744: /* Screen selection. */
                    745: struct screen_sel {
                    746:        int              flag;
1.204     nicm      747:        int              rectflag;
1.1       nicm      748:
                    749:        u_int            sx;
                    750:        u_int            sy;
                    751:
                    752:        u_int            ex;
                    753:        u_int            ey;
                    754:
                    755:        struct grid_cell cell;
                    756: };
                    757:
                    758: /* Virtual screen. */
                    759: struct screen {
                    760:        char            *title;
                    761:
1.192     nicm      762:        struct grid     *grid;          /* grid data */
1.1       nicm      763:
                    764:        u_int            cx;            /* cursor x */
                    765:        u_int            cy;            /* cursor y */
                    766:
1.288     nicm      767:        u_int            cstyle;        /* cursor style */
1.287     nicm      768:        char            *ccolour;       /* cursor colour string */
                    769:
1.1       nicm      770:        u_int            rupper;        /* scroll region top */
                    771:        u_int            rlower;        /* scroll region bottom */
                    772:
                    773:        int              mode;
                    774:
1.192     nicm      775:        bitstr_t        *tabs;
1.6       nicm      776:
1.1       nicm      777:        struct screen_sel sel;
                    778: };
                    779:
                    780: /* Screen write context. */
                    781: struct screen_write_ctx {
                    782:        struct window_pane *wp;
                    783:        struct screen   *s;
                    784: };
                    785:
                    786: /* Screen size. */
                    787: #define screen_size_x(s) ((s)->grid->sx)
                    788: #define screen_size_y(s) ((s)->grid->sy)
                    789: #define screen_hsize(s) ((s)->grid->hsize)
                    790: #define screen_hlimit(s) ((s)->grid->hlimit)
                    791:
                    792: /* Input parser context. */
                    793: struct input_ctx {
1.210     nicm      794:        struct window_pane     *wp;
1.1       nicm      795:        struct screen_write_ctx ctx;
                    796:
1.210     nicm      797:        struct grid_cell        cell;
                    798:
                    799:        struct grid_cell        old_cell;
                    800:        u_int                   old_cx;
                    801:        u_int                   old_cy;
                    802:
                    803:        u_char                  interm_buf[4];
                    804:        size_t                  interm_len;
1.1       nicm      805:
1.210     nicm      806:        u_char                  param_buf[64];
                    807:        size_t                  param_len;
1.1       nicm      808:
1.210     nicm      809:        u_char                  input_buf[256];
                    810:        size_t                  input_len;
1.1       nicm      811:
1.210     nicm      812:        int                     param_list[24]; /* -1 not present */
                    813:        u_int                   param_list_len;
1.1       nicm      814:
1.210     nicm      815:        struct utf8_data        utf8data;
1.1       nicm      816:
1.210     nicm      817:        int                     ch;
                    818:        int                     flags;
                    819: #define INPUT_DISCARD 0x1
1.1       nicm      820:
1.210     nicm      821:        const struct input_state *state;
1.329     nicm      822:
                    823:        /*
                    824:         * All input received since we were last in the ground state. Sent to
                    825:         * control clients on connection.
                    826:         */
                    827:        struct evbuffer         *since_ground;
1.1       nicm      828: };
                    829:
                    830: /*
                    831:  * Window mode. Windows can be in several modes and this is used to call the
                    832:  * right function to handle input and output.
                    833:  */
1.221     nicm      834: struct session;
1.1       nicm      835: struct window;
1.129     nicm      836: struct mouse_event;
1.1       nicm      837: struct window_mode {
                    838:        struct screen *(*init)(struct window_pane *);
                    839:        void    (*free)(struct window_pane *);
                    840:        void    (*resize)(struct window_pane *, u_int, u_int);
1.221     nicm      841:        void    (*key)(struct window_pane *, struct session *, int);
1.1       nicm      842:        void    (*mouse)(struct window_pane *,
1.221     nicm      843:                    struct session *, struct mouse_event *);
1.1       nicm      844:        void    (*timer)(struct window_pane *);
                    845: };
                    846:
                    847: /* Child window structure. */
                    848: struct window_pane {
1.274     nicm      849:        u_int            id;
                    850:
1.1       nicm      851:        struct window   *window;
1.39      nicm      852:        struct layout_cell *layout_cell;
1.1       nicm      853:
                    854:        u_int            sx;
                    855:        u_int            sy;
                    856:
                    857:        u_int            xoff;
                    858:        u_int            yoff;
                    859:
                    860:        int              flags;
1.28      nicm      861: #define PANE_REDRAW 0x1
1.325     nicm      862: #define PANE_DROP 0x2
1.1       nicm      863:
                    864:        char            *cmd;
1.93      nicm      865:        char            *shell;
1.1       nicm      866:        char            *cwd;
                    867:
                    868:        pid_t            pid;
1.159     nicm      869:        char             tty[TTY_NAME_MAX];
                    870:
1.325     nicm      871:        u_int            changes;
                    872:        struct event     changes_timer;
                    873:        u_int            changes_redraw;
                    874:
1.1       nicm      875:        int              fd;
1.163     nicm      876:        struct bufferevent *event;
1.1       nicm      877:
                    878:        struct input_ctx ictx;
                    879:
1.131     nicm      880:        int              pipe_fd;
1.162     nicm      881:        struct bufferevent *pipe_event;
1.131     nicm      882:        size_t           pipe_off;
                    883:
1.1       nicm      884:        struct screen   *screen;
                    885:        struct screen    base;
                    886:
1.25      nicm      887:        /* Saved in alternative screen mode. */
1.192     nicm      888:        u_int            saved_cx;
                    889:        u_int            saved_cy;
1.25      nicm      890:        struct grid     *saved_grid;
1.69      nicm      891:        struct grid_cell saved_cell;
1.25      nicm      892:
1.1       nicm      893:        const struct window_mode *mode;
                    894:        void            *modedata;
                    895:
                    896:        TAILQ_ENTRY(window_pane) entry;
1.274     nicm      897:        RB_ENTRY(window_pane) tree_entry;
1.1       nicm      898: };
                    899: TAILQ_HEAD(window_panes, window_pane);
1.274     nicm      900: RB_HEAD(window_pane_tree, window_pane);
1.1       nicm      901:
1.326     nicm      902: /* Window last layout. */
                    903: struct last_layout {
                    904:        char    *layout;
                    905:
                    906:        TAILQ_ENTRY(last_layout) entry;
                    907: };
                    908:
1.1       nicm      909: /* Window structure. */
                    910: struct window {
1.309     nicm      911:        u_int            id;
1.1       nicm      912:        char            *name;
1.168     nicm      913:        struct event     name_timer;
1.248     nicm      914:        struct timeval   silence_timer;
1.1       nicm      915:
                    916:        struct window_pane *active;
1.244     nicm      917:        struct window_pane *last;
1.1       nicm      918:        struct window_panes panes;
1.39      nicm      919:
1.61      nicm      920:        int              lastlayout;
1.39      nicm      921:        struct layout_cell *layout_root;
1.326     nicm      922:        TAILQ_HEAD(last_layouts, last_layout) layout_list;
                    923:        u_int            layout_list_size;
                    924:        struct last_layout *layout_list_last;
1.1       nicm      925:
                    926:        u_int            sx;
                    927:        u_int            sy;
                    928:
                    929:        int              flags;
                    930: #define WINDOW_BELL 0x1
1.247     nicm      931: #define WINDOW_ACTIVITY 0x2
                    932: #define WINDOW_REDRAW 0x4
1.248     nicm      933: #define WINDOW_SILENCE 0x8
1.1       nicm      934:
                    935:        struct options   options;
                    936:
                    937:        u_int            references;
                    938: };
                    939: ARRAY_DECL(windows, struct window *);
                    940:
                    941: /* Entry on local window list. */
                    942: struct winlink {
                    943:        int              idx;
                    944:        struct window   *window;
1.184     nicm      945:
                    946:        size_t           status_width;
                    947:        struct grid_cell status_cell;
                    948:        char            *status_text;
1.1       nicm      949:
1.226     nicm      950:        int              flags;
                    951: #define WINLINK_BELL 0x1
                    952: #define WINLINK_ACTIVITY 0x2
                    953: #define WINLINK_CONTENT 0x4
1.248     nicm      954: #define WINLINK_SILENCE 0x8
                    955: #define WINLINK_ALERTFLAGS \
                    956:     (WINLINK_BELL|WINLINK_ACTIVITY|WINLINK_CONTENT|WINLINK_SILENCE)
1.226     nicm      957:
1.1       nicm      958:        RB_ENTRY(winlink) entry;
1.124     nicm      959:        TAILQ_ENTRY(winlink) sentry;
1.1       nicm      960: };
                    961: RB_HEAD(winlinks, winlink);
1.124     nicm      962: TAILQ_HEAD(winlink_stack, winlink);
1.1       nicm      963:
1.39      nicm      964: /* Layout direction. */
                    965: enum layout_type {
                    966:        LAYOUT_LEFTRIGHT,
                    967:        LAYOUT_TOPBOTTOM,
                    968:        LAYOUT_WINDOWPANE
                    969: };
                    970:
                    971: /* Layout cells queue. */
                    972: TAILQ_HEAD(layout_cells, layout_cell);
                    973:
                    974: /* Layout cell. */
                    975: struct layout_cell {
                    976:        enum layout_type type;
                    977:
                    978:        struct layout_cell *parent;
                    979:
                    980:        u_int            sx;
                    981:        u_int            sy;
                    982:
                    983:        u_int            xoff;
                    984:        u_int            yoff;
                    985:
                    986:        struct window_pane *wp;
                    987:        struct layout_cells cells;
                    988:
                    989:        TAILQ_ENTRY(layout_cell) entry;
                    990: };
                    991:
1.1       nicm      992: /* Paste buffer. */
                    993: struct paste_buffer {
1.187     nicm      994:        char            *data;
1.100     nicm      995:        size_t           size;
1.1       nicm      996: };
                    997: ARRAY_DECL(paste_stack, struct paste_buffer *);
                    998:
1.73      nicm      999: /* Environment variable. */
                   1000: struct environ_entry {
                   1001:        char            *name;
                   1002:        char            *value;
                   1003:
                   1004:        RB_ENTRY(environ_entry) entry;
                   1005: };
                   1006: RB_HEAD(environ, environ_entry);
                   1007:
1.1       nicm     1008: /* Client session. */
1.124     nicm     1009: struct session_group {
                   1010:        TAILQ_HEAD(, session) sessions;
                   1011:
                   1012:        TAILQ_ENTRY(session_group) entry;
                   1013: };
                   1014: TAILQ_HEAD(session_groups, session_group);
                   1015:
1.1       nicm     1016: struct session {
1.254     nicm     1017:        u_int            idx;
                   1018:
1.1       nicm     1019:        char            *name;
1.230     nicm     1020:        char            *cwd;
1.156     nicm     1021:
                   1022:        struct timeval   creation_time;
                   1023:        struct timeval   activity_time;
1.1       nicm     1024:
                   1025:        u_int            sx;
                   1026:        u_int            sy;
                   1027:
                   1028:        struct winlink  *curw;
                   1029:        struct winlink_stack lastw;
                   1030:        struct winlinks  windows;
                   1031:
                   1032:        struct options   options;
                   1033:
                   1034: #define SESSION_UNATTACHED 0x1 /* not attached to any clients */
                   1035:        int              flags;
1.73      nicm     1036:
1.105     nicm     1037:        struct termios  *tio;
1.80      nicm     1038:
1.73      nicm     1039:        struct environ   environ;
1.101     nicm     1040:
                   1041:        int              references;
1.124     nicm     1042:
                   1043:        TAILQ_ENTRY(session) gentry;
1.254     nicm     1044:        RB_ENTRY(session)    entry;
1.1       nicm     1045: };
1.254     nicm     1046: RB_HEAD(sessions, session);
                   1047: ARRAY_DECL(sessionslist, struct session *);
1.1       nicm     1048:
1.336     nicm     1049: /*
                   1050:  * Mouse input. xterm mouse mode is fairly silly. Buttons are in the bottom two
                   1051:  * bits: 0 = button 1; 1 = button 2; 2 = button 3; 3 = buttons released. Bits
                   1052:  * 3, 4 and 5 are for keys. Bit 6 is set for dragging and 7 for mouse buttons 4
                   1053:  * and 5.
                   1054:  */
                   1055: struct mouse_event {
                   1056:        u_int   b;
                   1057: #define MOUSE_1 0
                   1058: #define MOUSE_2 1
                   1059: #define MOUSE_3 2
                   1060: #define MOUSE_UP 3
                   1061: #define MOUSE_BUTTON 3
                   1062: #define MOUSE_SHIFT 4
                   1063: #define MOUSE_ESCAPE 8
                   1064: #define MOUSE_CTRL 16
                   1065: #define MOUSE_DRAG 32
                   1066: #define MOUSE_45 64
                   1067: #define MOUSE_RESIZE_PANE 128 /* marker for resizing */
                   1068:        u_int   x;
                   1069:        u_int   y;
                   1070: };
                   1071:
1.1       nicm     1072: /* TTY information. */
                   1073: struct tty_key {
1.173     nicm     1074:        char             ch;
1.192     nicm     1075:        int              key;
1.1       nicm     1076:
1.173     nicm     1077:        struct tty_key  *left;
                   1078:        struct tty_key  *right;
                   1079:
                   1080:        struct tty_key  *next;
1.1       nicm     1081: };
                   1082:
                   1083: struct tty_term {
                   1084:        char            *name;
                   1085:        u_int            references;
                   1086:
1.240     nicm     1087:        char             acs[UCHAR_MAX + 1][2];
                   1088:
1.1       nicm     1089:        struct tty_code  codes[NTTYCODE];
                   1090:
1.147     nicm     1091: #define TERM_256COLOURS 0x1
                   1092: #define TERM_88COLOURS 0x2
                   1093: #define TERM_EARLYWRAP 0x4
1.1       nicm     1094:        int              flags;
                   1095:
1.270     nicm     1096:        LIST_ENTRY(tty_term) entry;
1.1       nicm     1097: };
1.270     nicm     1098: LIST_HEAD(tty_terms, tty_term);
1.1       nicm     1099:
                   1100: struct tty {
1.337     nicm     1101:        struct client   *client;
                   1102:
1.1       nicm     1103:        char            *path;
1.321     nicm     1104:        u_int            xterm_version;
1.1       nicm     1105:
1.192     nicm     1106:        u_int            sx;
                   1107:        u_int            sy;
1.1       nicm     1108:
                   1109:        u_int            cx;
                   1110:        u_int            cy;
1.288     nicm     1111:        u_int            cstyle;
1.287     nicm     1112:        char            *ccolour;
1.1       nicm     1113:
                   1114:        int              mode;
                   1115:
                   1116:        u_int            rlower;
                   1117:        u_int            rupper;
                   1118:
                   1119:        char            *termname;
                   1120:        struct tty_term *term;
                   1121:
                   1122:        int              fd;
1.161     nicm     1123:        struct bufferevent *event;
1.1       nicm     1124:
                   1125:        int              log_fd;
                   1126:
1.192     nicm     1127:        struct termios   tio;
1.1       nicm     1128:
                   1129:        struct grid_cell cell;
                   1130:
                   1131: #define TTY_NOCURSOR 0x1
                   1132: #define TTY_FREEZE 0x2
                   1133: #define TTY_ESCAPE 0x4
                   1134: #define TTY_UTF8 0x8
1.76      nicm     1135: #define TTY_STARTED 0x10
1.77      nicm     1136: #define TTY_OPENED 0x20
1.192     nicm     1137:        int              flags;
1.1       nicm     1138:
                   1139:        int              term_flags;
                   1140:
1.337     nicm     1141:        struct mouse_event mouse;
                   1142:
1.170     nicm     1143:        struct event     key_timer;
1.173     nicm     1144:        struct tty_key  *key_tree;
1.1       nicm     1145: };
                   1146:
1.47      nicm     1147: /* TTY command context and function pointer. */
                   1148: struct tty_ctx {
                   1149:        struct window_pane *wp;
                   1150:
                   1151:        const struct grid_cell *cell;
                   1152:        const struct grid_utf8 *utf8;
                   1153:
1.49      nicm     1154:        u_int            num;
1.196     nicm     1155:        void            *ptr;
1.49      nicm     1156:
1.196     nicm     1157:        /*
1.49      nicm     1158:         * Cursor and region position before the screen was updated - this is
                   1159:         * where the command should be applied; the values in the screen have
                   1160:         * already been updated.
                   1161:         */
                   1162:        u_int            ocx;
                   1163:        u_int            ocy;
                   1164:
                   1165:        u_int            orupper;
                   1166:        u_int            orlower;
1.140     nicm     1167:
1.308     nicm     1168:        u_int            xoff;
                   1169:        u_int            yoff;
                   1170:
1.140     nicm     1171:        /* Saved last cell on line. */
                   1172:        struct grid_cell last_cell;
                   1173:        struct grid_utf8 last_utf8;
                   1174:        u_int            last_width;
1.47      nicm     1175: };
                   1176:
1.180     nicm     1177: /* Saved message entry. */
                   1178: struct message_entry {
                   1179:        char   *msg;
                   1180:        time_t  msg_time;
                   1181: };
                   1182:
1.271     nicm     1183: /* Status output data from a job. */
                   1184: struct status_out {
                   1185:        char   *cmd;
                   1186:        char   *out;
                   1187:
                   1188:        RB_ENTRY(status_out) entry;
                   1189: };
                   1190: RB_HEAD(status_out_tree, status_out);
                   1191:
1.1       nicm     1192: /* Client connection. */
                   1193: struct client {
1.75      nicm     1194:        struct imsgbuf   ibuf;
1.159     nicm     1195:        struct event     event;
1.234     nicm     1196:        int              retcode;
1.156     nicm     1197:
                   1198:        struct timeval   creation_time;
1.158     nicm     1199:        struct timeval   activity_time;
1.1       nicm     1200:
1.73      nicm     1201:        struct environ   environ;
                   1202:
1.1       nicm     1203:        char            *title;
                   1204:        char            *cwd;
                   1205:
1.192     nicm     1206:        struct tty       tty;
1.236     nicm     1207:
1.332     nicm     1208:        void            (*stdin_callback)(struct client *, int, void *);
                   1209:        void            *stdin_callback_data;
                   1210:        struct evbuffer *stdin_data;
                   1211:        int              stdin_closed;
                   1212:        struct evbuffer *stdout_data;
                   1213:        struct evbuffer *stderr_data;
1.231     nicm     1214:
1.169     nicm     1215:        struct event     repeat_timer;
1.1       nicm     1216:
1.271     nicm     1217:        struct status_out_tree status_old;
                   1218:        struct status_out_tree status_new;
1.126     nicm     1219:        struct timeval   status_timer;
1.1       nicm     1220:        struct screen    status;
                   1221:
                   1222: #define CLIENT_TERMINAL 0x1
                   1223: #define CLIENT_PREFIX 0x2
1.236     nicm     1224: #define CLIENT_EXIT 0x4
1.1       nicm     1225: #define CLIENT_REDRAW 0x8
                   1226: #define CLIENT_STATUS 0x10
1.336     nicm     1227: #define CLIENT_REPEAT 0x20 /* allow command to repeat within repeat time */
1.1       nicm     1228: #define CLIENT_SUSPENDED 0x40
1.70      nicm     1229: #define CLIENT_BAD 0x80
1.92      nicm     1230: #define CLIENT_IDENTIFY 0x100
1.101     nicm     1231: #define CLIENT_DEAD 0x200
1.197     nicm     1232: #define CLIENT_BORDERS 0x400
1.205     nicm     1233: #define CLIENT_READONLY 0x800
1.307     nicm     1234: #define CLIENT_REDRAWWINDOW 0x1000
1.1       nicm     1235:        int              flags;
                   1236:
1.166     nicm     1237:        struct event     identify_timer;
1.92      nicm     1238:
1.1       nicm     1239:        char            *message_string;
1.166     nicm     1240:        struct event     message_timer;
1.180     nicm     1241:        ARRAY_DECL(, struct message_entry) message_log;
1.1       nicm     1242:
                   1243:        char            *prompt_string;
                   1244:        char            *prompt_buffer;
                   1245:        size_t           prompt_index;
1.33      nicm     1246:        int              (*prompt_callbackfn)(void *, const char *);
                   1247:        void             (*prompt_freefn)(void *);
1.1       nicm     1248:        void            *prompt_data;
1.249     nicm     1249:        u_int            prompt_hindex;
1.1       nicm     1250:
1.117     nicm     1251: #define PROMPT_SINGLE 0x1
1.1       nicm     1252:        int              prompt_flags;
                   1253:
                   1254:        struct mode_key_data prompt_mdata;
                   1255:
                   1256:        struct session  *session;
1.252     nicm     1257:        struct session  *last_session;
1.101     nicm     1258:
1.284     nicm     1259:        struct mouse_event last_mouse;
1.316     nicm     1260:
                   1261:        int              wlmouse;
1.284     nicm     1262:
1.101     nicm     1263:        int              references;
1.1       nicm     1264: };
                   1265: ARRAY_DECL(clients, struct client *);
                   1266:
1.264     nicm     1267: /* Parsed arguments. */
                   1268: struct args {
                   1269:        bitstr_t        *flags;
                   1270:        char            *values[SCHAR_MAX]; /* XXX This is awfully big. */
                   1271:
                   1272:        int              argc;
                   1273:        char           **argv;
                   1274: };
                   1275:
1.1       nicm     1276: /* Key/command line command. */
                   1277: struct cmd_ctx {
1.35      nicm     1278:        /*
                   1279:         * curclient is the client where this command was executed if inside
                   1280:         * tmux. This is NULL if the command came from the command-line.
                   1281:         *
                   1282:         * cmdclient is the client which sent the MSG_COMMAND to the server, if
                   1283:         * any. This is NULL unless the command came from the command-line.
                   1284:         *
1.52      nicm     1285:         * cmdclient and curclient may both be NULL if the command is in the
                   1286:         * configuration file.
1.35      nicm     1287:         */
1.1       nicm     1288:        struct client  *curclient;
1.54      nicm     1289:        struct client  *cmdclient;
1.35      nicm     1290:
1.1       nicm     1291:        struct msg_command_data *msgdata;
                   1292:
1.90      nicm     1293:        /* gcc2 doesn't understand attributes on function pointers... */
                   1294: #if defined(__GNUC__) && __GNUC__ >= 3
1.85      nicm     1295:        void printflike2 (*print)(struct cmd_ctx *, const char *, ...);
                   1296:        void printflike2 (*info)(struct cmd_ctx *, const char *, ...);
                   1297:        void printflike2 (*error)(struct cmd_ctx *, const char *, ...);
1.90      nicm     1298: #else
                   1299:        void (*print)(struct cmd_ctx *, const char *, ...);
                   1300:        void (*info)(struct cmd_ctx *, const char *, ...);
                   1301:        void (*error)(struct cmd_ctx *, const char *, ...);
                   1302: #endif
1.1       nicm     1303: };
                   1304:
                   1305: struct cmd {
1.264     nicm     1306:        const struct cmd_entry  *entry;
                   1307:        struct args             *args;
1.1       nicm     1308:
1.264     nicm     1309:        TAILQ_ENTRY(cmd)         qentry;
1.1       nicm     1310: };
1.229     nicm     1311: struct cmd_list {
1.264     nicm     1312:        int                      references;
                   1313:        TAILQ_HEAD(, cmd)        list;
1.229     nicm     1314: };
1.1       nicm     1315:
                   1316: struct cmd_entry {
                   1317:        const char      *name;
                   1318:        const char      *alias;
1.264     nicm     1319:
                   1320:        const char      *args_template;
                   1321:        int              args_lower;
                   1322:        int              args_upper;
                   1323:
1.1       nicm     1324:        const char      *usage;
                   1325:
                   1326: #define CMD_STARTSERVER 0x1
                   1327: #define CMD_CANTNEST 0x2
1.74      nicm     1328: #define CMD_SENDENVIRON 0x4
1.264     nicm     1329: #define CMD_READONLY 0x8
1.27      nicm     1330:        int              flags;
1.1       nicm     1331:
1.264     nicm     1332:        void             (*key_binding)(struct cmd *, int);
                   1333:        int              (*check)(struct args *);
1.1       nicm     1334:        int              (*exec)(struct cmd *, struct cmd_ctx *);
                   1335: };
                   1336:
                   1337: /* Key binding. */
                   1338: struct key_binding {
                   1339:        int              key;
                   1340:        struct cmd_list *cmdlist;
                   1341:        int              can_repeat;
                   1342:
1.306     nicm     1343:        RB_ENTRY(key_binding) entry;
1.1       nicm     1344: };
1.306     nicm     1345: RB_HEAD(key_bindings, key_binding);
1.1       nicm     1346:
1.262     nicm     1347: /*
                   1348:  * Option table entries. The option table is the user-visible part of the
                   1349:  * option, as opposed to the internal options (struct option) which are just
                   1350:  * number or string.
                   1351:  */
                   1352: enum options_table_type {
                   1353:        OPTIONS_TABLE_STRING,
                   1354:        OPTIONS_TABLE_NUMBER,
1.305     nicm     1355:        OPTIONS_TABLE_KEY,
1.262     nicm     1356:        OPTIONS_TABLE_COLOUR,
                   1357:        OPTIONS_TABLE_ATTRIBUTES,
                   1358:        OPTIONS_TABLE_FLAG,
                   1359:        OPTIONS_TABLE_CHOICE
                   1360: };
                   1361:
                   1362: struct options_table_entry {
                   1363:        const char             *name;
                   1364:        enum options_table_type type;
1.1       nicm     1365:
1.262     nicm     1366:        u_int                   minimum;
                   1367:        u_int                   maximum;
                   1368:        const char            **choices;
1.1       nicm     1369:
1.262     nicm     1370:        const char             *default_str;
                   1371:        long long               default_num;
1.1       nicm     1372: };
                   1373:
1.294     nicm     1374: /* Tree of format entries. */
                   1375: struct format_entry {
                   1376:        char                   *key;
                   1377:        char                   *value;
                   1378:
                   1379:        RB_ENTRY(format_entry)  entry;
                   1380: };
                   1381: RB_HEAD(format_tree, format_entry);
                   1382:
1.206     nicm     1383: /* List of configuration causes. */
                   1384: ARRAY_DECL(causelist, char *);
                   1385:
1.264     nicm     1386: /* Common command usages. */
                   1387: #define CMD_TARGET_PANE_USAGE "[-t target-pane]"
                   1388: #define CMD_TARGET_WINDOW_USAGE "[-t target-window]"
                   1389: #define CMD_TARGET_SESSION_USAGE "[-t target-session]"
                   1390: #define CMD_TARGET_CLIENT_USAGE "[-t target-client]"
                   1391: #define CMD_SRCDST_PANE_USAGE "[-s src-pane] [-t dst-pane]"
                   1392: #define CMD_SRCDST_WINDOW_USAGE "[-s src-window] [-t dst-window]"
                   1393: #define CMD_SRCDST_SESSION_USAGE "[-s src-session] [-t dst-session]"
                   1394: #define CMD_SRCDST_CLIENT_USAGE "[-s src-client] [-t dst-client]"
                   1395: #define CMD_BUFFER_USAGE "[-b buffer-index]"
                   1396:
1.1       nicm     1397: /* tmux.c */
1.194     nicm     1398: extern struct options global_options;
1.16      nicm     1399: extern struct options global_s_options;
                   1400: extern struct options global_w_options;
1.73      nicm     1401: extern struct environ global_environ;
1.219     nicm     1402: extern struct event_base *ev_base;
1.1       nicm     1403: extern char    *cfg_file;
1.243     nicm     1404: extern char    *shell_cmd;
1.1       nicm     1405: extern int      debug_level;
                   1406: extern time_t   start_time;
1.243     nicm     1407: extern char     socket_path[MAXPATHLEN];
1.96      nicm     1408: extern int      login_shell;
1.243     nicm     1409: extern char    *environ_path;
                   1410: extern pid_t    environ_pid;
1.267     nicm     1411: extern int      environ_idx;
1.1       nicm     1412: void            logfile(const char *);
1.93      nicm     1413: const char     *getshell(void);
                   1414: int             checkshell(const char *);
                   1415: int             areshell(const char *);
1.296     nicm     1416: const char*     get_full_path(const char *, const char *);
1.265     nicm     1417: void            setblocking(int, int);
1.243     nicm     1418: __dead void     shell_exec(const char *, const char *);
1.1       nicm     1419:
                   1420: /* cfg.c */
1.203     nicm     1421: extern int       cfg_finished;
1.246     nicm     1422: extern struct causelist cfg_causes;
1.206     nicm     1423: void printflike2 cfg_add_cause(struct causelist *, const char *, ...);
                   1424: int             load_cfg(const char *, struct cmd_ctx *, struct causelist *);
1.294     nicm     1425:
                   1426: /* format.c */
                   1427: int             format_cmp(struct format_entry *, struct format_entry *);
                   1428: RB_PROTOTYPE(format_tree, format_entry, entry, format_cmp);
                   1429: struct format_tree *format_create(void);
                   1430: void            format_free(struct format_tree *);
1.314     nicm     1431: void printflike3 format_add(
1.294     nicm     1432:                     struct format_tree *, const char *, const char *, ...);
                   1433: const char     *format_find(struct format_tree *, const char *);
                   1434: char           *format_expand(struct format_tree *, const char *);
                   1435: void            format_session(struct format_tree *, struct session *);
1.295     nicm     1436: void            format_client(struct format_tree *, struct client *);
1.294     nicm     1437: void            format_winlink(
                   1438:                     struct format_tree *, struct session *, struct winlink *);
                   1439: void            format_window_pane(struct format_tree *, struct window_pane *);
1.335     nicm     1440: void            format_paste_buffer(struct format_tree *, struct paste_buffer *);
1.1       nicm     1441:
                   1442: /* mode-key.c */
1.62      nicm     1443: extern const struct mode_key_table mode_key_tables[];
                   1444: extern struct mode_key_tree mode_key_tree_vi_edit;
                   1445: extern struct mode_key_tree mode_key_tree_vi_choice;
                   1446: extern struct mode_key_tree mode_key_tree_vi_copy;
                   1447: extern struct mode_key_tree mode_key_tree_emacs_edit;
                   1448: extern struct mode_key_tree mode_key_tree_emacs_choice;
                   1449: extern struct mode_key_tree mode_key_tree_emacs_copy;
                   1450: int    mode_key_cmp(struct mode_key_binding *, struct mode_key_binding *);
1.306     nicm     1451: RB_PROTOTYPE(mode_key_tree, mode_key_binding, entry, mode_key_cmp);
1.261     nicm     1452: const char *mode_key_tostring(const struct mode_key_cmdstr *,
                   1453:            enum mode_key_cmd);
                   1454: enum mode_key_cmd mode_key_fromstring(const struct mode_key_cmdstr *,
                   1455:            const char *);
1.63      nicm     1456: const struct mode_key_table *mode_key_findtable(const char *);
1.62      nicm     1457: void   mode_key_init_trees(void);
                   1458: void   mode_key_init(struct mode_key_data *, struct mode_key_tree *);
1.1       nicm     1459: enum mode_key_cmd mode_key_lookup(struct mode_key_data *, int);
1.323     nicm     1460:
                   1461: /* notify.c */
                   1462: void   notify_window_layout_changed(struct window *);
                   1463: void   notify_window_unlinked(struct session *, struct window *);
                   1464: void   notify_window_linked(struct session *, struct window *);
                   1465: void   notify_window_renamed(struct window *);
                   1466: void   notify_attached_session_changed(struct client *);
                   1467: void   notify_session_renamed(struct session *);
                   1468: void   notify_session_created(struct session *);
                   1469: void   notify_session_closed(struct session *);
1.1       nicm     1470:
                   1471: /* options.c */
                   1472: int    options_cmp(struct options_entry *, struct options_entry *);
1.306     nicm     1473: RB_PROTOTYPE(options_tree, options_entry, entry, options_cmp);
1.1       nicm     1474: void   options_init(struct options *, struct options *);
                   1475: void   options_free(struct options *);
                   1476: struct options_entry *options_find1(struct options *, const char *);
                   1477: struct options_entry *options_find(struct options *, const char *);
1.44      nicm     1478: void   options_remove(struct options *, const char *);
1.111     nicm     1479: struct options_entry *printflike3 options_set_string(
1.192     nicm     1480:            struct options *, const char *, const char *, ...);
1.1       nicm     1481: char   *options_get_string(struct options *, const char *);
1.111     nicm     1482: struct options_entry *options_set_number(
1.192     nicm     1483:            struct options *, const char *, long long);
1.1       nicm     1484: long long options_get_number(struct options *, const char *);
                   1485:
1.262     nicm     1486: /* options-table.c */
                   1487: extern const struct options_table_entry server_options_table[];
                   1488: extern const struct options_table_entry session_options_table[];
                   1489: extern const struct options_table_entry window_options_table[];
                   1490: void   options_table_populate_tree(
                   1491:            const struct options_table_entry *, struct options *);
                   1492: const char *options_table_print_entry(
                   1493:            const struct options_table_entry *, struct options_entry *);
1.313     nicm     1494: int    options_table_find(
                   1495:            const char *, const struct options_table_entry **,
                   1496:            const struct options_table_entry **);
1.262     nicm     1497:
1.126     nicm     1498: /* job.c */
1.128     nicm     1499: extern struct joblist all_jobs;
1.271     nicm     1500: struct job *job_run(
1.126     nicm     1501:            const char *, void (*)(struct job *), void (*)(void *), void *);
                   1502: void   job_free(struct job *);
1.160     nicm     1503: void   job_died(struct job *, int);
1.126     nicm     1504:
1.73      nicm     1505: /* environ.c */
                   1506: int    environ_cmp(struct environ_entry *, struct environ_entry *);
                   1507: RB_PROTOTYPE(environ, environ_entry, entry, environ_cmp);
                   1508: void   environ_init(struct environ *);
                   1509: void   environ_free(struct environ *);
                   1510: void   environ_copy(struct environ *, struct environ *);
                   1511: struct environ_entry *environ_find(struct environ *, const char *);
                   1512: void   environ_set(struct environ *, const char *, const char *);
                   1513: void   environ_put(struct environ *, const char *);
                   1514: void   environ_unset(struct environ *, const char *);
1.192     nicm     1515: void   environ_update(const char *, struct environ *, struct environ *);
1.215     nicm     1516: void   environ_push(struct environ *);
1.73      nicm     1517:
1.1       nicm     1518: /* tty.c */
1.322     nicm     1519: void   tty_init_termios(int, struct termios *, struct bufferevent *);
1.115     nicm     1520: void   tty_raw(struct tty *, const char *);
1.92      nicm     1521: void   tty_attributes(struct tty *, const struct grid_cell *);
1.47      nicm     1522: void   tty_reset(struct tty *);
1.132     nicm     1523: void   tty_region_pane(struct tty *, const struct tty_ctx *, u_int, u_int);
1.133     nicm     1524: void   tty_region(struct tty *, u_int, u_int);
1.134     nicm     1525: void   tty_cursor_pane(struct tty *, const struct tty_ctx *, u_int, u_int);
                   1526: void   tty_cursor(struct tty *, u_int, u_int);
1.47      nicm     1527: void   tty_putcode(struct tty *, enum tty_code_code);
                   1528: void   tty_putcode1(struct tty *, enum tty_code_code, int);
                   1529: void   tty_putcode2(struct tty *, enum tty_code_code, int, int);
1.287     nicm     1530: void   tty_putcode_ptr1(struct tty *, enum tty_code_code, const void *);
1.286     nicm     1531: void   tty_putcode_ptr2(struct tty *, enum tty_code_code, const void *, const void *);
1.47      nicm     1532: void   tty_puts(struct tty *, const char *);
                   1533: void   tty_putc(struct tty *, u_char);
                   1534: void   tty_pututf8(struct tty *, const struct grid_utf8 *);
1.337     nicm     1535: void   tty_init(struct tty *, struct client *, int, char *);
1.224     nicm     1536: int    tty_resize(struct tty *);
1.324     nicm     1537: int    tty_set_size(struct tty *, u_int, u_int);
1.47      nicm     1538: void   tty_start_tty(struct tty *);
1.324     nicm     1539: void   tty_set_version(struct tty *, u_int);
1.47      nicm     1540: void   tty_stop_tty(struct tty *);
                   1541: void   tty_set_title(struct tty *, const char *);
1.287     nicm     1542: void   tty_update_mode(struct tty *, int, struct screen *);
                   1543: void   tty_force_cursor_colour(struct tty *, const char *);
1.47      nicm     1544: void   tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int);
1.67      nicm     1545: int    tty_open(struct tty *, const char *, char **);
1.76      nicm     1546: void   tty_close(struct tty *);
                   1547: void   tty_free(struct tty *);
1.308     nicm     1548: void   tty_write(
                   1549:            void (*)(struct tty *, const struct tty_ctx *), struct tty_ctx *);
1.79      nicm     1550: void   tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);
                   1551: void   tty_cmd_cell(struct tty *, const struct tty_ctx *);
                   1552: void   tty_cmd_clearendofline(struct tty *, const struct tty_ctx *);
                   1553: void   tty_cmd_clearendofscreen(struct tty *, const struct tty_ctx *);
                   1554: void   tty_cmd_clearline(struct tty *, const struct tty_ctx *);
                   1555: void   tty_cmd_clearscreen(struct tty *, const struct tty_ctx *);
                   1556: void   tty_cmd_clearstartofline(struct tty *, const struct tty_ctx *);
                   1557: void   tty_cmd_clearstartofscreen(struct tty *, const struct tty_ctx *);
                   1558: void   tty_cmd_deletecharacter(struct tty *, const struct tty_ctx *);
                   1559: void   tty_cmd_deleteline(struct tty *, const struct tty_ctx *);
1.282     nicm     1560: void   tty_cmd_erasecharacter(struct tty *, const struct tty_ctx *);
1.79      nicm     1561: void   tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);
                   1562: void   tty_cmd_insertline(struct tty *, const struct tty_ctx *);
                   1563: void   tty_cmd_linefeed(struct tty *, const struct tty_ctx *);
                   1564: void   tty_cmd_utf8character(struct tty *, const struct tty_ctx *);
                   1565: void   tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);
1.286     nicm     1566: void   tty_cmd_setselection(struct tty *, const struct tty_ctx *);
1.273     nicm     1567: void   tty_cmd_rawstring(struct tty *, const struct tty_ctx *);
1.293     nicm     1568: void   tty_bell(struct tty *);
1.1       nicm     1569:
                   1570: /* tty-term.c */
                   1571: extern struct tty_terms tty_terms;
1.260     nicm     1572: extern const struct tty_term_code_entry tty_term_codes[NTTYCODE];
1.67      nicm     1573: struct tty_term *tty_term_find(char *, int, const char *, char **);
1.192     nicm     1574: void            tty_term_free(struct tty_term *);
1.1       nicm     1575: int             tty_term_has(struct tty_term *, enum tty_code_code);
                   1576: const char     *tty_term_string(struct tty_term *, enum tty_code_code);
                   1577: const char     *tty_term_string1(struct tty_term *, enum tty_code_code, int);
                   1578: const char     *tty_term_string2(
1.192     nicm     1579:                     struct tty_term *, enum tty_code_code, int, int);
1.287     nicm     1580: const char     *tty_term_ptr1(
                   1581:                     struct tty_term *, enum tty_code_code, const void *);
1.286     nicm     1582: const char     *tty_term_ptr2(
                   1583:                     struct tty_term *, enum tty_code_code, const void *, const void *);
1.1       nicm     1584: int             tty_term_number(struct tty_term *, enum tty_code_code);
                   1585: int             tty_term_flag(struct tty_term *, enum tty_code_code);
1.240     nicm     1586:
                   1587: /* tty-acs.c */
                   1588: const char     *tty_acs_get(struct tty *, u_char);
1.1       nicm     1589:
                   1590: /* tty-keys.c */
1.47      nicm     1591: void   tty_keys_init(struct tty *);
                   1592: void   tty_keys_free(struct tty *);
1.170     nicm     1593: int    tty_keys_next(struct tty *);
1.1       nicm     1594:
                   1595: /* paste.c */
1.276     nicm     1596: struct paste_buffer *paste_walk_stack(struct paste_stack *, u_int *);
1.1       nicm     1597: struct paste_buffer *paste_get_top(struct paste_stack *);
                   1598: struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
1.192     nicm     1599: int             paste_free_top(struct paste_stack *);
1.1       nicm     1600: int             paste_free_index(struct paste_stack *, u_int);
1.187     nicm     1601: void            paste_add(struct paste_stack *, char *, size_t, u_int);
                   1602: int             paste_replace(struct paste_stack *, u_int, char *, size_t);
1.228     nicm     1603: char           *paste_print(struct paste_buffer *, size_t);
1.1       nicm     1604:
                   1605: /* clock.c */
1.92      nicm     1606: extern const char clock_table[14][5][5];
1.188     nicm     1607: void            clock_draw(struct screen_write_ctx *, int, int);
1.1       nicm     1608:
1.264     nicm     1609: /* arguments.c */
                   1610: struct args    *args_create(int, ...);
                   1611: struct args    *args_parse(const char *, int, char **);
                   1612: void            args_free(struct args *);
                   1613: size_t          args_print(struct args *, char *, size_t);
                   1614: int             args_has(struct args *, u_char);
                   1615: void            args_set(struct args *, u_char, const char *);
                   1616: const char     *args_get(struct args *, u_char);
                   1617: long long       args_strtonum(
                   1618:                    struct args *, u_char, long long, long long, char **);
                   1619:
1.1       nicm     1620: /* cmd.c */
1.55      nicm     1621: int             cmd_pack_argv(int, char **, char *, size_t);
                   1622: int             cmd_unpack_argv(char *, size_t, int, char ***);
1.264     nicm     1623: char          **cmd_copy_argv(int, char *const *);
1.55      nicm     1624: void            cmd_free_argv(int, char **);
1.1       nicm     1625: struct cmd     *cmd_parse(int, char **, char **);
                   1626: int             cmd_exec(struct cmd *, struct cmd_ctx *);
                   1627: void            cmd_free(struct cmd *);
                   1628: size_t          cmd_print(struct cmd *, char *, size_t);
1.278     nicm     1629: struct session *cmd_current_session(struct cmd_ctx *, int);
1.157     nicm     1630: struct client  *cmd_current_client(struct cmd_ctx *);
1.1       nicm     1631: struct client  *cmd_find_client(struct cmd_ctx *, const char *);
1.278     nicm     1632: struct session *cmd_find_session(struct cmd_ctx *, const char *, int);
1.1       nicm     1633: struct winlink *cmd_find_window(
1.26      nicm     1634:                     struct cmd_ctx *, const char *, struct session **);
                   1635: int             cmd_find_index(
                   1636:                     struct cmd_ctx *, const char *, struct session **);
1.65      nicm     1637: struct winlink *cmd_find_pane(struct cmd_ctx *,
                   1638:                     const char *, struct session **, struct window_pane **);
1.91      nicm     1639: char           *cmd_template_replace(char *, const char *, int);
1.310     nicm     1640: const char             *cmd_get_default_path(struct cmd_ctx *, const char *);
1.1       nicm     1641: extern const struct cmd_entry *cmd_table[];
                   1642: extern const struct cmd_entry cmd_attach_session_entry;
                   1643: extern const struct cmd_entry cmd_bind_key_entry;
                   1644: extern const struct cmd_entry cmd_break_pane_entry;
1.190     nicm     1645: extern const struct cmd_entry cmd_capture_pane_entry;
1.228     nicm     1646: extern const struct cmd_entry cmd_choose_buffer_entry;
1.91      nicm     1647: extern const struct cmd_entry cmd_choose_client_entry;
1.1       nicm     1648: extern const struct cmd_entry cmd_choose_session_entry;
                   1649: extern const struct cmd_entry cmd_choose_window_entry;
                   1650: extern const struct cmd_entry cmd_clear_history_entry;
                   1651: extern const struct cmd_entry cmd_clock_mode_entry;
                   1652: extern const struct cmd_entry cmd_command_prompt_entry;
                   1653: extern const struct cmd_entry cmd_confirm_before_entry;
                   1654: extern const struct cmd_entry cmd_copy_mode_entry;
                   1655: extern const struct cmd_entry cmd_delete_buffer_entry;
                   1656: extern const struct cmd_entry cmd_detach_client_entry;
1.36      nicm     1657: extern const struct cmd_entry cmd_display_message_entry;
1.92      nicm     1658: extern const struct cmd_entry cmd_display_panes_entry;
1.1       nicm     1659: extern const struct cmd_entry cmd_down_pane_entry;
                   1660: extern const struct cmd_entry cmd_find_window_entry;
                   1661: extern const struct cmd_entry cmd_has_session_entry;
1.19      nicm     1662: extern const struct cmd_entry cmd_if_shell_entry;
1.198     nicm     1663: extern const struct cmd_entry cmd_join_pane_entry;
1.1       nicm     1664: extern const struct cmd_entry cmd_kill_pane_entry;
                   1665: extern const struct cmd_entry cmd_kill_server_entry;
                   1666: extern const struct cmd_entry cmd_kill_session_entry;
                   1667: extern const struct cmd_entry cmd_kill_window_entry;
1.244     nicm     1668: extern const struct cmd_entry cmd_last_pane_entry;
1.1       nicm     1669: extern const struct cmd_entry cmd_last_window_entry;
                   1670: extern const struct cmd_entry cmd_link_window_entry;
                   1671: extern const struct cmd_entry cmd_list_buffers_entry;
                   1672: extern const struct cmd_entry cmd_list_clients_entry;
                   1673: extern const struct cmd_entry cmd_list_commands_entry;
                   1674: extern const struct cmd_entry cmd_list_keys_entry;
1.127     nicm     1675: extern const struct cmd_entry cmd_list_panes_entry;
1.1       nicm     1676: extern const struct cmd_entry cmd_list_sessions_entry;
                   1677: extern const struct cmd_entry cmd_list_windows_entry;
                   1678: extern const struct cmd_entry cmd_load_buffer_entry;
1.118     nicm     1679: extern const struct cmd_entry cmd_lock_client_entry;
1.1       nicm     1680: extern const struct cmd_entry cmd_lock_server_entry;
1.118     nicm     1681: extern const struct cmd_entry cmd_lock_session_entry;
1.315     nicm     1682: extern const struct cmd_entry cmd_move_pane_entry;
1.1       nicm     1683: extern const struct cmd_entry cmd_move_window_entry;
                   1684: extern const struct cmd_entry cmd_new_session_entry;
                   1685: extern const struct cmd_entry cmd_new_window_entry;
                   1686: extern const struct cmd_entry cmd_next_layout_entry;
                   1687: extern const struct cmd_entry cmd_next_window_entry;
                   1688: extern const struct cmd_entry cmd_paste_buffer_entry;
1.131     nicm     1689: extern const struct cmd_entry cmd_pipe_pane_entry;
1.1       nicm     1690: extern const struct cmd_entry cmd_previous_layout_entry;
                   1691: extern const struct cmd_entry cmd_previous_window_entry;
                   1692: extern const struct cmd_entry cmd_refresh_client_entry;
                   1693: extern const struct cmd_entry cmd_rename_session_entry;
                   1694: extern const struct cmd_entry cmd_rename_window_entry;
                   1695: extern const struct cmd_entry cmd_resize_pane_entry;
1.290     nicm     1696: extern const struct cmd_entry cmd_respawn_pane_entry;
1.1       nicm     1697: extern const struct cmd_entry cmd_respawn_window_entry;
                   1698: extern const struct cmd_entry cmd_rotate_window_entry;
1.107     nicm     1699: extern const struct cmd_entry cmd_run_shell_entry;
1.1       nicm     1700: extern const struct cmd_entry cmd_save_buffer_entry;
                   1701: extern const struct cmd_entry cmd_select_layout_entry;
                   1702: extern const struct cmd_entry cmd_select_pane_entry;
                   1703: extern const struct cmd_entry cmd_select_window_entry;
                   1704: extern const struct cmd_entry cmd_send_keys_entry;
                   1705: extern const struct cmd_entry cmd_send_prefix_entry;
                   1706: extern const struct cmd_entry cmd_server_info_entry;
                   1707: extern const struct cmd_entry cmd_set_buffer_entry;
1.73      nicm     1708: extern const struct cmd_entry cmd_set_environment_entry;
1.1       nicm     1709: extern const struct cmd_entry cmd_set_option_entry;
                   1710: extern const struct cmd_entry cmd_set_window_option_entry;
                   1711: extern const struct cmd_entry cmd_show_buffer_entry;
1.73      nicm     1712: extern const struct cmd_entry cmd_show_environment_entry;
1.180     nicm     1713: extern const struct cmd_entry cmd_show_messages_entry;
1.1       nicm     1714: extern const struct cmd_entry cmd_show_options_entry;
                   1715: extern const struct cmd_entry cmd_show_window_options_entry;
                   1716: extern const struct cmd_entry cmd_source_file_entry;
                   1717: extern const struct cmd_entry cmd_split_window_entry;
                   1718: extern const struct cmd_entry cmd_start_server_entry;
                   1719: extern const struct cmd_entry cmd_suspend_client_entry;
                   1720: extern const struct cmd_entry cmd_swap_pane_entry;
                   1721: extern const struct cmd_entry cmd_swap_window_entry;
                   1722: extern const struct cmd_entry cmd_switch_client_entry;
                   1723: extern const struct cmd_entry cmd_unbind_key_entry;
                   1724: extern const struct cmd_entry cmd_unlink_window_entry;
                   1725: extern const struct cmd_entry cmd_up_pane_entry;
                   1726:
                   1727: /* cmd-list.c */
                   1728: struct cmd_list        *cmd_list_parse(int, char **, char **);
                   1729: int             cmd_list_exec(struct cmd_list *, struct cmd_ctx *);
                   1730: void            cmd_list_free(struct cmd_list *);
                   1731: size_t          cmd_list_print(struct cmd_list *, char *, size_t);
                   1732:
                   1733: /* cmd-string.c */
                   1734: int    cmd_string_parse(const char *, struct cmd_list **, char **);
                   1735:
                   1736: /* client.c */
1.243     nicm     1737: int    client_main(int, char **, int);
1.1       nicm     1738:
                   1739: /* key-bindings.c */
                   1740: extern struct key_bindings key_bindings;
                   1741: int     key_bindings_cmp(struct key_binding *, struct key_binding *);
1.306     nicm     1742: RB_PROTOTYPE(key_bindings, key_binding, entry, key_bindings_cmp);
1.1       nicm     1743: struct key_binding *key_bindings_lookup(int);
                   1744: void    key_bindings_add(int, int, struct cmd_list *);
                   1745: void    key_bindings_remove(int);
1.24      nicm     1746: void    key_bindings_clean(void);
1.1       nicm     1747: void    key_bindings_init(void);
                   1748: void    key_bindings_dispatch(struct key_binding *, struct client *);
                   1749: void printflike2 key_bindings_error(struct cmd_ctx *, const char *, ...);
                   1750: void printflike2 key_bindings_print(struct cmd_ctx *, const char *, ...);
                   1751: void printflike2 key_bindings_info(struct cmd_ctx *, const char *, ...);
                   1752:
                   1753: /* key-string.c */
                   1754: int     key_string_lookup_string(const char *);
                   1755: const char *key_string_lookup_key(int);
                   1756:
                   1757: /* server.c */
                   1758: extern struct clients clients;
1.101     nicm     1759: extern struct clients dead_clients;
1.257     nicm     1760: extern struct paste_stack global_buffers;
1.319     nicm     1761: int     server_start(int, char *);
1.175     nicm     1762: void    server_update_socket(void);
1.328     nicm     1763: void    server_add_accept(int);
1.1       nicm     1764:
1.146     nicm     1765: /* server-client.c */
1.337     nicm     1766: void    server_client_handle_key(struct client *, int);
1.146     nicm     1767: void    server_client_create(int);
1.331     nicm     1768: int      server_client_open(struct client *, struct session *, char **);
1.146     nicm     1769: void    server_client_lost(struct client *);
1.159     nicm     1770: void    server_client_callback(int, short, void *);
1.167     nicm     1771: void    server_client_status_timer(void);
1.146     nicm     1772: void    server_client_loop(void);
                   1773:
                   1774: /* server-window.c */
                   1775: void    server_window_loop(void);
1.1       nicm     1776:
                   1777: /* server-fn.c */
1.73      nicm     1778: void    server_fill_environ(struct session *, struct environ *);
1.334     nicm     1779: void    server_write_ready(struct client *);
1.332     nicm     1780: int     server_write_client(
1.192     nicm     1781:             struct client *, enum msgtype, const void *, size_t);
1.1       nicm     1782: void    server_write_session(
1.192     nicm     1783:             struct session *, enum msgtype, const void *, size_t);
1.1       nicm     1784: void    server_redraw_client(struct client *);
                   1785: void    server_status_client(struct client *);
                   1786: void    server_redraw_session(struct session *);
1.124     nicm     1787: void    server_redraw_session_group(struct session *);
1.1       nicm     1788: void    server_status_session(struct session *);
1.124     nicm     1789: void    server_status_session_group(struct session *);
1.1       nicm     1790: void    server_redraw_window(struct window *);
1.197     nicm     1791: void    server_redraw_window_borders(struct window *);
1.1       nicm     1792: void    server_status_window(struct window *);
                   1793: void    server_lock(void);
1.118     nicm     1794: void    server_lock_session(struct session *);
                   1795: void    server_lock_client(struct client *);
1.1       nicm     1796: int     server_unlock(const char *);
1.37      nicm     1797: void    server_kill_window(struct window *);
1.124     nicm     1798: int     server_link_window(struct session *,
1.106     nicm     1799:             struct winlink *, struct session *, int, int, int, char **);
                   1800: void    server_unlink_window(struct session *, struct winlink *);
1.177     nicm     1801: void    server_destroy_pane(struct window_pane *);
1.124     nicm     1802: void    server_destroy_session_group(struct session *);
1.103     nicm     1803: void    server_destroy_session(struct session *);
1.241     nicm     1804: void    server_check_unattached (void);
1.92      nicm     1805: void    server_set_identify(struct client *);
                   1806: void    server_clear_identify(struct client *);
1.165     nicm     1807: void    server_update_event(struct client *);
1.332     nicm     1808: void    server_push_stdout(struct client *);
                   1809: void    server_push_stderr(struct client *);
                   1810: int     server_set_stdin_callback(struct client *, void (*)(struct client *,
                   1811:             int, void *), void *, char **);
1.1       nicm     1812:
                   1813: /* status.c */
1.271     nicm     1814: int     status_out_cmp(struct status_out *, struct status_out *);
                   1815: RB_PROTOTYPE(status_out_tree, status_out, entry, status_out_cmp);
1.308     nicm     1816: int     status_at_line(struct client *);
1.271     nicm     1817: void    status_free_jobs(struct status_out_tree *);
                   1818: void    status_update_jobs(struct client *);
1.281     nicm     1819: void    status_set_window_at(struct client *, u_int);
1.1       nicm     1820: int     status_redraw(struct client *);
1.277     nicm     1821: char   *status_replace(struct client *, struct session *,
                   1822:             struct winlink *, struct window_pane *, const char *, time_t, int);
1.32      nicm     1823: void printflike2 status_message_set(struct client *, const char *, ...);
1.1       nicm     1824: void    status_message_clear(struct client *);
                   1825: int     status_message_redraw(struct client *);
1.292     nicm     1826: void    status_prompt_set(struct client *, const char *, const char *,
1.192     nicm     1827:             int (*)(void *, const char *), void (*)(void *), void *, int);
1.1       nicm     1828: void    status_prompt_clear(struct client *);
                   1829: int     status_prompt_redraw(struct client *);
                   1830: void    status_prompt_key(struct client *, int);
1.292     nicm     1831: void    status_prompt_update(struct client *, const char *, const char *);
1.1       nicm     1832:
                   1833: /* resize.c */
                   1834: void    recalculate_sizes(void);
                   1835:
                   1836: /* input.c */
                   1837: void    input_init(struct window_pane *);
                   1838: void    input_free(struct window_pane *);
                   1839: void    input_parse(struct window_pane *);
                   1840:
                   1841: /* input-key.c */
                   1842: void    input_key(struct window_pane *, int);
1.129     nicm     1843: void    input_mouse(struct window_pane *, struct mouse_event *);
1.150     nicm     1844:
                   1845: /* xterm-keys.c */
1.192     nicm     1846: char   *xterm_keys_lookup(int);
1.189     nicm     1847: int     xterm_keys_find(const char *, size_t, size_t *, int *);
1.1       nicm     1848:
                   1849: /* colour.c */
1.102     nicm     1850: void    colour_set_fg(struct grid_cell *, int);
                   1851: void    colour_set_bg(struct grid_cell *, int);
                   1852: const char *colour_tostring(int);
1.1       nicm     1853: int     colour_fromstring(const char *);
                   1854: u_char  colour_256to16(u_char);
                   1855: u_char  colour_256to88(u_char);
                   1856:
                   1857: /* attributes.c */
                   1858: const char *attributes_tostring(u_char);
                   1859: int     attributes_fromstring(const char *);
                   1860:
                   1861: /* grid.c */
                   1862: extern const struct grid_cell grid_default_cell;
1.338     nicm     1863: extern const struct grid_cell grid_marker_cell;
1.1       nicm     1864: struct grid *grid_create(u_int, u_int, u_int);
                   1865: void    grid_destroy(struct grid *);
                   1866: int     grid_compare(struct grid *, struct grid *);
1.139     nicm     1867: void    grid_collect_history(struct grid *);
                   1868: void    grid_scroll_history(struct grid *);
                   1869: void    grid_scroll_history_region(struct grid *, u_int, u_int);
1.1       nicm     1870: void    grid_expand_line(struct grid *, u_int, u_int);
                   1871: void    grid_expand_line_utf8(struct grid *, u_int, u_int);
                   1872: const struct grid_cell *grid_peek_cell(struct grid *, u_int, u_int);
                   1873: struct grid_cell *grid_get_cell(struct grid *, u_int, u_int);
                   1874: void    grid_set_cell(struct grid *, u_int, u_int, const struct grid_cell *);
                   1875: const struct grid_utf8 *grid_peek_utf8(struct grid *, u_int, u_int);
                   1876: struct grid_utf8 *grid_get_utf8(struct grid *, u_int, u_int);
                   1877: void    grid_set_utf8(struct grid *, u_int, u_int, const struct grid_utf8 *);
                   1878: void    grid_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1879: void    grid_clear_lines(struct grid *, u_int, u_int);
                   1880: void    grid_move_lines(struct grid *, u_int, u_int, u_int);
                   1881: void    grid_move_cells(struct grid *, u_int, u_int, u_int, u_int);
1.9       nicm     1882: char   *grid_string_cells(struct grid *, u_int, u_int, u_int);
1.25      nicm     1883: void    grid_duplicate_lines(
1.192     nicm     1884:             struct grid *, u_int, struct grid *, u_int, u_int);
1.181     nicm     1885:
                   1886: /* grid-utf8.c */
                   1887: size_t  grid_utf8_size(const struct grid_utf8 *);
                   1888: size_t  grid_utf8_copy(const struct grid_utf8 *, char *, size_t);
                   1889: void    grid_utf8_set(struct grid_utf8 *, const struct utf8_data *);
                   1890: int     grid_utf8_append(struct grid_utf8 *, const struct utf8_data *);
                   1891: int     grid_utf8_compare(const struct grid_utf8 *, const struct grid_utf8 *);
1.1       nicm     1892:
                   1893: /* grid-view.c */
                   1894: const struct grid_cell *grid_view_peek_cell(struct grid *, u_int, u_int);
                   1895: struct grid_cell *grid_view_get_cell(struct grid *, u_int, u_int);
                   1896: void    grid_view_set_cell(
1.192     nicm     1897:             struct grid *, u_int, u_int, const struct grid_cell *);
1.1       nicm     1898: const struct grid_utf8 *grid_view_peek_utf8(struct grid *, u_int, u_int);
                   1899: struct grid_utf8 *grid_view_get_utf8(struct grid *, u_int, u_int);
                   1900: void    grid_view_set_utf8(
1.192     nicm     1901:             struct grid *, u_int, u_int, const struct grid_utf8 *);
1.269     nicm     1902: void    grid_view_clear_history(struct grid *);
1.1       nicm     1903: void    grid_view_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1904: void    grid_view_scroll_region_up(struct grid *, u_int, u_int);
                   1905: void    grid_view_scroll_region_down(struct grid *, u_int, u_int);
                   1906: void    grid_view_insert_lines(struct grid *, u_int, u_int);
1.18      nicm     1907: void    grid_view_insert_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1908: void    grid_view_delete_lines(struct grid *, u_int, u_int);
1.18      nicm     1909: void    grid_view_delete_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1910: void    grid_view_insert_cells(struct grid *, u_int, u_int, u_int);
                   1911: void    grid_view_delete_cells(struct grid *, u_int, u_int, u_int);
1.9       nicm     1912: char   *grid_view_string_cells(struct grid *, u_int, u_int, u_int);
1.1       nicm     1913:
                   1914: /* screen-write.c */
                   1915: void    screen_write_start(
1.192     nicm     1916:             struct screen_write_ctx *, struct window_pane *, struct screen *);
1.1       nicm     1917: void    screen_write_stop(struct screen_write_ctx *);
1.304     nicm     1918: void    screen_write_reset(struct screen_write_ctx *);
1.99      nicm     1919: size_t printflike2 screen_write_cstrlen(int, const char *, ...);
                   1920: void printflike5 screen_write_cnputs(struct screen_write_ctx *,
1.192     nicm     1921:             ssize_t, struct grid_cell *, int, const char *, ...);
1.4       nicm     1922: size_t printflike2 screen_write_strlen(int, const char *, ...);
1.3       nicm     1923: void printflike3 screen_write_puts(struct screen_write_ctx *,
1.192     nicm     1924:             struct grid_cell *, const char *, ...);
1.4       nicm     1925: void printflike5 screen_write_nputs(struct screen_write_ctx *,
1.192     nicm     1926:             ssize_t, struct grid_cell *, int, const char *, ...);
1.3       nicm     1927: void    screen_write_vnputs(struct screen_write_ctx *,
1.4       nicm     1928:             ssize_t, struct grid_cell *, int, const char *, va_list);
1.99      nicm     1929: void    screen_write_parsestyle(
1.192     nicm     1930:             struct grid_cell *, struct grid_cell *, const char *);
1.1       nicm     1931: void    screen_write_putc(
1.192     nicm     1932:             struct screen_write_ctx *, struct grid_cell *, u_char);
1.1       nicm     1933: void    screen_write_copy(struct screen_write_ctx *,
                   1934:             struct screen *, u_int, u_int, u_int, u_int);
1.136     nicm     1935: void    screen_write_backspace(struct screen_write_ctx *);
1.1       nicm     1936: void    screen_write_cursorup(struct screen_write_ctx *, u_int);
                   1937: void    screen_write_cursordown(struct screen_write_ctx *, u_int);
                   1938: void    screen_write_cursorright(struct screen_write_ctx *, u_int);
                   1939: void    screen_write_cursorleft(struct screen_write_ctx *, u_int);
1.5       nicm     1940: void    screen_write_alignmenttest(struct screen_write_ctx *);
1.1       nicm     1941: void    screen_write_insertcharacter(struct screen_write_ctx *, u_int);
                   1942: void    screen_write_deletecharacter(struct screen_write_ctx *, u_int);
                   1943: void    screen_write_insertline(struct screen_write_ctx *, u_int);
                   1944: void    screen_write_deleteline(struct screen_write_ctx *, u_int);
                   1945: void    screen_write_clearline(struct screen_write_ctx *);
                   1946: void    screen_write_clearendofline(struct screen_write_ctx *);
                   1947: void    screen_write_clearstartofline(struct screen_write_ctx *);
                   1948: void    screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);
                   1949: void    screen_write_cursormode(struct screen_write_ctx *, int);
                   1950: void    screen_write_reverseindex(struct screen_write_ctx *);
                   1951: void    screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
                   1952: void    screen_write_insertmode(struct screen_write_ctx *, int);
1.263     nicm     1953: void    screen_write_utf8mousemode(struct screen_write_ctx *, int);
1.255     nicm     1954: void    screen_write_mousemode_on(struct screen_write_ctx *, int);
                   1955: void    screen_write_mousemode_off(struct screen_write_ctx *);
1.72      nicm     1956: void    screen_write_linefeed(struct screen_write_ctx *, int);
1.137     nicm     1957: void    screen_write_linefeedscreen(struct screen_write_ctx *, int);
1.1       nicm     1958: void    screen_write_carriagereturn(struct screen_write_ctx *);
                   1959: void    screen_write_kcursormode(struct screen_write_ctx *, int);
                   1960: void    screen_write_kkeypadmode(struct screen_write_ctx *, int);
                   1961: void    screen_write_clearendofscreen(struct screen_write_ctx *);
                   1962: void    screen_write_clearstartofscreen(struct screen_write_ctx *);
                   1963: void    screen_write_clearscreen(struct screen_write_ctx *);
1.297     nicm     1964: void    screen_write_clearhistory(struct screen_write_ctx *);
1.143     nicm     1965: void    screen_write_cell(struct screen_write_ctx *,
1.192     nicm     1966:             const struct grid_cell *, const struct utf8_data *);
1.286     nicm     1967: void    screen_write_setselection(struct screen_write_ctx *, u_char *, u_int);
1.273     nicm     1968: void    screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int);
1.317     nicm     1969: void    screen_write_bracketpaste(struct screen_write_ctx *, int);
1.1       nicm     1970:
                   1971: /* screen-redraw.c */
1.197     nicm     1972: void    screen_redraw_screen(struct client *, int, int);
1.1       nicm     1973: void    screen_redraw_pane(struct client *, struct window_pane *);
                   1974:
                   1975: /* screen.c */
                   1976: void    screen_init(struct screen *, u_int, u_int, u_int);
                   1977: void    screen_reinit(struct screen *);
                   1978: void    screen_free(struct screen *);
1.6       nicm     1979: void    screen_reset_tabs(struct screen *);
1.288     nicm     1980: void    screen_set_cursor_style(struct screen *, u_int);
1.287     nicm     1981: void    screen_set_cursor_colour(struct screen *, const char *);
1.1       nicm     1982: void    screen_set_title(struct screen *, const char *);
                   1983: void    screen_resize(struct screen *, u_int, u_int);
1.204     nicm     1984: void    screen_set_selection(struct screen *,
                   1985:             u_int, u_int, u_int, u_int, u_int, struct grid_cell *);
1.1       nicm     1986: void    screen_clear_selection(struct screen *);
                   1987: int     screen_check_selection(struct screen *, u_int, u_int);
                   1988:
                   1989: /* window.c */
                   1990: extern struct windows windows;
1.274     nicm     1991: extern struct window_pane_tree all_window_panes;
1.1       nicm     1992: int             winlink_cmp(struct winlink *, struct winlink *);
                   1993: RB_PROTOTYPE(winlinks, winlink, entry, winlink_cmp);
1.274     nicm     1994: int             window_pane_cmp(struct window_pane *, struct window_pane *);
                   1995: RB_PROTOTYPE(window_pane_tree, window_pane, tree_entry, window_pane_cmp);
1.1       nicm     1996: struct winlink *winlink_find_by_index(struct winlinks *, int);
1.192     nicm     1997: struct winlink *winlink_find_by_window(struct winlinks *, struct window *);
1.309     nicm     1998: struct winlink *winlink_find_by_window_id(struct winlinks *, u_int);
1.81      nicm     1999: int             winlink_next_index(struct winlinks *, int);
1.1       nicm     2000: u_int           winlink_count(struct winlinks *);
1.268     nicm     2001: struct winlink *winlink_add(struct winlinks *, int);
                   2002: void            winlink_set_window(struct winlink *, struct window *);
1.1       nicm     2003: void            winlink_remove(struct winlinks *, struct winlink *);
1.186     nicm     2004: struct winlink *winlink_next(struct winlink *);
                   2005: struct winlink *winlink_previous(struct winlink *);
1.235     nicm     2006: struct winlink *winlink_next_by_number(struct winlink *, struct session *,
                   2007:                     int);
                   2008: struct winlink *winlink_previous_by_number(struct winlink *, struct session *,
                   2009:                     int);
1.1       nicm     2010: void            winlink_stack_push(struct winlink_stack *, struct winlink *);
                   2011: void            winlink_stack_remove(struct winlink_stack *, struct winlink *);
1.192     nicm     2012: int             window_index(struct window *, u_int *);
1.309     nicm     2013: struct window  *window_find_by_id(u_int);
1.1       nicm     2014: struct window  *window_create1(u_int, u_int);
1.73      nicm     2015: struct window  *window_create(const char *, const char *, const char *,
1.93      nicm     2016:                     const char *, struct environ *, struct termios *,
1.192     nicm     2017:                     u_int, u_int, u_int, char **);
1.1       nicm     2018: void            window_destroy(struct window *);
1.289     nicm     2019: struct window_pane *window_get_active_at(struct window *, u_int, u_int);
1.125     nicm     2020: void            window_set_active_at(struct window *, u_int, u_int);
1.289     nicm     2021: struct window_pane *window_find_string(struct window *, const char *);
1.1       nicm     2022: void            window_set_active_pane(struct window *, struct window_pane *);
1.51      nicm     2023: struct window_pane *window_add_pane(struct window *, u_int);
1.44      nicm     2024: void            window_resize(struct window *, u_int, u_int);
1.1       nicm     2025: void            window_remove_pane(struct window *, struct window_pane *);
                   2026: struct window_pane *window_pane_at_index(struct window *, u_int);
1.235     nicm     2027: struct window_pane *window_pane_next_by_number(struct window *,
                   2028:                        struct window_pane *, u_int);
                   2029: struct window_pane *window_pane_previous_by_number(struct window *,
                   2030:                        struct window_pane *, u_int);
1.298     nicm     2031: int             window_pane_index(struct window_pane *, u_int *);
1.1       nicm     2032: u_int           window_count_panes(struct window *);
                   2033: void            window_destroy_panes(struct window *);
1.274     nicm     2034: struct window_pane *window_pane_find_by_id(u_int);
1.1       nicm     2035: struct window_pane *window_pane_create(struct window *, u_int, u_int, u_int);
                   2036: void            window_pane_destroy(struct window_pane *);
1.325     nicm     2037: void            window_pane_timer_start(struct window_pane *);
1.80      nicm     2038: int             window_pane_spawn(struct window_pane *, const char *,
1.93      nicm     2039:                     const char *, const char *, struct environ *,
                   2040:                     struct termios *, char **);
1.44      nicm     2041: void            window_pane_resize(struct window_pane *, u_int, u_int);
1.210     nicm     2042: void            window_pane_alternate_on(
                   2043:                     struct window_pane *, struct grid_cell *);
                   2044: void            window_pane_alternate_off(
                   2045:                     struct window_pane *, struct grid_cell *);
1.1       nicm     2046: int             window_pane_set_mode(
                   2047:                     struct window_pane *, const struct window_mode *);
                   2048: void            window_pane_reset_mode(struct window_pane *);
1.221     nicm     2049: void            window_pane_key(struct window_pane *, struct session *, int);
1.1       nicm     2050: void            window_pane_mouse(struct window_pane *,
1.221     nicm     2051:                     struct session *, struct mouse_event *);
1.28      nicm     2052: int             window_pane_visible(struct window_pane *);
1.10      nicm     2053: char           *window_pane_search(
1.192     nicm     2054:                     struct window_pane *, const char *, u_int *);
1.256     nicm     2055: char           *window_printable_flags(struct session *, struct winlink *);
1.211     nicm     2056: struct window_pane *window_pane_find_up(struct window_pane *);
                   2057: struct window_pane *window_pane_find_down(struct window_pane *);
                   2058: struct window_pane *window_pane_find_left(struct window_pane *);
                   2059: struct window_pane *window_pane_find_right(struct window_pane *);
1.311     nicm     2060: void            window_set_name(struct window *, const char *);
1.1       nicm     2061:
                   2062: /* layout.c */
1.232     nicm     2063: u_int           layout_count_cells(struct layout_cell *);
1.39      nicm     2064: struct layout_cell *layout_create_cell(struct layout_cell *);
                   2065: void            layout_free_cell(struct layout_cell *);
                   2066: void            layout_print_cell(struct layout_cell *, const char *, u_int);
1.326     nicm     2067: void            layout_destroy_cell(
                   2068:                     struct layout_cell *, struct layout_cell **);
1.39      nicm     2069: void            layout_set_size(
                   2070:                     struct layout_cell *, u_int, u_int, u_int, u_int);
                   2071: void            layout_make_leaf(
                   2072:                     struct layout_cell *, struct window_pane *);
                   2073: void            layout_make_node(struct layout_cell *, enum layout_type);
                   2074: void            layout_fix_offsets(struct layout_cell *);
                   2075: void            layout_fix_panes(struct window *, u_int, u_int);
                   2076: u_int           layout_resize_check(struct layout_cell *, enum layout_type);
                   2077: void            layout_resize_adjust(
                   2078:                     struct layout_cell *, enum layout_type, int);
                   2079: void            layout_init(struct window *);
                   2080: void            layout_free(struct window *);
                   2081: void            layout_resize(struct window *, u_int, u_int);
                   2082: void            layout_resize_pane(
1.192     nicm     2083:                     struct window_pane *, enum layout_type, int);
1.284     nicm     2084: void            layout_resize_pane_mouse(
                   2085:                     struct client *c, struct mouse_event *mouse);
1.198     nicm     2086: void            layout_assign_pane(struct layout_cell *, struct window_pane *);
                   2087: struct layout_cell *layout_split_pane(
1.315     nicm     2088:                     struct window_pane *, enum layout_type, int, int);
1.39      nicm     2089: void            layout_close_pane(struct window_pane *);
1.326     nicm     2090: void            layout_list_add(struct window *);
                   2091: const char     *layout_list_redo(struct window *);
                   2092: const char     *layout_list_undo(struct window *);
1.39      nicm     2093:
1.232     nicm     2094: /* layout-custom.c */
                   2095: char           *layout_dump(struct window *);
                   2096: int             layout_parse(struct window *, const char *);
                   2097:
1.39      nicm     2098: /* layout-set.c */
                   2099: const char     *layout_set_name(u_int);
                   2100: int             layout_set_lookup(const char *);
                   2101: u_int           layout_set_select(struct window *, u_int);
                   2102: u_int           layout_set_next(struct window *);
                   2103: u_int           layout_set_previous(struct window *);
                   2104: void            layout_set_active_changed(struct window *);
1.1       nicm     2105:
                   2106: /* window-clock.c */
                   2107: extern const struct window_mode window_clock_mode;
                   2108:
                   2109: /* window-copy.c */
                   2110: extern const struct window_mode window_copy_mode;
1.216     nicm     2111: void            window_copy_init_from_pane(struct window_pane *);
                   2112: void            window_copy_init_for_output(struct window_pane *);
1.314     nicm     2113: void printflike2 window_copy_add(struct window_pane *, const char *, ...);
1.216     nicm     2114: void            window_copy_vadd(struct window_pane *, const char *, va_list);
1.192     nicm     2115: void            window_copy_pageup(struct window_pane *);
1.1       nicm     2116:
                   2117: /* window-choose.c */
                   2118: extern const struct window_mode window_choose_mode;
1.192     nicm     2119: void            window_choose_vadd(
                   2120:                     struct window_pane *, int, const char *, va_list);
1.1       nicm     2121: void printflike3 window_choose_add(
1.192     nicm     2122:                     struct window_pane *, int, const char *, ...);
1.1       nicm     2123: void            window_choose_ready(struct window_pane *,
1.34      nicm     2124:                     u_int, void (*)(void *, int), void (*)(void *), void *);
1.1       nicm     2125:
                   2126: /* names.c */
1.168     nicm     2127: void            queue_window_name(struct window *);
1.192     nicm     2128: char           *default_window_name(struct window *);
1.219     nicm     2129:
                   2130: /* signal.c */
1.238     nicm     2131: void set_signals(void(*)(int, short, void *));
                   2132: void clear_signals(int);
1.1       nicm     2133:
                   2134: /* session.c */
                   2135: extern struct sessions sessions;
1.101     nicm     2136: extern struct sessions dead_sessions;
1.124     nicm     2137: extern struct session_groups session_groups;
1.254     nicm     2138: int    session_cmp(struct session *, struct session *);
                   2139: RB_PROTOTYPE(sessions, session, entry, session_cmp);
1.251     nicm     2140: int             session_alive(struct session *);
1.1       nicm     2141: struct session *session_find(const char *);
1.254     nicm     2142: struct session *session_find_by_index(u_int);
1.80      nicm     2143: struct session *session_create(const char *, const char *, const char *,
1.81      nicm     2144:                     struct environ *, struct termios *, int, u_int, u_int,
                   2145:                     char **);
1.192     nicm     2146: void            session_destroy(struct session *);
1.279     nicm     2147: int             session_check_name(const char *);
1.259     nicm     2148: void            session_update_activity(struct session *);
1.239     nicm     2149: struct session *session_next_session(struct session *);
                   2150: struct session *session_previous_session(struct session *);
1.1       nicm     2151: struct winlink *session_new(struct session *,
1.192     nicm     2152:                     const char *, const char *, const char *, int, char **);
1.1       nicm     2153: struct winlink *session_attach(
1.192     nicm     2154:                     struct session *, struct window *, int, char **);
1.1       nicm     2155: int             session_detach(struct session *, struct winlink *);
1.226     nicm     2156: struct winlink*         session_has(struct session *, struct window *);
1.1       nicm     2157: int             session_next(struct session *, int);
                   2158: int             session_previous(struct session *, int);
                   2159: int             session_select(struct session *, int);
                   2160: int             session_last(struct session *);
1.124     nicm     2161: struct session_group *session_group_find(struct session *);
                   2162: u_int           session_group_index(struct session_group *);
                   2163: void            session_group_add(struct session *, struct session *);
                   2164: void            session_group_remove(struct session *);
                   2165: void            session_group_synchronize_to(struct session *);
                   2166: void            session_group_synchronize_from(struct session *);
                   2167: void            session_group_synchronize1(struct session *, struct session *);
1.330     nicm     2168: void            session_renumber_windows(struct session *);
1.1       nicm     2169:
                   2170: /* utf8.c */
                   2171: void   utf8_build(void);
1.143     nicm     2172: int    utf8_open(struct utf8_data *, u_char);
                   2173: int    utf8_append(struct utf8_data *, u_char);
1.263     nicm     2174: u_int  utf8_combine(const struct utf8_data *);
                   2175: u_int  utf8_split2(u_int, u_char *);
1.1       nicm     2176:
                   2177: /* procname.c */
                   2178: char   *get_proc_name(int, char *);
1.301     nicm     2179: char   *get_proc_cwd(pid_t);
1.1       nicm     2180:
                   2181: /* log.c */
1.339     nicm     2182: void            log_open(int, const char *);
1.1       nicm     2183: void            log_close(void);
                   2184: void printflike1 log_warn(const char *, ...);
                   2185: void printflike1 log_warnx(const char *, ...);
                   2186: void printflike1 log_info(const char *, ...);
                   2187: void printflike1 log_debug(const char *, ...);
                   2188: void printflike1 log_debug2(const char *, ...);
1.85      nicm     2189: __dead void printflike1 log_fatal(const char *, ...);
                   2190: __dead void printflike1 log_fatalx(const char *, ...);
1.1       nicm     2191:
                   2192: /* xmalloc.c */
                   2193: char           *xstrdup(const char *);
                   2194: void           *xcalloc(size_t, size_t);
                   2195: void           *xmalloc(size_t);
                   2196: void           *xrealloc(void *, size_t, size_t);
                   2197: void            xfree(void *);
                   2198: int printflike2         xasprintf(char **, const char *, ...);
                   2199: int             xvasprintf(char **, const char *, va_list);
                   2200: int printflike3         xsnprintf(char *, size_t, const char *, ...);
                   2201: int             xvsnprintf(char *, size_t, const char *, va_list);
                   2202:
                   2203: #endif /* TMUX_H */