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