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

1.124   ! nicm        1: /* $OpenBSD: tmux.h,v 1.123 2009/10/10 09:46:11 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.116     nicm       22: #define PROTOCOL_VERSION 5
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.1       nicm       31: #include <getopt.h>
                     32: #include <limits.h>
                     33: #include <poll.h>
                     34: #include <signal.h>
                     35: #include <stdarg.h>
                     36: #include <stdint.h>
                     37: #include <stdio.h>
                     38: #include <termios.h>
                     39:
                     40: #include "array.h"
1.75      nicm       41: #include "imsg.h"
1.1       nicm       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.39      nicm       53: /*
                     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
                     61:
                     62: /* Escape timer period, in milliseconds. */
                     63: #define ESCAPE_PERIOD 250
                     64:
                     65: /* Maximum poll timeout (when attached). */
                     66: #define POLL_TIMEOUT 50
                     67:
1.55      nicm       68: /*
                     69:  * Maximum sizes of strings in message data. Don't forget to bump
                     70:  * PROTOCOL_VERSION if any of these change!
                     71:  */
                     72: #define COMMAND_LENGTH 2048    /* packed argv size */
                     73: #define TERMINAL_LENGTH 128    /* length of TERM environment variable */
                     74: #define PRINT_LENGTH 512       /* printed error/message size */
1.73      nicm       75: #define ENVIRON_LENGTH 1024    /* environment variable length */
1.55      nicm       76:
1.1       nicm       77: /* Fatal errors. */
                     78: #define fatal(msg) log_fatal("%s: %s", __func__, msg);
                     79: #define fatalx(msg) log_fatalx("%s: %s", __func__, msg);
                     80:
                     81: /* Definition to shut gcc up about unused arguments. */
                     82: #define unused __attribute__ ((unused))
                     83:
                     84: /* Attribute to make gcc check printf-like arguments. */
                     85: #define printflike1 __attribute__ ((format (printf, 1, 2)))
                     86: #define printflike2 __attribute__ ((format (printf, 2, 3)))
                     87: #define printflike3 __attribute__ ((format (printf, 3, 4)))
                     88: #define printflike4 __attribute__ ((format (printf, 4, 5)))
1.4       nicm       89: #define printflike5 __attribute__ ((format (printf, 5, 6)))
1.1       nicm       90:
                     91: /* Number of items in array. */
1.14      nicm       92: #ifndef nitems
1.1       nicm       93: #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
1.14      nicm       94: #endif
1.1       nicm       95:
                     96: /* Buffer macros. */
                     97: #define BUFFER_USED(b) ((b)->size)
                     98: #define BUFFER_FREE(b) ((b)->space - (b)->off - (b)->size)
                     99: #define BUFFER_IN(b) ((b)->base + (b)->off + (b)->size)
                    100: #define BUFFER_OUT(b) ((b)->base + (b)->off)
                    101:
                    102: /* Buffer structure. */
                    103: struct buffer {
                    104:        u_char  *base;          /* buffer start */
                    105:        size_t   space;         /* total size of buffer */
                    106:
                    107:        size_t   size;          /* size of data in buffer */
                    108:        size_t   off;           /* offset of data in buffer */
                    109: };
                    110:
                    111: /* Bell option values. */
                    112: #define BELL_NONE 0
                    113: #define BELL_ANY 1
                    114: #define BELL_CURRENT 2
                    115:
                    116: /* Key codes. ncurses defines KEY_*. Grrr. */
1.54      nicm      117: #define KEYC_NONE 0xfff
                    118: /* 0x1000 is base for special keys */
                    119: #define KEYC_ESCAPE 0x2000
                    120: #define KEYC_CTRL 0x4000
                    121: #define KEYC_SHIFT 0x8000
                    122: #define KEYC_PREFIX 0x10000
1.41      nicm      123:
                    124: enum key_code {
                    125:        /* Mouse key. */
                    126:        KEYC_MOUSE = 0x1000,
1.56      nicm      127:
                    128:        /* Backspace key. */
                    129:        KEYC_BSPACE,
1.41      nicm      130:
                    131:        /* Function keys. */
                    132:        KEYC_F1,
1.116     nicm      133:
1.41      nicm      134:        KEYC_F2,
                    135:        KEYC_F3,
                    136:        KEYC_F4,
                    137:        KEYC_F5,
                    138:        KEYC_F6,
                    139:        KEYC_F7,
                    140:        KEYC_F8,
                    141:        KEYC_F9,
                    142:        KEYC_F10,
                    143:        KEYC_F11,
                    144:        KEYC_F12,
                    145:        KEYC_F13,
                    146:        KEYC_F14,
                    147:        KEYC_F15,
                    148:        KEYC_F16,
                    149:        KEYC_F17,
                    150:        KEYC_F18,
                    151:        KEYC_F19,
                    152:        KEYC_F20,
                    153:        KEYC_IC,
                    154:        KEYC_DC,
                    155:        KEYC_HOME,
                    156:        KEYC_END,
                    157:        KEYC_NPAGE,
                    158:        KEYC_PPAGE,
                    159:        KEYC_BTAB,
                    160:
                    161:        /* Arrow keys. */
                    162:        KEYC_UP,
                    163:        KEYC_DOWN,
                    164:        KEYC_LEFT,
                    165:        KEYC_RIGHT,
                    166:
                    167:        /* Numeric keypad. Numbered from top-left, KPY_X. */
                    168:        KEYC_KP0_1,
                    169:        KEYC_KP0_2,
                    170:        KEYC_KP0_3,
                    171:        KEYC_KP1_0,
                    172:        KEYC_KP1_1,
                    173:        KEYC_KP1_2,
                    174:        KEYC_KP1_3,
                    175:        KEYC_KP2_0,
                    176:        KEYC_KP2_1,
                    177:        KEYC_KP2_2,
                    178:        KEYC_KP3_0,
                    179:        KEYC_KP3_1,
                    180:        KEYC_KP3_2,
                    181:        KEYC_KP3_3,
                    182:        KEYC_KP4_0,
                    183:        KEYC_KP4_2,
                    184: };
1.1       nicm      185:
                    186: /* Termcap codes. */
                    187: enum tty_code_code {
                    188:        TTYC_AX = 0,
                    189:        TTYC_ACSC,      /* acs_chars, ac */
                    190:        TTYC_BEL,       /* bell, bl */
                    191:        TTYC_BLINK,     /* enter_blink_mode, mb */
                    192:        TTYC_BOLD,      /* enter_bold_mode, md */
                    193:        TTYC_CIVIS,     /* cursor_invisible, vi */
                    194:        TTYC_CLEAR,     /* clear_screen, cl */
                    195:        TTYC_CNORM,     /* cursor_normal, ve */
                    196:        TTYC_COLORS,    /* max_colors, Co */
                    197:        TTYC_CSR,       /* change_scroll_region, cs */
                    198:        TTYC_CUD,       /* parm_down_cursor, DO */
                    199:        TTYC_CUD1,      /* cursor_down, do */
                    200:        TTYC_CUP,       /* cursor_address, cm */
                    201:        TTYC_DCH,       /* parm_dch, DC */
                    202:        TTYC_DCH1,      /* delete_character, dc */
                    203:        TTYC_DIM,       /* enter_dim_mode, mh */
                    204:        TTYC_DL,        /* parm_delete_line, DL */
                    205:        TTYC_DL1,       /* delete_line, dl */
                    206:        TTYC_EL,        /* clr_eol, ce */
                    207:        TTYC_EL1,       /* clr_bol, cb */
                    208:        TTYC_ENACS,     /* ena_acs, eA */
                    209:        TTYC_ICH,       /* parm_ich, IC */
                    210:        TTYC_ICH1,      /* insert_character, ic */
                    211:        TTYC_IL,        /* parm_insert_line, IL */
                    212:        TTYC_IL1,       /* insert_line, il */
                    213:        TTYC_INVIS,     /* enter_secure_mode, mk */
                    214:        TTYC_IS1,       /* init_1string, i1 */
                    215:        TTYC_IS2,       /* init_2string, i2 */
                    216:        TTYC_IS3,       /* init_3string, i3 */
                    217:        TTYC_KCBT,      /* key_btab, kB */
                    218:        TTYC_KCUB1,     /* key_left, kl */
                    219:        TTYC_KCUD1,     /* key_down, kd */
                    220:        TTYC_KCUF1,     /* key_right, kr */
                    221:        TTYC_KCUU1,     /* key_up, ku */
                    222:        TTYC_KDCH1,     /* key_dc, kD */
                    223:        TTYC_KEND,      /* key_end, ke */
                    224:        TTYC_KF1,       /* key_f1, k1 */
                    225:        TTYC_KF10,      /* key_f10, k; */
                    226:        TTYC_KF11,      /* key_f11, F1 */
                    227:        TTYC_KF12,      /* key_f12, F2 */
                    228:        TTYC_KF13,      /* key_f13, F3 */
                    229:        TTYC_KF14,      /* key_f14, F4 */
                    230:        TTYC_KF15,      /* key_f15, F5 */
                    231:        TTYC_KF16,      /* key_f16, F6 */
                    232:        TTYC_KF17,      /* key_f17, F7 */
                    233:        TTYC_KF18,      /* key_f18, F8 */
                    234:        TTYC_KF19,      /* key_f19, F9 */
                    235:        TTYC_KF20,      /* key_f20, F10 */
                    236:        TTYC_KF2,       /* key_f2, k2 */
                    237:        TTYC_KF3,       /* key_f3, k3 */
                    238:        TTYC_KF4,       /* key_f4, k4 */
                    239:        TTYC_KF5,       /* key_f5, k5 */
                    240:        TTYC_KF6,       /* key_f6, k6 */
                    241:        TTYC_KF7,       /* key_f7, k7 */
                    242:        TTYC_KF8,       /* key_f8, k8 */
                    243:        TTYC_KF9,       /* key_f9, k9 */
                    244:        TTYC_KHOME,     /* key_home, kh */
                    245:        TTYC_KICH1,     /* key_ic, kI */
                    246:        TTYC_KMOUS,     /* key_mouse, Km */
                    247:        TTYC_KNP,       /* key_npage, kN */
                    248:        TTYC_KPP,       /* key_ppage, kP */
                    249:        TTYC_OP,        /* orig_pair, op */
                    250:        TTYC_REV,       /* enter_reverse_mode, mr */
                    251:        TTYC_RI,        /* scroll_reverse, sr */
                    252:        TTYC_RMACS,     /* exit_alt_charset_mode */
                    253:        TTYC_RMCUP,     /* exit_ca_mode, te */
                    254:        TTYC_RMIR,      /* exit_insert_mode, ei */
                    255:        TTYC_RMKX,      /* keypad_local, ke */
                    256:        TTYC_SETAB,     /* set_a_background, AB */
                    257:        TTYC_SETAF,     /* set_a_foreground, AF */
                    258:        TTYC_SGR0,      /* exit_attribute_mode, me */
                    259:        TTYC_SMACS,     /* enter_alt_charset_mode, as */
                    260:        TTYC_SMCUP,     /* enter_ca_mode, ti */
                    261:        TTYC_SMIR,      /* enter_insert_mode, im */
                    262:        TTYC_SMKX,      /* keypad_xmit, ks */
                    263:        TTYC_SMSO,      /* enter_standout_mode, so */
                    264:        TTYC_SMUL,      /* enter_underline_mode, us */
                    265:        TTYC_XENL,      /* eat_newline_glitch, xn */
                    266: };
                    267: #define NTTYCODE (TTYC_XENL + 1)
                    268:
                    269: /* Termcap types. */
                    270: enum tty_code_type {
                    271:        TTYCODE_NONE = 0,
                    272:        TTYCODE_STRING,
                    273:        TTYCODE_NUMBER,
                    274:        TTYCODE_FLAG,
                    275: };
                    276:
                    277: /* Termcap code. */
                    278: struct tty_code {
                    279:        enum tty_code_type      type;
                    280:        union {
                    281:                char           *string;
                    282:                int             number;
                    283:                int             flag;
                    284:        } value;
                    285: };
                    286:
                    287: /* Entry in terminal code table. */
                    288: struct tty_term_code_entry {
                    289:        enum tty_code_code      code;
                    290:        enum tty_code_type      type;
                    291:        const char             *name;
                    292: };
                    293:
                    294: /* Message codes. */
