21 #ifndef __EDELIB_SCHEME_EDITOR_H__ 22 #define __EDELIB_SCHEME_EDITOR_H__ 24 #include "edelib-global.h" 26 #include <FL/Fl_Text_Editor.H> 27 #include <FL/Fl_Text_Buffer.H> 52 Fl_Text_Buffer *stylebuf, *textbuf;
55 void highlight_parens(
int start,
int end);
56 void unhighlight_parens(
void);
59 SchemeEditor(
int X,
int Y,
int W,
int H,
const char *l = 0);
62 void textsize(
int sz);
65 virtual int handle(
int e);
84 void object_color(
int id,
int color);
87 void object_color(
int id,
const char *color);
Fl_Text_Buffer * style_buffer(void)
Definition: SchemeEditor.h:68
void match_parenthesis(bool m)
Definition: SchemeEditor.h:90
Editing component for Scheme language.
Definition: SchemeEditor.h:50