2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License
4 * as published by the Free Software Foundation; either version 2
5 * of the License, or (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software Foundation,
14 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * The Original Code is Copyright (C) 2007 Blender Foundation.
17 * All rights reserved.
25 #ifndef __WM_WINDOW_H__
26 #define __WM_WINDOW_H__
28 struct EnumPropertyItem;
34 /* *************** internal api ************** */
35 void wm_ghost_init (bContext *C);
36 void wm_ghost_exit(void);
38 void wm_get_screensize(int *r_width, int *r_height);
39 void wm_get_desktopsize(int *r_width, int *r_height);
41 wmWindow *wm_window_new (bContext *C, wmWindow *parent);
42 wmWindow *wm_window_copy (bContext *C, wmWindow *win_src, const bool duplicate_layout, const bool child);
43 wmWindow *wm_window_copy_test (bContext *C, wmWindow *win_src, const bool duplicate_layout, const bool child);
44 void wm_window_free (bContext *C, wmWindowManager *wm, wmWindow *win);
45 void wm_window_close (bContext *C, wmWindowManager *wm, wmWindow *win);
47 void wm_window_title (wmWindowManager *wm, wmWindow *win);
48 void wm_window_ghostwindows_ensure(wmWindowManager *wm);
49 void wm_window_ghostwindows_remove_invalid(bContext *C, wmWindowManager *wm);
50 void wm_window_process_events (const bContext *C);
52 void wm_window_clear_drawable(wmWindowManager *wm);
53 void wm_window_make_drawable(wmWindowManager *wm, wmWindow *win);
54 void wm_window_reset_drawable(void);
56 void wm_window_raise (wmWindow *win);
57 void wm_window_lower (wmWindow *win);
58 void wm_window_set_size (wmWindow *win, int width, int height);
59 void wm_window_get_position (wmWindow *win, int *r_pos_x, int *r_pos_y);
60 void wm_window_swap_buffers (wmWindow *win);
61 void wm_window_set_swap_interval(wmWindow *win, int interval);
62 bool wm_window_get_swap_interval(wmWindow *win, int *intervalOut);
64 void wm_get_cursor_position (wmWindow *win, int *x, int *y);
65 void wm_cursor_position_from_ghost (wmWindow *win, int *x, int *y);
66 void wm_cursor_position_to_ghost (wmWindow *win, int *x, int *y);
69 void wm_window_IME_begin (wmWindow *win, int x, int y, int w, int h, bool complete);
70 void wm_window_IME_end (wmWindow *win);
73 /* *************** window operators ************** */
74 int wm_window_close_exec(bContext *C, struct wmOperator *op);
75 int wm_window_fullscreen_toggle_exec(bContext *C, struct wmOperator *op);
76 void wm_quit_with_optional_confirmation_prompt(bContext *C, wmWindow *win) ATTR_NONNULL();
78 int wm_window_new_exec(bContext *C, struct wmOperator *op);
79 int wm_window_new_main_exec(bContext *C, struct wmOperator *op);
81 void wm_test_autorun_warning(bContext *C);
83 /* Initial (unmaximized) size to start with for
84 * systems that can't find it for themselves (X11).
85 * Clamped by real desktop limits */
86 #define WM_WIN_INIT_SIZE_X 1800
87 #define WM_WIN_INIT_SIZE_Y 1000
88 #define WM_WIN_INIT_PAD 40
90 #endif /* __WM_WINDOW_H__ */