ed
ca9c8f22d7
Windows: Removed Desktop::clearAllTouchSources() method and cleaned up some Windows touch input code
8 years ago
jules
46a9da28d6
(Fixed typo)
8 years ago
jules
0094d199ed
Linux: avoided an out-of-bounds access when using mice with large numbers of buttons
8 years ago
ed
0edac2e981
Windows: Small tweak for previous commit
8 years ago
ed
9d294970d7
Windows: Fixed a bug where multi-touch inputs weren't being cleared correctly
8 years ago
hogliux
4b114d89a7
OpenGL: Fixed a crash in Cubase/WaveLab when OpenGL is used in a plug-ins editor
8 years ago
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
jules
01e18b1c23
Fixed a problem with the Mac main menu bar showing menus in the wrong position
8 years ago
jules
2c3c9e5d18
A bit more minor cleaning up
8 years ago
jules
f766718b16
Fixed a typo
8 years ago
jules
de855f0b35
Cleanups to some X windowing classes
8 years ago
hogliux
d704ac9818
Linux: Fixed dlopens to use versioned library names
8 years ago
tpoole
f1409640f8
Added File::isRoot()
8 years ago
hogliux
d6b1796361
Linux: continue servicing the message loop while a file browser modal component is open ( fixes #177 )
8 years ago
tpoole
9b065f12b4
Fixed bug in the Win32 FileChooser dialog when selecting a nonexistent root drive
8 years ago
hogliux
f1aef382ad
Fixed a scaling issue with ComboBoxes and Alert windows on iOS
8 years ago
hogliux
b5afccc37c
Updated file headers and the README with the JUCE 5 license
8 years ago
jules
1234775fc7
Minor tidying-up in some OSX UI code
8 years ago
jules
bf94ab0e4c
Made a few minor tweaks to reduce the number of pedantic -Wfloat-equals warnings
8 years ago
jules
926652be8a
Added the -Wextra-semi warning to the projucer build
8 years ago
jules
024fe6c9ad
Avoided an assertion in win32 file chooser code
8 years ago
hogliux
f8ae98894f
Added extra nullptr checks in Android windowing code which fixes rare crashes when callbacks occur before the Component peer has been fully constructed
8 years ago
hogliux
87a467c61b
Reverted commit #ec0f3fc: Bug fix broke combo-box input
8 years ago
jules
81bc630ba1
Avoided a spurious assertion when launching OSX file dialogs
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
jules
38d49a5ee7
Modernised a few RectangleList iterators
8 years ago
hogliux
b198fa4c2c
Fixed a bug on linux where the mouse pointer would jump around while dragging sliders
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
hogliux
c69d24fa7a
Added support for embedding native X11 widgets (such as gtk_plug or QX11EmbedWidget) on linux
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
fc844d949c
Refactored the way OSX main menu updating happens, to avoid some issues when refreshing the whole menu bar
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
hogliux
fa6929cb3c
Added a workaround to not call Android's bringToFront method for every touch
8 years ago
hogliux
2bec815bb3
Added an option to execute JUCEApplication's suspend() method on an iOS background task to give you extra time to save your app's state
8 years ago
tpoole
059ce35559
Fixed a bug in an Objective-C drag and drop helper class
8 years ago
tpoole
78bbe49616
Added some missing license banners
8 years ago
tpoole
e33abbc6fe
Replaced Projucer-generated header guards with #pragma once and updated the examples
8 years ago
Felipe F. Tonello
c2100022cc
Added several linux improvements to the event loop, MIDI and X11 (see commit messsage)
MIDI: Several ALSA Seq improvements
===================================
Many things were done in this patch (I couldn't really split in several
patches):
* Only one ALSA Sequencer client per application
* ALSA Sequencer client name is the application's name by default
* Fixed a bug when getDeivces() would return devices created by the
application itself
* Only ports created with createNewDevice() are allowed to be subscribed,
other ports (created by openDevice()) doesn't allow subscription
* AlsaPort is now handled by AlsaClient, basically having the proper
representation such as the ALSA Sequencer has.
Files: Fix default directory paths
==================================
Some information on:
* Linux LSB FHS:
http://www.linuxfoundation.org/collaborate/workgroups/lsb/fhs-30
* https://wiki.archlinux.org/index.php/Xdg_user_directories
Refactor Event loop to remove X11 dependency
============================================
The goal of this refactor was to remove X11 dependencies on juce_events
to enable non-gui applications (example, Embedded Linux apps) to have no
libx11 dependency.
The side-effect of this refactor is easy implementation of other Linux
graphical back-end, cleanup some code, better handling of X displays and
other benefits.
I removed a lot of the code from juce_linux_Windowing to separate files
for clarity. I also renamed all Linux X11 files to *linux_X11* instead of
just *linux*.
X11: Remove unnecessary XGrabButton call
========================================
This call is made unnecessary if used proper window flags when a window
is created.
8 years ago
hogliux
6559b3e185
Fixed multiple harmless warnings in Android builds
8 years ago
tpoole
0ab5244623
Fixed multiple file drag and drop on OS X
8 years ago
tpoole
4eadfad7dc
Fixed a leak of OnScreenKeyboard
8 years ago
hogliux
67600e98fd
Added missing overrides to android windowing code
8 years ago
hogliux
2da1bc5f41
Replace include guards with "#pragma once"
8 years ago