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

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