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

1.24    ! nicm        1: /* $OpenBSD: tmux.h,v 1.23 2009/07/12 16:15:34 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:
                     22: #define PROTOCOL_VERSION -13
                     23:
                     24: #include <sys/param.h>
                     25: #include <sys/time.h>
                     26: #include <sys/queue.h>
                     27: #include <sys/tree.h>
                     28:
1.6       nicm       29: #include <bitstring.h>
1.1       nicm       30: #include <getopt.h>
                     31: #include <limits.h>
                     32: #include <poll.h>
                     33: #include <signal.h>
                     34: #include <stdarg.h>
                     35: #include <stdint.h>
                     36: #include <stdio.h>
                     37: #include <termios.h>
                     38:
                     39: #include "array.h"
                     40:
                     41: extern const char    *__progname;
                     42:
1.22      nicm       43: /* Default configuration files. */
1.1       nicm       44: #define DEFAULT_CFG ".tmux.conf"
1.22      nicm       45: #define SYSTEM_CFG "/etc/tmux.conf"
1.1       nicm       46:
                     47: /* Default prompt history length. */
                     48: #define PROMPT_HISTORY 100
                     49:
                     50: /* Minimum pane size. */
                     51: #define PANE_MINIMUM 4 /* includes separator line */
                     52:
                     53: /* Automatic name refresh interval, in milliseconds. */
                     54: #define NAME_INTERVAL 500
                     55:
                     56: /* Escape timer period, in milliseconds. */
                     57: #define ESCAPE_PERIOD 250
                     58:
                     59: /* Maximum poll timeout (when attached). */
                     60: #define POLL_TIMEOUT 50
                     61:
                     62: /* Fatal errors. */
                     63: #define fatal(msg) log_fatal("%s: %s", __func__, msg);
                     64: #define fatalx(msg) log_fatalx("%s: %s", __func__, msg);
                     65:
                     66: /* Definition to shut gcc up about unused arguments. */
                     67: #define unused __attribute__ ((unused))
                     68:
                     69: /* Attribute to make gcc check printf-like arguments. */
                     70: #define printflike1 __attribute__ ((format (printf, 1, 2)))
                     71: #define printflike2 __attribute__ ((format (printf, 2, 3)))
                     72: #define printflike3 __attribute__ ((format (printf, 3, 4)))
                     73: #define printflike4 __attribute__ ((format (printf, 4, 5)))
1.4       nicm       74: #define printflike5 __attribute__ ((format (printf, 5, 6)))
1.1       nicm       75:
                     76: /* Number of items in array. */
