Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-07-26 08:31:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-07-26 08:31:46 +0400
commita934773475182feeddc4dd208dc5222975d9206a (patch)
treee7fc3c86507573791f38221827bebdb1b428af1c /source/blender/editors/space_console/console_intern.h
parent117fdd8072fb6b8390d85498d8185c55a81f40e8 (diff)
- console scrollback userpref
- copy coperator for the console (Ctrl+C and from the menu)
Diffstat (limited to 'source/blender/editors/space_console/console_intern.h')
-rw-r--r--source/blender/editors/space_console/console_intern.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/editors/space_console/console_intern.h b/source/blender/editors/space_console/console_intern.h
index 3c6eeb63505..0a80059fc65 100644
--- a/source/blender/editors/space_console/console_intern.h
+++ b/source/blender/editors/space_console/console_intern.h
@@ -34,9 +34,6 @@ struct ConsoleLine;
struct wmOperatorType;
struct ReportList;
-/* TODO, make into a pref */
-#define CONSOLE_SCROLLBACK_LIMIT 128
-
/* console_draw.c */
void console_text_main(struct SpaceConsole *sc, struct ARegion *ar, struct ReportList *reports);
int console_text_height(struct SpaceConsole *sc, struct ARegion *ar, struct ReportList *reports); /* needed to calculate the scrollbar */
@@ -62,8 +59,10 @@ void CONSOLE_OT_scrollback_append(wmOperatorType *ot);
void CONSOLE_OT_clear(wmOperatorType *ot);
void CONSOLE_OT_history_cycle(wmOperatorType *ot);
+void CONSOLE_OT_copy(wmOperatorType *ot);
void CONSOLE_OT_zoom(wmOperatorType *ot);
+
/* console_report.c */
void CONSOLE_OT_select_pick(wmOperatorType *ot); /* report selection */
void CONSOLE_OT_select_all_toggle(wmOperatorType *ot);