1.64      nicm      295: enum msgtype {
1.1       nicm      296:        MSG_COMMAND,
                    297:        MSG_DETACH,
                    298:        MSG_ERROR,
                    299:        MSG_EXIT,
                    300:        MSG_EXITED,
                    301:        MSG_EXITING,
                    302:        MSG_IDENTIFY,
                    303:        MSG_PRINT,
                    304:        MSG_READY,
                    305:        MSG_RESIZE,
                    306:        MSG_SHUTDOWN,
                    307:        MSG_SUSPEND,
1.75      nicm      308:        MSG_VERSION,
1.1       nicm      309:        MSG_WAKEUP,
1.115     nicm      310:        MSG_ENVIRON,
                    311:        MSG_UNLOCK,
1.116     nicm      312:        MSG_LOCK,
                    313:        MSG_SHELL
1.1       nicm      314: };
                    315:
1.55      nicm      316: /*
1.75      nicm      317:  * Message data.
1.55      nicm      318:  *
                    319:  * Don't forget to bump PROTOCOL_VERSION if any of these change!
                    320:  */
                    321: struct msg_print_data {
                    322:        char            msg[PRINT_LENGTH];
                    323: };
                    324:
1.1       nicm      325: struct msg_command_data {
                    326:        pid_t           pid;                    /* pid from $TMUX or -1 */
                    327:        u_int           idx;                    /* index from $TMUX */
                    328:
1.55      nicm      329:        int             argc;
                    330:        char            argv[COMMAND_LENGTH];
1.1       nicm      331: };
                    332:
                    333: struct msg_identify_data {
                    334:        char            cwd[MAXPATHLEN];
                    335:
1.55      nicm      336:        char            term[TERMINAL_LENGTH];
                    337:
1.1       nicm      338: #define IDENTIFY_UTF8 0x1
                    339: #define IDENTIFY_256COLOURS 0x2
                    340: #define IDENTIFY_88COLOURS 0x4
                    341: #define IDENTIFY_HASDEFAULTS 0x8
                    342:        int             flags;
                    343: };
                    344:
1.115     nicm      345: struct msg_lock_data {
                    346:        char            cmd[COMMAND_LENGTH];
1.55      nicm      347: };
                    348:
1.73      nicm      349: struct msg_environ_data {
                    350:        char            var[ENVIRON_LENGTH];
1.116     nicm      351: };
                    352:
                    353: struct msg_shell_data {
                    354:        char            shell[MAXPATHLEN];
1.73      nicm      355: };
                    356:
1.62      nicm      357: /* Mode key commands. */
1.1       nicm      358: enum mode_key_cmd {
1.59      nicm      359:        MODEKEY_NONE,
                    360:        MODEKEY_OTHER,
                    361:
                    362:        /* Editing keys. */
                    363:        MODEKEYEDIT_BACKSPACE,
                    364:        MODEKEYEDIT_CANCEL,
                    365:        MODEKEYEDIT_COMPLETE,
                    366:        MODEKEYEDIT_CURSORLEFT,
                    367:        MODEKEYEDIT_CURSORRIGHT,
                    368:        MODEKEYEDIT_DELETE,
1.84      nicm      369:        MODEKEYEDIT_DELETELINE,
1.59      nicm      370:        MODEKEYEDIT_DELETETOENDOFLINE,
                    371:        MODEKEYEDIT_ENDOFLINE,
                    372:        MODEKEYEDIT_ENTER,
                    373:        MODEKEYEDIT_HISTORYDOWN,
                    374:        MODEKEYEDIT_HISTORYUP,
                    375:        MODEKEYEDIT_PASTE,
                    376:        MODEKEYEDIT_STARTOFLINE,
                    377:        MODEKEYEDIT_SWITCHMODE,
                    378:        MODEKEYEDIT_SWITCHMODEAPPEND,
1.94      nicm      379:        MODEKEYEDIT_TRANSPOSECHARS,
1.59      nicm      380:
                    381:        /* Menu (choice) keys. */
                    382:        MODEKEYCHOICE_CANCEL,
                    383:        MODEKEYCHOICE_CHOOSE,
                    384:        MODEKEYCHOICE_DOWN,
                    385:        MODEKEYCHOICE_PAGEDOWN,
                    386:        MODEKEYCHOICE_PAGEUP,
                    387:        MODEKEYCHOICE_UP,
                    388:
                    389:        /* Copy keys. */
1.82      nicm      390:        MODEKEYCOPY_BACKTOINDENTATION,
1.59      nicm      391:        MODEKEYCOPY_CANCEL,
                    392:        MODEKEYCOPY_CLEARSELECTION,
                    393:        MODEKEYCOPY_COPYSELECTION,
                    394:        MODEKEYCOPY_DOWN,
                    395:        MODEKEYCOPY_ENDOFLINE,
1.83      nicm      396:        MODEKEYCOPY_GOTOLINE,
1.82      nicm      397:        MODEKEYCOPY_HALFPAGEDOWN,
                    398:        MODEKEYCOPY_HALFPAGEUP,
1.59      nicm      399:        MODEKEYCOPY_LEFT,
                    400:        MODEKEYCOPY_NEXTPAGE,
                    401:        MODEKEYCOPY_NEXTWORD,
                    402:        MODEKEYCOPY_PREVIOUSPAGE,
                    403:        MODEKEYCOPY_PREVIOUSWORD,
                    404:        MODEKEYCOPY_RIGHT,
1.120     nicm      405:        MODEKEYCOPY_SCROLLDOWN,
                    406:        MODEKEYCOPY_SCROLLUP,
1.83      nicm      407:        MODEKEYCOPY_SEARCHAGAIN,
                    408:        MODEKEYCOPY_SEARCHDOWN,
                    409:        MODEKEYCOPY_SEARCHUP,
1.59      nicm      410:        MODEKEYCOPY_STARTOFLINE,
                    411:        MODEKEYCOPY_STARTSELECTION,
                    412:        MODEKEYCOPY_UP,
1.1       nicm      413: };
                    414:
1.62      nicm      415: /* Entry in the default mode key tables. */
1.59      nicm      416: struct mode_key_entry {
                    417:        int                     key;
                    418:
                    419:        /*
                    420:         * Editing mode for vi: 0 is edit mode, keys not in the table are
                    421:         * returned as MODEKEY_OTHER; 1 is command mode, keys not in the table
                    422:         * are returned as MODEKEY_NONE. This is also matched on, allowing some
                    423:         * keys to be bound in edit mode.
                    424:         */
                    425:        int                     mode;
                    426:        enum mode_key_cmd       cmd;
                    427: };
1.62      nicm      428:
                    429: /* Data required while mode keys are in use. */
1.1       nicm      430: struct mode_key_data {
1.62      nicm      431:        struct mode_key_tree   *tree;
                    432:        int                     mode;
1.1       nicm      433: };
                    434: #define MODEKEY_EMACS 0
                    435: #define MODEKEY_VI 1
                    436:
1.62      nicm      437: /* Binding between a key and a command. */
                    438: struct mode_key_binding {
                    439:        int                     key;
                    440:
                    441:        int                     mode;
                    442:        enum mode_key_cmd       cmd;
                    443:
                    444:        SPLAY_ENTRY(mode_key_binding) entry;
                    445: };
                    446: SPLAY_HEAD(mode_key_tree, mode_key_binding);
                    447:
                    448: /* Command to string mapping. */
                    449: struct mode_key_cmdstr {
                    450:        enum mode_key_cmd        cmd;
                    451:        const char              *name;
                    452: };
                    453:
                    454: /* Named mode key table description. */
                    455: struct mode_key_table {
                    456:        const char              *name;
                    457:        struct mode_key_cmdstr  *cmdstr;
                    458:        struct mode_key_tree    *tree;
                    459:        const struct mode_key_entry *table;     /* default entries */
                    460: };
                    461:
