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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-01-14 23:46:42 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-01-14 23:46:42 +0300
commitc89b96645e76e3f1fa04f637753e33b8e58940c6 (patch)
tree1604b2fb9778b933dcf126dfb02c82005fcabc29 /source/blender/editors/screen/screen_intern.h
parent2a0055401e86bd2344564184cd7a48170d984367 (diff)
Operators: Split Area
This commit adds split area to the window/screen manager. - RMB down on area edge activates - mouse move interactively moves areas through new edge. - RMB up to confirm action - ESCKEY or LMB to cancel. This still crashes in some situations, but I'm on it! Also will start using new operator property system by bdiego
Diffstat (limited to 'source/blender/editors/screen/screen_intern.h')
-rw-r--r--source/blender/editors/screen/screen_intern.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/editors/screen/screen_intern.h b/source/blender/editors/screen/screen_intern.h
index 680404cc41b..c424905c1e7 100644
--- a/source/blender/editors/screen/screen_intern.h
+++ b/source/blender/editors/screen/screen_intern.h
@@ -37,9 +37,14 @@ void area_copy_data(ScrArea *sa1, ScrArea *sa2, int swap_space);
/* screen_edit.c */
int screen_cursor_test(bContext *C, wmOperator *op, wmEvent *event);
+int area_cursor_test(bContext *C, wmOperator *op, wmEvent *event);
void ED_SCR_OT_move_areas(wmOperatorType *ot);
+void ED_SCR_OT_split_area(wmOperatorType *ot);
#endif /* ED_SCREEN_INTERN_H */
+
+
+