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:
Diffstat (limited to 'source/blender/editors/screen/screen_ops.c')
-rw-r--r--source/blender/editors/screen/screen_ops.c90
1 files changed, 90 insertions, 0 deletions
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
new file mode 100644
index 00000000000..54f9593ea7b
--- /dev/null
+++ b/source/blender/editors/screen/screen_ops.c
@@ -0,0 +1,90 @@
+/**
+ * $Id:
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2008 Blender Foundation.
+ * All rights reserved.
+ *
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#include "MEM_guardedalloc.h"
+
+#include "BLI_blenlib.h"
+
+#include "BKE_global.h"
+#include "BKE_library.h"
+#include "BKE_main.h"
+#include "BKE_screen.h"
+#include "BKE_utildefines.h"
+
+#include "WM_api.h"
+#include "WM_types.h"
+
+#include "ED_area.h"
+#include "ED_screen.h"
+
+#include "screen_intern.h" /* own module include */
+
+/* ************** Poll tests ********************** */
+
+int ED_operator_screenactive(bContext *C)
+{
+ if(C->window==NULL) return 0;
+ if(C->screen==NULL) return 0;
+ return 1;
+}
+
+int ED_operator_screen_mainwinactive(bContext *C)
+{
+ if(C->window==NULL) return 0;
+ if(C->screen==NULL) return 0;
+ if (C->screen->subwinactive!=C->screen->mainwin) return 0;
+ return 1;
+}
+
+/* ******************************* */
+
+static void ED_SCR_OT_cursor_type(wmOperatorType *ot)
+{
+ ot->name= "Cursor type";
+ ot->idname= "ED_SCR_OT_cursor_type";
+
+ ot->invoke= screen_cursor_test;
+ ot->poll= ED_operator_screenactive;
+}
+
+/* called in spacetypes.c */
+void ED_operatortypes_screen(void)
+{
+ WM_operatortype_append(ED_SCR_OT_move_areas);
+ WM_operatortype_append(ED_SCR_OT_cursor_type);
+ WM_operatortype_append(ED_SCR_OT_split_area);
+ WM_operatortype_append(ED_SCR_OT_join_areas);
+}
+
+/* called in spacetypes.c */
+void ED_keymap_screen(wmWindowManager *wm)
+{
+ WM_keymap_verify_item(&wm->screenkeymap, "ED_SCR_OT_cursor_type", MOUSEMOVE, 0, 0, 0);
+ WM_keymap_verify_item(&wm->screenkeymap, "ED_SCR_OT_move_areas", LEFTMOUSE, KM_PRESS, 0, 0);
+ WM_keymap_verify_item(&wm->screenkeymap, "ED_SCR_OT_split_area", LEFTMOUSE, KM_PRESS, 0, 0);
+ WM_keymap_verify_item(&wm->screenkeymap, "ED_SCR_OT_join_areas", RIGHTMOUSE, KM_PRESS, KM_ALT, 0);
+}
+