1.1       nicm      462: /* Modes. */
                    463: #define MODE_CURSOR 0x1
                    464: #define MODE_INSERT 0x2
                    465: #define MODE_KCURSOR 0x4
                    466: #define MODE_KKEYPAD 0x8
                    467: #define MODE_MOUSE 0x10
                    468:
                    469: /* Grid output. */
                    470: #if defined(DEBUG) && \
                    471:     ((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
                    472:      (defined(__GNUC__) && __GNUC__ >= 3))
1.48      nicm      473: #define GRID_DEBUG(gd, fmt, ...) log_debug2("%s: (sx=%u, sy=%u, hsize=%u) " \
1.1       nicm      474:     fmt, __func__, (gd)->sx, (gd)->sy, (gd)->hsize, ## __VA_ARGS__)
                    475: #else
                    476: #define GRID_DEBUG(...)
                    477: #endif
                    478:
                    479: /* Grid attributes. */
                    480: #define GRID_ATTR_BRIGHT 0x1
                    481: #define GRID_ATTR_DIM 0x2
                    482: #define GRID_ATTR_UNDERSCORE 0x4
                    483: #define GRID_ATTR_BLINK 0x8
                    484: #define GRID_ATTR_REVERSE 0x10
                    485: #define GRID_ATTR_HIDDEN 0x20
                    486: #define GRID_ATTR_ITALICS 0x40
                    487: #define GRID_ATTR_CHARSET 0x80 /* alternative character set */
                    488:
                    489: /* Grid flags. */
                    490: #define GRID_FLAG_FG256 0x1
                    491: #define GRID_FLAG_BG256 0x2
                    492: #define GRID_FLAG_PADDING 0x4
                    493: #define GRID_FLAG_UTF8 0x8
                    494:
1.72      nicm      495: /* Grid line flags. */
                    496: #define GRID_LINE_WRAPPED 0x1
                    497:
1.1       nicm      498: /* Grid cell data. */
                    499: struct grid_cell {
                    500:        u_char  attr;
                    501:        u_char  flags;
                    502:        u_char  fg;
                    503:        u_char  bg;
                    504:        u_char  data;
                    505: } __packed;
                    506:
                    507: /* Grid cell UTF-8 data. Used instead of data in grid_cell for UTF-8 cells. */
                    508: #define UTF8_SIZE 8
                    509: struct grid_utf8 {
                    510:        u_char  width;
                    511:        u_char  data[UTF8_SIZE];
                    512: } __packed;
                    513:
1.71      nicm      514: /* Grid line. */
                    515: struct grid_line {
                    516:        u_int   cellsize;
                    517:        struct grid_cell *celldata;
                    518:
                    519:        u_int   utf8size;
                    520:        struct grid_utf8 *utf8data;
1.72      nicm      521:
                    522:        int     flags;
1.71      nicm      523: } __packed;
                    524:
1.1       nicm      525: /* Entire grid of cells. */
                    526: struct grid {
1.25      nicm      527:        int     flags;
                    528: #define GRID_HISTORY 0x1       /* scroll lines into history */
                    529:
1.1       nicm      530:        u_int   sx;
                    531:        u_int   sy;
                    532:
                    533:        u_int   hsize;
                    534:        u_int   hlimit;
                    535:
1.71      nicm      536:        struct grid_line *linedata;
1.1       nicm      537: };
                    538:
                    539: /* Option data structures. */
                    540: struct options_entry {
                    541:        char            *name;
                    542:
                    543:        enum {
                    544:                OPTIONS_STRING,
                    545:                OPTIONS_NUMBER,
1.112     nicm      546:                OPTIONS_DATA,
1.1       nicm      547:        } type;
1.109     nicm      548:
                    549:        char            *str;
                    550:        long long        num;
1.112     nicm      551:        void            *data;
                    552:
                    553:        void             (*freefn)(void *);
1.1       nicm      554:
                    555:        SPLAY_ENTRY(options_entry) entry;
                    556: };
                    557:
                    558: struct options {
                    559:        SPLAY_HEAD(options_tree, options_entry) tree;
                    560:        struct options  *parent;
                    561: };
                    562:
1.112     nicm      563: /* Key list for prefix option. */
                    564: ARRAY_DECL(keylist, int);
                    565:
1.1       nicm      566: /* Screen selection. */
                    567: struct screen_sel {
                    568:        int              flag;
                    569:
                    570:        u_int            sx;
                    571:        u_int            sy;
                    572:
                    573:        u_int            ex;
                    574:        u_int            ey;
                    575:
                    576:        struct grid_cell cell;
                    577: };
                    578:
                    579: /* Virtual screen. */
                    580: struct screen {
                    581:        char            *title;
                    582:
                    583:        struct grid     *grid;          /* grid data */
                    584:
                    585:        u_int            cx;            /* cursor x */
                    586:        u_int            cy;            /* cursor y */
                    587:
                    588:        u_int            rupper;        /* scroll region top */
                    589:        u_int            rlower;        /* scroll region bottom */
                    590:
                    591:        int              mode;
                    592:
1.6       nicm      593:        bitstr_t        *tabs;
                    594:
1.1       nicm      595:        struct screen_sel sel;
                    596: };
                    597:
                    598: /* Screen write context. */
                    599: struct screen_write_ctx {
                    600:        struct window_pane *wp;
                    601:        struct screen   *s;
                    602: };
                    603:
                    604: /* Screen size. */
                    605: #define screen_size_x(s) ((s)->grid->sx)
                    606: #define screen_size_y(s) ((s)->grid->sy)
                    607: #define screen_hsize(s) ((s)->grid->hsize)
                    608: #define screen_hlimit(s) ((s)->grid->hlimit)
                    609:
                    610: /* Input parser sequence argument. */
                    611: struct input_arg {
                    612:        u_char           data[64];
                    613:        size_t           used;
                    614: };
                    615:
                    616: /* Input parser context. */
                    617: struct input_ctx {
                    618:        struct window_pane *wp;
                    619:        struct screen_write_ctx ctx;
                    620:
                    621:        u_char          *buf;
                    622:        size_t           len;
                    623:        size_t           off;
1.86      nicm      624:        size_t           was;
1.1       nicm      625:
                    626:        struct grid_cell cell;
                    627:
                    628:        struct grid_cell saved_cell;
                    629:        u_int            saved_cx;
                    630:        u_int            saved_cy;
                    631:
                    632: #define MAXSTRINGLEN   1024
                    633:        u_char          *string_buf;
                    634:        size_t           string_len;
                    635:        int              string_type;
                    636: #define STRING_SYSTEM 0
                    637: #define STRING_APPLICATION 1
                    638: #define STRING_NAME 2
                    639:
                    640:        u_char           utf8_buf[4];
                    641:        u_int            utf8_len;
                    642:        u_int            utf8_off;
                    643:
                    644:        u_char           intermediate;
                    645:        void            *(*state)(u_char, struct input_ctx *);
                    646:
                    647:        u_char           private;
                    648:        ARRAY_DECL(, struct input_arg) args;
                    649: };
                    650:
                    651: /*
                    652:  * Window mode. Windows can be in several modes and this is used to call the
                    653:  * right function to handle input and output.
                    654:  */
                    655: struct client;
                    656: struct window;
                    657: struct window_mode {
                    658:        struct screen *(*init)(struct window_pane *);
                    659:        void    (*free)(struct window_pane *);
                    660:        void    (*resize)(struct window_pane *, u_int, u_int);
                    661:        void    (*key)(struct window_pane *, struct client *, int);
                    662:        void    (*mouse)(struct window_pane *,
                    663:                    struct client *, u_char, u_char, u_char);
                    664:        void    (*timer)(struct window_pane *);
                    665: };
                    666:
                    667: /* Child window structure. */
                    668: struct window_pane {
                    669:        struct window   *window;
1.39      nicm      670:        struct layout_cell *layout_cell;
1.1       nicm      671:
                    672:        u_int            sx;
                    673:        u_int            sy;
                    674:
                    675:        u_int            xoff;
                    676:        u_int            yoff;
                    677:
                    678:        int              flags;
1.28      nicm      679: #define PANE_REDRAW 0x1
1.1       nicm      680:
                    681:        char            *cmd;
1.93      nicm      682:        char            *shell;
1.1       nicm      683:        char            *cwd;
                    684:
                    685:        pid_t            pid;
                    686:        int              fd;
                    687:        char             tty[TTY_NAME_MAX];
                    688:        struct buffer   *in;
                    689:        struct buffer   *out;
                    690:
                    691:        struct input_ctx ictx;
                    692:
                    693:        struct screen   *screen;
                    694:        struct screen    base;
                    695:
1.25      nicm      696:        /* Saved in alternative screen mode. */
                    697:        u_int            saved_cx;
                    698:        u_int            saved_cy;
                    699:        struct grid     *saved_grid;
1.69      nicm      700:        struct grid_cell saved_cell;
1.25      nicm      701:
1.1       nicm      702:        const struct window_mode *mode;
                    703:        void            *modedata;
                    704:
                    705:        TAILQ_ENTRY(window_pane) entry;
                    706: };
                    707: TAILQ_HEAD(window_panes, window_pane);
                    708:
                    709: /* Window structure. */
                    710: struct window {
                    711:        char            *name;
                    712:        struct timeval   name_timer;
                    713:
                    714:        struct window_pane *active;
                    715:        struct window_panes panes;
1.39      nicm      716:
1.61      nicm      717:        int              lastlayout;
1.39      nicm      718:        struct layout_cell *layout_root;
1.1       nicm      719:
                    720:        u_int            sx;
                    721:        u_int            sy;
                    722:
                    723:        int              flags;
                    724: #define WINDOW_BELL 0x1
                    725: #define WINDOW_HIDDEN 0x2
                    726: #define WINDOW_ACTIVITY 0x4
1.38      nicm      727: #define WINDOW_CONTENT 0x8
                    728: #define WINDOW_REDRAW 0x10
1.1       nicm      729:
                    730:        struct options   options;
                    731:
                    732:        u_int            references;
                    733: };
                    734: ARRAY_DECL(windows, struct window *);
                    735:
                    736: /* Entry on local window list. */
                    737: struct winlink {
                    738:        int              idx;
                    739:        struct window   *window;
                    740:
                    741:        RB_ENTRY(winlink) entry;
1.124   ! nicm      742:        TAILQ_ENTRY(winlink) sentry;
1.1       nicm      743: };
                    744: RB_HEAD(winlinks, winlink);
1.124   ! nicm      745: TAILQ_HEAD(winlink_stack, winlink);
1.1       nicm      746:
1.39      nicm      747: /* Layout direction. */
                    748: enum layout_type {
                    749:        LAYOUT_LEFTRIGHT,
                    750:        LAYOUT_TOPBOTTOM,
                    751:        LAYOUT_WINDOWPANE
                    752: };
                    753:
                    754: /* Layout cells queue. */
                    755: TAILQ_HEAD(layout_cells, layout_cell);
                    756:
                    757: /* Layout cell. */
                    758: struct layout_cell {
                    759:        enum layout_type type;
                    760:
                    761:        struct layout_cell *parent;
                    762:
                    763:        u_int            sx;
                    764:        u_int            sy;
                    765:
                    766:        u_int            xoff;
                    767:        u_int            yoff;
                    768:
                    769:        struct window_pane *wp;
                    770:        struct layout_cells cells;
                    771:
                    772:        TAILQ_ENTRY(layout_cell) entry;
                    773: };
                    774:
1.1       nicm      775: /* Paste buffer. */
                    776: struct paste_buffer {
                    777:        char            *data;
1.100     nicm      778:        size_t           size;
1.1       nicm      779:        struct timeval   tv;
                    780: };
                    781: ARRAY_DECL(paste_stack, struct paste_buffer *);
                    782:
1.73      nicm      783: /* Environment variable. */
                    784: struct environ_entry {
                    785:        char            *name;
                    786:        char            *value;
                    787:
                    788:        RB_ENTRY(environ_entry) entry;
                    789: };
                    790: RB_HEAD(environ, environ_entry);
                    791:
1.1       nicm      792: /* Client session. */
                    793: struct session_alert {
                    794:        struct winlink  *wl;
                    795:        int              type;
                    796:
                    797:        SLIST_ENTRY(session_alert) entry;
                    798: };
                    799:
1.124   ! nicm      800: struct session_group {
        !           801:        TAILQ_HEAD(, session) sessions;
        !           802:
        !           803:        TAILQ_ENTRY(session_group) entry;
        !           804: };
        !           805: TAILQ_HEAD(session_groups, session_group);
        !           806:
1.1       nicm      807: struct session {
                    808:        char            *name;
                    809:        struct timeval   tv;
1.123     nicm      810:        time_t           activity;
1.1       nicm      811:
                    812:        u_int            sx;
                    813:        u_int            sy;
                    814:
                    815:        struct winlink  *curw;
                    816:        struct winlink_stack lastw;
                    817:        struct winlinks  windows;
                    818:
                    819:        struct options   options;
                    820:
                    821:        struct paste_stack buffers;
                    822:
                    823:        SLIST_HEAD(, session_alert) alerts;
                    824:
                    825: #define SESSION_UNATTACHED 0x1 /* not attached to any clients */
1.101     nicm      826: #define SESSION_DEAD 0x2
1.1       nicm      827:        int              flags;
1.73      nicm      828:
1.105     nicm      829:        struct termios  *tio;
1.80      nicm      830:
1.73      nicm      831:        struct environ   environ;
1.101     nicm      832:
                    833:        int              references;
1.124   ! nicm      834:
        !           835:        TAILQ_ENTRY(session) gentry;
1.1       nicm      836: };
                    837: ARRAY_DECL(sessions, struct session *);
                    838:
                    839: /* TTY information. */
                    840: struct tty_key {
                    841:        int              key;
                    842:        char            *string;
                    843:
                    844:        int              flags;
                    845: #define TTYKEY_CTRL 0x1
                    846: #define TTYKEY_RAW 0x2
                    847:
                    848:        RB_ENTRY(tty_key) entry;
                    849: };
                    850:
                    851: struct tty_term {
                    852:        char            *name;
                    853:        u_int            references;
                    854:
                    855:        struct tty_code  codes[NTTYCODE];
                    856:
                    857: #define TERM_HASDEFAULTS 0x1
                    858: #define TERM_256COLOURS 0x2
                    859: #define TERM_88COLOURS 0x4
                    860: #define TERM_EARLYWRAP 0x8
                    861:        int              flags;
                    862:
                    863:        SLIST_ENTRY(tty_term) entry;
                    864: };
                    865: SLIST_HEAD(tty_terms, tty_term);
                    866:
                    867: struct tty {
                    868:        char            *path;
                    869:
                    870:         u_int            sx;
                    871:         u_int            sy;
                    872:
                    873:        u_int            cx;
                    874:        u_int            cy;
                    875:
                    876:        int              mode;
                    877:
                    878:        u_int            rlower;
                    879:        u_int            rupper;
                    880:
                    881:        char            *termname;
                    882:        struct tty_term *term;
                    883:
                    884:        int              fd;
                    885:        struct buffer   *in;
                    886:        struct buffer   *out;
                    887:
                    888:        int              log_fd;
                    889:
                    890:        struct termios   tio;
                    891:
                    892:        struct grid_cell cell;
                    893:
                    894:        u_char           acs[UCHAR_MAX + 1];
                    895:
                    896: #define TTY_NOCURSOR 0x1
                    897: #define TTY_FREEZE 0x2
                    898: #define TTY_ESCAPE 0x4
                    899: #define TTY_UTF8 0x8
1.76      nicm      900: #define TTY_STARTED 0x10
1.77      nicm      901: #define TTY_OPENED 0x20
1.1       nicm      902:        int              flags;
                    903:
                    904:        int              term_flags;
                    905:
                    906:        struct timeval   key_timer;
                    907:
                    908:        size_t           ksize; /* maximum key size */
                    909:        RB_HEAD(tty_keys, tty_key) ktree;
                    910: };
                    911:
1.47      nicm      912: /* TTY command context and function pointer. */
                    913: struct tty_ctx {
                    914:        struct window_pane *wp;
                    915:
                    916:        const struct grid_cell *cell;
                    917:        const struct grid_utf8 *utf8;
                    918:
1.49      nicm      919:        u_int            num;
                    920:        void            *ptr;
                    921:
                    922:        /*
                    923:         * Cursor and region position before the screen was updated - this is
                    924:         * where the command should be applied; the values in the screen have
                    925:         * already been updated.
                    926:         */
                    927:        u_int            ocx;
                    928:        u_int            ocy;
                    929:
                    930:        u_int            orupper;
                    931:        u_int            orlower;
1.47      nicm      932: };
                    933:
1.1       nicm      934: /* Client connection. */
                    935: struct client {
1.75      nicm      936:        struct imsgbuf   ibuf;
1.119     nicm      937:        struct timeval   tv;
1.1       nicm      938:
1.73      nicm      939:        struct environ   environ;
                    940:
1.1       nicm      941:        char            *title;
                    942:        char            *cwd;
                    943:
                    944:        struct tty       tty;
                    945:        struct timeval   status_timer;
                    946:        struct timeval   repeat_timer;
                    947:
                    948:        struct screen    status;
                    949:
                    950: #define CLIENT_TERMINAL 0x1
                    951: #define CLIENT_PREFIX 0x2
                    952: #define CLIENT_MOUSE 0x4
                    953: #define CLIENT_REDRAW 0x8
                    954: #define CLIENT_STATUS 0x10
                    955: #define CLIENT_REPEAT 0x20     /* allow command to repeat within repeat time */
                    956: #define CLIENT_SUSPENDED 0x40
1.70      nicm      957: #define CLIENT_BAD 0x80
1.92      nicm      958: #define CLIENT_IDENTIFY 0x100
1.101     nicm      959: #define CLIENT_DEAD 0x200
1.1       nicm      960:        int              flags;
                    961:
1.92      nicm      962:        struct timeval   identify_timer;
                    963:
1.1       nicm      964:        char            *message_string;
                    965:        struct timeval   message_timer;
                    966:
                    967:        char            *prompt_string;
                    968:        char            *prompt_buffer;
                    969:        size_t           prompt_index;
1.33      nicm      970:        int              (*prompt_callbackfn)(void *, const char *);
                    971:        void             (*prompt_freefn)(void *);
1.1       nicm      972:        void            *prompt_data;
                    973:
1.117     nicm      974: #define PROMPT_SINGLE 0x1
1.1       nicm      975:        int              prompt_flags;
                    976:
                    977:        u_int            prompt_hindex;
                    978:        ARRAY_DECL(, char *) prompt_hdata;
                    979:
                    980:        struct mode_key_data prompt_mdata;
                    981:
                    982:        struct session  *session;
1.101     nicm      983:
                    984:        int              references;
1.1       nicm      985: };
                    986: ARRAY_DECL(clients, struct client *);
                    987:
                    988: /* Client context. */
                    989: struct client_ctx {
1.75      nicm      990:        struct imsgbuf   ibuf;
1.1       nicm      991:
1.53      nicm      992:        enum {
                    993:                CCTX_DETACH,
                    994:                CCTX_EXIT,
                    995:                CCTX_DIED,
1.98      nicm      996:                CCTX_SHUTDOWN
1.53      nicm      997:        } exittype;
                    998:        const char      *errstr;
1.1       nicm      999: };
                   1000:
                   1001: /* Key/command line command. */
                   1002: struct cmd_ctx {
1.35      nicm     1003:        /*
                   1004:         * curclient is the client where this command was executed if inside
                   1005:         * tmux. This is NULL if the command came from the command-line.
                   1006:         *
                   1007:         * cmdclient is the client which sent the MSG_COMMAND to the server, if
                   1008:         * any. This is NULL unless the command came from the command-line.
                   1009:         *
1.52      nicm     1010:         * cmdclient and curclient may both be NULL if the command is in the
                   1011:         * configuration file.
1.35      nicm     1012:         */
1.1       nicm     1013:        struct client  *curclient;
1.54      nicm     1014:        struct client  *cmdclient;
1.35      nicm     1015:
1.1       nicm     1016:        struct msg_command_data *msgdata;
                   1017:
1.90      nicm     1018:        /* gcc2 doesn't understand attributes on function pointers... */
                   1019: #if defined(__GNUC__) && __GNUC__ >= 3
1.85      nicm     1020:        void printflike2 (*print)(struct cmd_ctx *, const char *, ...);
                   1021:        void printflike2 (*info)(struct cmd_ctx *, const char *, ...);
                   1022:        void printflike2 (*error)(struct cmd_ctx *, const char *, ...);
1.90      nicm     1023: #else
                   1024:        void (*print)(struct cmd_ctx *, const char *, ...);
                   1025:        void (*info)(struct cmd_ctx *, const char *, ...);
                   1026:        void (*error)(struct cmd_ctx *, const char *, ...);
                   1027: #endif
1.1       nicm     1028: };
                   1029:
                   1030: struct cmd {
                   1031:        const struct cmd_entry *entry;
                   1032:        void            *data;
                   1033:
                   1034:        TAILQ_ENTRY(cmd) qentry;
                   1035: };
                   1036: TAILQ_HEAD(cmd_list, cmd);
                   1037:
                   1038: struct cmd_entry {
                   1039:        const char      *name;
                   1040:        const char      *alias;
                   1041:        const char      *usage;
                   1042:
                   1043: #define CMD_STARTSERVER 0x1
                   1044: #define CMD_CANTNEST 0x2
1.74      nicm     1045: #define CMD_SENDENVIRON 0x4
                   1046: #define CMD_ARG1 0x8
                   1047: #define CMD_ARG01 0x10
                   1048: #define CMD_ARG2 0x20
                   1049: #define CMD_ARG12 0x40
1.27      nicm     1050:        int              flags;
1.1       nicm     1051:
1.27      nicm     1052: #define CMD_CHFLAG(flag) \
                   1053:        ((flag) >= 'a' && (flag) <= 'z' ? 1ULL << ((flag) - 'a') :      \
                   1054:        (flag) >= 'A' && (flag) <= 'Z' ? 1ULL << (26 + (flag) - 'A') : 0)
                   1055:        uint64_t         chflags;
1.1       nicm     1056:
                   1057:        void             (*init)(struct cmd *, int);
                   1058:        int              (*parse)(struct cmd *, int, char **, char **);
                   1059:        int              (*exec)(struct cmd *, struct cmd_ctx *);
                   1060:        void             (*free)(struct cmd *);
                   1061:        size_t           (*print)(struct cmd *, char *, size_t);
                   1062: };
                   1063:
                   1064: /* Generic command data. */
                   1065: struct cmd_target_data {
1.27      nicm     1066:        uint64_t chflags;
1.1       nicm     1067:        char    *target;
                   1068:        char    *arg;
1.74      nicm     1069:        char    *arg2;
1.1       nicm     1070: };
                   1071:
                   1072: struct cmd_srcdst_data {
1.27      nicm     1073:        uint64_t chflags;
1.1       nicm     1074:        char    *src;
                   1075:        char    *dst;
                   1076:        char    *arg;
1.74      nicm     1077:        char    *arg2;
1.1       nicm     1078: };
                   1079:
                   1080: struct cmd_buffer_data {
1.27      nicm     1081:        uint64_t chflags;
1.1       nicm     1082:        char    *target;
                   1083:        int      buffer;
                   1084:        char    *arg;
1.74      nicm     1085:        char    *arg2;
1.1       nicm     1086: };
                   1087:
                   1088: /* Key binding. */
                   1089: struct key_binding {
                   1090:        int              key;
                   1091:        struct cmd_list *cmdlist;
                   1092:        int              can_repeat;
                   1093:
                   1094:        SPLAY_ENTRY(key_binding) entry;
                   1095: };
                   1096: SPLAY_HEAD(key_bindings, key_binding);
                   1097:
                   1098: /* Set/display option data. */
                   1099: struct set_option_entry {
                   1100:        const char      *name;
                   1101:        enum {
                   1102:                SET_OPTION_STRING,
                   1103:                SET_OPTION_NUMBER,
1.112     nicm     1104:                SET_OPTION_KEYS,
1.1       nicm     1105:                SET_OPTION_COLOUR,
                   1106:                SET_OPTION_ATTRIBUTES,
                   1107:                SET_OPTION_FLAG,
                   1108:                SET_OPTION_CHOICE
                   1109:        } type;
                   1110:
                   1111:        u_int            minimum;
                   1112:        u_int            maximum;
                   1113:
                   1114:        const char     **choices;
                   1115: };
                   1116: extern const struct set_option_entry set_option_table[];
                   1117: extern const struct set_option_entry set_window_option_table[];
                   1118:
                   1119: /* tmux.c */
                   1120: extern volatile sig_atomic_t sigwinch;
                   1121: extern volatile sig_atomic_t sigterm;
                   1122: extern volatile sig_atomic_t sigcont;
                   1123: extern volatile sig_atomic_t sigchld;
                   1124: extern volatile sig_atomic_t sigusr1;
                   1125: extern volatile sig_atomic_t sigusr2;
1.16      nicm     1126: extern struct options global_s_options;
                   1127: extern struct options global_w_options;
1.73      nicm     1128: extern struct environ global_environ;
1.1       nicm     1129: extern char    *cfg_file;
                   1130: extern int      debug_level;
                   1131: extern int      be_quiet;
                   1132: extern time_t   start_time;
                   1133: extern char    *socket_path;
1.96      nicm     1134: extern int      login_shell;
1.1       nicm     1135: void            logfile(const char *);
                   1136: void            siginit(void);
                   1137: void            sigreset(void);
                   1138: void            sighandler(int);
1.93      nicm     1139: const char     *getshell(void);
                   1140: int             checkshell(const char *);
                   1141: int             areshell(const char *);
1.1       nicm     1142:
                   1143: /* cfg.c */
1.89      nicm     1144: int             load_cfg(const char *, struct cmd_ctx *, char **);
1.1       nicm     1145:
                   1146: /* mode-key.c */
1.62      nicm     1147: extern const struct mode_key_table mode_key_tables[];
                   1148: extern struct mode_key_tree mode_key_tree_vi_edit;
                   1149: extern struct mode_key_tree mode_key_tree_vi_choice;
                   1150: extern struct mode_key_tree mode_key_tree_vi_copy;
                   1151: extern struct mode_key_tree mode_key_tree_emacs_edit;
                   1152: extern struct mode_key_tree mode_key_tree_emacs_choice;
                   1153: extern struct mode_key_tree mode_key_tree_emacs_copy;
                   1154: int    mode_key_cmp(struct mode_key_binding *, struct mode_key_binding *);
                   1155: SPLAY_PROTOTYPE(mode_key_tree, mode_key_binding, entry, mode_key_cmp);
                   1156: const char *mode_key_tostring(struct mode_key_cmdstr *r, enum mode_key_cmd);
1.63      nicm     1157: enum mode_key_cmd mode_key_fromstring(struct mode_key_cmdstr *, const char *);
                   1158: const struct mode_key_table *mode_key_findtable(const char *);
1.62      nicm     1159: void   mode_key_init_trees(void);
                   1160: void   mode_key_free_trees(void);
                   1161: void   mode_key_init(struct mode_key_data *, struct mode_key_tree *);
1.1       nicm     1162: enum mode_key_cmd mode_key_lookup(struct mode_key_data *, int);
                   1163:
                   1164: /* options.c */
                   1165: int    options_cmp(struct options_entry *, struct options_entry *);
                   1166: SPLAY_PROTOTYPE(options_tree, options_entry, entry, options_cmp);
                   1167: void   options_init(struct options *, struct options *);
                   1168: void   options_free(struct options *);
                   1169: struct options_entry *options_find1(struct options *, const char *);
                   1170: struct options_entry *options_find(struct options *, const char *);
1.44      nicm     1171: void   options_remove(struct options *, const char *);
1.111     nicm     1172: struct options_entry *printflike3 options_set_string(
1.1       nicm     1173:            struct options *, const char *, const char *, ...);
                   1174: char   *options_get_string(struct options *, const char *);
1.111     nicm     1175: struct options_entry *options_set_number(
                   1176:            struct options *, const char *, long long);
1.1       nicm     1177: long long options_get_number(struct options *, const char *);
1.112     nicm     1178: struct options_entry *options_set_data(
                   1179:            struct options *, const char *, void *, void (*)(void *));
                   1180: void   *options_get_data(struct options *, const char *);
1.1       nicm     1181:
1.73      nicm     1182: /* environ.c */
                   1183: int    environ_cmp(struct environ_entry *, struct environ_entry *);
                   1184: RB_PROTOTYPE(environ, environ_entry, entry, environ_cmp);
                   1185: void   environ_init(struct environ *);
                   1186: void   environ_free(struct environ *);
                   1187: void   environ_copy(struct environ *, struct environ *);
                   1188: struct environ_entry *environ_find(struct environ *, const char *);
                   1189: void   environ_set(struct environ *, const char *, const char *);
                   1190: void   environ_put(struct environ *, const char *);
                   1191: void   environ_unset(struct environ *, const char *);
                   1192: void   environ_update(const char *, struct environ *, struct environ *);
                   1193:
1.1       nicm     1194: /* tty.c */
1.115     nicm     1195: void   tty_raw(struct tty *, const char *);
1.47      nicm     1196: u_char tty_get_acs(struct tty *, u_char);
1.92      nicm     1197: void   tty_attributes(struct tty *, const struct grid_cell *);
1.47      nicm     1198: void   tty_reset(struct tty *);
                   1199: void   tty_region(struct tty *, u_int, u_int, u_int);
                   1200: void   tty_cursor(struct tty *, u_int, u_int, u_int, u_int);
                   1201: void   tty_putcode(struct tty *, enum tty_code_code);
                   1202: void   tty_putcode1(struct tty *, enum tty_code_code, int);
                   1203: void   tty_putcode2(struct tty *, enum tty_code_code, int, int);
                   1204: void   tty_puts(struct tty *, const char *);
                   1205: void   tty_putc(struct tty *, u_char);
                   1206: void   tty_pututf8(struct tty *, const struct grid_utf8 *);
1.113     nicm     1207: void   tty_init(struct tty *, int, char *);
1.114     nicm     1208: void   tty_resize(struct tty *);
1.47      nicm     1209: void   tty_start_tty(struct tty *);
                   1210: void   tty_stop_tty(struct tty *);
                   1211: void   tty_set_title(struct tty *, const char *);
                   1212: void   tty_update_mode(struct tty *, int);
                   1213: void   tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int);
