Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add default hotkey to swap primary screens. | James Rowe | 2016-11-05 | 1 | -1/+1 |
| | | | | Also minor style changes | ||||
* | Support additional screen layouts. | James Rowe | 2016-11-05 | 1 | -20/+10 |
| | | | | | Allows users to choose a single screen layout or a large screen layout. Adds a configuration option to change the prominent screen. | ||||
* | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 2016-09-21 | 1 | -2/+0 |
| | | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | ||||
* | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | 2016-09-19 | 1 | -4/+3 |
| | |||||
* | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 2016-09-18 | 1 | -24/+30 |
| | |||||
* | fixup! fixup! Refactor input system | wwylele | 2016-05-15 | 1 | -3/+3 |
| | |||||
* | Refactor input subsystem | wwylele | 2016-05-15 | 1 | -9/+37 |
| | |||||
* | remove unnecessary const | wwylele | 2016-03-26 | 1 | -2/+2 |
| | |||||
* | implement accel and gyro backend | wwylele | 2016-03-22 | 1 | -0/+48 |
| | |||||
* | Common: Cleanup emu_window includes. | Emmanuel Gil Peyrot | 2015-06-28 | 1 | -3/+9 |
| | |||||
* | Common: Remove common.h | Yuri Kunde Schlesner | 2015-05-07 | 1 | -3/+3 |
| | |||||
* | EmuWindow: Clip mouse input coordinates to emulated screen dimensions. | Zaneo | 2015-05-02 | 1 | -0/+5 |
| | | | | | | | If the mouse position for a mouse move/drag would take it outside the emulated screen dimensions, clip the coordinates to the emulated screen dimensions. Qt and GLFW will report negative coordinates for mouse positions to the left, or above citra window. Added restriction to mouse coordinates passed to touchmoved by Qt/GLFW to be greater or equal to zero. | ||||
* | EmuWindow: Fixed a reference to a temporary variable | Subv | 2015-03-14 | 1 | -1/+1 |
| | | | | in GetTouchState() | ||||
* | HID: Complete refactor of pad/touch input to fix threading issues. | bunnei | 2015-03-11 | 1 | -22/+35 |
| | |||||
* | EmuWindow: Made pad/touch functions non-static. | bunnei | 2015-03-10 | 1 | -9/+6 |
| | |||||
* | EmuWindow: Added infrastructure code to enable touchpad support. | bunnei | 2015-03-10 | 1 | -0/+29 |
| | |||||
* | Fixed EmuWindow typo (fixes OSX build) | bunnei | 2015-03-08 | 1 | -1/+1 |
| | |||||
* | Set framebuffer layout from EmuWindow. | bunnei | 2015-03-07 | 1 | -7/+25 |
| | |||||
* | License change | purpasmart96 | 2014-12-21 | 1 | -1/+1 |
| | |||||
* | EmuWindow: Add some explicit documentation and set proper minimal client area size. | Tony Wasserka | 2014-11-18 | 1 | -2/+4 |
| | |||||
* | EmuWindow: Add a TODO. | Tony Wasserka | 2014-11-18 | 1 | -0/+1 |
| | | | | | | Implementing this function currently is not critical, as we don't perform any configuration changes, yet. However, the interface is a good starting point for adding this functionality. | ||||
* | EmuWindow: Better document the purpose of OnMinimalClientAreaChangeRequest. | Tony Wasserka | 2014-11-18 | 1 | -0/+7 |
| | |||||
* | EmuWindow: Remove window title getters/setters. | Tony Wasserka | 2014-11-18 | 1 | -16/+1 |
| | | | | | The window title is none of the emulation core's business. The GUI code is free to put whatever it wants there. Providing properly thread-safe window title getters and setters is a mess anyway. | ||||
* | EmuWindow: Add documentation. | Tony Wasserka | 2014-11-18 | 1 | -18/+57 |
| | |||||
* | EmuWindow: Add support for specifying minimal client area sizes. | Tony Wasserka | 2014-11-18 | 1 | -8/+26 |
| | |||||
* | Fixup EmuWindow interface and implementations thereof. | Tony Wasserka | 2014-11-18 | 1 | -28/+33 |
| | |||||
* | Viewport scaling and display density independence | Kevin Hartman | 2014-11-18 | 1 | -2/+5 |
| | | | | | The view is scaled to be as large as possible, without changing the aspect, within the bounds of the window. On "retina" displays, or other displays where window units != pixels, the view should no longer draw incorrectly. | ||||
* | emu_window: Fix initializer list order. | Lioncash | 2014-11-17 | 1 | -2/+2 |
| | | | | Gets rid of a warning on OSX. | ||||
* | Removed uses of raw c-string manipulation functions. | archshift | 2014-10-24 | 1 | -6/+6 |
| | |||||
* | Added configuration file system. | archshift | 2014-10-08 | 1 | -4/+6 |
| | | | | Uses QSettings on citra-qt, and inih on citra-cli. | ||||
* | Added support for multiple input device types for KeyMap and connected Qt. | Kevin Hartman | 2014-09-12 | 1 | -15/+4 |
| | |||||
* | Initial HID PAD work, with GLFW only. | Kevin Hartman | 2014-09-12 | 1 | -0/+19 |
| | |||||
* | made qt window title consistent | bunnei | 2014-04-24 | 1 | -1/+1 |
| | |||||
* | added scm rev generation on Linux/cmake | bunnei | 2014-04-24 | 1 | -1/+2 |
| | |||||
* | added missing const to GetWindowTitle | bunnei | 2014-04-11 | 1 | -1/+1 |
| | |||||
* | - removed deprecated version.h | bunnei | 2014-04-09 | 1 | -60/+40 |
| | | | | | - cleaned up window title - cleaned up emu_window_glfw/emu_window | ||||
* | fixed project includes to use new directory structure | bunnei | 2014-04-09 | 1 | -1/+1 |
| | |||||
* | got rid of 'src' folders in each sub-project | bunnei | 2014-04-09 | 1 | -0/+102 |