| 130 int ui_textarea_length(UiText *text); |
133 int ui_textarea_length(UiText *text); |
| 131 void ui_textarea_remove(UiText *text, int begin, int end); |
134 void ui_textarea_remove(UiText *text, int begin, int end); |
| 132 |
135 |
| 133 void ui_textarea_realize_event(GtkWidget *widget, gpointer data); |
136 void ui_textarea_realize_event(GtkWidget *widget, gpointer data); |
| 134 //void ui_textbuf_changed(GtkTextBuffer *textbuffer, UiTextArea *textarea); |
137 //void ui_textbuf_changed(GtkTextBuffer *textbuffer, UiTextArea *textarea); |
| 135 void ui_textbuf_changed_insert( |
138 void ui_textbuf_change_insert( |
| 136 GtkTextBuffer *textbuffer, |
139 GtkTextBuffer *textbuffer, |
| 137 GtkTextIter *location, |
140 GtkTextIter *location, |
| 138 char *text, |
141 char *text, |
| 139 int length, |
142 int length, |
| 140 UiTextArea *textarea); |
143 UiTextArea *textarea); |
| 141 void ui_textbuf_changed_delete( |
144 void ui_textbuf_change_delete( |
| 142 GtkTextBuffer *self, |
145 GtkTextBuffer *self, |
| 143 const GtkTextIter *start, |
146 const GtkTextIter *start, |
| 144 const GtkTextIter *end, |
147 const GtkTextIter *end, |
| 145 UiTextArea *textarea); |
148 UiTextArea *textarea); |
| 146 void ui_textbuf_changed(UiTextArea *textarea, UiTextChangeEventData *data); |
149 |
| |
150 void ui_textbuf_changed(GtkTextBuffer *textbuffer, UiTextArea *textarea); |
| 147 |
151 |
| 148 void ui_textbuf_insert( |
152 void ui_textbuf_insert( |
| 149 GtkTextBuffer *textbuffer, |
153 GtkTextBuffer *textbuffer, |
| 150 GtkTextIter *location, |
154 GtkTextIter *location, |
| 151 char *text, |
155 char *text, |