blob: a6e5f5f5f85c62e345e25771d3a9e5d9f3f5342c [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* netbeans.c */
Bram Moolenaar446cb832008-06-24 21:56:24 +00002void netbeans_parse_messages __ARGS((void));
Bram Moolenaar67c53842010-05-22 18:28:27 +02003void netbeans_read __ARGS((void));
Bram Moolenaar9964e462007-05-05 17:54:07 +00004int isNetbeansBuffer __ARGS((buf_T *bufp));
5int isNetbeansModified __ARGS((buf_T *bufp));
6void netbeans_end __ARGS((void));
Bram Moolenaarb26e6322010-05-22 21:34:09 +02007void ex_nbclose __ARGS((exarg_T *eap));
Bram Moolenaar9964e462007-05-05 17:54:07 +00008void ex_nbkey __ARGS((exarg_T *eap));
Bram Moolenaarb26e6322010-05-22 21:34:09 +02009void ex_nbstart __ARGS((exarg_T *eap));
Bram Moolenaar9964e462007-05-05 17:54:07 +000010void netbeans_beval_cb __ARGS((BalloonEval *beval, int state));
Bram Moolenaarb26e6322010-05-22 21:34:09 +020011int netbeans_active __ARGS((void));
Bram Moolenaar67c53842010-05-22 18:28:27 +020012int netbeans_filedesc __ARGS((void));
13void netbeans_gui_register __ARGS((void));
Bram Moolenaar64404472010-06-26 06:24:45 +020014void netbeans_open __ARGS((char *params, int doabort));
Bram Moolenaar9964e462007-05-05 17:54:07 +000015void netbeans_send_disconnect __ARGS((void));
16void netbeans_frame_moved __ARGS((int new_x, int new_y));
17void netbeans_file_activated __ARGS((buf_T *bufp));
18void netbeans_file_opened __ARGS((buf_T *bufp));
Bram Moolenaard7f8f5c2009-01-06 15:14:30 +000019void netbeans_file_killed __ARGS((buf_T *bufp));
Bram Moolenaar9964e462007-05-05 17:54:07 +000020void netbeans_inserted __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, char_u *txt, int newlen));
21void netbeans_removed __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, long len));
22void netbeans_unmodified __ARGS((buf_T *bufp));
23void netbeans_button_release __ARGS((int button));
Bram Moolenaar8065d7f2010-01-19 15:13:14 +010024int netbeans_keycommand __ARGS((int key));
Bram Moolenaar9964e462007-05-05 17:54:07 +000025void netbeans_save_buffer __ARGS((buf_T *bufp));
26void netbeans_deleted_all_lines __ARGS((buf_T *bufp));
27int netbeans_is_guarded __ARGS((linenr_T top, linenr_T bot));
28void netbeans_draw_multisign_indicator __ARGS((int row));
Bram Moolenaar9964e462007-05-05 17:54:07 +000029void netbeans_gutter_click __ARGS((linenr_T lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +000030/* vim: set ft=c : */