2018-10-19 13:24:58 +02:00
|
|
|
#ifndef _OUTPUT_H
|
|
|
|
#define _OUTPUT_H
|
|
|
|
|
2018-10-25 12:17:28 +02:00
|
|
|
struct abuf;
|
|
|
|
|
2018-10-19 13:24:58 +02:00
|
|
|
void editorScroll();
|
|
|
|
|
|
|
|
void editorDrawRows(struct abuf *ab);
|
|
|
|
void editorDrawStatusBar(struct abuf *ab);
|
|
|
|
void editorDrawMessageBar(struct abuf *ab);
|
|
|
|
|
|
|
|
void editorRefreshScreen();
|
|
|
|
|
|
|
|
void editorSetStatusMessage(const char *fmt, ...);
|
|
|
|
|
|
|
|
// Line oriented actions
|
|
|
|
void editorInsertChar(int c);
|
|
|
|
void editorInsertNewLine();
|
|
|
|
void editorDelChar();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|