22 #ifndef FL_TEXT_BUFFER_H 23 #define FL_TEXT_BUFFER_H 31 # define IS_UTF8_ALIGNED(a) if (a && *a) assert(fl_utf8len(*(a))>0); 32 # define IS_UTF8_ALIGNED2(a, b) if (b>=0 && b<a->length()) assert(fl_utf8len(a->byte_at(b))>0); 34 # define IS_UTF8_ALIGNED(a) 35 # define IS_UTF8_ALIGNED2(a, b) 59 #define FL_TEXT_MAX_EXP_CHAR_LEN 20 61 #include "Fl_Export.H" 103 void set(
int startpos,
int endpos);
106 void update(
int pos,
int nDeleted,
int nInserted);
119 int start()
const {
return mSelected ? mStart : 0; }
132 int end()
const {
return mSelected ? mEnd : 0; }
160 int length()
const {
return mSelected ? mEnd - mStart : 0; }
163 int includes(
int pos)
const;
166 int position(
int *startpos,
int *endpos)
const;
176 typedef void (*Fl_Text_Modify_Cb)(
int pos,
int nInserted,
int nDeleted,
177 int nRestyled,
const char* deletedText,
181 typedef void (*Fl_Text_Predelete_Cb)(
int pos,
int nDeleted,
void* cbArg);
207 Fl_Text_Buffer(
int requestedSize = 0,
int preferredGapSize = 1024);
232 void text(
const char* text);
244 char* text_range(
int start,
int end)
const;
252 unsigned int char_at(
int pos)
const;
260 char byte_at(
int pos)
const;
268 {
return (pos < mGapStart) ? mBuf+pos : mBuf+pos+mGapEnd-mGapStart; }
276 {
return (pos < mGapStart) ? mBuf+pos : mBuf+pos+mGapEnd-mGapStart; }
283 void insert(
int pos,
const char* text);
289 void append(
const char* t) { insert(length(), t); }
291 void vprintf(
const char *fmt, va_list ap);
292 void printf(
const char* fmt, ...);
299 void remove(
int start,
int end);
308 void replace(
int start,
int end,
const char *text);
317 void copy(
Fl_Text_Buffer* fromBuf,
int fromStart,
int fromEnd,
int toPos);
328 void canUndo(
char flag=1);
345 int insertfile(
const char *file,
int pos,
int buflen = 128*1024);
351 {
return insertfile(file, length(), buflen); }
356 int loadfile(
const char *file,
int buflen = 128*1024)
357 { select(0, length()); remove_selection();
return appendfile(file, buflen); }
369 int outputfile(
const char *file,
int start,
int end,
int buflen = 128*1024);
381 int savefile(
const char *file,
int buflen = 128*1024)
382 {
return outputfile(file, 0, length(), buflen); }
396 void tab_distance(
int tabDist);
401 void select(
int start,
int end);
406 int selected()
const {
return mPrimary.selected(); }
416 int selection_position(
int* start,
int* end);
423 char* selection_text();
428 void remove_selection();
433 void replace_selection(
const char* text);
438 void secondary_select(
int start,
int end);
449 void secondary_unselect();
454 int secondary_selection_position(
int* start,
int* end);
461 char* secondary_selection_text();
467 void remove_secondary_selection();
473 void replace_secondary_selection(
const char* text);
478 void highlight(
int start,
int end);
493 int highlight_position(
int* start,
int* end);
500 char* highlight_text();
513 void add_modify_callback(Fl_Text_Modify_Cb bufModifiedCB,
void* cbArg);
518 void remove_modify_callback(Fl_Text_Modify_Cb bufModifiedCB,
void* cbArg);
529 void add_predelete_callback(Fl_Text_Predelete_Cb bufPredelCB,
void* cbArg);
535 void remove_predelete_callback(Fl_Text_Predelete_Cb predelCB,
void* cbArg);
551 char* line_text(
int pos)
const;
558 int line_start(
int pos)
const;
567 int line_end(
int pos)
const;
574 int word_start(
int pos)
const;
581 int word_end(
int pos)
const;
590 int count_displayed_characters(
int lineStartPos,
int targetPos)
const;
601 int skip_displayed_characters(
int lineStartPos,
int nChars);
607 int count_lines(
int startPos,
int endPos)
const;
613 int skip_lines(
int startPos,
int nLines);
621 int rewind_lines(
int startPos,
int nLines);
637 int findchar_forward(
int startPos,
unsigned searchChar,
int* foundPos)
const;
652 int findchar_backward(
int startPos,
unsigned int searchChar,
int* foundPos)
const;
665 int search_forward(
int startPos,
const char* searchString,
int* foundPos,
666 int matchCase = 0)
const;
679 int search_backward(
int startPos,
const char* searchString,
int* foundPos,
680 int matchCase = 0)
const;
706 int prev_char(
int ix)
const;
707 int prev_char_clipped(
int ix)
const;
713 int next_char(
int ix)
const;
714 int next_char_clipped(
int ix)
const;
719 int utf8_align(
int)
const;
741 bool is_word_separator(
int pos)
const;
749 void call_modify_callbacks(
int pos,
int nDeleted,
int nInserted,
750 int nRestyled,
const char* deletedText)
const;
756 void call_predelete_callbacks(
int pos,
int nDeleted)
const;
767 int insert_(
int pos,
const char* text);
775 void remove_(
int start,
int end);
787 void move_gap(
int pos);
793 void reallocate_with_gap(
int newGapStart,
int newGapLen);
810 void update_selections(
int pos,
int nDeleted,
int nInserted);
const Fl_Text_Selection * primary_selection() const
Returns the primary selection.
Definition: Fl_Text_Buffer.H:685
int mNModifyProcs
number of modify-redisplay procs attached
Definition: Fl_Text_Buffer.H:824
bool selected() const
Returns true if any text is selected.
Definition: Fl_Text_Buffer.H:139
int length() const
Returns the number of bytes in the buffer.
Definition: Fl_Text_Buffer.H:218
Fl_Text_Modify_Cb * mModifyProcs
procedures to call when buffer is modified to redisplay contents
Definition: Fl_Text_Buffer.H:825
static const char * file_encoding_warning_message
This message may be displayed using the fl_alert() function when a file which was not UTF-8 encoded i...
Definition: Fl_Text_Buffer.H:729
Fl_Text_Selection mPrimary
highlighted areas
Definition: Fl_Text_Buffer.H:812
Fl_Text_Selection mSecondary
highlighted areas
Definition: Fl_Text_Buffer.H:813
int tab_distance() const
Gets the tab width.
Definition: Fl_Text_Buffer.H:390
void selected(bool b)
Modifies the 'selected' flag.
Definition: Fl_Text_Buffer.H:145
int mCursorPosHint
hint for reasonable cursor position after a buffer modification operation
Definition: Fl_Text_Buffer.H:832
This class manages Unicode text displayed in one or more Fl_Text_Display widgets. ...
Definition: Fl_Text_Buffer.H:196
int mStart
byte offset to the first selected character
Definition: Fl_Text_Buffer.H:170
bool mSelected
this flag is set if any text is selected
Definition: Fl_Text_Buffer.H:172
void append(const char *t)
Appends the text string to the end of the buffer.
Definition: Fl_Text_Buffer.H:289
int appendfile(const char *file, int buflen=128 *1024)
Appends the named file to the end of the buffer.
Definition: Fl_Text_Buffer.H:350
int mLength
length of the text in the buffer (the length of the buffer itself must be calculated: gapEnd - gapSta...
Definition: Fl_Text_Buffer.H:815
int mGapStart
points to the first character of the gap
Definition: Fl_Text_Buffer.H:819
int length() const
Returns the size in bytes of the selection.
Definition: Fl_Text_Buffer.H:160
int mTabDist
equiv.
Definition: Fl_Text_Buffer.H:823
int selected() const
Returns a non-zero value if text has been selected, 0 otherwise.
Definition: Fl_Text_Buffer.H:406
Fl_Text_Selection * primary_selection()
Returns the primary selection.
Definition: Fl_Text_Buffer.H:690
This is an internal class for Fl_Text_Buffer to manage text selections.
Definition: Fl_Text_Buffer.H:97
int mPreferredGapSize
the default allocation for the text gap is 1024 bytes and should only be increased if frequent and la...
Definition: Fl_Text_Buffer.H:836
const Fl_Text_Selection * highlight_selection() const
Returns the current highlight selection.
Definition: Fl_Text_Buffer.H:700
int start() const
Returns the byte offset to the first selected character.
Definition: Fl_Text_Buffer.H:119
const char * address(int pos) const
Convert a byte offset in buffer into a memory address.
Definition: Fl_Text_Buffer.H:267
char * address(int pos)
Convert a byte offset in buffer into a memory address.
Definition: Fl_Text_Buffer.H:275
int end() const
Returns the byte offset to the character after the last selected character.
Definition: Fl_Text_Buffer.H:132
int highlight()
Returns a non-zero value if text has been highlighted, 0 otherwise.
Definition: Fl_Text_Buffer.H:483
int savefile(const char *file, int buflen=128 *1024)
Saves a text file from the current buffer.
Definition: Fl_Text_Buffer.H:381
void call_modify_callbacks()
Calls all modify callbacks that have been registered using the add_modify_callback() method...
Definition: Fl_Text_Buffer.H:524
char mCanUndo
if this buffer is used for attributes, it must not do any undo calls
Definition: Fl_Text_Buffer.H:834
void ** mCbArgs
caller arguments for modifyProcs above
Definition: Fl_Text_Buffer.H:827
Fl_Text_Predelete_Cb * mPredeleteProcs
procedure to call before text is deleted from the buffer; at most one is supported.
Definition: Fl_Text_Buffer.H:829
Fl_Text_Selection mHighlight
highlighted areas
Definition: Fl_Text_Buffer.H:814
int mNPredeleteProcs
number of pre-delete procs attached
Definition: Fl_Text_Buffer.H:828
int loadfile(const char *file, int buflen=128 *1024)
Loads a text file into the buffer.
Definition: Fl_Text_Buffer.H:356
int secondary_selected()
Returns a non-zero value if text has been selected in the secondary text selection, 0 otherwise.
Definition: Fl_Text_Buffer.H:444
char * mBuf
allocated memory where the text is stored
Definition: Fl_Text_Buffer.H:818
int input_file_was_transcoded
true if the loaded file has been transcoded to UTF-8.
Definition: Fl_Text_Buffer.H:724
void ** mPredeleteCbArgs
caller argument for pre-delete proc above
Definition: Fl_Text_Buffer.H:831
int mGapEnd
points to the first character after the gap
Definition: Fl_Text_Buffer.H:820
void call_predelete_callbacks()
Calls the stored pre-delete callback procedure(s) for this buffer to update the changed area(s) on th...
Definition: Fl_Text_Buffer.H:541
const Fl_Text_Selection * secondary_selection() const
Returns the secondary selection.
Definition: Fl_Text_Buffer.H:695
int mEnd
byte offset to the character after the last selected character
Definition: Fl_Text_Buffer.H:171