1.67      nicm     1214: int    tty_open(struct tty *, const char *, char **);
1.76      nicm     1215: void   tty_close(struct tty *);
                   1216: void   tty_free(struct tty *);
1.79      nicm     1217: void   tty_write(void (*)(
                   1218:            struct tty *, const struct tty_ctx *), const struct tty_ctx *);
                   1219: void   tty_cmd_alignmenttest(struct tty *, const struct tty_ctx *);
                   1220: void   tty_cmd_cell(struct tty *, const struct tty_ctx *);
                   1221: void   tty_cmd_clearendofline(struct tty *, const struct tty_ctx *);
                   1222: void   tty_cmd_clearendofscreen(struct tty *, const struct tty_ctx *);
                   1223: void   tty_cmd_clearline(struct tty *, const struct tty_ctx *);
                   1224: void   tty_cmd_clearscreen(struct tty *, const struct tty_ctx *);
                   1225: void   tty_cmd_clearstartofline(struct tty *, const struct tty_ctx *);
                   1226: void   tty_cmd_clearstartofscreen(struct tty *, const struct tty_ctx *);
                   1227: void   tty_cmd_deletecharacter(struct tty *, const struct tty_ctx *);
                   1228: void   tty_cmd_deleteline(struct tty *, const struct tty_ctx *);
                   1229: void   tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);
                   1230: void   tty_cmd_insertline(struct tty *, const struct tty_ctx *);
                   1231: void   tty_cmd_linefeed(struct tty *, const struct tty_ctx *);
                   1232: void   tty_cmd_utf8character(struct tty *, const struct tty_ctx *);
                   1233: void   tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);
