2011-02-23 10:52:22 +00:00
|
|
|
/*
|
2007-12-24 18:27:28 +00:00
|
|
|
* ***** 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2007-12-24 18:27:28 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2007 Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Contributor(s): Blender Foundation
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2011-02-25 14:04:21 +00:00
|
|
|
/** \file blender/windowmanager/wm_window.h
|
|
|
|
* \ingroup wm
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __WM_WINDOW_H__
|
|
|
|
#define __WM_WINDOW_H__
|
2007-12-24 18:27:28 +00:00
|
|
|
|
|
|
|
struct bScreen;
|
2009-12-24 16:10:26 +00:00
|
|
|
struct wmOperator;
|
2007-12-24 18:27:28 +00:00
|
|
|
|
|
|
|
/* *************** internal api ************** */
|
|
|
|
void wm_ghost_init (bContext *C);
|
2009-08-05 02:40:51 +00:00
|
|
|
void wm_ghost_exit(void);
|
2007-12-24 18:27:28 +00:00
|
|
|
|
2010-08-16 12:14:09 +00:00
|
|
|
void wm_get_screensize(int *width_r, int *height_r);
|
2013-09-10 06:32:32 +00:00
|
|
|
void wm_get_desktopsize(int *width_r, int *height_r);
|
2010-08-16 12:14:09 +00:00
|
|
|
|
2008-11-18 13:51:02 +00:00
|
|
|
wmWindow *wm_window_new (bContext *C);
|
2009-10-20 13:58:53 +00:00
|
|
|
void wm_window_free (bContext *C, wmWindowManager *wm, wmWindow *win);
|
|
|
|
void wm_window_close (bContext *C, wmWindowManager *wm, wmWindow *win);
|
2009-02-13 13:33:01 +00:00
|
|
|
|
2009-02-18 13:29:54 +00:00
|
|
|
void wm_window_title (wmWindowManager *wm, wmWindow *win);
|
2012-03-10 17:49:26 +00:00
|
|
|
void wm_window_add_ghostwindows (wmWindowManager *wm);
|
2008-12-22 12:57:53 +00:00
|
|
|
void wm_window_process_events (const bContext *C);
|
2010-10-16 02:40:31 +00:00
|
|
|
void wm_window_process_events_nosleep(void);
|
2007-12-24 18:27:28 +00:00
|
|
|
|
2013-04-18 16:28:39 +00:00
|
|
|
void wm_window_make_drawable(wmWindowManager *wm, wmWindow *win);
|
2007-12-24 18:27:28 +00:00
|
|
|
|
|
|
|
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_position (wmWindow *win, int *posx_r, int *posy_r);
|
|
|
|
void wm_window_swap_buffers (wmWindow *win);
|
2013-07-29 22:31:32 +00:00
|
|
|
void wm_window_set_swap_interval (wmWindow *win, int interval);
|
|
|
|
int wm_window_get_swap_interval (wmWindow *win);
|
2007-12-24 18:27:28 +00:00
|
|
|
|
2014-09-30 18:29:32 +02:00
|
|
|
float wm_window_pixelsize(wmWindow *win);
|
|
|
|
|
2009-12-07 18:06:37 +00:00
|
|
|
void wm_get_cursor_position (wmWindow *win, int *x, int *y);
|
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
wmWindow *wm_window_copy (bContext *C, wmWindow *winorig);
|
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
void wm_window_testbreak (void);
|
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
/* *************** window operators ************** */
|
2010-10-16 02:40:31 +00:00
|
|
|
int wm_window_duplicate_exec(bContext *C, struct wmOperator *op);
|
|
|
|
int wm_window_fullscreen_toggle_exec(bContext *C, struct wmOperator *op);
|
2007-12-24 18:27:28 +00:00
|
|
|
|
2013-02-07 14:41:08 +00:00
|
|
|
/* Initial (unmaximized) size to start with for
|
|
|
|
* systems that can't find it for themselves (X11).
|
|
|
|
* Clamped by real desktop limits */
|
|
|
|
#define WM_WIN_INIT_SIZE_X 1800
|
|
|
|
#define WM_WIN_INIT_SIZE_Y 1000
|
2013-03-12 14:55:52 +00:00
|
|
|
#define WM_WIN_INIT_PAD 40
|
2013-02-07 14:41:08 +00:00
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#endif /* __WM_WINDOW_H__ */
|
2007-12-24 18:27:28 +00:00
|
|
|
|