1.14      nicm       77: #ifndef nitems
1.1       nicm       78: #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
1.14      nicm       79: #endif
1.1       nicm       80:
                     81: /* Buffer macros. */
                     82: #define BUFFER_USED(b) ((b)->size)
                     83: #define BUFFER_FREE(b) ((b)->space - (b)->off - (b)->size)
                     84: #define BUFFER_IN(b) ((b)->base + (b)->off + (b)->size)
                     85: #define BUFFER_OUT(b) ((b)->base + (b)->off)
                     86:
                     87: /* Buffer structure. */
                     88: struct buffer {
                     89:        u_char  *base;          /* buffer start */
                     90:        size_t   space;         /* total size of buffer */
                     91:
                     92:        size_t   size;          /* size of data in buffer */
                     93:        size_t   off;           /* offset of data in buffer */
                     94: };
                     95:
                     96: /* Bell option values. */
                     97: #define BELL_NONE 0
                     98: #define BELL_ANY 1
                     99: #define BELL_CURRENT 2
                    100:
                    101: /* Key codes. ncurses defines KEY_*. Grrr. */
                    102: #define KEYC_NONE    0x00ffff
                    103: #define KEYC_OFFSET  0x010000
                    104: #define KEYC_ESCAPE  0x020000
                    105: #define KEYC_CONTROL 0x080000
                    106: #define KEYC_SHIFT   0x100000
                    107:
                    108: #define KEYC_ADDESC(k) ((k) | KEYC_ESCAPE)
                    109: #define KEYC_REMOVEESC(k) ((k) & ~KEYC_ESCAPE)
                    110: #define KEYC_ISESC(k) ((k) != KEYC_NONE && ((k) & KEYC_ESCAPE))
                    111:
                    112: #define KEYC_ADDCTL(k) ((k) | KEYC_CONTROL)
                    113: #define KEYC_REMOVECTL(k) ((k) & ~KEYC_CONTROL)
                    114: #define KEYC_ISCTL(k) ((k) != KEYC_NONE && ((k) & KEYC_CONTROL))
                    115:
                    116: #define KEYC_ADDSFT(k) ((k) | KEYC_SHIFT)
                    117: #define KEYC_REMOVESFT(k) ((k) & ~KEYC_SHIFT)
                    118: #define KEYC_ISSFT(k) ((k) != KEYC_NONE && ((k) & KEYC_SHIFT))
                    119:
                    120: /* Mouse key. */
                    121: #define KEYC_MOUSE (KEYC_OFFSET + 0x00)
                    122:
                    123: /* Function keys. */
                    124: #define KEYC_F1 (KEYC_OFFSET + 0x01)
                    125: #define KEYC_F2 (KEYC_OFFSET + 0x02)
                    126: #define KEYC_F3 (KEYC_OFFSET + 0x03)
                    127: #define KEYC_F4 (KEYC_OFFSET + 0x04)
                    128: #define KEYC_F5 (KEYC_OFFSET + 0x05)
                    129: #define KEYC_F6 (KEYC_OFFSET + 0x06)
                    130: #define KEYC_F7 (KEYC_OFFSET + 0x07)
                    131: #define KEYC_F8 (KEYC_OFFSET + 0x08)
                    132: #define KEYC_F9 (KEYC_OFFSET + 0x09)
                    133: #define KEYC_F10 (KEYC_OFFSET + 0x10)
                    134: #define KEYC_F11 (KEYC_OFFSET + 0x11)
                    135: #define KEYC_F12 (KEYC_OFFSET + 0x12)
                    136: #define KEYC_F13 (KEYC_OFFSET + 0x13)
                    137: #define KEYC_F14 (KEYC_OFFSET + 0x14)
                    138: #define KEYC_F15 (KEYC_OFFSET + 0x15)
                    139: #define KEYC_F16 (KEYC_OFFSET + 0x16)
                    140: #define KEYC_F17 (KEYC_OFFSET + 0x17)
                    141: #define KEYC_F18 (KEYC_OFFSET + 0x18)
                    142: #define KEYC_F19 (KEYC_OFFSET + 0x19)
                    143: #define KEYC_F20 (KEYC_OFFSET + 0x1a)
                    144: #define KEYC_IC (KEYC_OFFSET + 0x1b)
                    145: #define KEYC_DC (KEYC_OFFSET + 0x1c)
                    146: #define KEYC_HOME (KEYC_OFFSET + 0x1d)
                    147: #define KEYC_END (KEYC_OFFSET + 0x1e)
                    148: #define KEYC_NPAGE (KEYC_OFFSET + 0x1f)
                    149: #define KEYC_PPAGE (KEYC_OFFSET + 0x20)
                    150: #define KEYC_BTAB (KEYC_OFFSET + 0x21)
                    151:
                    152: /* Arrow keys. */
                    153: #define KEYC_UP (KEYC_OFFSET + 0x50)
                    154: #define KEYC_DOWN (KEYC_OFFSET + 0x51)
                    155: #define KEYC_LEFT (KEYC_OFFSET + 0x52)
                    156: #define KEYC_RIGHT (KEYC_OFFSET + 0x53)
                    157:
                    158: /* Numeric keypad. Numbered from top-left, KPY_X. */
                    159: #define KEYC_KP0_1 (KEYC_OFFSET + 0x100)
                    160: #define KEYC_KP0_2 (KEYC_OFFSET + 0x101)
                    161: #define KEYC_KP0_3 (KEYC_OFFSET + 0x102)
                    162: #define KEYC_KP1_0 (KEYC_OFFSET + 0x103)
                    163: #define KEYC_KP1_1 (KEYC_OFFSET + 0x104)
                    164: #define KEYC_KP1_2 (KEYC_OFFSET + 0x105)
                    165: #define KEYC_KP1_3 (KEYC_OFFSET + 0x106)
                    166: #define KEYC_KP2_0 (KEYC_OFFSET + 0x107)
                    167: #define KEYC_KP2_1 (KEYC_OFFSET + 0x108)
                    168: #define KEYC_KP2_2 (KEYC_OFFSET + 0x109)
                    169: #define KEYC_KP3_0 (KEYC_OFFSET + 0x10a)
                    170: #define KEYC_KP3_1 (KEYC_OFFSET + 0x10b)
                    171: #define KEYC_KP3_2 (KEYC_OFFSET + 0x10c)
                    172: #define KEYC_KP3_3 (KEYC_OFFSET + 0x10d)
                    173: #define KEYC_KP4_0 (KEYC_OFFSET + 0x10e)
                    174: #define KEYC_KP4_2 (KEYC_OFFSET + 0x10f)
                    175:
                    176: /* Termcap codes. */
                    177: enum tty_code_code {
                    178:        TTYC_AX = 0,
                    179:        TTYC_ACSC,      /* acs_chars, ac */
                    180:        TTYC_BEL,       /* bell, bl */
                    181:        TTYC_BLINK,     /* enter_blink_mode, mb */
                    182:        TTYC_BOLD,      /* enter_bold_mode, md */
                    183:        TTYC_CIVIS,     /* cursor_invisible, vi */
                    184:        TTYC_CLEAR,     /* clear_screen, cl */
                    185:        TTYC_CNORM,     /* cursor_normal, ve */
                    186:        TTYC_COLORS,    /* max_colors, Co */
                    187:        TTYC_CSR,       /* change_scroll_region, cs */
                    188:        TTYC_CUD,       /* parm_down_cursor, DO */
                    189:        TTYC_CUD1,      /* cursor_down, do */
                    190:        TTYC_CUP,       /* cursor_address, cm */
                    191:        TTYC_DCH,       /* parm_dch, DC */
                    192:        TTYC_DCH1,      /* delete_character, dc */
                    193:        TTYC_DIM,       /* enter_dim_mode, mh */
                    194:        TTYC_DL,        /* parm_delete_line, DL */
                    195:        TTYC_DL1,       /* delete_line, dl */
                    196:        TTYC_EL,        /* clr_eol, ce */
                    197:        TTYC_EL1,       /* clr_bol, cb */
                    198:        TTYC_ENACS,     /* ena_acs, eA */
                    199:        TTYC_ICH,       /* parm_ich, IC */
                    200:        TTYC_ICH1,      /* insert_character, ic */
                    201:        TTYC_IL,        /* parm_insert_line, IL */
                    202:        TTYC_IL1,       /* insert_line, il */
                    203:        TTYC_INVIS,     /* enter_secure_mode, mk */
                    204:        TTYC_IS1,       /* init_1string, i1 */
                    205:        TTYC_IS2,       /* init_2string, i2 */
                    206:        TTYC_IS3,       /* init_3string, i3 */
                    207:        TTYC_KCBT,      /* key_btab, kB */
                    208:        TTYC_KCUB1,     /* key_left, kl */
                    209:        TTYC_KCUD1,     /* key_down, kd */
                    210:        TTYC_KCUF1,     /* key_right, kr */
                    211:        TTYC_KCUU1,     /* key_up, ku */
                    212:        TTYC_KDCH1,     /* key_dc, kD */
                    213:        TTYC_KEND,      /* key_end, ke */
                    214:        TTYC_KF1,       /* key_f1, k1 */
                    215:        TTYC_KF10,      /* key_f10, k; */
                    216:        TTYC_KF11,      /* key_f11, F1 */
                    217:        TTYC_KF12,      /* key_f12, F2 */
                    218:        TTYC_KF13,      /* key_f13, F3 */
                    219:        TTYC_KF14,      /* key_f14, F4 */
                    220:        TTYC_KF15,      /* key_f15, F5 */
                    221:        TTYC_KF16,      /* key_f16, F6 */
                    222:        TTYC_KF17,      /* key_f17, F7 */
                    223:        TTYC_KF18,      /* key_f18, F8 */
                    224:        TTYC_KF19,      /* key_f19, F9 */
                    225:        TTYC_KF20,      /* key_f20, F10 */
                    226:        TTYC_KF2,       /* key_f2, k2 */
                    227:        TTYC_KF3,       /* key_f3, k3 */
                    228:        TTYC_KF4,       /* key_f4, k4 */
                    229:        TTYC_KF5,       /* key_f5, k5 */
                    230:        TTYC_KF6,       /* key_f6, k6 */
                    231:        TTYC_KF7,       /* key_f7, k7 */
                    232:        TTYC_KF8,       /* key_f8, k8 */
                    233:        TTYC_KF9,       /* key_f9, k9 */
                    234:        TTYC_KHOME,     /* key_home, kh */
                    235:        TTYC_KICH1,     /* key_ic, kI */
                    236:        TTYC_KMOUS,     /* key_mouse, Km */
                    237:        TTYC_KNP,       /* key_npage, kN */
                    238:        TTYC_KPP,       /* key_ppage, kP */
                    239:        TTYC_OP,        /* orig_pair, op */
                    240:        TTYC_REV,       /* enter_reverse_mode, mr */
                    241:        TTYC_RI,        /* scroll_reverse, sr */
                    242:        TTYC_RMACS,     /* exit_alt_charset_mode */
                    243:        TTYC_RMCUP,     /* exit_ca_mode, te */
                    244:        TTYC_RMIR,      /* exit_insert_mode, ei */
                    245:        TTYC_RMKX,      /* keypad_local, ke */
                    246:        TTYC_SETAB,     /* set_a_background, AB */
                    247:        TTYC_SETAF,     /* set_a_foreground, AF */
                    248:        TTYC_SGR0,      /* exit_attribute_mode, me */
                    249:        TTYC_SMACS,     /* enter_alt_charset_mode, as */
                    250:        TTYC_SMCUP,     /* enter_ca_mode, ti */
                    251:        TTYC_SMIR,      /* enter_insert_mode, im */
                    252:        TTYC_SMKX,      /* keypad_xmit, ks */
                    253:        TTYC_SMSO,      /* enter_standout_mode, so */
                    254:        TTYC_SMUL,      /* enter_underline_mode, us */
                    255:        TTYC_XENL,      /* eat_newline_glitch, xn */
                    256: };
                    257: #define NTTYCODE (TTYC_XENL + 1)
                    258:
                    259: /* Termcap types. */
                    260: enum tty_code_type {
                    261:        TTYCODE_NONE = 0,
                    262:        TTYCODE_STRING,
                    263:        TTYCODE_NUMBER,
                    264:        TTYCODE_FLAG,
                    265: };
                    266:
                    267: /* Termcap code. */
                    268: struct tty_code {
                    269:        enum tty_code_type      type;
                    270:        union {
                    271:                char           *string;
                    272:                int             number;
                    273:                int             flag;
                    274:        } value;
                    275: };
                    276:
                    277: /* Entry in terminal code table. */
                    278: struct tty_term_code_entry {
                    279:        enum tty_code_code      code;
                    280:        enum tty_code_type      type;
                    281:        const char             *name;
                    282: };
                    283:
                    284: /* Output commands. */
                    285: enum tty_cmd {
1.5       nicm      286:        TTY_ALIGNMENTTEST,
1.1       nicm      287:        TTY_CELL,
                    288:        TTY_CLEARENDOFLINE,
                    289:        TTY_CLEARENDOFSCREEN,
                    290:        TTY_CLEARLINE,
                    291:        TTY_CLEARSCREEN,
                    292:        TTY_CLEARSTARTOFLINE,
                    293:        TTY_CLEARSTARTOFSCREEN,
                    294:        TTY_DELETECHARACTER,
                    295:        TTY_DELETELINE,
                    296:        TTY_INSERTCHARACTER,
                    297:        TTY_INSERTLINE,
                    298:        TTY_LINEFEED,
                    299:        TTY_RAW,
                    300:        TTY_REVERSEINDEX,
                    301: };
                    302:
                    303: /* Message codes. */
                    304: enum hdrtype {
                    305:        MSG_COMMAND,
                    306:        MSG_DETACH,
                    307:        MSG_ERROR,
                    308:        MSG_EXIT,
                    309:        MSG_EXITED,
                    310:        MSG_EXITING,
                    311:        MSG_IDENTIFY,
                    312:        MSG_PRINT,
                    313:        MSG_READY,
                    314:        MSG_RESIZE,
                    315:        MSG_SHUTDOWN,
                    316:        MSG_SUSPEND,
                    317:        MSG_UNLOCK,
                    318:        MSG_WAKEUP,
                    319: };
                    320:
                    321: /* Message header structure. */
                    322: struct hdr {
                    323:        enum hdrtype    type;
                    324:        size_t          size;
                    325: };
                    326:
                    327: struct msg_command_data {
                    328:        pid_t           pid;                    /* pid from $TMUX or -1 */
                    329:        u_int           idx;                    /* index from $TMUX */
                    330:
                    331:        size_t          namelen;
                    332: };
                    333:
                    334: struct msg_identify_data {
                    335:        char            tty[TTY_NAME_MAX];
                    336:        int             version;
                    337:
                    338:        char            cwd[MAXPATHLEN];
                    339:
                    340: #define IDENTIFY_UTF8 0x1
                    341: #define IDENTIFY_256COLOURS 0x2
                    342: #define IDENTIFY_88COLOURS 0x4
                    343: #define IDENTIFY_HASDEFAULTS 0x8
                    344:        int             flags;
                    345:
                    346:        u_int           sx;
                    347:        u_int           sy;
                    348:
                    349:        size_t          termlen;
                    350: };
                    351:
                    352: struct msg_resize_data {
                    353:        u_int           sx;
                    354:        u_int           sy;
                    355: };
                    356:
                    357: /* Editing keys. */
                    358: enum mode_key_cmd {
                    359:        MODEKEYCMD_BACKSPACE = 0x1000,
1.23      nicm      360:        MODEKEYCMD_BACKTOINDENTATION,
1.1       nicm      361:        MODEKEYCMD_CHOOSE,
                    362:        MODEKEYCMD_CLEARSELECTION,
                    363:        MODEKEYCMD_COMPLETE,
                    364:        MODEKEYCMD_COPYSELECTION,
                    365:        MODEKEYCMD_DELETE,
                    366:        MODEKEYCMD_DOWN,
                    367:        MODEKEYCMD_ENDOFLINE,
                    368:        MODEKEYCMD_LEFT,
                    369:        MODEKEYCMD_NEXTPAGE,
                    370:        MODEKEYCMD_NEXTWORD,
                    371:        MODEKEYCMD_NONE,
                    372:        MODEKEYCMD_OTHERKEY,
                    373:        MODEKEYCMD_PASTE,
                    374:        MODEKEYCMD_PREVIOUSPAGE,
                    375:        MODEKEYCMD_PREVIOUSWORD,
                    376:        MODEKEYCMD_QUIT,
                    377:        MODEKEYCMD_RIGHT,
                    378:        MODEKEYCMD_STARTOFLINE,
                    379:        MODEKEYCMD_STARTSELECTION,
                    380:        MODEKEYCMD_UP,
                    381: };
                    382:
                    383: struct mode_key_data {
                    384:        int                      type;
                    385:
                    386:        int                      flags;
                    387: #define MODEKEY_EDITMODE 0x1
                    388: #define MODEKEY_CANEDIT 0x2
                    389: #define MODEKEY_CHOOSEMODE 0x4
                    390: };
                    391:
                    392: #define MODEKEY_EMACS 0
                    393: #define MODEKEY_VI 1
                    394:
                    395: /* Modes. */
                    396: #define MODE_CURSOR 0x1
                    397: #define MODE_INSERT 0x2
                    398: #define MODE_KCURSOR 0x4
                    399: #define MODE_KKEYPAD 0x8
                    400: #define MODE_MOUSE 0x10
                    401:
                    402: /* Grid output. */
                    403: #if defined(DEBUG) && \
                    404:     ((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
                    405:      (defined(__GNUC__) && __GNUC__ >= 3))
                    406: #define GRID_DEBUG(gd, fmt, ...) log_debug3("%s: (sx=%u, sy=%u, hsize=%u) " \
                    407:     fmt, __func__, (gd)->sx, (gd)->sy, (gd)->hsize, ## __VA_ARGS__)
                    408: #else
                    409: #define GRID_DEBUG(...)
                    410: #endif
                    411:
                    412: /* Grid attributes. */
                    413: #define GRID_ATTR_BRIGHT 0x1
                    414: #define GRID_ATTR_DIM 0x2
                    415: #define GRID_ATTR_UNDERSCORE 0x4
                    416: #define GRID_ATTR_BLINK 0x8
                    417: #define GRID_ATTR_REVERSE 0x10
                    418: #define GRID_ATTR_HIDDEN 0x20
                    419: #define GRID_ATTR_ITALICS 0x40
                    420: #define GRID_ATTR_CHARSET 0x80 /* alternative character set */
                    421:
                    422: /* Grid flags. */
                    423: #define GRID_FLAG_FG256 0x1
                    424: #define GRID_FLAG_BG256 0x2
                    425: #define GRID_FLAG_PADDING 0x4
                    426: #define GRID_FLAG_UTF8 0x8
                    427:
                    428: /* Grid cell data. */
                    429: struct grid_cell {
                    430:        u_char  attr;
                    431:        u_char  flags;
                    432:        u_char  fg;
                    433:        u_char  bg;
                    434:        u_char  data;
                    435: } __packed;
                    436:
                    437: /* Grid cell UTF-8 data. Used instead of data in grid_cell for UTF-8 cells. */
                    438: #define UTF8_SIZE 8
                    439: struct grid_utf8 {
                    440:        u_char  width;
                    441:        u_char  data[UTF8_SIZE];
                    442: } __packed;
                    443:
                    444: /* Entire grid of cells. */
                    445: struct grid {
                    446:        u_int   sx;
                    447:        u_int   sy;
                    448:
                    449:        u_int   hsize;
                    450:        u_int   hlimit;
                    451:
                    452:        u_int  *size;
                    453:        struct grid_cell **data;
                    454:
                    455:        u_int  *usize;
                    456:        struct grid_utf8 **udata;
                    457: };
                    458:
                    459: /* Option data structures. */
                    460: struct options_entry {
                    461:        char            *name;
                    462:
                    463:        enum {
                    464:                OPTIONS_STRING,
                    465:                OPTIONS_NUMBER,
                    466:                OPTIONS_KEY,
                    467:        } type;
                    468:        union {
                    469:                char    *string;
                    470:                long long number;
                    471:                int      key;
                    472:        } value;
                    473:
                    474:        SPLAY_ENTRY(options_entry) entry;
                    475: };
                    476:
                    477: struct options {
                    478:        SPLAY_HEAD(options_tree, options_entry) tree;
                    479:        struct options  *parent;
                    480: };
                    481:
                    482: /* Screen selection. */
                    483: struct screen_sel {
                    484:        int              flag;
                    485:
                    486:        u_int            sx;
                    487:        u_int            sy;
                    488:
                    489:        u_int            ex;
                    490:        u_int            ey;
                    491:
                    492:        struct grid_cell cell;
                    493: };
                    494:
                    495: /* Virtual screen. */
                    496: struct screen {
                    497:        char            *title;
                    498:
                    499:        struct grid     *grid;          /* grid data */
                    500:
                    501:        u_int            cx;            /* cursor x */
                    502:        u_int            cy;            /* cursor y */
                    503:
                    504:        u_int            old_cx;
                    505:        u_int            old_cy;
                    506:
                    507:        u_int            rupper;        /* scroll region top */
                    508:        u_int            rlower;        /* scroll region bottom */
                    509:
                    510:        u_int            old_rupper;
                    511:        u_int            old_rlower;
                    512:
                    513:        int              mode;
                    514:
1.6       nicm      515:        bitstr_t        *tabs;
                    516:
1.1       nicm      517:        struct screen_sel sel;
                    518: };
                    519:
                    520: /* Screen write context. */
                    521: struct screen_write_ctx {
                    522:        struct window_pane *wp;
                    523:        struct screen   *s;
                    524: };
                    525:
                    526: /* Screen size. */
                    527: #define screen_size_x(s) ((s)->grid->sx)
                    528: #define screen_size_y(s) ((s)->grid->sy)
                    529: #define screen_hsize(s) ((s)->grid->hsize)
                    530: #define screen_hlimit(s) ((s)->grid->hlimit)
                    531:
                    532: /* Input parser sequence argument. */
                    533: struct input_arg {
                    534:        u_char           data[64];
                    535:        size_t           used;
                    536: };
                    537:
                    538: /* Input parser context. */
                    539: struct input_ctx {
                    540:        struct window_pane *wp;
                    541:        struct screen_write_ctx ctx;
                    542:
                    543:        u_char          *buf;
                    544:        size_t           len;
                    545:        size_t           off;
                    546:
                    547:        struct grid_cell cell;
                    548:
                    549:
                    550:        struct grid_cell saved_cell;
                    551:        u_int            saved_cx;
                    552:        u_int            saved_cy;
                    553:
                    554: #define MAXSTRINGLEN   1024
                    555:        u_char          *string_buf;
                    556:        size_t           string_len;
                    557:        int              string_type;
                    558: #define STRING_SYSTEM 0
                    559: #define STRING_APPLICATION 1
                    560: #define STRING_NAME 2
                    561:
                    562:        u_char           utf8_buf[4];
                    563:        u_int            utf8_len;
                    564:        u_int            utf8_off;
                    565:
                    566:        u_char           intermediate;
                    567:        void            *(*state)(u_char, struct input_ctx *);
                    568:
                    569:        u_char           private;
                    570:        ARRAY_DECL(, struct input_arg) args;
                    571: };
                    572:
                    573: /*
                    574:  * Window mode. Windows can be in several modes and this is used to call the
                    575:  * right function to handle input and output.
                    576:  */
                    577: struct client;
                    578: struct window;
                    579: struct window_mode {
                    580:        struct screen *(*init)(struct window_pane *);
                    581:        void    (*free)(struct window_pane *);
                    582:        void    (*resize)(struct window_pane *, u_int, u_int);
                    583:        void    (*key)(struct window_pane *, struct client *, int);
                    584:        void    (*mouse)(struct window_pane *,
                    585:                    struct client *, u_char, u_char, u_char);
                    586:        void    (*timer)(struct window_pane *);
                    587: };
                    588:
                    589: /* Child window structure. */
                    590: struct window_pane {
                    591:        struct window   *window;
                    592:
                    593:        u_int            sx;
                    594:        u_int            sy;
                    595:
                    596:        u_int            xoff;
                    597:        u_int            yoff;
                    598:
                    599:        int              flags;
                    600: #define PANE_HIDDEN 0x1
1.2       nicm      601: #define PANE_REDRAW 0x2
1.1       nicm      602:
                    603:        char            *cmd;
                    604:        char            *cwd;
                    605:
                    606:        pid_t            pid;
                    607:        int              fd;
                    608:        char             tty[TTY_NAME_MAX];
                    609:        struct buffer   *in;
                    610:        struct buffer   *out;
                    611:
                    612:        struct input_ctx ictx;
                    613:
                    614:        struct screen   *screen;
                    615:        struct screen    base;
                    616:
                    617:        const struct window_mode *mode;
                    618:        void            *modedata;
                    619:
                    620:        TAILQ_ENTRY(window_pane) entry;
                    621: };
                    622: TAILQ_HEAD(window_panes, window_pane);
                    623:
                    624: /* Window structure. */
                    625: struct window {
                    626:        char            *name;
                    627:        struct timeval   name_timer;
                    628:
                    629:        struct window_pane *active;
                    630:        struct window_panes panes;
                    631:        u_int            layout;
                    632:
                    633:        u_int            sx;
                    634:        u_int            sy;
                    635:
                    636:        int              flags;
                    637: #define WINDOW_BELL 0x1
                    638: #define WINDOW_HIDDEN 0x2
                    639: #define WINDOW_ACTIVITY 0x4
                    640: #define WINDOW_CONTENT 0x6
                    641: #define WINDOW_REDRAW 0x8
                    642:
                    643:        struct options   options;
                    644:
                    645:        u_int            references;
                    646: };
                    647: ARRAY_DECL(windows, struct window *);
                    648:
                    649: /* Entry on local window list. */
                    650: struct winlink {
                    651:        int              idx;
                    652:        struct window   *window;
                    653:
                    654:        RB_ENTRY(winlink) entry;
                    655:        SLIST_ENTRY(winlink) sentry;
                    656: };
                    657: RB_HEAD(winlinks, winlink);
                    658: SLIST_HEAD(winlink_stack, winlink);
                    659:
                    660: /* Paste buffer. */
                    661: struct paste_buffer {
                    662:        char            *data;
                    663:        struct timeval   tv;
                    664: };
                    665: ARRAY_DECL(paste_stack, struct paste_buffer *);
                    666:
                    667: /* Client session. */
                    668: struct session_alert {
                    669:        struct winlink  *wl;
                    670:        int              type;
                    671:
                    672:        SLIST_ENTRY(session_alert) entry;
                    673: };
                    674:
                    675: struct session {
                    676:        char            *name;
                    677:        struct timeval   tv;
                    678:
                    679:        u_int            sx;
                    680:        u_int            sy;
                    681:
                    682:        struct winlink  *curw;
                    683:        struct winlink_stack lastw;
                    684:        struct winlinks  windows;
                    685:
                    686:        struct options   options;
                    687:
                    688:        struct paste_stack buffers;
                    689:
                    690:        SLIST_HEAD(, session_alert) alerts;
                    691:
                    692: #define SESSION_UNATTACHED 0x1 /* not attached to any clients */
                    693:        int              flags;
                    694: };
                    695: ARRAY_DECL(sessions, struct session *);
                    696:
                    697: /* TTY information. */
                    698: struct tty_key {
                    699:        int              key;
                    700:        char            *string;
                    701:
                    702:        int              flags;
                    703: #define TTYKEY_CTRL 0x1
                    704: #define TTYKEY_RAW 0x2
                    705:
                    706:        RB_ENTRY(tty_key) entry;
                    707: };
                    708:
                    709: struct tty_term {
                    710:        char            *name;
                    711:        u_int            references;
                    712:
                    713:        struct tty_code  codes[NTTYCODE];
                    714:
                    715: #define TERM_HASDEFAULTS 0x1
                    716: #define TERM_256COLOURS 0x2
                    717: #define TERM_88COLOURS 0x4
                    718: #define TERM_EARLYWRAP 0x8
                    719:        int              flags;
                    720:
                    721:        SLIST_ENTRY(tty_term) entry;
                    722: };
                    723: SLIST_HEAD(tty_terms, tty_term);
                    724:
                    725: struct tty {
                    726:        char            *path;
                    727:
                    728:         u_int            sx;
                    729:         u_int            sy;
                    730:
                    731:        u_int            cx;
                    732:        u_int            cy;
                    733:
                    734:        int              mode;
                    735:
                    736:        u_int            rlower;
                    737:        u_int            rupper;
                    738:
                    739:        char            *termname;
                    740:        struct tty_term *term;
                    741:
                    742:        int              fd;
                    743:        struct buffer   *in;
                    744:        struct buffer   *out;
                    745:
                    746:        int              log_fd;
                    747:
                    748:        struct termios   tio;
                    749:
                    750:        struct grid_cell cell;
                    751:
                    752:        u_char           acs[UCHAR_MAX + 1];
                    753:
                    754: #define TTY_NOCURSOR 0x1
                    755: #define TTY_FREEZE 0x2
                    756: #define TTY_ESCAPE 0x4
                    757: #define TTY_UTF8 0x8
                    758:        int              flags;
                    759:
                    760:        int              term_flags;
                    761:
                    762:        struct timeval   key_timer;
                    763:
                    764:        size_t           ksize; /* maximum key size */
                    765:        RB_HEAD(tty_keys, tty_key) ktree;
                    766: };
                    767:
                    768: /* Client connection. */
                    769: struct client {
                    770:        int              fd;
                    771:        struct buffer   *in;
                    772:        struct buffer   *out;
                    773:
                    774:        char            *title;
                    775:        char            *cwd;
                    776:
                    777:        struct tty       tty;
                    778:        struct timeval   status_timer;
                    779:        struct timeval   repeat_timer;
                    780:
                    781:        struct screen    status;
                    782:
                    783: #define CLIENT_TERMINAL 0x1
                    784: #define CLIENT_PREFIX 0x2
                    785: #define CLIENT_MOUSE 0x4
                    786: #define CLIENT_REDRAW 0x8
                    787: #define CLIENT_STATUS 0x10
                    788: #define CLIENT_REPEAT 0x20     /* allow command to repeat within repeat time */
                    789: #define CLIENT_SUSPENDED 0x40
                    790:        int              flags;
                    791:
                    792:        char            *message_string;
                    793:        struct timeval   message_timer;
                    794:
                    795:        char            *prompt_string;
                    796:        char            *prompt_buffer;
                    797:        size_t           prompt_index;
                    798:        int              (*prompt_callback)(void *, const char *);
                    799:        void            *prompt_data;
                    800:
                    801: #define PROMPT_HIDDEN 0x1
                    802: #define PROMPT_SINGLE 0x2
                    803:        int              prompt_flags;
                    804:
                    805:        u_int            prompt_hindex;
                    806:        ARRAY_DECL(, char *) prompt_hdata;
                    807:
                    808:        struct mode_key_data prompt_mdata;
                    809:
                    810:        struct session  *session;
                    811: };
                    812: ARRAY_DECL(clients, struct client *);
                    813:
                    814: /* Client context. */
                    815: struct client_ctx {
                    816:        int              srv_fd;
                    817:        struct buffer   *srv_in;
                    818:        struct buffer   *srv_out;
                    819:
                    820: #define CCTX_DETACH 0x1
                    821: #define CCTX_EXIT 0x2
                    822: #define CCTX_SHUTDOWN 0x4
                    823:        int              flags;
                    824: };
                    825:
                    826: /* Key/command line command. */
                    827: struct cmd_ctx {
                    828:        struct client  *cmdclient;
                    829:
                    830:        struct client  *curclient;
                    831:        struct session *cursession;
                    832:        struct msg_command_data *msgdata;
                    833:
                    834:        void            (*print)(struct cmd_ctx *, const char *, ...);
                    835:        void            (*info)(struct cmd_ctx *, const char *, ...);
                    836:        void            (*error)(struct cmd_ctx *, const char *, ...);
                    837: };
                    838:
                    839: struct cmd {
                    840:        const struct cmd_entry *entry;
                    841:        void            *data;
                    842:
                    843:        TAILQ_ENTRY(cmd) qentry;
                    844: };
                    845: TAILQ_HEAD(cmd_list, cmd);
                    846:
                    847: struct cmd_entry {
                    848:        const char      *name;
                    849:        const char      *alias;
                    850:        const char      *usage;
                    851:
                    852: #define CMD_STARTSERVER 0x1
                    853: #define CMD_CANTNEST 0x2
                    854: #define CMD_ARG1 0x4
                    855: #define CMD_ARG01 0x8
                    856: #define CMD_AFLAG 0x10
                    857: #define CMD_DFLAG 0x20
                    858: #define CMD_GFLAG 0x40
                    859: #define CMD_KFLAG 0x80
                    860: #define CMD_UFLAG 0x100
                    861: #define CMD_BIGDFLAG 0x200
                    862: #define CMD_BIGUFLAG 0x400
1.21      nicm      863: #define CMD_RFLAG 0x800
1.1       nicm      864:
                    865:        int              flags;
                    866:
                    867:        void             (*init)(struct cmd *, int);
                    868:        int              (*parse)(struct cmd *, int, char **, char **);
                    869:        int              (*exec)(struct cmd *, struct cmd_ctx *);
                    870:        void             (*send)(struct cmd *, struct buffer *);
                    871:        void             (*recv)(struct cmd *, struct buffer *);
                    872:        void             (*free)(struct cmd *);
                    873:        size_t           (*print)(struct cmd *, char *, size_t);
                    874: };
                    875:
                    876: /* Generic command data. */
                    877: struct cmd_target_data {
                    878:        int      flags;
                    879:        char    *target;
                    880:        char    *arg;
                    881: };
                    882:
                    883: struct cmd_srcdst_data {
                    884:        int      flags;
                    885:        char    *src;
                    886:        char    *dst;
                    887:        char    *arg;
                    888: };
                    889:
                    890: struct cmd_buffer_data {
                    891:        int      flags;
                    892:        char    *target;
                    893:        int      buffer;
                    894:        char    *arg;
                    895: };
                    896:
                    897: struct cmd_option_data {
                    898:        int      flags;
                    899:        char    *target;
                    900:        char    *option;
                    901:        char    *value;
                    902: };
                    903:
                    904: struct cmd_pane_data {
                    905:        int      flags;
                    906:        char    *target;
                    907:        char    *arg;
                    908:        int      pane;
                    909: };
                    910:
                    911: /* Key binding. */
                    912: struct key_binding {
                    913:        int              key;
                    914:        struct cmd_list *cmdlist;
                    915:        int              can_repeat;
                    916:
                    917:        SPLAY_ENTRY(key_binding) entry;
                    918: };
                    919: SPLAY_HEAD(key_bindings, key_binding);
                    920:
                    921: /* Set/display option data. */
                    922: struct set_option_entry {
                    923:        const char      *name;
                    924:        enum {
                    925:                SET_OPTION_STRING,
                    926:                SET_OPTION_NUMBER,
                    927:                SET_OPTION_KEY,
                    928:                SET_OPTION_COLOUR,
                    929:                SET_OPTION_ATTRIBUTES,
                    930:                SET_OPTION_FLAG,
                    931:                SET_OPTION_CHOICE
                    932:        } type;
                    933:
                    934:        u_int            minimum;
                    935:        u_int            maximum;
                    936:
                    937:        const char     **choices;
                    938: };
                    939: extern const struct set_option_entry set_option_table[];
                    940: extern const struct set_option_entry set_window_option_table[];
1.20      nicm      941: #define NSETOPTION 26
1.1       nicm      942: #define NSETWINDOWOPTION 19
                    943:
                    944: /* tmux.c */
                    945: extern volatile sig_atomic_t sigwinch;
                    946: extern volatile sig_atomic_t sigterm;
                    947: extern volatile sig_atomic_t sigcont;
                    948: extern volatile sig_atomic_t sigchld;
                    949: extern volatile sig_atomic_t sigusr1;
                    950: extern volatile sig_atomic_t sigusr2;
1.16      nicm      951: extern struct options global_s_options;
                    952: extern struct options global_w_options;
1.1       nicm      953: extern char    *cfg_file;
                    954: extern int      server_locked;
                    955: extern char    *server_password;
                    956: extern time_t   server_activity;
                    957: extern int      debug_level;
                    958: extern int      be_quiet;
                    959: extern time_t   start_time;
                    960: extern char    *socket_path;
                    961: void            logfile(const char *);
                    962: void            siginit(void);
                    963: void            sigreset(void);
                    964: void            sighandler(int);
                    965:
                    966: /* cfg.c */
                    967: int             load_cfg(const char *, char **x);
                    968:
                    969: /* mode-key.c */
                    970: void            mode_key_init(struct mode_key_data *, int, int);
                    971: void            mode_key_free(struct mode_key_data *);
                    972: enum mode_key_cmd mode_key_lookup(struct mode_key_data *, int);
                    973:
                    974: /* options.c */
                    975: int    options_cmp(struct options_entry *, struct options_entry *);
                    976: SPLAY_PROTOTYPE(options_tree, options_entry, entry, options_cmp);
                    977: void   options_init(struct options *, struct options *);
                    978: void   options_free(struct options *);
                    979: struct options_entry *options_find1(struct options *, const char *);
                    980: struct options_entry *options_find(struct options *, const char *);
                    981: int    options_remove(struct options *, const char *);
                    982: void printflike3 options_set_string(
                    983:            struct options *, const char *, const char *, ...);
                    984: char   *options_get_string(struct options *, const char *);
                    985: void   options_set_number(struct options *, const char *, long long);
                    986: long long options_get_number(struct options *, const char *);
                    987:
                    988: /* tty.c */
                    989: u_char          tty_get_acs(struct tty *, u_char);
                    990: void            tty_emulate_repeat(struct tty *,
                    991:                     enum tty_code_code, enum tty_code_code, u_int);
                    992: void            tty_reset(struct tty *);
                    993: void            tty_region(struct tty *, u_int, u_int, u_int);
                    994: void            tty_cursor(struct tty *, u_int, u_int, u_int, u_int);
                    995: void            tty_cell(struct tty *,
                    996:                     const struct grid_cell *, const struct grid_utf8 *);
                    997: void            tty_putcode(struct tty *, enum tty_code_code);
                    998: void            tty_putcode1(struct tty *, enum tty_code_code, int);
                    999: void            tty_putcode2(struct tty *, enum tty_code_code, int, int);
                   1000: void            tty_puts(struct tty *, const char *);
                   1001: void            tty_putc(struct tty *, u_char);
1.8       nicm     1002: void            tty_pututf8(struct tty *, const struct grid_utf8 *);
1.1       nicm     1003: void            tty_init(struct tty *, char *, char *);
                   1004: void            tty_start_tty(struct tty *);
                   1005: void            tty_stop_tty(struct tty *);
                   1006: void            tty_detect_utf8(struct tty *);
                   1007: void            tty_set_title(struct tty *, const char *);
                   1008: void            tty_update_mode(struct tty *, int);
                   1009: void            tty_draw_line(
                   1010:                     struct tty *, struct screen *, u_int, u_int, u_int);
                   1011: void            tty_redraw_region(struct tty *, struct window_pane *);
                   1012: int             tty_open(struct tty *, char **);
                   1013: void            tty_close(struct tty *, int);
                   1014: void            tty_free(struct tty *, int);
                   1015: void            tty_vwrite(
                   1016:                     struct tty *, struct window_pane *, enum tty_cmd, va_list);
                   1017:
                   1018: /* tty-term.c */
                   1019: extern struct tty_terms tty_terms;
                   1020: extern struct tty_term_code_entry tty_term_codes[NTTYCODE];
                   1021: struct tty_term *tty_term_find(char *, int, char **);
                   1022: void            tty_term_free(struct tty_term *);
                   1023: int             tty_term_has(struct tty_term *, enum tty_code_code);
                   1024: const char     *tty_term_string(struct tty_term *, enum tty_code_code);
                   1025: const char     *tty_term_string1(struct tty_term *, enum tty_code_code, int);
                   1026: const char     *tty_term_string2(
                   1027:                     struct tty_term *, enum tty_code_code, int, int);
                   1028: int             tty_term_number(struct tty_term *, enum tty_code_code);
                   1029: int             tty_term_flag(struct tty_term *, enum tty_code_code);
                   1030:
                   1031: /* tty-keys.c */
                   1032: int             tty_keys_cmp(struct tty_key *, struct tty_key *);
                   1033: RB_PROTOTYPE(tty_keys, tty_key, entry, tty_keys_cmp);
                   1034: void            tty_keys_init(struct tty *);
                   1035: void            tty_keys_free(struct tty *);
                   1036: int             tty_keys_next(struct tty *, int *, u_char *);
                   1037:
                   1038: /* tty-write.c */
                   1039: void            tty_write_cmd(struct window_pane *, enum tty_cmd, ...);
                   1040:
                   1041: /* options-cmd.c */
                   1042: void   set_option_string(struct cmd_ctx *,
                   1043:            struct options *, const struct set_option_entry *, char *);
                   1044: void   set_option_number(struct cmd_ctx *,
                   1045:            struct options *, const struct set_option_entry *, char *);
                   1046: void   set_option_key(struct cmd_ctx *,
                   1047:            struct options *, const struct set_option_entry *, char *);
                   1048: void   set_option_colour(struct cmd_ctx *,
                   1049:            struct options *, const struct set_option_entry *, char *);
                   1050: void   set_option_attributes(struct cmd_ctx *,
                   1051:            struct options *, const struct set_option_entry *, char *);
                   1052: void   set_option_flag(struct cmd_ctx *,
                   1053:            struct options *, const struct set_option_entry *, char *);
                   1054: void   set_option_choice(struct cmd_ctx *,
                   1055:            struct options *, const struct set_option_entry *, char *);
                   1056:
                   1057: /* paste.c */
                   1058: void            paste_init_stack(struct paste_stack *);
                   1059: void            paste_free_stack(struct paste_stack *);
                   1060: struct paste_buffer *paste_walk_stack(struct paste_stack *, uint *);
                   1061: struct paste_buffer *paste_get_top(struct paste_stack *);
                   1062: struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
                   1063: int             paste_free_top(struct paste_stack *);
                   1064: int             paste_free_index(struct paste_stack *, u_int);
                   1065: void            paste_add(struct paste_stack *, char *, u_int);
                   1066: int             paste_replace(struct paste_stack *, u_int, char *);
                   1067:
                   1068: /* clock.c */
                   1069: void            clock_draw(struct screen_write_ctx *, u_int, int);
                   1070:
                   1071: /* arg.c */
                   1072: struct client  *arg_parse_client(const char *);
                   1073: struct session         *arg_parse_session(const char *);
                   1074: int             arg_parse_window(const char *, struct session **, int *);
                   1075:
                   1076: /* cmd.c */
                   1077: struct cmd     *cmd_parse(int, char **, char **);
                   1078: int             cmd_exec(struct cmd *, struct cmd_ctx *);
                   1079: void            cmd_send(struct cmd *, struct buffer *);
                   1080: struct cmd     *cmd_recv(struct buffer *);
                   1081: void            cmd_free(struct cmd *);
                   1082: size_t          cmd_print(struct cmd *, char *, size_t);
                   1083: void            cmd_send_string(struct buffer *, const char *);
                   1084: char           *cmd_recv_string(struct buffer *);
                   1085: struct session *cmd_current_session(struct cmd_ctx *);
                   1086: struct client  *cmd_find_client(struct cmd_ctx *, const char *);
                   1087: struct session *cmd_find_session(struct cmd_ctx *, const char *);
                   1088: struct winlink *cmd_find_window(
                   1089:                     struct cmd_ctx *, const char *, struct session **);
                   1090: extern const struct cmd_entry *cmd_table[];
                   1091: extern const struct cmd_entry cmd_attach_session_entry;
                   1092: extern const struct cmd_entry cmd_bind_key_entry;
                   1093: extern const struct cmd_entry cmd_break_pane_entry;
                   1094: extern const struct cmd_entry cmd_choose_session_entry;
                   1095: extern const struct cmd_entry cmd_choose_window_entry;
                   1096: extern const struct cmd_entry cmd_clear_history_entry;
                   1097: extern const struct cmd_entry cmd_clock_mode_entry;
                   1098: extern const struct cmd_entry cmd_command_prompt_entry;
                   1099: extern const struct cmd_entry cmd_confirm_before_entry;
                   1100: extern const struct cmd_entry cmd_copy_buffer_entry;
                   1101: extern const struct cmd_entry cmd_copy_mode_entry;
                   1102: extern const struct cmd_entry cmd_delete_buffer_entry;
                   1103: extern const struct cmd_entry cmd_detach_client_entry;
                   1104: extern const struct cmd_entry cmd_down_pane_entry;
                   1105: extern const struct cmd_entry cmd_find_window_entry;
                   1106: extern const struct cmd_entry cmd_has_session_entry;
1.19      nicm     1107: extern const struct cmd_entry cmd_if_shell_entry;
1.1       nicm     1108: extern const struct cmd_entry cmd_kill_pane_entry;
                   1109: extern const struct cmd_entry cmd_kill_server_entry;
                   1110: extern const struct cmd_entry cmd_kill_session_entry;
                   1111: extern const struct cmd_entry cmd_kill_window_entry;
                   1112: extern const struct cmd_entry cmd_last_window_entry;
                   1113: extern const struct cmd_entry cmd_link_window_entry;
                   1114: extern const struct cmd_entry cmd_list_buffers_entry;
                   1115: extern const struct cmd_entry cmd_list_clients_entry;
                   1116: extern const struct cmd_entry cmd_list_commands_entry;
                   1117: extern const struct cmd_entry cmd_list_keys_entry;
                   1118: extern const struct cmd_entry cmd_list_sessions_entry;
                   1119: extern const struct cmd_entry cmd_list_windows_entry;
                   1120: extern const struct cmd_entry cmd_load_buffer_entry;
                   1121: extern const struct cmd_entry cmd_lock_server_entry;
                   1122: extern const struct cmd_entry cmd_move_window_entry;
                   1123: extern const struct cmd_entry cmd_new_session_entry;
                   1124: extern const struct cmd_entry cmd_new_window_entry;
                   1125: extern const struct cmd_entry cmd_next_layout_entry;
                   1126: extern const struct cmd_entry cmd_next_window_entry;
                   1127: extern const struct cmd_entry cmd_paste_buffer_entry;
                   1128: extern const struct cmd_entry cmd_previous_layout_entry;
                   1129: extern const struct cmd_entry cmd_previous_window_entry;
                   1130: extern const struct cmd_entry cmd_refresh_client_entry;
                   1131: extern const struct cmd_entry cmd_rename_session_entry;
                   1132: extern const struct cmd_entry cmd_rename_window_entry;
                   1133: extern const struct cmd_entry cmd_resize_pane_entry;
                   1134: extern const struct cmd_entry cmd_respawn_window_entry;
                   1135: extern const struct cmd_entry cmd_rotate_window_entry;
                   1136: extern const struct cmd_entry cmd_save_buffer_entry;
                   1137: extern const struct cmd_entry cmd_scroll_mode_entry;
                   1138: extern const struct cmd_entry cmd_select_layout_entry;
                   1139: extern const struct cmd_entry cmd_select_pane_entry;
                   1140: extern const struct cmd_entry cmd_select_prompt_entry;
                   1141: extern const struct cmd_entry cmd_select_window_entry;
                   1142: extern const struct cmd_entry cmd_send_keys_entry;
                   1143: extern const struct cmd_entry cmd_send_prefix_entry;
                   1144: extern const struct cmd_entry cmd_server_info_entry;
                   1145: extern const struct cmd_entry cmd_set_buffer_entry;
                   1146: extern const struct cmd_entry cmd_set_option_entry;
                   1147: extern const struct cmd_entry cmd_set_password_entry;
                   1148: extern const struct cmd_entry cmd_set_window_option_entry;
                   1149: extern const struct cmd_entry cmd_show_buffer_entry;
                   1150: extern const struct cmd_entry cmd_show_options_entry;
                   1151: extern const struct cmd_entry cmd_show_window_options_entry;
                   1152: extern const struct cmd_entry cmd_source_file_entry;
                   1153: extern const struct cmd_entry cmd_split_window_entry;
                   1154: extern const struct cmd_entry cmd_start_server_entry;
                   1155: extern const struct cmd_entry cmd_suspend_client_entry;
                   1156: extern const struct cmd_entry cmd_swap_pane_entry;
                   1157: extern const struct cmd_entry cmd_swap_window_entry;
                   1158: extern const struct cmd_entry cmd_switch_client_entry;
                   1159: extern const struct cmd_entry cmd_unbind_key_entry;
                   1160: extern const struct cmd_entry cmd_unlink_window_entry;
                   1161: extern const struct cmd_entry cmd_up_pane_entry;
                   1162:
                   1163: /* cmd-list.c */
                   1164: struct cmd_list        *cmd_list_parse(int, char **, char **);
                   1165: int             cmd_list_exec(struct cmd_list *, struct cmd_ctx *);
                   1166: void            cmd_list_send(struct cmd_list *, struct buffer *);
                   1167: struct cmd_list        *cmd_list_recv(struct buffer *);
                   1168: void            cmd_list_free(struct cmd_list *);
                   1169: size_t          cmd_list_print(struct cmd_list *, char *, size_t);
                   1170:
                   1171: /* cmd-string.c */
                   1172: int    cmd_string_parse(const char *, struct cmd_list **, char **);
                   1173:
                   1174: /* cmd-generic.c */
                   1175: size_t  cmd_prarg(char *, size_t, const char *, char *);
                   1176: #define CMD_TARGET_WINDOW_USAGE "[-t target-window]"
                   1177: #define CMD_TARGET_SESSION_USAGE "[-t target-session]"
                   1178: #define CMD_TARGET_CLIENT_USAGE "[-t target-client]"
                   1179: void   cmd_target_init(struct cmd *, int);
                   1180: int    cmd_target_parse(struct cmd *, int, char **, char **);
                   1181: void   cmd_target_send(struct cmd *, struct buffer *);
                   1182: void   cmd_target_recv(struct cmd *, struct buffer *);
                   1183: void   cmd_target_free(struct cmd *);
                   1184: size_t cmd_target_print(struct cmd *, char *, size_t);
                   1185: #define CMD_SRCDST_WINDOW_USAGE "[-s src-window] [-t dst-window]"
                   1186: #define CMD_SRCDST_SESSION_USAGE "[-s src-session] [-t dst-session]"
                   1187: #define CMD_SRCDST_CLIENT_USAGE "[-s src-client] [-t dst-client]"
                   1188: void   cmd_srcdst_init(struct cmd *, int);
                   1189: int    cmd_srcdst_parse(struct cmd *, int, char **, char **);
                   1190: void   cmd_srcdst_send(struct cmd *, struct buffer *);
                   1191: void   cmd_srcdst_recv(struct cmd *, struct buffer *);
                   1192: void   cmd_srcdst_free(struct cmd *);
                   1193: size_t cmd_srcdst_print(struct cmd *, char *, size_t);
                   1194: #define CMD_BUFFER_WINDOW_USAGE "[-b buffer-index] [-t target-window]"
                   1195: #define CMD_BUFFER_SESSION_USAGE "[-b buffer-index] [-t target-session]"
                   1196: #define CMD_BUFFER_CLIENT_USAGE "[-b buffer-index] [-t target-client]"
                   1197: void   cmd_buffer_init(struct cmd *, int);
                   1198: int    cmd_buffer_parse(struct cmd *, int, char **, char **);
                   1199: void   cmd_buffer_send(struct cmd *, struct buffer *);
                   1200: void   cmd_buffer_recv(struct cmd *, struct buffer *);
                   1201: void   cmd_buffer_free(struct cmd *);
                   1202: size_t cmd_buffer_print(struct cmd *, char *, size_t);
                   1203: #define CMD_OPTION_WINDOW_USAGE "[-gu] [-t target-window] option [value]"
                   1204: #define CMD_OPTION_SESSION_USAGE "[-gu] [-t target-session] option [value]"
                   1205: #define CMD_OPTION_CLIENT_USAGE "[-gu] [-t target-client] option [value]"
                   1206: void   cmd_option_init(struct cmd *, int);
                   1207: int    cmd_option_parse(struct cmd *, int, char **, char **);
                   1208: void   cmd_option_send(struct cmd *, struct buffer *);
                   1209: void   cmd_option_recv(struct cmd *, struct buffer *);
                   1210: void   cmd_option_free(struct cmd *);
                   1211: size_t cmd_option_print(struct cmd *, char *, size_t);
                   1212: #define CMD_PANE_WINDOW_USAGE "[-t target-window] [-p pane-index]"
                   1213: #define CMD_PANE_SESSION_USAGE "[-t target-session] [-p pane-index]"
                   1214: #define CMD_PANE_CLIENT_USAGE "[-t target-client] [-p pane-index]"
                   1215: void   cmd_pane_init(struct cmd *, int);
                   1216: int    cmd_pane_parse(struct cmd *, int, char **, char **);
                   1217: void   cmd_pane_send(struct cmd *, struct buffer *);
                   1218: void   cmd_pane_recv(struct cmd *, struct buffer *);
                   1219: void   cmd_pane_free(struct cmd *);
                   1220: size_t cmd_pane_print(struct cmd *, char *, size_t);
                   1221:
                   1222: /* client.c */
                   1223: int     client_init(char *, struct client_ctx *, int, int);
                   1224: int     client_main(struct client_ctx *);
                   1225:
                   1226: /* client-msg.c */
                   1227: int     client_msg_dispatch(struct client_ctx *, char **);
                   1228:
                   1229: /* client-fn.c */
                   1230: void    client_write_server(struct client_ctx *, enum hdrtype, void *, size_t);
                   1231: void    client_write_server2(
                   1232:             struct client_ctx *, enum hdrtype, void *, size_t, void *, size_t);
                   1233: void    client_fill_session(struct msg_command_data *);
                   1234:
                   1235: /* key-bindings.c */
                   1236: extern struct key_bindings key_bindings;
                   1237: int     key_bindings_cmp(struct key_binding *, struct key_binding *);
                   1238: SPLAY_PROTOTYPE(key_bindings, key_binding, entry, key_bindings_cmp);
                   1239: struct key_binding *key_bindings_lookup(int);
                   1240: void    key_bindings_add(int, int, struct cmd_list *);
                   1241: void    key_bindings_remove(int);
1.24    ! nicm     1242: void    key_bindings_clean(void);
1.1       nicm     1243: void    key_bindings_init(void);
                   1244: void    key_bindings_free(void);
                   1245: void    key_bindings_dispatch(struct key_binding *, struct client *);
                   1246: void printflike2 key_bindings_error(struct cmd_ctx *, const char *, ...);
                   1247: void printflike2 key_bindings_print(struct cmd_ctx *, const char *, ...);
                   1248: void printflike2 key_bindings_info(struct cmd_ctx *, const char *, ...);
                   1249:
                   1250: /* key-string.c */
                   1251: int     key_string_lookup_string(const char *);
                   1252: const char *key_string_lookup_key(int);
                   1253:
                   1254: /* server.c */
                   1255: extern struct clients clients;
                   1256: struct client *server_create_client(int);
                   1257: int     server_client_index(struct client *);
                   1258: int     server_start(char *);
                   1259:
                   1260: /* server-msg.c */
                   1261: int     server_msg_dispatch(struct client *);
                   1262:
                   1263: /* server-fn.c */
                   1264: const char **server_fill_environ(struct session *);
                   1265: void    server_write_client(
                   1266:              struct client *, enum hdrtype, const void *, size_t);
                   1267: void    server_write_session(
                   1268:              struct session *, enum hdrtype, const void *, size_t);
                   1269: void    server_redraw_client(struct client *);
                   1270: void    server_status_client(struct client *);
                   1271: void    server_redraw_session(struct session *);
                   1272: void    server_status_session(struct session *);
                   1273: void    server_redraw_window(struct window *);
                   1274: void    server_status_window(struct window *);
                   1275: void    server_lock(void);
                   1276: int     server_unlock(const char *);
                   1277:
                   1278: /* status.c */
                   1279: int     status_redraw(struct client *);
                   1280: void    status_message_set(struct client *, const char *);
                   1281: void    status_message_clear(struct client *);
                   1282: int     status_message_redraw(struct client *);
                   1283: void    status_prompt_set(struct client *,
                   1284:             const char *, int (*)(void *, const char *), void *, int);
                   1285: void    status_prompt_clear(struct client *);
                   1286: int     status_prompt_redraw(struct client *);
                   1287: void    status_prompt_key(struct client *, int);
                   1288:
                   1289: /* resize.c */
                   1290: void    recalculate_sizes(void);
                   1291:
                   1292: /* input.c */
                   1293: void    input_init(struct window_pane *);
                   1294: void    input_free(struct window_pane *);
                   1295: void    input_parse(struct window_pane *);
                   1296:
                   1297: /* input-key.c */
                   1298: void    input_key(struct window_pane *, int);
                   1299: void    input_mouse(struct window_pane *, u_char, u_char, u_char);
                   1300:
                   1301: /* colour.c */
                   1302: const char *colour_tostring(u_char);
                   1303: int     colour_fromstring(const char *);
                   1304: u_char  colour_256to16(u_char);
                   1305: u_char  colour_256to88(u_char);
                   1306:
                   1307: /* attributes.c */
                   1308: const char *attributes_tostring(u_char);
                   1309: int     attributes_fromstring(const char *);
                   1310:
                   1311: /* grid.c */
                   1312: extern const struct grid_cell grid_default_cell;
                   1313: struct grid *grid_create(u_int, u_int, u_int);
                   1314: void    grid_destroy(struct grid *);
                   1315: int     grid_compare(struct grid *, struct grid *);
                   1316: void    grid_reduce_line(struct grid *, u_int, u_int);
                   1317: void    grid_expand_line(struct grid *, u_int, u_int);
                   1318: void    grid_expand_line_utf8(struct grid *, u_int, u_int);
                   1319: void    grid_scroll_line(struct grid *);
                   1320: const struct grid_cell *grid_peek_cell(struct grid *, u_int, u_int);
                   1321: struct grid_cell *grid_get_cell(struct grid *, u_int, u_int);
                   1322: void    grid_set_cell(struct grid *, u_int, u_int, const struct grid_cell *);
                   1323: const struct grid_utf8 *grid_peek_utf8(struct grid *, u_int, u_int);
                   1324: struct grid_utf8 *grid_get_utf8(struct grid *, u_int, u_int);
                   1325: void    grid_set_utf8(struct grid *, u_int, u_int, const struct grid_utf8 *);
                   1326: void    grid_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1327: void    grid_clear_lines(struct grid *, u_int, u_int);
                   1328: void    grid_move_lines(struct grid *, u_int, u_int, u_int);
                   1329: void    grid_move_cells(struct grid *, u_int, u_int, u_int, u_int);
1.9       nicm     1330: char   *grid_string_cells(struct grid *, u_int, u_int, u_int);
1.1       nicm     1331:
                   1332: /* grid-view.c */
                   1333: const struct grid_cell *grid_view_peek_cell(struct grid *, u_int, u_int);
                   1334: struct grid_cell *grid_view_get_cell(struct grid *, u_int, u_int);
                   1335: void    grid_view_set_cell(
                   1336:             struct grid *, u_int, u_int, const struct grid_cell *);
                   1337: const struct grid_utf8 *grid_view_peek_utf8(struct grid *, u_int, u_int);
                   1338: struct grid_utf8 *grid_view_get_utf8(struct grid *, u_int, u_int);
                   1339: void    grid_view_set_utf8(
                   1340:             struct grid *, u_int, u_int, const struct grid_utf8 *);
                   1341: void    grid_view_clear(struct grid *, u_int, u_int, u_int, u_int);
                   1342: void    grid_view_scroll_region_up(struct grid *, u_int, u_int);
                   1343: void    grid_view_scroll_region_down(struct grid *, u_int, u_int);
                   1344: void    grid_view_insert_lines(struct grid *, u_int, u_int);
1.18      nicm     1345: void    grid_view_insert_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1346: void    grid_view_delete_lines(struct grid *, u_int, u_int);
1.18      nicm     1347: void    grid_view_delete_lines_region(struct grid *, u_int, u_int, u_int);
1.1       nicm     1348: void    grid_view_insert_cells(struct grid *, u_int, u_int, u_int);
                   1349: void    grid_view_delete_cells(struct grid *, u_int, u_int, u_int);
1.9       nicm     1350: char   *grid_view_string_cells(struct grid *, u_int, u_int, u_int);
1.1       nicm     1351:
                   1352: /* screen-write.c */
                   1353: void    screen_write_start(
                   1354:             struct screen_write_ctx *, struct window_pane *, struct screen *);
                   1355: void    screen_write_stop(struct screen_write_ctx *);
1.4       nicm     1356: size_t printflike2 screen_write_strlen(int, const char *, ...);
1.3       nicm     1357: void printflike3 screen_write_puts(struct screen_write_ctx *,
                   1358:             struct grid_cell *, const char *, ...);
1.4       nicm     1359: void printflike5 screen_write_nputs(struct screen_write_ctx *,
                   1360:     ssize_t, struct grid_cell *, int, const char *, ...);
1.3       nicm     1361: void    screen_write_vnputs(struct screen_write_ctx *,
1.4       nicm     1362:             ssize_t, struct grid_cell *, int, const char *, va_list);
1.1       nicm     1363: void    screen_write_putc(
                   1364:             struct screen_write_ctx *, struct grid_cell *, u_char);
                   1365: void    screen_write_copy(struct screen_write_ctx *,
                   1366:             struct screen *, u_int, u_int, u_int, u_int);
                   1367: void    screen_write_cursorup(struct screen_write_ctx *, u_int);
                   1368: void    screen_write_cursordown(struct screen_write_ctx *, u_int);
                   1369: void    screen_write_cursorright(struct screen_write_ctx *, u_int);
                   1370: void    screen_write_cursorleft(struct screen_write_ctx *, u_int);
1.5       nicm     1371: void    screen_write_alignmenttest(struct screen_write_ctx *);
1.1       nicm     1372: void    screen_write_insertcharacter(struct screen_write_ctx *, u_int);
                   1373: void    screen_write_deletecharacter(struct screen_write_ctx *, u_int);
                   1374: void    screen_write_insertline(struct screen_write_ctx *, u_int);
                   1375: void    screen_write_deleteline(struct screen_write_ctx *, u_int);
                   1376: void    screen_write_clearline(struct screen_write_ctx *);
                   1377: void    screen_write_clearendofline(struct screen_write_ctx *);
                   1378: void    screen_write_clearstartofline(struct screen_write_ctx *);
                   1379: void    screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);
                   1380: void    screen_write_cursormode(struct screen_write_ctx *, int);
                   1381: void    screen_write_reverseindex(struct screen_write_ctx *);
                   1382: void    screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
                   1383: void    screen_write_insertmode(struct screen_write_ctx *, int);
                   1384: void    screen_write_mousemode(struct screen_write_ctx *, int);
                   1385: void    screen_write_linefeed(struct screen_write_ctx *);
                   1386: void    screen_write_carriagereturn(struct screen_write_ctx *);
                   1387: void    screen_write_kcursormode(struct screen_write_ctx *, int);
                   1388: void    screen_write_kkeypadmode(struct screen_write_ctx *, int);
                   1389: void    screen_write_clearendofscreen(struct screen_write_ctx *);
                   1390: void    screen_write_clearstartofscreen(struct screen_write_ctx *);
                   1391: void    screen_write_clearscreen(struct screen_write_ctx *);
                   1392: void    screen_write_cell(
                   1393:             struct screen_write_ctx *, const struct grid_cell *, u_char *);
                   1394:
                   1395: /* screen-redraw.c */
                   1396: void    screen_redraw_screen(struct client *);
                   1397: void    screen_redraw_pane(struct client *, struct window_pane *);
                   1398: void    screen_redraw_status(struct client *);
                   1399:
                   1400: /* screen.c */
                   1401: void    screen_init(struct screen *, u_int, u_int, u_int);
                   1402: void    screen_reinit(struct screen *);
                   1403: void    screen_free(struct screen *);
