Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* workshop.c */ |
Bram Moolenaar | 9964e46 | 2007-05-05 17:54:07 +0000 | [diff] [blame^] | 2 | void workshop_init __ARGS((void)); |
| 3 | void workshop_postinit __ARGS((void)); |
| 4 | void ex_wsverb __ARGS((exarg_T *eap)); |
| 5 | char *workshop_get_editor_name __ARGS((void)); |
| 6 | char *workshop_get_editor_version __ARGS((void)); |
| 7 | void workshop_load_file __ARGS((char *filename, int line, char *frameid)); |
| 8 | void workshop_reload_file __ARGS((char *filename, int line)); |
| 9 | void workshop_show_file __ARGS((char *filename)); |
| 10 | void workshop_goto_line __ARGS((char *filename, int lineno)); |
| 11 | void workshop_front_file __ARGS((char *filename)); |
| 12 | void workshop_save_file __ARGS((char *filename)); |
| 13 | void workshop_save_files __ARGS((void)); |
| 14 | void workshop_quit __ARGS((void)); |
| 15 | void workshop_minimize __ARGS((void)); |
| 16 | void workshop_maximize __ARGS((void)); |
| 17 | void workshop_add_mark_type __ARGS((int idx, char *colorspec, char *sign)); |
| 18 | void workshop_set_mark __ARGS((char *filename, int lineno, int markId, int idx)); |
| 19 | void workshop_change_mark_type __ARGS((char *filename, int markId, int idx)); |
| 20 | void workshop_goto_mark __ARGS((char *filename, int markId, char *message)); |
| 21 | void workshop_delete_mark __ARGS((char *filename, int markId)); |
| 22 | int workshop_get_mark_lineno __ARGS((char *filename, int markId)); |
| 23 | void workshop_moved_marks __ARGS((char *filename)); |
| 24 | int workshop_get_font_height __ARGS((void)); |
| 25 | void workshop_footer_message __ARGS((char *message, int severity)); |
| 26 | void workshop_menu_begin __ARGS((char *label)); |
| 27 | void workshop_submenu_begin __ARGS((char *label)); |
| 28 | void workshop_submenu_end __ARGS((void)); |
| 29 | void workshop_menu_item __ARGS((char *label, char *verb, char *accelerator, char *acceleratorText, char *name, char *filepos, char *sensitive)); |
| 30 | void workshop_menu_end __ARGS((void)); |
| 31 | void workshop_toolbar_begin __ARGS((void)); |
| 32 | void workshop_toolbar_end __ARGS((void)); |
| 33 | void workshop_toolbar_button __ARGS((char *label, char *verb, char *senseVerb, char *filepos, char *help, char *sense, char *file, char *left)); |
| 34 | void workshop_frame_sensitivities __ARGS((VerbSense *vs)); |
| 35 | void workshop_set_option __ARGS((char *option, char *value)); |
| 36 | void workshop_balloon_mode __ARGS((Boolean on)); |
| 37 | void workshop_balloon_delay __ARGS((int delay)); |
| 38 | void workshop_show_balloon_tip __ARGS((char *tip)); |
| 39 | void workshop_hotkeys __ARGS((Boolean on)); |
| 40 | int workshop_get_positions __ARGS((void *clientData, char **filename, int *curLine, int *curCol, int *selStartLine, int *selStartCol, int *selEndLine, int *selEndCol, int *selLength, char **selection)); |
| 41 | char *workshop_test_getcurrentfile __ARGS((void)); |
| 42 | int workshop_test_getcursorrow __ARGS((void)); |
| 43 | int workshop_test_getcursorcol __ARGS((void)); |
| 44 | char *workshop_test_getcursorrowtext __ARGS((void)); |
| 45 | char *workshop_test_getselectedtext __ARGS((void)); |
| 46 | void workshop_save_sensitivity __ARGS((char *filename)); |
| 47 | void workshop_beval_cb __ARGS((BalloonEval *beval, int state)); |
| 48 | void findYourself __ARGS((char *argv0)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 49 | /* vim: set ft=c : */ |