jules
|
5bdd485a31
|
DRYed some win32 COM helper macros. Stripped out some junk from juce_win32_Windowing
|
8 years ago |
jules
|
84a4dc0faa
|
Fixed a scaling problem with file drag+drop on Windows
|
8 years ago |
hogliux
|
b5afccc37c
|
Updated file headers and the README with the JUCE 5 license
|
8 years ago |
jules
|
2284b5f9ca
|
Added an internal option guarded by JUCE_REMOVE_COMPONENT_FROM_DESKTOP_ON_WM_DESTROY to help with obscure situations where an app needs to handle its windows being destroyed
|
8 years ago |
ed
|
f21f9c11ff
|
Fixed some typos in juce_win32_Windowing.cpp
|
8 years ago |
ed
|
d05b9496eb
|
Moved some constants at the top of juce_win32_Windowing.cpp into enums
|
8 years ago |
ed
|
1116a6a1f1
|
Added some defines to the top of juce_win32_Windowing.cpp to make the Windows pointer API changes compatible with the XP toolset
|
8 years ago |
ed
|
9c62eaf4f8
|
Removed JUCE_USE_WINDOWS_POINTER_API flag from juce_gui_basics.h and changed juce_win32_Windowing.cpp to dynamically load Windows pointer API methods.
|
8 years ago |
jules
|
8ed41ed14b
|
Fixed some whitespace style and cleaned up some code using C++11
|
8 years ago |
tpoole
|
405a6aeaed
|
Fixed a MinGW tablet mode detection compiler error
|
8 years ago |
ed
|
f855806602
|
Added 'JUCE_USE_WINDOWS_POINTER_API' flag to juce_gui_basics.h to enable/disable the advanced Windows pointer API (only available on Windows 8 and above).
|
8 years ago |
ed
|
b7b8d5be57
|
Multiple fixes for touch and pen input on Windows
|
8 years ago |
hogliux
|
51d5572220
|
Added showYesNoBox to NativeMessageBox class
|
8 years ago |
tpoole
|
4eadfad7dc
|
Fixed a leak of OnScreenKeyboard
|
8 years ago |
hogliux
|
b0a10d01bf
|
Added code to only show the onscreen keyboard if Windows is in tablet mode
|
8 years ago |
ed
|
46e21fef13
|
Updated win32 Process::isForegroundProcess() method to use process ID
|
8 years ago |
hogliux
|
2ad22dc6cf
|
Added workaround to check the state of the on-screen keyboard on Windows before toggling it's display
|
8 years ago |
hogliux
|
2c8b98b6e1
|
Added windows native code to show and hide the on-screen keyboard when juce text boxes are in focus
|
8 years ago |
hogliux
|
b5fb095696
|
Fixed a few VS2008 build errors
|
8 years ago |
ed
|
7bd5c05216
|
Fixed touch event bug on Windows where touches weren't being received when a modal dialog was open.
|
8 years ago |
ed
|
60b5f72384
|
Fixed a bug in Windows where clicking outside an application after opening a PopupMenu would sometimes result in mouseDrag events when re-entering the application with the mouse not held down
|
8 years ago |
tpoole
|
cff1793d89
|
Exposed some functions when building JUCE as a DLL
|
8 years ago |
hogliux
|
6c52bf5971
|
Changed the way windows modifiers are probed in an attempt to fix right alt-key issues. Part II.
|
8 years ago |
hogliux
|
c6a75d0550
|
Changed the way windows modifiers are probed in an attempt to fix right alt-key issues
|
8 years ago |
ed
|
56423ae9fd
|
Changed Windows windowing so that the resizeStart() and resizeEnd() methods of the constrainer associated with the application window are called when it is maximised.
|
8 years ago |
jules
|
55194a09d2
|
On Windows, suppressed the behaviour that pressing the ALT key triggers the old top-left window menu. If you still need this archaic behaviour in your app, there's a JUCE_WINDOWS_ALT_KEY_TRIGGERS_MENU flag which you can use to keep it
|
8 years ago |
ed
|
cbdf707116
|
Windows touch with CallOutBox bug fix
|
8 years ago |
ed
|
9062ad9ec1
|
Windows 10 update touch events bug fix
|
8 years ago |
jules
|
9e6988acaa
|
For drag-and-drop on win32, prioritised file-drag mode over text-drag mode if both are available
|
8 years ago |
jules
|
4097fab06c
|
Fixed a silly typo!
|
9 years ago |
jules
|
021209e216
|
Changed ImagePixelData::clone to return a smart pointer rather than a raw one, to avoid a reference-count leak
|
9 years ago |
hogliux
|
749bffed7a
|
Add missing ifdefs from recent commit
|
9 years ago |
hogliux
|
f11a2b2ff1
|
Fix modifier keys in AAX plug-ins on Windows 10
|
9 years ago |
jules
|
e034958d55
|
Added some desktop scale compensation to drag + drop on Windows
|
9 years ago |
jules
|
fb864a5cb1
|
Corrected some spelling mistakes in comments
|
9 years ago |
jules
|
189853720a
|
Cleaned up a few uses of Image::null
|
9 years ago |
jules
|
6b75e59e1f
|
Added some behind-the-scenes functions for creating snapshots of native windows
|
9 years ago |
jules
|
876b4ae1d3
|
Cleared up some overlap between the JUCE_CLANG and JUCE_GCC flags
|
9 years ago |
jules
|
99052af8bc
|
Added Android support for screen orientation control
|
9 years ago |
jules
|
bc523c6724
|
Fixed a win32 pen/touch detection issue
|
9 years ago |
jules
|
1f433a8bfb
|
Fix for an obscure win32 situation where a click from another app window could end up causing a click in a juce window if the other window closes with the mouse still down
|
9 years ago |
jules
|
4583fa3fbf
|
Used the ignoreUnused() function to tidy up some old code
|
9 years ago |
jules
|
2a1234b6ac
|
Simplified some inter-module dependencies and exception-catching fallbacks
|
9 years ago |
jules
|
ae712c72d8
|
Cleaned up a few String::empty uses
|
9 years ago |
jules
|
a3426aae10
|
Added support for iOS force-touch
|
9 years ago |
hogliux
|
b0ae8bd4b4
|
Always use WM_TOUCH events for JUCE mouse input (and ignore any subsequent WM mouse events)
|
9 years ago |
jules
|
962e364010
|
Avoided some mingw errors and warnings.
|
9 years ago |
Timur Doumler
|
dca4d77f9d
|
Fixed compiler warnings on Visual Studio 2015 RTM.
|
9 years ago |
hogliux
|
c7b8e77031
|
Update copyright notice
|
9 years ago |
jules
|
9b79610cb0
|
Added a flag MouseWheelEvent::isInertial (currently only implemented for OSX 10.7 or later), and used this to replace some clunky behaviour in the Viewport class that was there to avoid inertial wheel movements triggering nested scrollable components.
|
10 years ago |