1.6       nicm     1404: void    screen_reset_tabs(struct screen *);
1.1       nicm     1405: void    screen_set_title(struct screen *, const char *);
                   1406: void    screen_resize(struct screen *, u_int, u_int);
                   1407: void    screen_set_selection(
                   1408:             struct screen *, u_int, u_int, u_int, u_int, struct grid_cell *);
                   1409: void    screen_clear_selection(struct screen *);
                   1410: int     screen_check_selection(struct screen *, u_int, u_int);
                   1411:
                   1412: /* window.c */
                   1413: extern struct windows windows;
1.17      nicm     1414: const char     *window_default_command(void);
1.1       nicm     1415: int             window_cmp(struct window *, struct window *);
                   1416: int             winlink_cmp(struct winlink *, struct winlink *);
                   1417: RB_PROTOTYPE(windows, window, entry, window_cmp);
                   1418: RB_PROTOTYPE(winlinks, winlink, entry, winlink_cmp);
                   1419: struct winlink *winlink_find_by_index(struct winlinks *, int);
                   1420: struct winlink         *winlink_find_by_window(struct winlinks *, struct window *);
                   1421: int             winlink_next_index(struct winlinks *);
                   1422: u_int           winlink_count(struct winlinks *);
                   1423: struct winlink *winlink_add(struct winlinks *, struct window *, int);
                   1424: void            winlink_remove(struct winlinks *, struct winlink *);
                   1425: struct winlink *winlink_next(struct winlinks *, struct winlink *);
                   1426: struct winlink *winlink_previous(struct winlinks *, struct winlink *);
                   1427: void            winlink_stack_push(struct winlink_stack *, struct winlink *);
                   1428: void            winlink_stack_remove(struct winlink_stack *, struct winlink *);
                   1429: int             window_index(struct window *, u_int *);
                   1430: struct window  *window_create1(u_int, u_int);
                   1431: struct window  *window_create(const char *, const char *,
                   1432:                     const char *, const char **, u_int, u_int, u_int, char **);
                   1433: void            window_destroy(struct window *);
                   1434: int             window_resize(struct window *, u_int, u_int);
                   1435: void            window_set_active_pane(struct window *, struct window_pane *);
                   1436: struct window_pane *window_add_pane(struct window *, int,
                   1437:                     const char *, const char *, const char **, u_int, char **);
                   1438: void            window_remove_pane(struct window *, struct window_pane *);
                   1439: struct window_pane *window_pane_at_index(struct window *, u_int);
                   1440: u_int           window_count_panes(struct window *);
                   1441: void            window_destroy_panes(struct window *);
                   1442: struct window_pane *window_pane_create(struct window *, u_int, u_int, u_int);
                   1443: void            window_pane_destroy(struct window_pane *);
                   1444: int             window_pane_spawn(struct window_pane *,
                   1445:                     const char *, const char *, const char **, char **);
                   1446: int             window_pane_resize(struct window_pane *, u_int, u_int);
                   1447: int             window_pane_set_mode(
                   1448:                     struct window_pane *, const struct window_mode *);
                   1449: void            window_pane_reset_mode(struct window_pane *);
                   1450: void            window_pane_parse(struct window_pane *);
                   1451: void            window_pane_key(struct window_pane *, struct client *, int);
                   1452: void            window_pane_mouse(struct window_pane *,
                   1453:                     struct client *, u_char, u_char, u_char);