1.1       nicm     1234:
                   1235: /* tty-term.c */
                   1236: extern struct tty_terms tty_terms;
                   1237: extern struct tty_term_code_entry tty_term_codes[NTTYCODE];
1.67      nicm     1238: struct tty_term *tty_term_find(char *, int, const char *, char **);
1.1       nicm     1239: void            tty_term_free(struct tty_term *);
                   1240: int             tty_term_has(struct tty_term *, enum tty_code_code);
                   1241: const char     *tty_term_string(struct tty_term *, enum tty_code_code);
                   1242: const char     *tty_term_string1(struct tty_term *, enum tty_code_code, int);
                   1243: const char     *tty_term_string2(
                   1244:                     struct tty_term *, enum tty_code_code, int, int);
                   1245: int             tty_term_number(struct tty_term *, enum tty_code_code);
                   1246: int             tty_term_flag(struct tty_term *, enum tty_code_code);
                   1247:
                   1248: /* tty-keys.c */
1.47      nicm     1249: int    tty_keys_cmp(struct tty_key *, struct tty_key *);
1.1       nicm     1250: RB_PROTOTYPE(tty_keys, tty_key, entry, tty_keys_cmp);
1.47      nicm     1251: void   tty_keys_init(struct tty *);
                   1252: void   tty_keys_free(struct tty *);
                   1253: int    tty_keys_next(struct tty *, int *, u_char *);
1.1       nicm     1254:
                   1255: /* options-cmd.c */
1.110     nicm     1256: const char *set_option_print(
                   1257:            const struct set_option_entry *, struct options_entry *);
1.1       nicm     1258: void   set_option_string(struct cmd_ctx *,
1.68      nicm     1259:            struct options *, const struct set_option_entry *, char *, int);
1.1       nicm     1260: void   set_option_number(struct cmd_ctx *,
                   1261:            struct options *, const struct set_option_entry *, char *);
1.112     nicm     1262: void   set_option_keys(struct cmd_ctx *,
1.1       nicm     1263:            struct options *, const struct set_option_entry *, char *);
                   1264: void   set_option_colour(struct cmd_ctx *,
                   1265:            struct options *, const struct set_option_entry *, char *);
                   1266: void   set_option_attributes(struct cmd_ctx *,
                   1267:            struct options *, const struct set_option_entry *, char *);
                   1268: void   set_option_flag(struct cmd_ctx *,
                   1269:            struct options *, const struct set_option_entry *, char *);
                   1270: void   set_option_choice(struct cmd_ctx *,
                   1271:            struct options *, const struct set_option_entry *, char *);
                   1272:
                   1273: /* paste.c */
                   1274: void            paste_init_stack(struct paste_stack *);
                   1275: void            paste_free_stack(struct paste_stack *);
                   1276: struct paste_buffer *paste_walk_stack(struct paste_stack *, uint *);
                   1277: struct paste_buffer *paste_get_top(struct paste_stack *);
                   1278: struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
                   1279: int             paste_free_top(struct paste_stack *);
                   1280: int             paste_free_index(struct paste_stack *, u_int);
1.100     nicm     1281: void            paste_add(struct paste_stack *, u_char *, size_t, u_int);
                   1282: int             paste_replace(struct paste_stack *, u_int, u_char *, size_t);
1.1       nicm     1283:
                   1284: /* clock.c */
1.92      nicm     1285: extern const char clock_table[14][5][5];
1.1       nicm     1286: void            clock_draw(struct screen_write_ctx *, u_int, int);
                   1287:
                   1288: /* cmd.c */
