jules
|
3d7c777238
|
Some light modernisation of a bunch of old code
|
2017-10-04 12:47:43 +01:00 |
|
jules
|
eda613c6db
|
Moved all "namespace juce" declarations from module headers to the individual .h and .cpp source files. This makes life a lot easier for Intellisense and other IDE autocompletion tools
|
2017-09-08 08:59:55 +01:00 |
|
hogliux
|
768163f75c
|
Added support for more F-keys
|
2017-08-29 17:54:41 +01:00 |
|
jules
|
4e5f005421
|
Added a method Component::getChildren() to allow them to be iterated with a range-based for loop, and used this in appropriate places around the codebase
|
2017-07-19 12:08:47 +01:00 |
|
hogliux
|
b5afccc37c
|
Updated file headers and the README with the JUCE 5 license
|
2017-04-27 14:43:04 +01:00 |
|
hogliux
|
6559b3e185
|
Fixed multiple harmless warnings in Android builds
|
2017-02-08 18:07:37 +00:00 |
|
hogliux
|
2da1bc5f41
|
Replace include guards with "#pragma once"
|
2017-02-01 17:18:07 +00:00 |
|
hogliux
|
72083c1bcf
|
Do not represent the numpad divide key as a slash key character
|
2016-06-15 17:38:33 +01:00 |
|
hogliux
|
c7b8e77031
|
Update copyright notice
|
2015-07-22 15:59:34 +01:00 |
|
jules
|
301dfaf501
|
Fix for shift-delete shortcut in text editors
|
2015-07-17 11:26:07 +01:00 |
|
jules
|
854a3e98d0
|
Added a new soft-keyboard type TextInputTarget::decimalKeyboard.
|
2015-01-12 12:33:54 +00:00 |
|
jules
|
f96ee7c860
|
Extended TextInputTarget to include a preference for the type of virtual keyboard (implemented on iOS + android)
|
2014-04-23 20:35:45 +01:00 |
|
jules
|
f9759ecc6b
|
Documentation fixes.
|
2013-11-30 20:04:17 +00:00 |
|
jules
|
7bf1da5e17
|
Added MouseInputSource::isUnboundedMouseMovementEnabled(). Tweaks to mouse cursor snap-back in Sliders.
|
2013-09-09 12:29:06 +01:00 |
|
jules
|
7f6394478a
|
Stripped out some unnecessary boilerplate includes from juce_gui_basics.
|
2013-08-24 11:45:55 +01:00 |
|
jules
|
c4affa2fb3
|
Changed a couple of unicode characters used for OSX keypress symbols.
|
2013-08-12 21:21:44 +01:00 |
|
jules
|
0149aab09d
|
CaretComponent optimisation.
|
2013-08-06 16:26:53 +01:00 |
|
jules
|
5a1112ab94
|
Updated the format of the header include guard macros.
|
2013-07-17 16:26:35 +01:00 |
|
jules
|
c75a7300f5
|
Added some 'override' modifiers to overridden methods.
|
2013-06-23 23:09:52 +01:00 |
|
jules
|
03c2801f3f
|
Copyright header update in all module files. juce_core modules are now ISC licensed. All other modules are GPLv2/3/AGPLv3
|
2013-06-13 13:17:12 +01:00 |
|
jules
|
31fc78b314
|
Minor tidying up.
|
2013-06-04 10:16:25 +01:00 |
|
jules
|
c7506df13f
|
Changed some pass-by-references to pass-by-value to improve compiler optimisation.
|
2013-05-22 23:05:53 -06:00 |
|
jules
|
4e17b8d2a9
|
Minor tidying-up of docs + warnings.
|
2013-01-16 15:50:14 +00:00 |
|
jules
|
0ceeb573d8
|
Minor changes to avoid pedantic compiler warnings.
|
2012-12-04 21:39:15 +00:00 |
|
jules
|
73359d4af0
|
Introjucer: added text search for the code editor.
|
2012-09-18 20:04:26 +01:00 |
|
jules
|
f4898a18ab
|
Minor fix for code editor caret display.
|
2012-09-13 09:33:32 +01:00 |
|
jules
|
9a24aa8a20
|
Minor clean-ups.
|
2012-09-11 09:35:03 +01:00 |
|
jules
|
2329cfa286
|
Made the KeyPress (int) constructor explicit, and tightened up the way keypresses are handled by various classes.
|
2012-07-13 14:50:10 +01:00 |
|
jules
|
df729be74a
|
Cleaned-up class inheritance visibilities and encapsulation for some internal classes.
|
2012-07-12 14:10:46 +01:00 |
|
jules
|
25e7361f2c
|
Refactored some TreeView key handling. Introjucer: now restores the last set of open documents for a project.
|
2012-07-08 15:05:55 +01:00 |
|
jules
|
0475cedff5
|
Introjucer: commands to move back/forwards through open docs.
|
2012-07-07 21:11:06 +01:00 |
|
jules
|
1f95f54089
|
Purged some warnings.
|
2012-04-10 10:29:14 +01:00 |
|
jules
|
56bbab1537
|
(automated whitespace clean-up)
|
2012-03-20 16:00:06 +00:00 |
|
jules
|
295d125142
|
Stopped using the old BEGIN_JUCE_NAMESPACE macros, and just used hard-coded namespaces where necessary instead. The macro definitions are still there, so this shouldn't affect anyone's code.
|
2012-02-11 14:09:23 +00:00 |
|
jules
|
6899d2c56f
|
Minor tweaks to win32, tab key handling.
|
2012-01-11 11:17:05 +00:00 |
|
jules
|
bd7c046f76
|
Fixed some old OSX message handling code. Made the return type of Slider::getTextFromValue non-const.
|
2011-10-04 12:13:30 +01:00 |
|
jules
|
9b38f91226
|
Fixed a compile problem in VSTs. Minor clean-ups.
|
2011-09-29 21:25:00 +01:00 |
|
Julian Storer
|
4fcd1e3384
|
New class: ChildProcess. Fixed android build problems with paths.
|
2011-09-02 12:48:36 +01:00 |
|
Julian Storer
|
2c328dfedc
|
Changed some return types from being const objects to non-const objects (for better c++11 compliance in future). This may mean that you need to remove the 'const' from your own code if you override the virtual methods that have changed.
|
2011-08-19 21:34:34 +01:00 |
|
Julian Storer
|
89455b18cb
|
Added a callback method to FileBrowserListener.
|
2011-08-18 15:59:23 +01:00 |
|
Julian Storer
|
b70e0a28d2
|
First check-in of the "jucequake": a major re-organisation of the library to break it up into modules. For more details about this, see the website forum..
|
2011-08-12 10:04:52 +01:00 |
|