1.10      nicm     1454: char           *window_pane_search(
                   1455:                     struct window_pane *, const char *, u_int *);
1.1       nicm     1456:
                   1457: /* layout.c */
                   1458: const char *    layout_name(struct window *);
                   1459: int             layout_lookup(const char *);
                   1460: void            layout_refresh(struct window *, int);
                   1461: int             layout_resize(struct window_pane *, int);
                   1462: int             layout_select(struct window *, u_int);
                   1463: void            layout_next(struct window *);
                   1464: void            layout_previous(struct window *);
                   1465:
                   1466: /* layout-manual.c */
                   1467: void            layout_manual_v_refresh(struct window *, int);
                   1468: void            layout_manual_v_resize(struct window_pane *, int);
                   1469:
                   1470: /* window-clock.c */
                   1471: extern const struct window_mode window_clock_mode;
                   1472:
                   1473: /* window-copy.c */
                   1474: extern const struct window_mode window_copy_mode;
                   1475: void            window_copy_pageup(struct window_pane *);
                   1476:
                   1477: /* window-scroll.c */
                   1478: extern const struct window_mode window_scroll_mode;
                   1479: void            window_scroll_pageup(struct window_pane *);
                   1480:
                   1481: /* window-more.c */
                   1482: extern const struct window_mode window_more_mode;
                   1483: void            window_more_vadd(struct window_pane *, const char *, va_list);
                   1484:
                   1485: /* window-choose.c */
                   1486: extern const struct window_mode window_choose_mode;
                   1487: void            window_choose_vadd(
                   1488:                     struct window_pane *, int, const char *, va_list);
                   1489: void printflike3 window_choose_add(
                   1490:                     struct window_pane *, int, const char *, ...);
                   1491: void            window_choose_ready(struct window_pane *,
                   1492:                     u_int, void (*)(void *, int), void *);
                   1493:
                   1494: /* names.c */
                   1495: void            set_window_names(void);
                   1496: char           *default_window_name(struct window *);
                   1497:
                   1498: /* session.c */
                   1499: extern struct sessions sessions;
                   1500: void    session_alert_add(struct session *, struct window *, int);
                   1501: void    session_alert_cancel(struct session *, struct winlink *);
                   1502: int     session_alert_has(struct session *, struct winlink *, int);
                   1503: int     session_alert_has_window(struct session *, struct window *, int);
                   1504: struct session *session_find(const char *);
                   1505: struct session *session_create(const char *, const char *,
                   1506:                     const char *, u_int, u_int, char **);
                   1507: void            session_destroy(struct session *);
                   1508: int             session_index(struct session *, u_int *);
                   1509: struct winlink *session_new(struct session *,
                   1510:                     const char *, const char *, const char *, int, char **);
                   1511: struct winlink *session_attach(
                   1512:                     struct session *, struct window *, int, char **);
                   1513: int             session_detach(struct session *, struct winlink *);
                   1514: int             session_has(struct session *, struct window *);
                   1515: int             session_next(struct session *, int);
                   1516: int             session_previous(struct session *, int);
                   1517: int             session_select(struct session *, int);
                   1518: int             session_last(struct session *);
                   1519:
                   1520: /* utf8.c */
                   1521: void   utf8_build(void);