1.55      nicm     1289: int             cmd_pack_argv(int, char **, char *, size_t);
                   1290: int             cmd_unpack_argv(char *, size_t, int, char ***);
                   1291: void            cmd_free_argv(int, char **);
1.1       nicm     1292: struct cmd     *cmd_parse(int, char **, char **);
                   1293: int             cmd_exec(struct cmd *, struct cmd_ctx *);
                   1294: void            cmd_free(struct cmd *);
                   1295: size_t          cmd_print(struct cmd *, char *, size_t);
                   1296: struct session *cmd_current_session(struct cmd_ctx *);
                   1297: struct client  *cmd_find_client(struct cmd_ctx *, const char *);
                   1298: struct session *cmd_find_session(struct cmd_ctx *, const char *);
                   1299: struct winlink *cmd_find_window(
1.26      nicm     1300:                     struct cmd_ctx *, const char *, struct session **);
                   1301: int             cmd_find_index(
                   1302:                     struct cmd_ctx *, const char *, struct session **);
1.65      nicm     1303: struct winlink *cmd_find_pane(struct cmd_ctx *,
                   1304:                     const char *, struct session **, struct window_pane **);
1.91      nicm     1305: char           *cmd_template_replace(char *, const char *, int);
1.1       nicm     1306: extern const struct cmd_entry *cmd_table[];
                   1307: extern const struct cmd_entry cmd_attach_session_entry;
                   1308: extern const struct cmd_entry cmd_bind_key_entry;
                   1309: extern const struct cmd_entry cmd_break_pane_entry;
1.91      nicm     1310: extern const struct cmd_entry cmd_choose_client_entry;
1.1       nicm     1311: extern const struct cmd_entry cmd_choose_session_entry;
                   1312: extern const struct cmd_entry cmd_choose_window_entry;
                   1313: extern const struct cmd_entry cmd_clear_history_entry;
                   1314: extern const struct cmd_entry cmd_clock_mode_entry;
                   1315: extern const struct cmd_entry cmd_command_prompt_entry;
                   1316: extern const struct cmd_entry cmd_confirm_before_entry;
                   1317: extern const struct cmd_entry cmd_copy_buffer_entry;
                   1318: extern const struct cmd_entry cmd_copy_mode_entry;
                   1319: extern const struct cmd_entry cmd_delete_buffer_entry;
                   1320: extern const struct cmd_entry cmd_detach_client_entry;
1.36      nicm     1321: extern const struct cmd_entry cmd_display_message_entry;
1.92      nicm     1322: extern const struct cmd_entry cmd_display_panes_entry;
1.1       nicm     1323: extern const struct cmd_entry cmd_down_pane_entry;
                   1324: extern const struct cmd_entry cmd_find_window_entry;
                   1325: extern const struct cmd_entry cmd_has_session_entry;
1.19      nicm     1326: extern const struct cmd_entry cmd_if_shell_entry;
1.1       nicm     1327: extern const struct cmd_entry cmd_kill_pane_entry;
                   1328: extern const struct cmd_entry cmd_kill_server_entry;
                   1329: extern const struct cmd_entry cmd_kill_session_entry;
                   1330: extern const struct cmd_entry cmd_kill_window_entry;
                   1331: extern const struct cmd_entry cmd_last_window_entry;
                   1332: extern const struct cmd_entry cmd_link_window_entry;
                   1333: extern const struct cmd_entry cmd_list_buffers_entry;
                   1334: extern const struct cmd_entry cmd_list_clients_entry;
                   1335: extern const struct cmd_entry cmd_list_commands_entry;
                   1336: extern const struct cmd_entry cmd_list_keys_entry;
                   1337: extern const struct cmd_entry cmd_list_sessions_entry;
                   1338: extern const struct cmd_entry cmd_list_windows_entry;
                   1339: extern const struct cmd_entry cmd_load_buffer_entry;
1.118     nicm     1340: extern const struct cmd_entry cmd_lock_client_entry;
1.1       nicm     1341: extern const struct cmd_entry cmd_lock_server_entry;
1.118     nicm     1342: extern const struct cmd_entry cmd_lock_session_entry;
1.1       nicm     1343: extern const struct cmd_entry cmd_move_window_entry;
                   1344: extern const struct cmd_entry cmd_new_session_entry;
                   1345: extern const struct cmd_entry cmd_new_window_entry;
                   1346: extern const struct cmd_entry cmd_next_layout_entry;
                   1347: extern const struct cmd_entry cmd_next_window_entry;
                   1348: extern const struct cmd_entry cmd_paste_buffer_entry;
                   1349: extern const struct cmd_entry cmd_previous_layout_entry;
                   1350: extern const struct cmd_entry cmd_previous_window_entry;
                   1351: extern const struct cmd_entry cmd_refresh_client_entry;
                   1352: extern const struct cmd_entry cmd_rename_session_entry;
                   1353: extern const struct cmd_entry cmd_rename_window_entry;
                   1354: extern const struct cmd_entry cmd_resize_pane_entry;
                   1355: extern const struct cmd_entry cmd_respawn_window_entry;
                   1356: extern const struct cmd_entry cmd_rotate_window_entry;
1.107     nicm     1357: extern const struct cmd_entry cmd_run_shell_entry;
1.1       nicm     1358: extern const struct cmd_entry cmd_save_buffer_entry;
                   1359: extern const struct cmd_entry cmd_select_layout_entry;
                   1360: extern const struct cmd_entry cmd_select_pane_entry;
                   1361: extern const struct cmd_entry cmd_select_prompt_entry;
                   1362: extern const struct cmd_entry cmd_select_window_entry;
                   1363: extern const struct cmd_entry cmd_send_keys_entry;
                   1364: extern const struct cmd_entry cmd_send_prefix_entry;
                   1365: extern const struct cmd_entry cmd_server_info_entry;
                   1366: extern const struct cmd_entry cmd_set_buffer_entry;
1.73      nicm     1367: extern const struct cmd_entry cmd_set_environment_entry;
1.1       nicm     1368: extern const struct cmd_entry cmd_set_option_entry;
                   1369: extern const struct cmd_entry cmd_set_window_option_entry;
                   1370: extern const struct cmd_entry cmd_show_buffer_entry;
1.73      nicm     1371: extern const struct cmd_entry cmd_show_environment_entry;
1.1       nicm     1372: extern const struct cmd_entry cmd_show_options_entry;
                   1373: extern const struct cmd_entry cmd_show_window_options_entry;
                   1374: extern const struct cmd_entry cmd_source_file_entry;
                   1375: extern const struct cmd_entry cmd_split_window_entry;
                   1376: extern const struct cmd_entry cmd_start_server_entry;
                   1377: extern const struct cmd_entry cmd_suspend_client_entry;
                   1378: extern const struct cmd_entry cmd_swap_pane_entry;
                   1379: extern const struct cmd_entry cmd_swap_window_entry;
                   1380: extern const struct cmd_entry cmd_switch_client_entry;
                   1381: extern const struct cmd_entry cmd_unbind_key_entry;
                   1382: extern const struct cmd_entry cmd_unlink_window_entry;
                   1383: extern const struct cmd_entry cmd_up_pane_entry;
                   1384:
                   1385: /* cmd-list.c */
                   1386: struct cmd_list        *cmd_list_parse(int, char **, char **);
                   1387: int             cmd_list_exec(struct cmd_list *, struct cmd_ctx *);
                   1388: void            cmd_list_free(struct cmd_list *);
                   1389: size_t          cmd_list_print(struct cmd_list *, char *, size_t);
                   1390:
                   1391: /* cmd-string.c */
                   1392: int    cmd_string_parse(const char *, struct cmd_list **, char **);
                   1393:
                   1394: /* cmd-generic.c */
                   1395: size_t  cmd_prarg(char *, size_t, const char *, char *);
1.65      nicm     1396: #define CMD_TARGET_PANE_USAGE "[-t target-pane]"
1.1       nicm     1397: #define CMD_TARGET_WINDOW_USAGE "[-t target-window]"
                   1398: #define CMD_TARGET_SESSION_USAGE "[-t target-session]"
                   1399: #define CMD_TARGET_CLIENT_USAGE "[-t target-client]"
                   1400: void   cmd_target_init(struct cmd *, int);
                   1401: int    cmd_target_parse(struct cmd *, int, char **, char **);
                   1402: void   cmd_target_free(struct cmd *);
                   1403: size_t cmd_target_print(struct cmd *, char *, size_t);
1.65      nicm     1404: #define CMD_SRCDST_PANE_USAGE "[-s src-pane] [-t dst-pane]"
1.1       nicm     1405: #define CMD_SRCDST_WINDOW_USAGE "[-s src-window] [-t dst-window]"
                   1406: #define CMD_SRCDST_SESSION_USAGE "[-s src-session] [-t dst-session]"
                   1407: #define CMD_SRCDST_CLIENT_USAGE "[-s src-client] [-t dst-client]"
                   1408: void   cmd_srcdst_init(struct cmd *, int);
                   1409: int    cmd_srcdst_parse(struct cmd *, int, char **, char **);
                   1410: void   cmd_srcdst_free(struct cmd *);
                   1411: size_t cmd_srcdst_print(struct cmd *, char *, size_t);
1.65      nicm     1412: #define CMD_BUFFER_PANE_USAGE "[-b buffer-index] [-t target-pane]"
1.1       nicm     1413: #define CMD_BUFFER_WINDOW_USAGE "[-b buffer-index] [-t target-window]"
                   1414: #define CMD_BUFFER_SESSION_USAGE "[-b buffer-index] [-t target-session]"
                   1415: #define CMD_BUFFER_CLIENT_USAGE "[-b buffer-index] [-t target-client]"
                   1416: void   cmd_buffer_init(struct cmd *, int);
                   1417: int    cmd_buffer_parse(struct cmd *, int, char **, char **);
                   1418: void   cmd_buffer_free(struct cmd *);
                   1419: size_t cmd_buffer_print(struct cmd *, char *, size_t);
                   1420:
                   1421: /* client.c */
                   1422: int     client_init(char *, struct client_ctx *, int, int);
                   1423: int     client_main(struct client_ctx *);
1.53      nicm     1424: int     client_msg_dispatch(struct client_ctx *);
1.1       nicm     1425:
                   1426: /* client-fn.c */
1.64      nicm     1427: void    client_write_server(struct client_ctx *, enum msgtype, void *, size_t);
1.1       nicm     1428: void    client_fill_session(struct msg_command_data *);
1.66      nicm     1429: void    client_suspend(void);
1.1       nicm     1430:
                   1431: /* key-bindings.c */
                   1432: extern struct key_bindings key_bindings;
                   1433: int     key_bindings_cmp(struct key_binding *, struct key_binding *);
                   1434: SPLAY_PROTOTYPE(key_bindings, key_binding, entry, key_bindings_cmp);
                   1435: struct key_binding *key_bindings_lookup(int);
                   1436: void    key_bindings_add(int, int, struct cmd_list *);
                   1437: void    key_bindings_remove(int);
