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:
authorTon Roosendaal <ton@blender.org>2007-12-24 21:27:28 +0300
committerTon Roosendaal <ton@blender.org>2007-12-24 21:27:28 +0300
commita1c8543f2acd7086d412cb794b32f96794b00659 (patch)
tree449643369b86531dbbd883193efaeee7d1fb4418 /source/blender/windowmanager/wm_window.h
parent8a07e665c28a94ffd188daa431a4fd0c5a460eba (diff)
Step 3 for the initial commits for 2.5: removing src/ and python,
adding new windowmanager module, and the first bits of new editors module.
Diffstat (limited to 'source/blender/windowmanager/wm_window.h')
-rw-r--r--source/blender/windowmanager/wm_window.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/source/blender/windowmanager/wm_window.h b/source/blender/windowmanager/wm_window.h
new file mode 100644
index 00000000000..3565bceac52
--- /dev/null
+++ b/source/blender/windowmanager/wm_window.h
@@ -0,0 +1,59 @@
+/**
+ * $Id: wm_window.h
+ *
+ * ***** 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) 2007 Blender Foundation.
+ * All rights reserved.
+ *
+ *
+ * Contributor(s): Blender Foundation
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#ifndef WM_WINDOW_H
+#define WM_WINDOW_H
+
+struct bScreen;
+
+/* *************** internal api ************** */
+void wm_ghost_init (bContext *C);
+
+wmWindow *wm_window_new (bContext *C, struct bScreen *screen);
+void wm_window_free (bContext *C, wmWindow *win);
+void wm_window_add_ghostwindows (wmWindowManager *wm);
+void wm_window_process_events (int wait_for_event);
+
+void wm_window_make_drawable(bContext *C, wmWindow *win);
+
+void wm_window_raise (wmWindow *win);
+void wm_window_lower (wmWindow *win);
+void wm_window_set_size (wmWindow *win, int width, int height);
+void wm_window_get_size (wmWindow *win, int *width_r, int *height_r);
+void wm_window_get_position (wmWindow *win, int *posx_r, int *posy_r);
+void wm_window_set_title (wmWindow *win, char *title);
+void wm_window_swap_buffers (wmWindow *win);
+
+wmWindow *wm_window_copy (bContext *C, wmWindow *winorig);
+
+/* *************** window operators ************** */
+int wm_window_duplicate_op (bContext *C, wmOperator *op);
+
+
+#endif /* WM_WINDOW_H */
+