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 */
45 void console_history_free(SpaceConsole *sc, ConsoleLine *cl);
46 void console_scrollback_free(SpaceConsole *sc, ConsoleLine *cl);
47 ConsoleLine *console_history_add_str(const bContext *C, char *str, int own);
48 ConsoleLine *console_scrollback_add_str(const bContext *C, char *str, int own);
50 ConsoleLine *console_history_verify(const bContext *C);
53 void CONSOLE_OT_move(wmOperatorType *ot);
54 void CONSOLE_OT_delete(wmOperatorType *ot);
55 void CONSOLE_OT_insert(wmOperatorType *ot);
57 void CONSOLE_OT_history_append(wmOperatorType *ot);
58 void CONSOLE_OT_scrollback_append(wmOperatorType *ot);
60 void CONSOLE_OT_clear(wmOperatorType *ot);
61 void CONSOLE_OT_history_cycle(wmOperatorType *ot);
62 void CONSOLE_OT_zoom(wmOperatorType *ot);
64 enum { LINE_BEGIN, LINE_END, PREV_CHAR, NEXT_CHAR, PREV_WORD, NEXT_WORD };
65 enum { DEL_ALL, DEL_NEXT_CHAR, DEL_PREV_CHAR, DEL_SELECTION, DEL_NEXT_SEL, DEL_PREV_SEL };
67 /* defined in DNA_space_types.h */
68 static EnumPropertyItem console_line_type_items[] = {
69 {CONSOLE_LINE_OUTPUT, "OUTPUT", 0, "Output", ""},
70 {CONSOLE_LINE_INPUT, "INPUT", 0, "Input", ""},
71 {CONSOLE_LINE_INFO, "INFO", 0, "Information", ""},
72 {CONSOLE_LINE_ERROR, "ERROR", 0, "Error", ""},
73 {0, NULL, 0, NULL, NULL}};
75 #endif /* ED_CONSOLE_INTERN_H */