screen.pro
资源名称:vim53src.zip [点击查看]
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:3k
源码类别:
编辑器/阅读器
开发平台:
DOS
- /* screen.c */
- void update_screenline __ARGS((void));
- void redraw_later __ARGS((int type));
- void redraw_all_later __ARGS((int type));
- void redraw_curbuf_later __ARGS((int type));
- void update_curbuf __ARGS((int type));
- void update_screen __ARGS((int type));
- void updateWindow __ARGS((WIN *wp));
- void update_other_win __ARGS((void));
- void status_redraw_all __ARGS((void));
- void redraw_statuslines __ARGS((void));
- void win_redr_status __ARGS((WIN *wp));
- void screen_putchar __ARGS((int c, int row, int col, int attr));
- void screen_puts __ARGS((char_u *text, int row, int col, int attr));
- void screen_start __ARGS((void));
- void screen_down __ARGS((void));
- void screen_stop_highlight __ARGS((void));
- void reset_cterm_colors __ARGS((void));
- void screen_fill __ARGS((int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr));
- void screenalloc __ARGS((int clear));
- void screenclear __ARGS((void));
- void update_topline_redraw __ARGS((void));
- void update_topline __ARGS((void));
- void update_curswant __ARGS((void));
- void windgoto __ARGS((int row, int col));
- void setcursor __ARGS((void));
- void scroll_cursor_top __ARGS((int min_scroll, int always));
- void scroll_cursor_bot __ARGS((int min_scroll, int set_topbot));
- void scroll_cursor_halfway __ARGS((int atend));
- void cursor_correct __ARGS((void));
- void changed_cline_bef_curs __ARGS((void));
- void changed_cline_aft_curs __ARGS((void));
- void changed_line_abv_curs __ARGS((void));
- void set_topline __ARGS((WIN *wp, linenr_t lnum));
- void validate_botline __ARGS((void));
- void invalidate_botline __ARGS((void));
- void invalidate_botline_win __ARGS((WIN *wp));
- void approximate_botline __ARGS((void));
- int botline_valid __ARGS((void));
- int botline_approximated __ARGS((void));
- int cursor_valid __ARGS((void));
- void validate_cursor __ARGS((void));
- void validate_cline_row __ARGS((void));
- int may_validate_crow __ARGS((void));
- void validate_virtcol __ARGS((void));
- void validate_cheight __ARGS((void));
- void validate_cursor_col __ARGS((void));
- void curs_columns __ARGS((int scroll));
- void scrolldown __ARGS((long line_count));
- void scrollup __ARGS((long line_count));
- void scrolldown_clamp __ARGS((void));
- void scrollup_clamp __ARGS((void));
- int win_ins_lines __ARGS((WIN *wp, int row, int line_count, int invalid, int mayclear));
- int win_del_lines __ARGS((WIN *wp, int row, int line_count, int invalid, int mayclear));
- void win_rest_invalid __ARGS((WIN *wp));
- int screen_del_lines __ARGS((int off, int row, int line_count, int end, int force));
- int showmode __ARGS((void));
- void unshowmode __ARGS((int force));
- void showruler __ARGS((int always));
- void check_for_delay __ARGS((int check_msg_scroll));
- int screen_valid __ARGS((int clear));
- int jump_to_mouse __ARGS((int flags, int *inclusive));
- int redrawing __ARGS((void));
- int messaging __ARGS((void));
- int onepage __ARGS((int dir, long count));
- void halfpage __ARGS((int flag, linenr_t Prenum));
- void do_intro __ARGS((void));