134 lines
4.6 KiB
C
134 lines
4.6 KiB
C
/*
|
|
* moolinebuffer.h
|
|
*
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* See COPYING file that comes with this distribution.
|
|
*/
|
|
|
|
#ifndef MOOEDIT_COMPILATION
|
|
#error "This file may not be included"
|
|
#endif
|
|
|
|
#ifndef __MOO_LINE_BUFFER_H__
|
|
#define __MOO_LINE_BUFFER_H__
|
|
|
|
#include <gtk/gtktextbuffer.h>
|
|
#include "mooedit/mootextbtree.h"
|
|
#include "mooedit/mootextbuffer.h"
|
|
#include "mooedit/moolang-private.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
typedef struct _CtxNode CtxNode;
|
|
typedef struct _LineBuffer LineBuffer;
|
|
typedef struct _Segment Segment;
|
|
typedef struct _BTData Line;
|
|
|
|
typedef struct {
|
|
int first;
|
|
int last;
|
|
} Interval;
|
|
|
|
typedef struct {
|
|
int first;
|
|
int last;
|
|
gboolean empty;
|
|
} Area;
|
|
|
|
struct _LineBuffer {
|
|
BTree *tree;
|
|
Area invalid;
|
|
};
|
|
|
|
struct _Segment {
|
|
int len;
|
|
CtxNode *ctx_node;
|
|
CtxNode *match_node;
|
|
MooRule *rule;
|
|
};
|
|
|
|
struct _HLInfo {
|
|
CtxNode *start_node;
|
|
Segment *segments;
|
|
guint n_segments;
|
|
guint n_segments_alloc__;
|
|
guint tags_applied : 1; /* correct highlighting tags were applied */
|
|
};
|
|
|
|
|
|
LineBuffer *_moo_line_buffer_new (void);
|
|
void _moo_line_buffer_free (LineBuffer *line_buf);
|
|
|
|
void _moo_line_buffer_cleanup (LineBuffer *line_buf);
|
|
|
|
Line *_moo_line_buffer_get_line (LineBuffer *line_buf,
|
|
int index);
|
|
|
|
Line *_moo_line_buffer_insert (LineBuffer *line_buf,
|
|
int index);
|
|
void _moo_line_buffer_invalidate (LineBuffer *line_buf,
|
|
int line);
|
|
void _moo_line_buffer_invalidate_all (LineBuffer *line_buf);
|
|
void _moo_line_buffer_clamp_invalid (LineBuffer *line_buf);
|
|
|
|
guint _moo_line_buffer_get_stamp (LineBuffer *line_buf);
|
|
int _moo_line_buffer_get_line_index (LineBuffer *line_buf,
|
|
Line *line);
|
|
|
|
void _moo_line_buffer_add_mark (LineBuffer *line_buf,
|
|
MooLineMark *mark,
|
|
int line);
|
|
void _moo_line_buffer_remove_mark (LineBuffer *line_buf,
|
|
MooLineMark *mark);
|
|
void _moo_line_buffer_move_mark (LineBuffer *line_buf,
|
|
MooLineMark *mark,
|
|
int line);
|
|
GSList *_moo_line_buffer_get_marks_in_range (LineBuffer *line_buf,
|
|
int first_line,
|
|
int last_line);
|
|
|
|
void _moo_line_buffer_split_line (LineBuffer *line_buf,
|
|
int line,
|
|
int num_new_lines);
|
|
void _moo_line_buffer_delete (LineBuffer *line_buf,
|
|
int first,
|
|
int num,
|
|
int move_to,
|
|
GSList **moved_marks,
|
|
GSList **deleted_marks);
|
|
|
|
void _moo_line_erase_segments (Line *line);
|
|
void _moo_line_add_segment (Line *line,
|
|
int len,
|
|
CtxNode *ctx_node,
|
|
CtxNode *match_node,
|
|
MooRule *rule);
|
|
|
|
|
|
#define AREA_SET_EMPTY__(ar__) ((ar__)->empty = TRUE)
|
|
#define AREA_IS_EMPTY__(ar__) ((ar__)->empty)
|
|
|
|
#define AREA_CLAMP(ar__,size__) \
|
|
(ar__)->last = CLAMP ((ar__)->last, 0, size__ - 1); \
|
|
(ar__)->first = CLAMP ((ar__)->first, 0, (ar__)->last);
|
|
|
|
#define AREA_SET(ar__,size__) \
|
|
(ar__)->empty = FALSE; \
|
|
(ar__)->first = 0; \
|
|
(ar__)->last = size__ - 1; \
|
|
|
|
#define BUF_CLEAN(line_buf__) (AREA_IS_EMPTY__ (&(line_buf__)->invalid))
|
|
#define BUF_SET_CLEAN(line_buf__) (AREA_SET_EMPTY__ (&(line_buf__)->invalid))
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __MOO_LINE_BUFFER_H__ */
|