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

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