blob: 7805baf20cb8ce8f1b99625cc4f27ddaf34cd6d2 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* netbeans.c */
Bram Moolenaaref269542016-01-19 13:22:12 +01002void netbeans_parse_messages(void);
3void netbeans_read(void);
4int isNetbeansBuffer(buf_T *bufp);
5int isNetbeansModified(buf_T *bufp);
6void netbeans_end(void);
7void ex_nbclose(exarg_T *eap);
8void ex_nbkey(exarg_T *eap);
9void ex_nbstart(exarg_T *eap);
10void netbeans_beval_cb(BalloonEval *beval, int state);
11int netbeans_active(void);
12int netbeans_filedesc(void);
13void netbeans_gui_register(void);
14void netbeans_open(char *params, int doabort);
15void netbeans_send_disconnect(void);
16void netbeans_frame_moved(int new_x, int new_y);
17void netbeans_file_activated(buf_T *bufp);
18void netbeans_file_opened(buf_T *bufp);
19void netbeans_file_killed(buf_T *bufp);
20void netbeans_inserted(buf_T *bufp, linenr_T linenr, colnr_T col, char_u *txt, int newlen);
21void netbeans_removed(buf_T *bufp, linenr_T linenr, colnr_T col, long len);
22void netbeans_unmodified(buf_T *bufp);
23void netbeans_button_release(int button);
24int netbeans_keycommand(int key);
25void netbeans_save_buffer(buf_T *bufp);
26void netbeans_deleted_all_lines(buf_T *bufp);
27int netbeans_is_guarded(linenr_T top, linenr_T bot);
28void netbeans_draw_multisign_indicator(int row);
29void netbeans_gutter_click(linenr_T lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000030/* vim: set ft=c : */