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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/*
* gretl -- Gnu Regression, Econometrics and Time-series Library
* Copyright (C) 2001 Allin Cottrell and Riccardo "Jack" Lucchetti
*
* 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 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef TEXTBUF_H
#define TEXTBUF_H
#define textview_use_highlighting(r) (r != EDIT_X12A && \
(vwin_editing_script(r) || \
r == VIEW_SCRIPT || \
r == VIEW_PKG_CODE || \
r == EDIT_PKG_CODE || \
r == EDIT_PKG_SAMPLE || \
r == VIEW_PKG_SAMPLE || \
r == VIEW_LOG))
extern int tabwidth;
extern int smarttab;
extern int script_line_numbers;
extern int script_auto_complete;
extern int script_auto_bracket;
void text_set_cursor (GtkWidget *w, GdkCursorType cspec);
void cursor_to_top (windata_t *vwin);
void cursor_to_end (windata_t *vwin);
void cursor_to_mark (windata_t *vwin, GtkTextMark *mark);
void scroll_to_foot (windata_t *vwin);
gint get_char_width (GtkWidget *widget);
GtkTextBuffer *gretl_text_buf_new (void);
void gretl_viewer_set_formatted_buffer (windata_t *vwin, const char *buf);
gchar *textview_get_text (GtkWidget *view);
gchar *textview_get_trimmed_text (GtkWidget *view);
gchar *textview_get_normalized_line (GtkWidget *view);
gchar *textview_get_wrapped_text (GtkWidget *view);
gchar *textview_get_selection_or_all (GtkWidget *view,
gboolean *selection);
gchar *textview_get_current_line (GtkWidget *view);
int textview_set_text (GtkWidget *view, const gchar *text);
void textview_append_text (GtkWidget *view, const char *text);
void textview_clear_text (GtkWidget *view);
int textview_set_text_selected (GtkWidget *view, const gchar *text);
int textview_set_cursor_at_line (GtkWidget *view, int line);
int viewer_char_count (windata_t *vwin);
void text_paste (GtkWidget *w, windata_t *vwin);
void text_redo (GtkWidget *w, windata_t *vwin);
void text_undo (GtkWidget *w, windata_t *vwin);
int text_can_undo (windata_t *vwin);
void text_larger (GtkWidget *w, gpointer data);
void text_smaller (GtkWidget *w, gpointer data);
void textview_set_text_colorized (GtkWidget *view, const char *buf);
void textview_append_text_colorized (GtkWidget *view, const char *buf,
int trim);
void textview_set_text_report (GtkWidget *view, const char *buf);
void textview_set_text_dbsearch (windata_t *vwin, const char *buf);
void textview_insert_file (windata_t *vwin, const char *fname);
void create_text (windata_t *vwin, int hsize, int vsize,
int nlines, gboolean editable);
void text_set_word_wrap (GtkWidget *w, gboolean wrap);
void text_table_setup (GtkWidget *vbox, GtkWidget *w);
int set_help_topic_buffer (windata_t *hwin, int pos, int en);
gboolean help_popup_handler (GtkWidget *w, GdkEventButton *event,
gpointer p);
void create_source (windata_t *vwin, int hsize, int vsize,
gboolean editable);
GtkWidget *create_sample_source (const char *style);
void set_style_for_textview (GtkWidget *text, const char *id);
void create_console (windata_t *vwin, int hsize, int vsize);
void sourceview_insert_file (windata_t *vwin, const char *fname);
void sourceview_insert_buffer (windata_t *vwin, const char *buf);
void sourceview_print (windata_t *vwin);
const char **get_sourceview_style_ids (int *n);
void update_script_editor_options (windata_t *vwin);
void viewer_split_pane (windata_t *vwin, int vertical);
void viewer_close_pane (windata_t *vwin);
void textview_add_processing_message (GtkWidget *view);
void textview_delete_processing_message (GtkWidget *view);
void textview_format_paragraph (GtkWidget *view);
#endif /* TEXTBUF_H */
|