Lines Matching refs:null
57 &window->null.xpos,
58 &window->null.ypos);
59 window->null.width = mode.width;
60 window->null.height = mode.height;
86 window->null.xpos = 17;
87 window->null.ypos = 17;
91 window->null.xpos = wndconfig->xpos;
92 window->null.ypos = wndconfig->ypos;
95 window->null.width = wndconfig->width;
96 window->null.height = wndconfig->height;
99 window->null.visible = wndconfig->visible;
100 window->null.decorated = wndconfig->decorated;
101 window->null.maximized = wndconfig->maximized;
102 window->null.floating = wndconfig->floating;
103 window->null.transparent = fbconfig->transparent;
104 window->null.opacity = 1.f;
174 if (_glfw.null.focusedWindow == window)
175 _glfw.null.focusedWindow = NULL;
213 window->null.visible = GLFW_TRUE;
227 *xpos = window->null.xpos;
229 *ypos = window->null.ypos;
237 if (window->null.xpos != xpos || window->null.ypos != ypos)
239 window->null.xpos = xpos;
240 window->null.ypos = ypos;
248 *width = window->null.width;
250 *height = window->null.height;
258 if (window->null.width != width || window->null.height != height)
260 window->null.width = width;
261 window->null.height = height;
272 int width = window->null.width;
273 int height = window->null.height;
280 int width = window->null.width;
281 int height = window->null.height;
289 *width = window->null.width;
291 *height = window->null.height;
298 if (window->null.decorated && !window->monitor)
332 if (_glfw.null.focusedWindow == window)
334 _glfw.null.focusedWindow = NULL;
338 if (!window->null.iconified)
340 window->null.iconified = GLFW_TRUE;
350 if (window->null.iconified)
352 window->null.iconified = GLFW_FALSE;
358 else if (window->null.maximized)
360 window->null.maximized = GLFW_FALSE;
367 if (!window->null.maximized)
369 window->null.maximized = GLFW_TRUE;
376 return window->null.maximized;
381 return _glfw.null.xcursor >= window->null.xpos &&
382 _glfw.null.ycursor >= window->null.ypos &&
383 _glfw.null.xcursor <= window->null.xpos + window->null.width - 1 &&
384 _glfw.null.ycursor <= window->null.ypos + window->null.height - 1;
389 return window->null.transparent;
394 window->null.resizable = enabled;
399 window->null.decorated = enabled;
404 window->null.floating = enabled;
413 return window->null.opacity;
418 window->null.opacity = opacity;
432 window->null.visible = GLFW_TRUE;
441 if (_glfw.null.focusedWindow == window)
443 _glfw.null.focusedWindow = NULL;
447 window->null.visible = GLFW_FALSE;
454 if (_glfw.null.focusedWindow == window)
457 if (!window->null.visible)
460 previous = _glfw.null.focusedWindow;
461 _glfw.null.focusedWindow = window;
475 return _glfw.null.focusedWindow == window;
480 return window->null.iconified;
485 return window->null.visible;
507 *xpos = _glfw.null.xcursor - window->null.xpos;
509 *ypos = _glfw.null.ycursor - window->null.ypos;
514 _glfw.null.xcursor = window->null.xpos + (int) x;
515 _glfw.null.ycursor = window->null.ypos + (int) y;
545 _glfw_free(_glfw.null.clipboardString);
546 _glfw.null.clipboardString = copy;
551 return _glfw.null.clipboardString;
701 return _glfw.null.scancodes[key];