VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.h@ 55810

Last change on this file since 55810 was 55810, checked in by vboxsync, 9 years ago

VBoxSDL: Made it build again on darwin, added hack for playing with OpenGL.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1/* $Id: VBoxSDL.h 55810 2015-05-11 20:27:08Z vboxsync $ */
2/** @file
3 *
4 * VBox frontends: VBoxSDL (simple frontend based on SDL):
5 * Main header
6 */
7
8/*
9 * Copyright (C) 2006-2010 Oracle Corporation
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 */
19
20#ifndef __H_VBOXSDL
21#define __H_VBOXSDL
22
23#include <iprt/cdefs.h>
24#ifdef RT_OS_WINDOWS /** @todo check why we need to do this on windows. */
25/* convince SDL to not overload main() */
26#define _SDL_main_h
27#endif
28/* include this first so Windows.h get's in before our stuff. */
29#include <SDL.h>
30
31/** custom SDL event for display update handling */
32#define SDL_USER_EVENT_UPDATERECT (SDL_USEREVENT + 4)
33/** custom SDL event for changing the guest resolution */
34#define SDL_USER_EVENT_NOTIFYCHANGE (SDL_USEREVENT + 5)
35/** custom SDL for XPCOM event queue processing */
36#define SDL_USER_EVENT_XPCOM_EVENTQUEUE (SDL_USEREVENT + 6)
37/** custom SDL event for updating the titlebar */
38#define SDL_USER_EVENT_UPDATE_TITLEBAR (SDL_USEREVENT + 7)
39/** custom SDL user event for terminating the session */
40#define SDL_USER_EVENT_TERMINATE (SDL_USEREVENT + 8)
41/** custom SDL user event for secure label update notification */
42#define SDL_USER_EVENT_SECURELABEL_UPDATE (SDL_USEREVENT + 9)
43/** custom SDL user event for pointer shape change request */
44#define SDL_USER_EVENT_POINTER_CHANGE (SDL_USEREVENT + 10)
45/** custom SDL user event for a regular timer */
46#define SDL_USER_EVENT_TIMER (SDL_USEREVENT + 11)
47/** custom SDL user event for resetting mouse cursor */
48#define SDL_USER_EVENT_GUEST_CAP_CHANGED (SDL_USEREVENT + 12)
49/** custom SDL user event for window resize done */
50#define SDL_USER_EVENT_WINDOW_RESIZE_DONE (SDL_USEREVENT + 13)
51
52
53/** The user.code field of the SDL_USER_EVENT_TERMINATE event.
54 * @{
55 */
56/** Normal termination. */
57#define VBOXSDL_TERM_NORMAL 0
58/** Abnormal termination. */
59#define VBOXSDL_TERM_ABEND 1
60/** @} */
61
62void ResetVM(void);
63void SaveState(void);
64
65#ifdef VBOX_WIN32_UI
66int initUI(bool fResizable, int64_t &winId);
67int uninitUI(void);
68int resizeUI(uint16_t width, uint16_t height);
69int setUITitle(char *title);
70#endif /* VBOX_WIN32_UI */
71
72#ifdef VBOXSDL_WITH_X11
73void PushNotifyUpdateEvent(SDL_Event *event);
74#endif
75int PushSDLEventForSure(SDL_Event *event);
76
77#ifdef RT_OS_DARWIN
78RT_C_DECLS_BEGIN
79void *VBoxSDLGetDarwinWindowId(void);
80RT_C_DECLS_END
81#endif
82
83#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette