RetroArch/gfx/common/x11_common.h

83 lines
2.4 KiB
C
Raw Normal View History

2012-09-26 13:52:25 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2017-01-22 12:40:32 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
*
2012-09-26 13:52:25 +00:00
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef X11_COMMON_H__
#define X11_COMMON_H__
#include <X11/Xutil.h>
2012-10-12 17:05:29 +00:00
#include <boolean.h>
2012-09-26 13:52:25 +00:00
#include "../../retroarch.h"
extern Window g_x11_win;
extern Display *g_x11_dpy;
2015-11-19 10:55:05 +00:00
extern Colormap g_x11_cmap;
2015-12-01 07:42:33 +00:00
extern unsigned g_x11_screen;
2013-03-29 12:46:11 +00:00
void x11_show_mouse(Display *dpy, Window win, bool state);
void x11_set_net_wm_fullscreen(Display *dpy, Window win);
void x11_suspend_screensaver(Window win, bool enable);
bool x11_enter_fullscreen(Display *dpy, unsigned width, unsigned height);
2016-02-05 12:36:18 +00:00
void x11_exit_fullscreen(Display *dpy);
2016-02-05 12:36:18 +00:00
void x11_move_window(Display *dpy, Window win,
int x, int y, unsigned width, unsigned height);
2012-10-12 17:05:29 +00:00
2015-01-07 17:06:50 +00:00
/* Set icon, class, default stuff. */
2012-10-26 21:01:32 +00:00
void x11_set_window_attr(Display *dpy, Window win);
2012-10-13 10:51:37 +00:00
bool x11_create_input_context(Display *dpy, Window win, XIM *xim, XIC *xic);
void x11_destroy_input_context(XIM *xim, XIC *xic);
2015-04-09 03:05:29 +00:00
bool x11_get_metrics(void *data,
enum display_metric_types type, float *value);
float x11_get_refresh_rate(void *data);
void x11_check_window(void *data, bool *quit,
2020-03-06 19:32:22 +00:00
bool *resize, unsigned *width, unsigned *height);
2015-11-19 09:02:53 +00:00
void x11_get_video_size(void *data, unsigned *width, unsigned *height);
2015-11-19 09:09:19 +00:00
2015-11-19 09:25:07 +00:00
bool x11_has_focus(void *data);
2015-11-19 09:13:09 +00:00
bool x11_has_focus_internal(void *data);
bool x11_alive(void *data);
2015-11-19 10:07:52 +00:00
bool x11_connect(void);
void x11_update_title(void *data);
2015-11-19 10:18:57 +00:00
2015-11-19 11:05:32 +00:00
bool x11_input_ctx_new(bool true_full);
void x11_input_ctx_destroy(void);
2015-11-19 10:49:09 +00:00
void x11_window_destroy(bool fullscreen);
2015-11-19 10:55:05 +00:00
void x11_colormap_destroy(void);
2015-11-19 11:18:35 +00:00
void x11_install_quit_atom(void);
2015-11-19 14:05:17 +00:00
void x11_event_queue_check(XEvent *event);
char *x11_get_wm_name(Display *dpy);
bool x11_has_net_wm_fullscreen(Display *dpy);
2012-09-26 13:52:25 +00:00
#endif