1.24      nicm     1438: void    key_bindings_clean(void);
1.1       nicm     1439: void    key_bindings_init(void);
                   1440: void    key_bindings_free(void);
                   1441: void    key_bindings_dispatch(struct key_binding *, struct client *);
                   1442: void printflike2 key_bindings_error(struct cmd_ctx *, const char *, ...);
                   1443: void printflike2 key_bindings_print(struct cmd_ctx *, const char *, ...);
                   1444: void printflike2 key_bindings_info(struct cmd_ctx *, const char *, ...);
                   1445:
                   1446: /* key-string.c */
                   1447: int     key_string_lookup_string(const char *);
                   1448: const char *key_string_lookup_key(int);
                   1449:
                   1450: /* server.c */
                   1451: extern struct clients clients;
1.101     nicm     1452: extern struct clients dead_clients;
1.1       nicm     1453: int     server_start(char *);
                   1454:
                   1455: /* server-msg.c */
                   1456: int     server_msg_dispatch(struct client *);
                   1457:
                   1458: /* server-fn.c */
1.73      nicm     1459: void    server_fill_environ(struct session *, struct environ *);
1.55      nicm     1460: void    server_write_error(struct client *, const char *);
1.1       nicm     1461: void    server_write_client(
1.64      nicm     1462:              struct client *, enum msgtype, const void *, size_t);
1.1       nicm     1463: void    server_write_session(
1.64      nicm     1464:              struct session *, enum msgtype, const void *, size_t);
1.1       nicm     1465: void    server_redraw_client(struct client *);
                   1466: void    server_status_client(struct client *);
                   1467: void    server_redraw_session(struct session *);
1.124   ! nicm     1468: void    server_redraw_session_group(struct session *);
1.1       nicm     1469: void    server_status_session(struct session *);
1.124   ! nicm     1470: void    server_status_session_group(struct session *);
1.1       nicm     1471: void    server_redraw_window(struct window *);
                   1472: void    server_status_window(struct window *);
                   1473: void    server_lock(void);
1.118     nicm     1474: void    server_lock_session(struct session *);
                   1475: void    server_lock_client(struct client *);
1.1       nicm     1476: int     server_unlock(const char *);
1.37      nicm     1477: void    server_kill_window(struct window *);
1.124   ! nicm     1478: int     server_link_window(struct session *,
1.106     nicm     1479:             struct winlink *, struct session *, int, int, int, char **);
                   1480: void    server_unlink_window(struct session *, struct winlink *);
1.124   ! nicm     1481: void    server_destroy_session_group(struct session *);
1.103     nicm     1482: void    server_destroy_session(struct session *);
1.92      nicm     1483: void    server_set_identify(struct client *);
                   1484: void    server_clear_identify(struct client *);
1.1       nicm     1485:
                   1486: /* status.c */
                   1487: int     status_redraw(struct client *);
1.36      nicm     1488: char   *status_replace(struct session *, const char *, time_t);
1.32      nicm     1489: void printflike2 status_message_set(struct client *, const char *, ...);
1.1       nicm     1490: void    status_message_clear(struct client *);
                   1491: int     status_message_redraw(struct client *);
1.33      nicm     1492: void    status_prompt_set(struct client *, const char *,
                   1493:             int (*)(void *, const char *), void (*)(void *), void *, int);
1.1       nicm     1494: void    status_prompt_clear(struct client *);
                   1495: int     status_prompt_redraw(struct client *);
                   1496: void    status_prompt_key(struct client *, int);
1.87      nicm     1497: void    status_prompt_update(struct client *, const char *);
1.1       nicm     1498:
                   1499: /* resize.c */
                   1500: void    recalculate_sizes(void);
                   1501:
                   1502: /* input.c */
                   1503: void    input_init(struct window_pane *);
                   1504: void    input_free(struct window_pane *);
                   1505: void    input_parse(struct window_pane *);
                   1506:
                   1507: /* input-key.c */
                   1508: void    input_key(struct window_pane *, int);
                   1509: void    input_mouse(struct window_pane *, u_char, u_char, u_char);
                   1510:
                   1511: /* colour.c */
1.102     nicm     1512: void    colour_set_fg(struct grid_cell *, int);
                   1513: void    colour_set_bg(struct grid_cell *, int);
                   1514: const char *colour_tostring(int);
1.1       nicm     1515: int     colour_fromstring(const char *);
                   1516: u_char  colour_256to16(u_char);
                   1517: u_char  colour_256to88(u_char);
                   1518:
                   1519: /* attributes.c */
                   1520: const char *attributes_tostring(u_char);
                   1521: int     attributes_fromstring(const char *);
                   1522:
                   1523: /* grid.c */
                   1524: extern const struct grid_cell grid_default_cell;
                   1525: struct grid *grid_create(u_int, u_int, u_int);
                   1526: void    grid_destroy(struct grid *);
                   1527: int     grid_compare(struct grid *, struct grid *);
                   1528: void    grid_expand_line(struct grid *, u_int, u_int);
                   1529: void    grid_expand_line_utf8(struct grid *, u_int, u_int);
                   1530: void    grid_scroll_line(struct grid *);
                   1531: const struct grid_cell *grid_peek_cell(struct grid *, u_int, u_int);
                   1532: struct grid_cell *grid_get_cell(struct grid *, u_int, u_int);
                   1533: void    grid_set_cell(struct grid *, u_int, u_int, const struct grid_cell *);
                   1534: const struct grid_utf8 *grid_peek_utf8(struct grid *, u_int, u_int);
                   1535: struct grid_utf8 *grid_get_utf8(struct grid *, u_int, u_int);
                   1536: void    grid_set_utf8(struct grid *, u_int, u_int, const struct grid_utf8 *);
                   1537: void    grid_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1538: void    grid_clear_lines(struct grid *, u_int, u_int);
                   1539: void    grid_move_lines(struct grid *, u_int, u_int, u_int);
                   1540: void    grid_move_cells(struct grid *, u_int, u_int, u_int, u_int);
1.9       nicm     1541: char   *grid_string_cells(struct grid *, u_int, u_int, u_int);
1.25      nicm     1542: void    grid_duplicate_lines(
                   1543:             struct grid *, u_int, struct grid *, u_int, u_int);
1.1       nicm     1544:
                   1545: /* grid-view.c */
                   1546: const struct grid_cell *grid_view_peek_cell(struct grid *, u_int, u_int);
                   1547: struct grid_cell *grid_view_get_cell(struct grid *, u_int, u_int);
                   1548: void    grid_view_set_cell(
                   1549:             struct grid *, u_int, u_int, const struct grid_cell *);
                   1550: const struct grid_utf8 *grid_view_peek_utf8(struct grid *, u_int, u_int);
                   1551: struct grid_utf8 *grid_view_get_utf8(struct grid *, u_int, u_int);
                   1552: void    grid_view_set_utf8(
                   1553:             struct grid *, u_int, u_int, const struct grid_utf8 *);
                   1554: void    grid_view_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1555: void    grid_view_scroll_region_up(struct grid *, u_int, u_int);
                   1556: void    grid_view_scroll_region_down(struct grid *, u_int, u_int);
                   1557: void    grid_view_insert_lines(struct grid *, u_int, u_int);
1.18      nicm     1558: void    grid_view_insert_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1559: void    grid_view_delete_lines(struct grid *, u_int, u_int);
1.18      nicm     1560: void    grid_view_delete_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1561: void    grid_view_insert_cells(struct grid *, u_int, u_int, u_int);
                   1562: void    grid_view_delete_cells(struct grid *, u_int, u_int, u_int);
1.9       nicm     1563: char   *grid_view_string_cells(struct grid *, u_int, u_int, u_int);
1.1       nicm     1564:
                   1565: /* screen-write.c */
                   1566: void    screen_write_start(
                   1567:             struct screen_write_ctx *, struct window_pane *, struct screen *);
                   1568: void    screen_write_stop(struct screen_write_ctx *);
1.99      nicm     1569: size_t printflike2 screen_write_cstrlen(int, const char *, ...);
                   1570: void printflike5 screen_write_cnputs(struct screen_write_ctx *,
                   1571:     ssize_t, struct grid_cell *, int, const char *, ...);
1.4       nicm     1572: size_t printflike2 screen_write_strlen(int, const char *, ...);
1.3       nicm     1573: void printflike3 screen_write_puts(struct screen_write_ctx *,
                   1574:             struct grid_cell *, const char *, ...);
1.4       nicm     1575: void printflike5 screen_write_nputs(struct screen_write_ctx *,
                   1576:     ssize_t, struct grid_cell *, int, const char *, ...);
1.3       nicm     1577: void    screen_write_vnputs(struct screen_write_ctx *,
1.4       nicm     1578:             ssize_t, struct grid_cell *, int, const char *, va_list);
1.99      nicm     1579: void    screen_write_parsestyle(
                   1580:             struct grid_cell *, struct grid_cell *, const char *);
1.1       nicm     1581: void    screen_write_putc(
                   1582:             struct screen_write_ctx *, struct grid_cell *, u_char);
                   1583: void    screen_write_copy(struct screen_write_ctx *,
                   1584:             struct screen *, u_int, u_int, u_int, u_int);
                   1585: void    screen_write_cursorup(struct screen_write_ctx *, u_int);
                   1586: void    screen_write_cursordown(struct screen_write_ctx *, u_int);
                   1587: void    screen_write_cursorright(struct screen_write_ctx *, u_int);
                   1588: void    screen_write_cursorleft(struct screen_write_ctx *, u_int);
1.5       nicm     1589: void    screen_write_alignmenttest(struct screen_write_ctx *);
1.1       nicm     1590: void    screen_write_insertcharacter(struct screen_write_ctx *, u_int);
                   1591: void    screen_write_deletecharacter(struct screen_write_ctx *, u_int);
                   1592: void    screen_write_insertline(struct screen_write_ctx *, u_int);
                   1593: void    screen_write_deleteline(struct screen_write_ctx *, u_int);
                   1594: void    screen_write_clearline(struct screen_write_ctx *);
                   1595: void    screen_write_clearendofline(struct screen_write_ctx *);
                   1596: void    screen_write_clearstartofline(struct screen_write_ctx *);
                   1597: void    screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);
                   1598: void    screen_write_cursormode(struct screen_write_ctx *, int);
                   1599: void    screen_write_reverseindex(struct screen_write_ctx *);
                   1600: void    screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
                   1601: void    screen_write_insertmode(struct screen_write_ctx *, int);
                   1602: void    screen_write_mousemode(struct screen_write_ctx *, int);
1.72      nicm     1603: void    screen_write_linefeed(struct screen_write_ctx *, int);
1.1       nicm     1604: void    screen_write_carriagereturn(struct screen_write_ctx *);
                   1605: void    screen_write_kcursormode(struct screen_write_ctx *, int);
                   1606: void    screen_write_kkeypadmode(struct screen_write_ctx *, int);
                   1607: void    screen_write_clearendofscreen(struct screen_write_ctx *);
                   1608: void    screen_write_clearstartofscreen(struct screen_write_ctx *);
                   1609: void    screen_write_clearscreen(struct screen_write_ctx *);
                   1610: void    screen_write_cell(
                   1611:             struct screen_write_ctx *, const struct grid_cell *, u_char *);
                   1612:
                   1613: /* screen-redraw.c */
