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:
authorAndrea Weikert <elubie@gmx.net>2008-01-15 23:42:00 +0300
committerAndrea Weikert <elubie@gmx.net>2008-01-15 23:42:00 +0300
commitda11a3f38e9ead6fc525569ab5af9eaaaf21494f (patch)
treee9665d96ee8a222202c54828fa94d3f1a464cd26 /source/blender/editors/screen/screen_intern.h
parent9e9ebfc12c65fb730c7874ef06dacc813176ac9f (diff)
Operators: Join Areas
add split area to screen manager - RMB+ALT down on area edge activates - mouse move interactively to area that is to be removed - LMB to confirm, ESC to cancel TODO: - notifications for interactive drawing to mark area to remove Some fixes - uninitialized var warning. - exit function of operators need to run before modal handler is removed if operator is used there. - replaced MEM_mallocN with MEM_callocN to get rid of uninitialized mem for wmOperator. - respect return value of wm_handler_operator_call() and break out of operator handling.
Diffstat (limited to 'source/blender/editors/screen/screen_intern.h')
-rw-r--r--source/blender/editors/screen/screen_intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/screen/screen_intern.h b/source/blender/editors/screen/screen_intern.h
index c424905c1e7..bf44e3c4a01 100644
--- a/source/blender/editors/screen/screen_intern.h
+++ b/source/blender/editors/screen/screen_intern.h
@@ -41,7 +41,7 @@ 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);
-
+void ED_SCR_OT_join_areas(wmOperatorType *ot);
#endif /* ED_SCREEN_INTERN_H */