RetroArch/gfx/common/x11_common.h

96 lines
2.8 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
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
#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
#include <boolean.h>
2012-09-26 13:52:25 +00:00
#include "../video_context_driver.h"
extern Window g_x11_win;
extern Display *g_x11_dpy;
2015-11-19 10:55:05 +00:00
extern Colormap g_x11_cmap;
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
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);
2015-04-09 03:05:29 +00:00
bool x11_get_metrics(void *data,
enum display_metric_types type, float *value);
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
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: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 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);
2012-09-26 13:52:25 +00:00
#endif