1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 #import "../ui/text.h"
30 #import "toolkit.h"
31 #import <ucx/list.h>
32
33 @interface TextChangeMgr : NSObject<NSTextViewDelegate> {
34 UiContext *context;
35 UiText *value;
36 int last_length;
37 }
38
39 - (TextChangeMgr*)initWithValue:(UiText*)text context:(UiContext*)ctx;
40
41 - (NSUndoManager*)undoManagerForTextView:(NSTextView*)textview;
42
43 @end
44
45 #define UI_TEXTBUF_INSERT 0
46 #define UI_TEXTBUF_DELETE 1
47 typedef struct UiTextBufOp {
48 int type;
49 int start;
50 int end;
51 int len;
52 char *text;
53 } UiTextBufOp;
54
55
56
57 char* ui_textarea_get(UiText *text);
58 void ui_textarea_set(UiText *text,
char *str);
59 char* ui_textarea_getsubstr(UiText *text,
int begin,
int end);
60 void ui_textarea_insert(UiText *text,
int pos,
char *str);
61 int ui_textarea_position(UiText *text);
62 void ui_textarea_selection(UiText *text,
int *begin,
int *end);
63 int ui_textarea_length(UiText *text);
64