74 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * ***** BEGIN GPL LICENSE BLOCK *****
 | |
|  *
 | |
|  * 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. 
 | |
|  *
 | |
|  * 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, write to the Free Software Foundation,
 | |
|  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 | |
|  *
 | |
|  * Contributor(s): Campbell Barton
 | |
|  *
 | |
|  * ***** END GPL LICENSE BLOCK *****
 | |
|  */
 | |
| 
 | |
| /** \file blender/editors/space_console/console_intern.h
 | |
|  *  \ingroup spconsole
 | |
|  */
 | |
| 
 | |
| #ifndef __CONSOLE_INTERN_H__
 | |
| #define __CONSOLE_INTERN_H__
 | |
| 
 | |
| /* internal exports only */
 | |
| 
 | |
| struct ConsoleLine;
 | |
| struct wmOperatorType;
 | |
| struct ReportList;
 | |
| struct bContext;
 | |
| 
 | |
| /* console_draw.c */
 | |
| void console_textview_main(struct SpaceConsole *sc, struct ARegion *ar);
 | |
| int console_textview_height(struct SpaceConsole *sc, struct ARegion *ar); /* needed to calculate the scrollbar */
 | |
| int console_char_pick(struct SpaceConsole *sc, struct ARegion *ar, const int mval[2]);
 | |
| 
 | |
| void console_scrollback_prompt_begin(struct SpaceConsole *sc, ConsoleLine *cl_dummy);
 | |
| void console_scrollback_prompt_end(struct SpaceConsole *sc, ConsoleLine *cl_dummy);
 | |
| 
 | |
| /* console_ops.c */
 | |
| void console_history_free(SpaceConsole *sc, ConsoleLine *cl);
 | |
| void console_scrollback_free(SpaceConsole *sc, ConsoleLine *cl);
 | |
| ConsoleLine *console_history_add_str(struct SpaceConsole *sc, char *str, bool own);
 | |
| ConsoleLine *console_scrollback_add_str(struct SpaceConsole *sc, char *str, bool own);
 | |
| 
 | |
| ConsoleLine *console_history_verify(const struct bContext *C);
 | |
| 
 | |
| void CONSOLE_OT_move(struct wmOperatorType *ot);
 | |
| void CONSOLE_OT_delete(struct wmOperatorType *ot);
 | |
| void CONSOLE_OT_insert(struct wmOperatorType *ot);
 | |
| 
 | |
| void CONSOLE_OT_indent(struct wmOperatorType *ot);
 | |
| void CONSOLE_OT_unindent(struct wmOperatorType *ot);
 | |
| 
 | |
| void CONSOLE_OT_history_append(struct wmOperatorType *ot);
 | |
| void CONSOLE_OT_scrollback_append(struct wmOperatorType *ot);
 | |
| 
 | |
| void CONSOLE_OT_clear(struct wmOperatorType *ot);
 | |
| void CONSOLE_OT_clear_line(struct wmOperatorType *ot);
 | |
| void CONSOLE_OT_history_cycle(struct wmOperatorType *ot);
 | |
| void CONSOLE_OT_copy(struct wmOperatorType *ot);
 | |
| void CONSOLE_OT_paste(struct wmOperatorType *ot);
 | |
| void CONSOLE_OT_select_set(struct wmOperatorType *ot);
 | |
| 
 | |
| enum { LINE_BEGIN, LINE_END, PREV_CHAR, NEXT_CHAR, PREV_WORD, NEXT_WORD };
 | |
| enum { DEL_ALL, DEL_NEXT_CHAR, DEL_PREV_CHAR, DEL_NEXT_WORD, DEL_PREV_WORD, DEL_SELECTION, DEL_NEXT_SEL, DEL_PREV_SEL };
 | |
| 
 | |
| #endif /* __CONSOLE_INTERN_H__ */
 |