1.7       nicm     1522: int    utf8_width(const u_char *);
1.1       nicm     1523:
                   1524: /* procname.c */
                   1525: char   *get_proc_name(int, char *);
                   1526:
                   1527: /* buffer.c */
                   1528: struct buffer  *buffer_create(size_t);
                   1529: void            buffer_destroy(struct buffer *);
                   1530: void            buffer_ensure(struct buffer *, size_t);
                   1531: void            buffer_add(struct buffer *, size_t);
                   1532: void            buffer_remove(struct buffer *, size_t);
                   1533: void            buffer_write(struct buffer *, const void *, size_t);
                   1534: void            buffer_read(struct buffer *, void *, size_t);
                   1535: void            buffer_write8(struct buffer *, uint8_t);
                   1536: uint8_t                 buffer_read8(struct buffer *);
                   1537:
                   1538: /* buffer-poll.c */
                   1539: int             buffer_poll(struct pollfd *, struct buffer *, struct buffer *);
                   1540:
                   1541: /* log.c */
                   1542: void            log_open_tty(int);
                   1543: void            log_open_file(int, const char *);
                   1544: void            log_close(void);
                   1545: void printflike1 log_warn(const char *, ...);
                   1546: void printflike1 log_warnx(const char *, ...);
                   1547: void printflike1 log_info(const char *, ...);
                   1548: void printflike1 log_debug(const char *, ...);
                   1549: void printflike1 log_debug2(const char *, ...);
                   1550: void printflike1 log_debug3(const char *, ...);
                   1551: __dead void     log_fatal(const char *, ...);
                   1552: __dead void     log_fatalx(const char *, ...);
                   1553:
                   1554: /* xmalloc.c */
                   1555: char           *xstrdup(const char *);
                   1556: void           *xcalloc(size_t, size_t);
                   1557: void           *xmalloc(size_t);
                   1558: void           *xrealloc(void *, size_t, size_t);
                   1559: void            xfree(void *);
                   1560: int printflike2         xasprintf(char **, const char *, ...);
                   1561: int             xvasprintf(char **, const char *, va_list);
                   1562: int printflike3         xsnprintf(char *, size_t, const char *, ...);
                   1563: int             xvsnprintf(char *, size_t, const char *, va_list);
                   1564:
                   1565: #endif /* TMUX_H */