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

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