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-12-27 23:22:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-27 23:22:06 +0300
commit532b5e7bba1d229600eb0aa48684692cd630cfa6 (patch)
treed21fc2c6d3636de0bcd2834573d8640c7755fae7 /source/blender/editors/space_console/console_intern.h
parent280a1d09f6cafa5bd9b117b5b39bf90b2d21bdf0 (diff)
WIP console text selection, modal selection operator and selection drawing.
word wrap and clipboard are not working yet.
Diffstat (limited to 'source/blender/editors/space_console/console_intern.h')
-rw-r--r--source/blender/editors/space_console/console_intern.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_console/console_intern.h b/source/blender/editors/space_console/console_intern.h
index 889ed2dae81..92ab3eb3d0c 100644
--- a/source/blender/editors/space_console/console_intern.h
+++ b/source/blender/editors/space_console/console_intern.h
@@ -39,6 +39,7 @@ struct bContext;
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 */
void *console_text_pick(struct SpaceConsole *sc, struct ARegion *ar, struct ReportList *reports, int mouse_y); /* needed for selection */
+int console_char_pick(struct SpaceConsole *sc, struct ARegion *ar, ReportList *reports, int mval[2]);
/* console_ops.c */
void console_history_free(SpaceConsole *sc, ConsoleLine *cl);
@@ -63,6 +64,8 @@ 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_zoom(struct wmOperatorType *ot);
+void CONSOLE_OT_select_set(struct wmOperatorType *ot);
+
/* console_report.c */