1.29      nicm     1614: void    screen_redraw_screen(struct client *, int);
1.1       nicm     1615: void    screen_redraw_pane(struct client *, struct window_pane *);
                   1616:
                   1617: /* screen.c */
                   1618: void    screen_init(struct screen *, u_int, u_int, u_int);
                   1619: void    screen_reinit(struct screen *);
                   1620: void    screen_free(struct screen *);
1.6       nicm     1621: void    screen_reset_tabs(struct screen *);
1.1       nicm     1622: void    screen_set_title(struct screen *, const char *);
                   1623: void    screen_resize(struct screen *, u_int, u_int);
                   1624: void    screen_set_selection(
                   1625:             struct screen *, u_int, u_int, u_int, u_int, struct grid_cell *);
                   1626: void    screen_clear_selection(struct screen *);
                   1627: int     screen_check_selection(struct screen *, u_int, u_int);
                   1628:
                   1629: /* window.c */
                   1630: extern struct windows windows;
                   1631: int             window_cmp(struct window *, struct window *);
                   1632: int             winlink_cmp(struct winlink *, struct winlink *);
                   1633: RB_PROTOTYPE(windows, window, entry, window_cmp);
                   1634: RB_PROTOTYPE(winlinks, winlink, entry, winlink_cmp);
                   1635: struct winlink *winlink_find_by_index(struct winlinks *, int);
                   1636: struct winlink         *winlink_find_by_window(struct winlinks *, struct window *);
1.81      nicm     1637: int             winlink_next_index(struct winlinks *, int);
1.1       nicm     1638: u_int           winlink_count(struct winlinks *);
                   1639: struct winlink *winlink_add(struct winlinks *, struct window *, int);
                   1640: void            winlink_remove(struct winlinks *, struct winlink *);
                   1641: struct winlink *winlink_next(struct winlinks *, struct winlink *);
                   1642: struct winlink *winlink_previous(struct winlinks *, struct winlink *);
                   1643: void            winlink_stack_push(struct winlink_stack *, struct winlink *);
                   1644: void            winlink_stack_remove(struct winlink_stack *, struct winlink *);
                   1645: int             window_index(struct window *, u_int *);
                   1646: struct window  *window_create1(u_int, u_int);
1.73      nicm     1647: struct window  *window_create(const char *, const char *, const char *,
1.93      nicm     1648:                     const char *, struct environ *, struct termios *,
                   1649:                     u_int, u_int, u_int, char **);
1.1       nicm     1650: void            window_destroy(struct window *);
                   1651: void            window_set_active_pane(struct window *, struct window_pane *);
1.51      nicm     1652: struct window_pane *window_add_pane(struct window *, u_int);
1.44      nicm     1653: void            window_resize(struct window *, u_int, u_int);
1.1       nicm     1654: void            window_remove_pane(struct window *, struct window_pane *);
                   1655: struct window_pane *window_pane_at_index(struct window *, u_int);
1.36      nicm     1656: u_int           window_pane_index(struct window *, struct window_pane *);
1.1       nicm     1657: u_int           window_count_panes(struct window *);
                   1658: void            window_destroy_panes(struct window *);
                   1659: struct window_pane *window_pane_create(struct window *, u_int, u_int, u_int);
                   1660: void            window_pane_destroy(struct window_pane *);
1.80      nicm     1661: int             window_pane_spawn(struct window_pane *, const char *,
1.93      nicm     1662:                     const char *, const char *, struct environ *,
                   1663:                     struct termios *, char **);
1.44      nicm     1664: void            window_pane_resize(struct window_pane *, u_int, u_int);
1.1       nicm     1665: int             window_pane_set_mode(
                   1666:                     struct window_pane *, const struct window_mode *);
                   1667: void            window_pane_reset_mode(struct window_pane *);
                   1668: void            window_pane_parse(struct window_pane *);
                   1669: void            window_pane_key(struct window_pane *, struct client *, int);
                   1670: void            window_pane_mouse(struct window_pane *,
                   1671:                     struct client *, u_char, u_char, u_char);
1.28      nicm     1672: int             window_pane_visible(struct window_pane *);
1.10      nicm     1673: char           *window_pane_search(
1.39      nicm     1674:                     struct window_pane *, const char *, u_int *);
1.1       nicm     1675:
                   1676: /* layout.c */
1.39      nicm     1677: struct layout_cell *layout_create_cell(struct layout_cell *);
                   1678: void            layout_free_cell(struct layout_cell *);
                   1679: void            layout_print_cell(struct layout_cell *, const char *, u_int);
                   1680: void            layout_set_size(
                   1681:                     struct layout_cell *, u_int, u_int, u_int, u_int);
                   1682: void            layout_make_leaf(
                   1683:                     struct layout_cell *, struct window_pane *);
                   1684: void            layout_make_node(struct layout_cell *, enum layout_type);
                   1685: void            layout_fix_offsets(struct layout_cell *);
                   1686: void            layout_fix_panes(struct window *, u_int, u_int);
                   1687: u_int           layout_resize_check(struct layout_cell *, enum layout_type);
                   1688: void            layout_resize_adjust(
                   1689:                     struct layout_cell *, enum layout_type, int);
                   1690: void            layout_init(struct window *);
                   1691: void            layout_free(struct window *);
                   1692: void            layout_resize(struct window *, u_int, u_int);
                   1693: void            layout_resize_pane(
                   1694:                     struct window_pane *, enum layout_type, int);
                   1695: int             layout_split_pane(struct window_pane *,
                   1696:                     enum layout_type, int, struct window_pane *);
                   1697: void            layout_close_pane(struct window_pane *);
                   1698:
                   1699: /* layout-set.c */
                   1700: const char     *layout_set_name(u_int);
                   1701: int             layout_set_lookup(const char *);
                   1702: u_int           layout_set_select(struct window *, u_int);
                   1703: u_int           layout_set_next(struct window *);
                   1704: u_int           layout_set_previous(struct window *);
                   1705: void            layout_set_active_changed(struct window *);
1.1       nicm     1706:
                   1707: /* window-clock.c */
                   1708: extern const struct window_mode window_clock_mode;
                   1709:
                   1710: /* window-copy.c */
                   1711: extern const struct window_mode window_copy_mode;
                   1712: void            window_copy_pageup(struct window_pane *);
                   1713:
                   1714: /* window-more.c */
                   1715: extern const struct window_mode window_more_mode;
                   1716: void            window_more_vadd(struct window_pane *, const char *, va_list);
                   1717:
                   1718: /* window-choose.c */
                   1719: extern const struct window_mode window_choose_mode;
                   1720: void            window_choose_vadd(
                   1721:                     struct window_pane *, int, const char *, va_list);
                   1722: void printflike3 window_choose_add(
                   1723:                     struct window_pane *, int, const char *, ...);
                   1724: void            window_choose_ready(struct window_pane *,
1.34      nicm     1725:                     u_int, void (*)(void *, int), void (*)(void *), void *);
1.1       nicm     1726:
                   1727: /* names.c */
                   1728: void            set_window_names(void);
                   1729: char           *default_window_name(struct window *);
                   1730:
                   1731: /* session.c */
                   1732: extern struct sessions sessions;
1.101     nicm     1733: extern struct sessions dead_sessions;
1.124   ! nicm     1734: extern struct session_groups session_groups;
1.1       nicm     1735: void    session_alert_add(struct session *, struct window *, int);
                   1736: void    session_alert_cancel(struct session *, struct winlink *);
                   1737: int     session_alert_has(struct session *, struct winlink *, int);
                   1738: int     session_alert_has_window(struct session *, struct window *, int);
                   1739: struct session *session_find(const char *);
1.80      nicm     1740: struct session *session_create(const char *, const char *, const char *,
1.81      nicm     1741:                     struct environ *, struct termios *, int, u_int, u_int,
                   1742:                     char **);
1.1       nicm     1743: void            session_destroy(struct session *);
                   1744: int             session_index(struct session *, u_int *);
                   1745: struct winlink *session_new(struct session *,
                   1746:                     const char *, const char *, const char *, int, char **);
                   1747: struct winlink *session_attach(
                   1748:                     struct session *, struct window *, int, char **);
                   1749: int             session_detach(struct session *, struct winlink *);
                   1750: int             session_has(struct session *, struct window *);
                   1751: int             session_next(struct session *, int);
                   1752: int             session_previous(struct session *, int);
                   1753: int             session_select(struct session *, int);
                   1754: int             session_last(struct session *);
1.124   ! nicm     1755: struct session_group *session_group_find(struct session *);
        !          1756: u_int           session_group_index(struct session_group *);
        !          1757: void            session_group_add(struct session *, struct session *);
        !          1758: void            session_group_remove(struct session *);
        !          1759: void            session_group_synchronize_to(struct session *);
        !          1760: void            session_group_synchronize_from(struct session *);
        !          1761: void            session_group_synchronize1(struct session *, struct session *);
1.1       nicm     1762:
                   1763: /* utf8.c */
                   1764: void   utf8_build(void);
1.7       nicm     1765: int    utf8_width(const u_char *);
1.1       nicm     1766:
                   1767: /* procname.c */
                   1768: char   *get_proc_name(int, char *);
                   1769:
                   1770: /* buffer.c */
                   1771: struct buffer  *buffer_create(size_t);
                   1772: void            buffer_destroy(struct buffer *);
                   1773: void            buffer_ensure(struct buffer *, size_t);
                   1774: void            buffer_add(struct buffer *, size_t);
                   1775: void            buffer_remove(struct buffer *, size_t);
                   1776: void            buffer_write(struct buffer *, const void *, size_t);
                   1777: void            buffer_read(struct buffer *, void *, size_t);
                   1778: void            buffer_write8(struct buffer *, uint8_t);
                   1779: uint8_t                 buffer_read8(struct buffer *);
                   1780:
                   1781: /* buffer-poll.c */
                   1782: int             buffer_poll(struct pollfd *, struct buffer *, struct buffer *);
                   1783:
                   1784: /* log.c */
                   1785: void            log_open_tty(int);
                   1786: void            log_open_file(int, const char *);
                   1787: void            log_close(void);
                   1788: void printflike1 log_warn(const char *, ...);
                   1789: void printflike1 log_warnx(const char *, ...);
                   1790: void printflike1 log_info(const char *, ...);
                   1791: void printflike1 log_debug(const char *, ...);
                   1792: void printflike1 log_debug2(const char *, ...);
1.85      nicm     1793: __dead void printflike1 log_fatal(const char *, ...);
                   1794: __dead void printflike1 log_fatalx(const char *, ...);
1.1       nicm     1795:
                   1796: /* xmalloc.c */
                   1797: char           *xstrdup(const char *);
                   1798: void           *xcalloc(size_t, size_t);
                   1799: void           *xmalloc(size_t);
                   1800: void           *xrealloc(void *, size_t, size_t);
                   1801: void            xfree(void *);
                   1802: int printflike2         xasprintf(char **, const char *, ...);
                   1803: int             xvasprintf(char **, const char *, va_list);
                   1804: int printflike3         xsnprintf(char *, size_t, const char *, ...);
                   1805: int             xvsnprintf(char *, size_t, const char *, va_list);
                   1806:
                   1807: #endif /* TMUX_H */