1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00
Commit graph

53 commits

Author SHA1 Message Date
jules
2a1234b6ac Simplified some inter-module dependencies and exception-catching fallbacks 2015-12-23 11:47:18 +00:00
jules
82b0a3628b Added some comments regarding MessageManagerLocks 2015-12-14 09:48:25 +00:00
jules
02492b36b9 Lots of small whitespace tweaks. 2015-12-13 19:32:05 +00:00
hogliux
c7b8e77031 Update copyright notice 2015-07-22 15:59:34 +01:00
jules
4af50da9f7 Modified app startup code so that JUCEApplication::shutdown() will still get called even if the app is aborted during the initialise() method. 2015-04-14 11:30:25 +01:00
jules
f799bb0d6b Another fix for Windows builds with modal comps disabled. 2015-03-05 15:48:27 +00:00
jules
5fc76082e2 Fix for Windows builds with modal components disabled. 2015-03-05 15:42:45 +00:00
jules
7a7f7814fb Moved the new MountedVolumeListChangeDetector into the juce_events module to avoid some win32 problems. 2014-10-26 19:36:54 +00:00
jules
89854c55b9 Added flag JUCE_COMPILER_SUPPORTS_LAMBDAS 2014-10-08 11:26:55 +01:00
jules
df3e039bf9 Added a handy static method MessageManager::callAsync() which can asynchronously invoke a lambda on the message thread. 2014-10-07 17:15:19 +01:00
jules
de1d07090a Returning correct app failure codes if the app quits before finishing initialisation. 2014-08-20 20:57:51 +01:00
jules
005f0be531 Better cleanup in MessageManagerLock to avoid spurious assertions when a lock fails on shutdown. 2014-08-17 12:25:07 +01:00
jules
66d413c32b Minor clean-ups 2014-08-14 12:04:43 +01:00
jules
1d9161d55e Reworked START_JUCE_APPLICATION to work on Windows if windows.h has been included after the juce headers. 2014-08-03 18:00:14 +01:00
jules
31087226bc Minor tweak for console win32 builds. 2014-08-01 09:20:17 +01:00
jules
bdeb0765ea Added support for windows command line apps that want an event loop. 2014-07-31 09:11:04 +01:00
jules
7b8ab7b503 Changed MessageBase::post() to return a bool to detect failure in the OS message queue (which can happen under stress on win32), and used this to avoid some messaging classes getting stuck. 2014-07-16 21:33:11 +01:00
jules
619716751e Tweaked the ScopedJuceInitialiser_GUI to use reference-counting internally, and used it to replace/simplify some similar objects in the plugin wrapper classes. 2014-05-28 11:06:48 +01:00
jules
42482fc5db Spelling fix. 2014-03-14 21:47:37 +00:00
jules
9ceb072b24 Spelling typos. 2014-02-28 11:25:46 +00:00
jules
2edec00b55 Removed a few more uses of String::empty. 2013-12-01 23:28:31 +00:00
jules
505bdcea88 Allowed JUCEApplicationBase::quit() to be called from non-message threads on OSX. 2013-11-28 10:01:21 +00:00
jules
42aa27900b Moved most of the functionality from JUCEApplication into JUCEApplicationBase, so that it can be used without needing juce_gui_basics to be present. 2013-09-07 09:43:45 +01:00
jules
6045915256 Fixed a namespace problem with the iOS build. 2013-09-02 16:34:56 +01:00
jules
2d25f2f294 Removed a few unnecessary includes. 2013-08-23 14:13:59 +01:00
jules
5a1112ab94 Updated the format of the header include guard macros. 2013-07-17 16:26:35 +01:00
jules
5918d039ce Added some "override" annotations. 2013-07-08 19:05:14 +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
7452efb9e7 safety-check in Label. Typo fix in MessageManager. 2013-05-25 11:57:28 -07:00
jules
67341e7c4d Tweak to runDispatchLoopUntil timekeeping. 2013-05-23 09:09:29 -06:00
jules
ba2dc52b34 Made use of @autoreleasepool for clang builds. 2013-03-21 18:33:01 +00:00
jules
ad33fca65a Minor clean-ups and documentation. 2013-02-07 09:45:56 +00:00
jules
0ceeb573d8 Minor changes to avoid pedantic compiler warnings. 2012-12-04 21:39:15 +00:00
jules
d1757b5e8a Minor stuff. 2012-11-20 19:33:40 +00:00
jules
5ed768e953 New enum: NotificationType, to indicate whether to send a change message or not (and whether it should be async). Updates to ListBox, TreeView and Slider methods to use this type instead of bools. 2012-10-18 13:53:02 +01:00
jules
7ce0bf15d3 Added callbacks JUCEApplication::suspended() and resumed() for iOS and Android. 2012-07-10 16:59:35 +01:00
jules
591e89cd87 Replaced the badly-named method Array::removeValue() with two new methods: removeFirstMatchingValue() and removeAllInstancesOf(). If you call the old method anywhere, you can just replace any calls with removeFirstMatchingValue(), which does the same job, but whose name makes it clear that not all instances of the value will be removed. 2012-07-07 21:09:10 +01:00
jules
18cfadf898 Refactored the handling of command-line args: added new static methods JUCEApplication::getCommandLineParameters() and getCommandLineParameterArray(). 2012-06-25 11:05:39 +01:00
jules
1f95f54089 Purged some warnings. 2012-04-10 10:29:14 +01:00
jules
93a86b2600 TabbedButtonBar fix. Small clean-ups. 2012-04-02 11:43:06 +01:00
jules
87d3acf19f Message leak fix. Android repaint fix. Minor clean-ups. 2012-03-30 09:31:35 +01:00
jules
53c0436d71 Android fixes. OSX fix for old SDKs. 2012-03-29 12:40:14 +01:00
jules
59669e8bec Thread-local value fix for plugins on XP. Android startup tweaks. Minor component changes. 2012-03-27 11:04:27 +01:00
jules
bdd778332d Removed some unused android code. Refactored some messaging code. 2012-03-25 20:09:57 +01:00
jules
e905f52014 More internal message class refactoring/decoupling. 2012-03-24 18:37:44 +00:00
jules
31209dadfc Simplified some message-handling code. 2012-03-24 11:38:05 +00: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
a90aedce50 Small updates to ComponentBuilder, UnitTestRunner. 2012-01-20 18:20:19 +00:00
jules
e0aa00181a Minor tweaks to TextEditor, Message. 2012-01-14 19:35:13 +00:00