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
|
2015-01-07 17:06:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - 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__
|
|
|
|
|
2012-10-12 17:05:29 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../../config.h"
|
|
|
|
#endif
|
|
|
|
|
2015-11-19 08:49:37 +00:00
|
|
|
#include <signal.h>
|
2015-04-09 03:05:29 +00:00
|
|
|
|
2012-09-26 13:52:25 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
2012-09-29 08:47:55 +00:00
|
|
|
#include <X11/extensions/xf86vmode.h>
|
2012-10-12 17:05:29 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_XINERAMA
|
|
|
|
#include <X11/extensions/Xinerama.h>
|
|
|
|
#endif
|
|
|
|
|
2014-10-21 03:05:52 +00:00
|
|
|
#include <boolean.h>
|
2012-09-26 13:52:25 +00:00
|
|
|
|
2015-11-19 08:49:37 +00:00
|
|
|
#include "../video_context_driver.h"
|
|
|
|
|
2015-11-19 08:51:20 +00:00
|
|
|
extern Atom g_x11_quit_atom;
|
|
|
|
extern bool g_x11_has_focus;
|
2015-11-19 09:00:25 +00:00
|
|
|
extern Window g_x11_win;
|
|
|
|
extern Display *g_x11_dpy;
|
2015-11-19 09:13:09 +00:00
|
|
|
extern bool g_x11_true_full;
|
2015-11-19 10:55:05 +00:00
|
|
|
extern Colormap g_x11_cmap;
|
2015-11-19 08:49:37 +00:00
|
|
|
|
2013-03-29 12:46:11 +00:00
|
|
|
void x11_show_mouse(Display *dpy, Window win, bool state);
|
2012-09-26 13:52:25 +00:00
|
|
|
void x11_windowed_fullscreen(Display *dpy, Window win);
|
|
|
|
void x11_suspend_screensaver(Window win);
|
2012-09-29 08:47:55 +00:00
|
|
|
bool x11_enter_fullscreen(Display *dpy, unsigned width, unsigned height, XF86VidModeModeInfo *desktop_mode);
|
|
|
|
void x11_exit_fullscreen(Display *dpy, XF86VidModeModeInfo *desktop_mode);
|
2012-10-12 17:05:29 +00:00
|
|
|
void x11_move_window(Display *dpy, Window win, int x, int y, unsigned width, unsigned height);
|
|
|
|
|
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
|
|
|
|
2012-10-12 17:05:29 +00:00
|
|
|
#ifdef HAVE_XINERAMA
|
|
|
|
bool x11_get_xinerama_coord(Display *dpy, int screen,
|
|
|
|
int *x, int *y, unsigned *w, unsigned *h);
|
|
|
|
|
|
|
|
unsigned x11_get_xinerama_monitor(Display *dpy,
|
|
|
|
int x, int y, int w, int h);
|
|
|
|
#endif
|
2012-09-26 13:52:25 +00:00
|
|
|
|
2013-12-08 13:20:05 +00:00
|
|
|
bool x11_create_input_context(Display *dpy, Window win, XIM *xim, XIC *xic);
|
|
|
|
void x11_destroy_input_context(XIM *xim, XIC *xic);
|
|
|
|
void x11_handle_key_event(XEvent *event, XIC ic, bool filter);
|
2012-12-08 12:35:07 +00:00
|
|
|
|
2015-04-09 03:05:29 +00:00
|
|
|
bool x11_get_metrics(void *data,
|
|
|
|
enum display_metric_types type, float *value);
|
|
|
|
|
2015-11-19 09:35:15 +00:00
|
|
|
void x11_check_window(void *data, bool *quit,
|
|
|
|
bool *resize, unsigned *width, unsigned *height, unsigned frame_count);
|
2015-11-19 09:02:53 +00:00
|
|
|
|
2015-11-19 09:29:26 +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
|
|
|
|
2015-11-19 09:46:16 +00:00
|
|
|
bool x11_alive(void *data);
|
|
|
|
|
2015-11-19 10:04:17 +00:00
|
|
|
void x11_install_sighandlers(void);
|
|
|
|
|
2015-11-19 10:07:52 +00:00
|
|
|
bool x11_connect(void);
|
|
|
|
|
2015-11-19 10:18:57 +00:00
|
|
|
void x11_update_window_title(void *data);
|
|
|
|
|
2015-11-19 10:27:41 +00:00
|
|
|
bool x11_input_ctx_new(void);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2012-09-26 13:52:25 +00:00
|
|
|
#endif
|
|
|
|
|