4 * ***** BEGIN GPL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * The Original Code is Copyright (C) 2008 Blender Foundation.
21 * All rights reserved.
24 * Contributor(s): Campbell Barton
26 * ***** END GPL LICENSE BLOCK *****
28 #ifndef ED_CONSOLE_INTERN_H
29 #define ED_CONSOLE_INTERN_H
31 /* internal exports only */
34 struct wmOperatorType;
37 /* TODO, make into a pref */
38 #define CONSOLE_SCROLLBACK_LIMIT 128
41 void console_text_main(struct SpaceConsole *sc, struct ARegion *ar, struct ReportList *reports);
42 int console_text_height(struct SpaceConsole *sc, struct ARegion *ar, struct ReportList *reports); /* needed to calculate the scrollbar */
43 void *console_text_pick(struct SpaceConsole *sc, struct ARegion *ar, struct ReportList *reports, int mouse_y); /* needed for selection */
46 void console_history_free(SpaceConsole *sc, ConsoleLine *cl);
47 void console_scrollback_free(SpaceConsole *sc, ConsoleLine *cl);
48 ConsoleLine *console_history_add_str(const bContext *C, char *str, int own);
49 ConsoleLine *console_scrollback_add_str(const bContext *C, char *str, int own);
51 ConsoleLine *console_history_verify(const bContext *C);
53 int console_report_mask(SpaceConsole *sc);
56 void CONSOLE_OT_move(wmOperatorType *ot);
57 void CONSOLE_OT_delete(wmOperatorType *ot);
58 void CONSOLE_OT_insert(wmOperatorType *ot);
60 void CONSOLE_OT_history_append(wmOperatorType *ot);
61 void CONSOLE_OT_scrollback_append(wmOperatorType *ot);
63 void CONSOLE_OT_clear(wmOperatorType *ot);
64 void CONSOLE_OT_history_cycle(wmOperatorType *ot);
65 void CONSOLE_OT_zoom(wmOperatorType *ot);
67 /* console_report.c */
68 void CONSOLE_OT_select_pick(wmOperatorType *ot); /* report selection */
69 void CONSOLE_OT_select_all_toggle(wmOperatorType *ot);
70 void CONSOLE_OT_select_border(wmOperatorType *ot);
72 void CONSOLE_OT_report_replay(wmOperatorType *ot);
73 void CONSOLE_OT_report_delete(wmOperatorType *ot);
74 void CONSOLE_OT_report_copy(wmOperatorType *ot);
78 enum { LINE_BEGIN, LINE_END, PREV_CHAR, NEXT_CHAR, PREV_WORD, NEXT_WORD };
79 enum { DEL_ALL, DEL_NEXT_CHAR, DEL_PREV_CHAR, DEL_SELECTION, DEL_NEXT_SEL, DEL_PREV_SEL };
81 #endif /* ED_CONSOLE_INTERN_H */