1
0

SDL_hints.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * \file SDL_hints.h
  20. *
  21. * Official documentation for SDL configuration variables
  22. *
  23. * This file contains functions to set and get configuration hints,
  24. * as well as listing each of them alphabetically.
  25. *
  26. * The convention for naming hints is SDL_HINT_X, where "SDL_X" is
  27. * the environment variable that can be used to override the default.
  28. *
  29. * In general these hints are just that - they may or may not be
  30. * supported or applicable on any given platform, but they provide
  31. * a way for an application or user to give the library a hint as
  32. * to how they would like the library to work.
  33. */
  34. #ifndef _SDL_hints_h
  35. #define _SDL_hints_h
  36. #include "SDL_stdinc.h"
  37. #include "begin_code.h"
  38. /* Set up for C function definitions, even when using C++ */
  39. #ifdef __cplusplus
  40. extern "C" {
  41. #endif
  42. /**
  43. * \brief A variable controlling how 3D acceleration is used to accelerate the SDL screen surface.
  44. *
  45. * SDL can try to accelerate the SDL screen surface by using streaming
  46. * textures with a 3D rendering engine. This variable controls whether and
  47. * how this is done.
  48. *
  49. * This variable can be set to the following values:
  50. * "0" - Disable 3D acceleration
  51. * "1" - Enable 3D acceleration, using the default renderer.
  52. * "X" - Enable 3D acceleration, using X where X is one of the valid rendering drivers. (e.g. "direct3d", "opengl", etc.)
  53. *
  54. * By default SDL tries to make a best guess for each platform whether
  55. * to use acceleration or not.
  56. */
  57. #define SDL_HINT_FRAMEBUFFER_ACCELERATION "SDL_FRAMEBUFFER_ACCELERATION"
  58. /**
  59. * \brief A variable specifying which render driver to use.
  60. *
  61. * If the application doesn't pick a specific renderer to use, this variable
  62. * specifies the name of the preferred renderer. If the preferred renderer
  63. * can't be initialized, the normal default renderer is used.
  64. *
  65. * This variable is case insensitive and can be set to the following values:
  66. * "direct3d"
  67. * "opengl"
  68. * "opengles2"
  69. * "opengles"
  70. * "software"
  71. *
  72. * The default varies by platform, but it's the first one in the list that
  73. * is available on the current platform.
  74. */
  75. #define SDL_HINT_RENDER_DRIVER "SDL_RENDER_DRIVER"
  76. /**
  77. * \brief A variable controlling whether the OpenGL render driver uses shaders if they are available.
  78. *
  79. * This variable can be set to the following values:
  80. * "0" - Disable shaders
  81. * "1" - Enable shaders
  82. *
  83. * By default shaders are used if OpenGL supports them.
  84. */
  85. #define SDL_HINT_RENDER_OPENGL_SHADERS "SDL_RENDER_OPENGL_SHADERS"
  86. /**
  87. * \brief A variable controlling whether the Direct3D device is initialized for thread-safe operations.
  88. *
  89. * This variable can be set to the following values:
  90. * "0" - Thread-safety is not enabled (faster)
  91. * "1" - Thread-safety is enabled
  92. *
  93. * By default the Direct3D device is created with thread-safety disabled.
  94. */
  95. #define SDL_HINT_RENDER_DIRECT3D_THREADSAFE "SDL_RENDER_DIRECT3D_THREADSAFE"
  96. /**
  97. * \brief A variable controlling whether to enable Direct3D 11+'s Debug Layer.
  98. *
  99. * This variable does not have any effect on the Direct3D 9 based renderer.
  100. *
  101. * This variable can be set to the following values:
  102. * "0" - Disable Debug Layer use
  103. * "1" - Enable Debug Layer use
  104. *
  105. * By default, SDL does not use Direct3D Debug Layer.
  106. */
  107. #define SDL_HINT_RENDER_DIRECT3D11_DEBUG "SDL_RENDER_DIRECT3D11_DEBUG"
  108. /**
  109. * \brief A variable controlling the scaling quality
  110. *
  111. * This variable can be set to the following values:
  112. * "0" or "nearest" - Nearest pixel sampling
  113. * "1" or "linear" - Linear filtering (supported by OpenGL and Direct3D)
  114. * "2" or "best" - Currently this is the same as "linear"
  115. *
  116. * By default nearest pixel sampling is used
  117. */
  118. #define SDL_HINT_RENDER_SCALE_QUALITY "SDL_RENDER_SCALE_QUALITY"
  119. /**
  120. * \brief A variable controlling whether updates to the SDL screen surface should be synchronized with the vertical refresh, to avoid tearing.
  121. *
  122. * This variable can be set to the following values:
  123. * "0" - Disable vsync
  124. * "1" - Enable vsync
  125. *
  126. * By default SDL does not sync screen surface updates with vertical refresh.
  127. */
  128. #define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC"
  129. /**
  130. * \brief A variable controlling whether the screensaver is enabled.
  131. *
  132. * This variable can be set to the following values:
  133. * "0" - Disable screensaver
  134. * "1" - Enable screensaver
  135. *
  136. * By default SDL will disable the screensaver.
  137. */
  138. #define SDL_HINT_VIDEO_ALLOW_SCREENSAVER "SDL_VIDEO_ALLOW_SCREENSAVER"
  139. /**
  140. * \brief A variable controlling whether the X11 VidMode extension should be used.
  141. *
  142. * This variable can be set to the following values:
  143. * "0" - Disable XVidMode
  144. * "1" - Enable XVidMode
  145. *
  146. * By default SDL will use XVidMode if it is available.
  147. */
  148. #define SDL_HINT_VIDEO_X11_XVIDMODE "SDL_VIDEO_X11_XVIDMODE"
  149. /**
  150. * \brief A variable controlling whether the X11 Xinerama extension should be used.
  151. *
  152. * This variable can be set to the following values:
  153. * "0" - Disable Xinerama
  154. * "1" - Enable Xinerama
  155. *
  156. * By default SDL will use Xinerama if it is available.
  157. */
  158. #define SDL_HINT_VIDEO_X11_XINERAMA "SDL_VIDEO_X11_XINERAMA"
  159. /**
  160. * \brief A variable controlling whether the X11 XRandR extension should be used.
  161. *
  162. * This variable can be set to the following values:
  163. * "0" - Disable XRandR
  164. * "1" - Enable XRandR
  165. *
  166. * By default SDL will not use XRandR because of window manager issues.
  167. */
  168. #define SDL_HINT_VIDEO_X11_XRANDR "SDL_VIDEO_X11_XRANDR"
  169. /**
  170. * \brief A variable controlling whether the X11 _NET_WM_PING protocol should be supported.
  171. *
  172. * This variable can be set to the following values:
  173. * "0" - Disable _NET_WM_PING
  174. * "1" - Enable _NET_WM_PING
  175. *
  176. * By default SDL will use _NET_WM_PING, but for applications that know they
  177. * will not always be able to respond to ping requests in a timely manner they can
  178. * turn it off to avoid the window manager thinking the app is hung.
  179. * The hint is checked in CreateWindow.
  180. */
  181. #define SDL_HINT_VIDEO_X11_NET_WM_PING "SDL_VIDEO_X11_NET_WM_PING"
  182. /**
  183. * \brief A variable controlling whether the window frame and title bar are interactive when the cursor is hidden
  184. *
  185. * This variable can be set to the following values:
  186. * "0" - The window frame is not interactive when the cursor is hidden (no move, resize, etc)
  187. * "1" - The window frame is interactive when the cursor is hidden
  188. *
  189. * By default SDL will allow interaction with the window frame when the cursor is hidden
  190. */
  191. #define SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN "SDL_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN"
  192. /**
  193. * \brief A variable controlling whether the windows message loop is processed by SDL
  194. *
  195. * This variable can be set to the following values:
  196. * "0" - The window message loop is not run
  197. * "1" - The window message loop is processed in SDL_PumpEvents()
  198. *
  199. * By default SDL will process the windows message loop
  200. */
  201. #define SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP "SDL_WINDOWS_ENABLE_MESSAGELOOP"
  202. /**
  203. * \brief A variable controlling whether grabbing input grabs the keyboard
  204. *
  205. * This variable can be set to the following values:
  206. * "0" - Grab will affect only the mouse
  207. * "1" - Grab will affect mouse and keyboard
  208. *
  209. * By default SDL will not grab the keyboard so system shortcuts still work.
  210. */
  211. #define SDL_HINT_GRAB_KEYBOARD "SDL_GRAB_KEYBOARD"
  212. /**
  213. * \brief A variable controlling whether relative mouse mode is implemented using mouse warping
  214. *
  215. * This variable can be set to the following values:
  216. * "0" - Relative mouse mode uses raw input
  217. * "1" - Relative mouse mode uses mouse warping
  218. *
  219. * By default SDL will use raw input for relative mouse mode
  220. */
  221. #define SDL_HINT_MOUSE_RELATIVE_MODE_WARP "SDL_MOUSE_RELATIVE_MODE_WARP"
  222. /**
  223. * \brief Minimize your SDL_Window if it loses key focus when in fullscreen mode. Defaults to true.
  224. *
  225. */
  226. #define SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS"
  227. /**
  228. * \brief A variable controlling whether the idle timer is disabled on iOS.
  229. *
  230. * When an iOS app does not receive touches for some time, the screen is
  231. * dimmed automatically. For games where the accelerometer is the only input
  232. * this is problematic. This functionality can be disabled by setting this
  233. * hint.
  234. *
  235. * As of SDL 2.0.4, SDL_EnableScreenSaver and SDL_DisableScreenSaver accomplish
  236. * the same thing on iOS. They should be preferred over this hint.
  237. *
  238. * This variable can be set to the following values:
  239. * "0" - Enable idle timer
  240. * "1" - Disable idle timer
  241. */
  242. #define SDL_HINT_IDLE_TIMER_DISABLED "SDL_IOS_IDLE_TIMER_DISABLED"
  243. /**
  244. * \brief A variable controlling which orientations are allowed on iOS.
  245. *
  246. * In some circumstances it is necessary to be able to explicitly control
  247. * which UI orientations are allowed.
  248. *
  249. * This variable is a space delimited list of the following values:
  250. * "LandscapeLeft", "LandscapeRight", "Portrait" "PortraitUpsideDown"
  251. */
  252. #define SDL_HINT_ORIENTATIONS "SDL_IOS_ORIENTATIONS"
  253. /**
  254. * \brief A variable controlling whether the Android / iOS built-in
  255. * accelerometer should be listed as a joystick device, rather than listing
  256. * actual joysticks only.
  257. *
  258. * This variable can be set to the following values:
  259. * "0" - List only real joysticks and accept input from them
  260. * "1" - List real joysticks along with the accelerometer as if it were a 3 axis joystick (the default).
  261. */
  262. #define SDL_HINT_ACCELEROMETER_AS_JOYSTICK "SDL_ACCELEROMETER_AS_JOYSTICK"
  263. /**
  264. * \brief A variable that lets you disable the detection and use of Xinput gamepad devices
  265. *
  266. * The variable can be set to the following values:
  267. * "0" - Disable XInput detection (only uses direct input)
  268. * "1" - Enable XInput detection (the default)
  269. */
  270. #define SDL_HINT_XINPUT_ENABLED "SDL_XINPUT_ENABLED"
  271. /**
  272. * \brief A variable that causes SDL to use the old axis and button mapping for XInput devices.
  273. *
  274. * This hint is for backwards compatibility only and will be removed in SDL 2.1
  275. *
  276. * The default value is "0". This hint must be set before SDL_Init()
  277. */
  278. #define SDL_HINT_XINPUT_USE_OLD_JOYSTICK_MAPPING "SDL_XINPUT_USE_OLD_JOYSTICK_MAPPING"
  279. /**
  280. * \brief A variable that lets you manually hint extra gamecontroller db entries
  281. *
  282. * The variable should be newline delimited rows of gamecontroller config data, see SDL_gamecontroller.h
  283. *
  284. * This hint must be set before calling SDL_Init(SDL_INIT_GAMECONTROLLER)
  285. * You can update mappings after the system is initialized with SDL_GameControllerMappingForGUID() and SDL_GameControllerAddMapping()
  286. */
  287. #define SDL_HINT_GAMECONTROLLERCONFIG "SDL_GAMECONTROLLERCONFIG"
  288. /**
  289. * \brief A variable that lets you enable joystick (and gamecontroller) events even when your app is in the background.
  290. *
  291. * The variable can be set to the following values:
  292. * "0" - Disable joystick & gamecontroller input events when the
  293. * application is in the background.
  294. * "1" - Enable joystick & gamecontroller input events when the
  295. * application is in the background.
  296. *
  297. * The default value is "0". This hint may be set at any time.
  298. */
  299. #define SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS"
  300. /**
  301. * \brief If set to "0" then never set the top most bit on a SDL Window, even if the video mode expects it.
  302. * This is a debugging aid for developers and not expected to be used by end users. The default is "1"
  303. *
  304. * This variable can be set to the following values:
  305. * "0" - don't allow topmost
  306. * "1" - allow topmost
  307. */
  308. #define SDL_HINT_ALLOW_TOPMOST "SDL_ALLOW_TOPMOST"
  309. /**
  310. * \brief A variable that controls the timer resolution, in milliseconds.
  311. *
  312. * The higher resolution the timer, the more frequently the CPU services
  313. * timer interrupts, and the more precise delays are, but this takes up
  314. * power and CPU time. This hint is only used on Windows 7 and earlier.
  315. *
  316. * See this blog post for more information:
  317. * http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/
  318. *
  319. * If this variable is set to "0", the system timer resolution is not set.
  320. *
  321. * The default value is "1". This hint may be set at any time.
  322. */
  323. #define SDL_HINT_TIMER_RESOLUTION "SDL_TIMER_RESOLUTION"
  324. /**
  325. * \brief A string specifying SDL's threads stack size in bytes or "0" for the backend's default size
  326. *
  327. * Use this hint in case you need to set SDL's threads stack size to other than the default.
  328. * This is specially useful if you build SDL against a non glibc libc library (such as musl) which
  329. * provides a relatively small default thread stack size (a few kilobytes versus the default 8MB glibc uses).
  330. * Support for this hint is currently available only in the pthread backend.
  331. */
  332. #define SDL_HINT_THREAD_STACK_SIZE "SDL_THREAD_STACK_SIZE"
  333. /**
  334. * \brief If set to 1, then do not allow high-DPI windows. ("Retina" on Mac and iOS)
  335. */
  336. #define SDL_HINT_VIDEO_HIGHDPI_DISABLED "SDL_VIDEO_HIGHDPI_DISABLED"
  337. /**
  338. * \brief A variable that determines whether ctrl+click should generate a right-click event on Mac
  339. *
  340. * If present, holding ctrl while left clicking will generate a right click
  341. * event when on Mac.
  342. */
  343. #define SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK "SDL_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK"
  344. /**
  345. * \brief A variable specifying which shader compiler to preload when using the Chrome ANGLE binaries
  346. *
  347. * SDL has EGL and OpenGL ES2 support on Windows via the ANGLE project. It
  348. * can use two different sets of binaries, those compiled by the user from source
  349. * or those provided by the Chrome browser. In the later case, these binaries require
  350. * that SDL loads a DLL providing the shader compiler.
  351. *
  352. * This variable can be set to the following values:
  353. * "d3dcompiler_46.dll" - default, best for Vista or later.
  354. * "d3dcompiler_43.dll" - for XP support.
  355. * "none" - do not load any library, useful if you compiled ANGLE from source and included the compiler in your binaries.
  356. *
  357. */
  358. #define SDL_HINT_VIDEO_WIN_D3DCOMPILER "SDL_VIDEO_WIN_D3DCOMPILER"
  359. /**
  360. * \brief A variable that is the address of another SDL_Window* (as a hex string formatted with "%p").
  361. *
  362. * If this hint is set before SDL_CreateWindowFrom() and the SDL_Window* it is set to has
  363. * SDL_WINDOW_OPENGL set (and running on WGL only, currently), then two things will occur on the newly
  364. * created SDL_Window:
  365. *
  366. * 1. Its pixel format will be set to the same pixel format as this SDL_Window. This is
  367. * needed for example when sharing an OpenGL context across multiple windows.
  368. *
  369. * 2. The flag SDL_WINDOW_OPENGL will be set on the new window so it can be used for
  370. * OpenGL rendering.
  371. *
  372. * This variable can be set to the following values:
  373. * The address (as a string "%p") of the SDL_Window* that new windows created with SDL_CreateWindowFrom() should
  374. * share a pixel format with.
  375. */
  376. #define SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT "SDL_VIDEO_WINDOW_SHARE_PIXEL_FORMAT"
  377. /**
  378. * \brief A URL to a WinRT app's privacy policy
  379. *
  380. * All network-enabled WinRT apps must make a privacy policy available to its
  381. * users. On Windows 8, 8.1, and RT, Microsoft mandates that this policy be
  382. * be available in the Windows Settings charm, as accessed from within the app.
  383. * SDL provides code to add a URL-based link there, which can point to the app's
  384. * privacy policy.
  385. *
  386. * To setup a URL to an app's privacy policy, set SDL_HINT_WINRT_PRIVACY_POLICY_URL
  387. * before calling any SDL_Init functions. The contents of the hint should
  388. * be a valid URL. For example, "http://www.example.com".
  389. *
  390. * The default value is "", which will prevent SDL from adding a privacy policy
  391. * link to the Settings charm. This hint should only be set during app init.
  392. *
  393. * The label text of an app's "Privacy Policy" link may be customized via another
  394. * hint, SDL_HINT_WINRT_PRIVACY_POLICY_LABEL.
  395. *
  396. * Please note that on Windows Phone, Microsoft does not provide standard UI
  397. * for displaying a privacy policy link, and as such, SDL_HINT_WINRT_PRIVACY_POLICY_URL
  398. * will not get used on that platform. Network-enabled phone apps should display
  399. * their privacy policy through some other, in-app means.
  400. */
  401. #define SDL_HINT_WINRT_PRIVACY_POLICY_URL "SDL_WINRT_PRIVACY_POLICY_URL"
  402. /** \brief Label text for a WinRT app's privacy policy link
  403. *
  404. * Network-enabled WinRT apps must include a privacy policy. On Windows 8, 8.1, and RT,
  405. * Microsoft mandates that this policy be available via the Windows Settings charm.
  406. * SDL provides code to add a link there, with its label text being set via the
  407. * optional hint, SDL_HINT_WINRT_PRIVACY_POLICY_LABEL.
  408. *
  409. * Please note that a privacy policy's contents are not set via this hint. A separate
  410. * hint, SDL_HINT_WINRT_PRIVACY_POLICY_URL, is used to link to the actual text of the
  411. * policy.
  412. *
  413. * The contents of this hint should be encoded as a UTF8 string.
  414. *
  415. * The default value is "Privacy Policy". This hint should only be set during app
  416. * initialization, preferably before any calls to SDL_Init.
  417. *
  418. * For additional information on linking to a privacy policy, see the documentation for
  419. * SDL_HINT_WINRT_PRIVACY_POLICY_URL.
  420. */
  421. #define SDL_HINT_WINRT_PRIVACY_POLICY_LABEL "SDL_WINRT_PRIVACY_POLICY_LABEL"
  422. /** \brief Allows back-button-press events on Windows Phone to be marked as handled
  423. *
  424. * Windows Phone devices typically feature a Back button. When pressed,
  425. * the OS will emit back-button-press events, which apps are expected to
  426. * handle in an appropriate manner. If apps do not explicitly mark these
  427. * events as 'Handled', then the OS will invoke its default behavior for
  428. * unhandled back-button-press events, which on Windows Phone 8 and 8.1 is to
  429. * terminate the app (and attempt to switch to the previous app, or to the
  430. * device's home screen).
  431. *
  432. * Setting the SDL_HINT_WINRT_HANDLE_BACK_BUTTON hint to "1" will cause SDL
  433. * to mark back-button-press events as Handled, if and when one is sent to
  434. * the app.
  435. *
  436. * Internally, Windows Phone sends back button events as parameters to
  437. * special back-button-press callback functions. Apps that need to respond
  438. * to back-button-press events are expected to register one or more
  439. * callback functions for such, shortly after being launched (during the
  440. * app's initialization phase). After the back button is pressed, the OS
  441. * will invoke these callbacks. If the app's callback(s) do not explicitly
  442. * mark the event as handled by the time they return, or if the app never
  443. * registers one of these callback, the OS will consider the event
  444. * un-handled, and it will apply its default back button behavior (terminate
  445. * the app).
  446. *
  447. * SDL registers its own back-button-press callback with the Windows Phone
  448. * OS. This callback will emit a pair of SDL key-press events (SDL_KEYDOWN
  449. * and SDL_KEYUP), each with a scancode of SDL_SCANCODE_AC_BACK, after which
  450. * it will check the contents of the hint, SDL_HINT_WINRT_HANDLE_BACK_BUTTON.
  451. * If the hint's value is set to "1", the back button event's Handled
  452. * property will get set to 'true'. If the hint's value is set to something
  453. * else, or if it is unset, SDL will leave the event's Handled property
  454. * alone. (By default, the OS sets this property to 'false', to note.)
  455. *
  456. * SDL apps can either set SDL_HINT_WINRT_HANDLE_BACK_BUTTON well before a
  457. * back button is pressed, or can set it in direct-response to a back button
  458. * being pressed.
  459. *
  460. * In order to get notified when a back button is pressed, SDL apps should
  461. * register a callback function with SDL_AddEventWatch(), and have it listen
  462. * for SDL_KEYDOWN events that have a scancode of SDL_SCANCODE_AC_BACK.
  463. * (Alternatively, SDL_KEYUP events can be listened-for. Listening for
  464. * either event type is suitable.) Any value of SDL_HINT_WINRT_HANDLE_BACK_BUTTON
  465. * set by such a callback, will be applied to the OS' current
  466. * back-button-press event.
  467. *
  468. * More details on back button behavior in Windows Phone apps can be found
  469. * at the following page, on Microsoft's developer site:
  470. * http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj247550(v=vs.105).aspx
  471. */
  472. #define SDL_HINT_WINRT_HANDLE_BACK_BUTTON "SDL_WINRT_HANDLE_BACK_BUTTON"
  473. /**
  474. * \brief A variable that dictates policy for fullscreen Spaces on Mac OS X.
  475. *
  476. * This hint only applies to Mac OS X.
  477. *
  478. * The variable can be set to the following values:
  479. * "0" - Disable Spaces support (FULLSCREEN_DESKTOP won't use them and
  480. * SDL_WINDOW_RESIZABLE windows won't offer the "fullscreen"
  481. * button on their titlebars).
  482. * "1" - Enable Spaces support (FULLSCREEN_DESKTOP will use them and
  483. * SDL_WINDOW_RESIZABLE windows will offer the "fullscreen"
  484. * button on their titlebars).
  485. *
  486. * The default value is "1". Spaces are disabled regardless of this hint if
  487. * the OS isn't at least Mac OS X Lion (10.7). This hint must be set before
  488. * any windows are created.
  489. */
  490. #define SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES "SDL_VIDEO_MAC_FULLSCREEN_SPACES"
  491. /**
  492. * \brief When set don't force the SDL app to become a foreground process
  493. *
  494. * This hint only applies to Mac OS X.
  495. *
  496. */
  497. #define SDL_HINT_MAC_BACKGROUND_APP "SDL_MAC_BACKGROUND_APP"
  498. /**
  499. * \brief Android APK expansion main file version. Should be a string number like "1", "2" etc.
  500. *
  501. * Must be set together with SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION.
  502. *
  503. * If both hints were set then SDL_RWFromFile() will look into expansion files
  504. * after a given relative path was not found in the internal storage and assets.
  505. *
  506. * By default this hint is not set and the APK expansion files are not searched.
  507. */
  508. #define SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION "SDL_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION"
  509. /**
  510. * \brief Android APK expansion patch file version. Should be a string number like "1", "2" etc.
  511. *
  512. * Must be set together with SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION.
  513. *
  514. * If both hints were set then SDL_RWFromFile() will look into expansion files
  515. * after a given relative path was not found in the internal storage and assets.
  516. *
  517. * By default this hint is not set and the APK expansion files are not searched.
  518. */
  519. #define SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION "SDL_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION"
  520. /**
  521. * \brief A variable to control whether certain IMEs should handle text editing internally instead of sending SDL_TEXTEDITING events.
  522. *
  523. * The variable can be set to the following values:
  524. * "0" - SDL_TEXTEDITING events are sent, and it is the application's
  525. * responsibility to render the text from these events and
  526. * differentiate it somehow from committed text. (default)
  527. * "1" - If supported by the IME then SDL_TEXTEDITING events are not sent,
  528. * and text that is being composed will be rendered in its own UI.
  529. */
  530. #define SDL_HINT_IME_INTERNAL_EDITING "SDL_IME_INTERNAL_EDITING"
  531. /**
  532. * \brief A variable to control whether mouse and touch events are to be treated together or separately
  533. *
  534. * The variable can be set to the following values:
  535. * "0" - Mouse events will be handled as touch events, and touch will raise fake mouse
  536. * events. This is the behaviour of SDL <= 2.0.3. (default)
  537. * "1" - Mouse events will be handled separately from pure touch events.
  538. *
  539. * The value of this hint is used at runtime, so it can be changed at any time.
  540. */
  541. #define SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH "SDL_ANDROID_SEPARATE_MOUSE_AND_TOUCH"
  542. /**
  543. * \brief override the binding element for keyboard inputs for Emscripten builds
  544. *
  545. * This hint only applies to the emscripten platform
  546. *
  547. * The variable can be one of
  548. * "#window" - The javascript window object (this is the default)
  549. * "#document" - The javascript document object
  550. * "#screen" - the javascript window.screen object
  551. * "#canvas" - the WebGL canvas element
  552. * any other string without a leading # sign applies to the element on the page with that ID.
  553. */
  554. #define SDL_HINT_EMSCRIPTEN_KEYBOARD_ELEMENT "SDL_EMSCRIPTEN_KEYBOARD_ELEMENT"
  555. /**
  556. * \brief Tell SDL not to catch the SIGINT or SIGTERM signals.
  557. *
  558. * This hint only applies to Unix-like platforms.
  559. *
  560. * The variable can be set to the following values:
  561. * "0" - SDL will install a SIGINT and SIGTERM handler, and when it
  562. * catches a signal, convert it into an SDL_QUIT event.
  563. * "1" - SDL will not install a signal handler at all.
  564. */
  565. #define SDL_HINT_NO_SIGNAL_HANDLERS "SDL_NO_SIGNAL_HANDLERS"
  566. /**
  567. * \brief Tell SDL not to generate window-close events for Alt+F4 on Windows.
  568. *
  569. * The variable can be set to the following values:
  570. * "0" - SDL will generate a window-close event when it sees Alt+F4.
  571. * "1" - SDL will only do normal key handling for Alt+F4.
  572. */
  573. #define SDL_HINT_WINDOWS_NO_CLOSE_ON_ALT_F4 "SDL_WINDOWS_NO_CLOSE_ON_ALT_F4"
  574. /**
  575. * \brief An enumeration of hint priorities
  576. */
  577. typedef enum
  578. {
  579. SDL_HINT_DEFAULT,
  580. SDL_HINT_NORMAL,
  581. SDL_HINT_OVERRIDE
  582. } SDL_HintPriority;
  583. /**
  584. * \brief Set a hint with a specific priority
  585. *
  586. * The priority controls the behavior when setting a hint that already
  587. * has a value. Hints will replace existing hints of their priority and
  588. * lower. Environment variables are considered to have override priority.
  589. *
  590. * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise
  591. */
  592. extern DECLSPEC SDL_bool SDLCALL SDL_SetHintWithPriority(const char *name,
  593. const char *value,
  594. SDL_HintPriority priority);
  595. /**
  596. * \brief Set a hint with normal priority
  597. *
  598. * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise
  599. */
  600. extern DECLSPEC SDL_bool SDLCALL SDL_SetHint(const char *name,
  601. const char *value);
  602. /**
  603. * \brief Get a hint
  604. *
  605. * \return The string value of a hint variable.
  606. */
  607. extern DECLSPEC const char * SDLCALL SDL_GetHint(const char *name);
  608. /**
  609. * \brief Add a function to watch a particular hint
  610. *
  611. * \param name The hint to watch
  612. * \param callback The function to call when the hint value changes
  613. * \param userdata A pointer to pass to the callback function
  614. */
  615. typedef void (*SDL_HintCallback)(void *userdata, const char *name, const char *oldValue, const char *newValue);
  616. extern DECLSPEC void SDLCALL SDL_AddHintCallback(const char *name,
  617. SDL_HintCallback callback,
  618. void *userdata);
  619. /**
  620. * \brief Remove a function watching a particular hint
  621. *
  622. * \param name The hint being watched
  623. * \param callback The function being called when the hint value changes
  624. * \param userdata A pointer being passed to the callback function
  625. */
  626. extern DECLSPEC void SDLCALL SDL_DelHintCallback(const char *name,
  627. SDL_HintCallback callback,
  628. void *userdata);
  629. /**
  630. * \brief Clear all hints
  631. *
  632. * This function is called during SDL_Quit() to free stored hints.
  633. */
  634. extern DECLSPEC void SDLCALL SDL_ClearHints(void);
  635. /* Ends C function definitions when using C++ */
  636. #ifdef __cplusplus
  637. }
  638. #endif
  639. #include "close_code.h"
  640. #endif /* _SDL_hints_h */
  641. /* vi: set ts=4 sw=4 expandtab: */