| .. |
|
juce_Array.h
|
Reduced the memory footprint of the array classes.
|
2010-02-06 09:16:20 +00:00 |
|
juce_ArrayAllocationBase.h
|
Reduced the memory footprint of the array classes.
|
2010-02-06 09:16:20 +00:00 |
|
juce_BitArray.cpp
|
Fixes for BitArray and WavAudioFormat.
|
2010-01-25 13:38:54 +00:00 |
|
juce_BitArray.h
|
Added X-windows locking for all linux windowing, and added a class ScopedXLock to allow it to be done around client code as well. Misc fixes for mac menus, win32 WM_QUIT messages, MidiKeyboardComponent. Added text colour id to DirectoryContentsDisplayComponent.
|
2010-01-24 20:46:34 +00:00 |
|
juce_DynamicObject.cpp
|
New class: NamedValueSet, which is a simple container for named var objects. Removed the clunky get/setComponentProperty methods and replaced them a single method Component::getProperties(), which returns a NamedValueSet for that component - if you've used component properties in your code you might need to change your syntax, but this is a cleaner solution, and using var objects for the data is more powerful than the old, string-based implementation. Also fixed a Mac image rendering bug.
|
2010-01-29 10:31:12 +00:00 |
|
juce_DynamicObject.h
|
New class: NamedValueSet, which is a simple container for named var objects. Removed the clunky get/setComponentProperty methods and replaced them a single method Component::getProperties(), which returns a NamedValueSet for that component - if you've used component properties in your code you might need to change your syntax, but this is a cleaner solution, and using var objects for the data is more powerful than the old, string-based implementation. Also fixed a Mac image rendering bug.
|
2010-01-29 10:31:12 +00:00 |
|
juce_ElementComparator.h
|
Rearranged the layout of the source tree, giving it a slightly flatter directory structure. Also fixed a small bug with DragAndDropComponents that was stopping the toolbar customisation working properly.
|
2009-08-22 21:57:23 +00:00 |
|
juce_HeapBlock.h
|
Added X-windows locking for all linux windowing, and added a class ScopedXLock to allow it to be done around client code as well. Misc fixes for mac menus, win32 WM_QUIT messages, MidiKeyboardComponent. Added text colour id to DirectoryContentsDisplayComponent.
|
2010-01-24 20:46:34 +00:00 |
|
juce_MemoryBlock.cpp
|
Updated Timer code to avoid a rare messaging problem. Fixed a couple of minor build errors. Rearranged the atomic functions and added a new compare-and-swap operation. Added a thread-priority tweak to WASAPI. Removed MS-specific classes from the web browser component.
|
2010-01-27 20:28:38 +00:00 |
|
juce_MemoryBlock.h
|
Updated Timer code to avoid a rare messaging problem. Fixed a couple of minor build errors. Rearranged the atomic functions and added a new compare-and-swap operation. Added a thread-priority tweak to WASAPI. Removed MS-specific classes from the web browser component.
|
2010-01-27 20:28:38 +00:00 |
|
juce_NamedValueSet.cpp
|
New class: NamedValueSet, which is a simple container for named var objects. Removed the clunky get/setComponentProperty methods and replaced them a single method Component::getProperties(), which returns a NamedValueSet for that component - if you've used component properties in your code you might need to change your syntax, but this is a cleaner solution, and using var objects for the data is more powerful than the old, string-based implementation. Also fixed a Mac image rendering bug.
|
2010-01-29 10:31:12 +00:00 |
|
juce_NamedValueSet.h
|
Minor new method for File. Fix for mingw. Changed AudioProcessorGraph to contain a NamedValueSet instead of a PropertySet.
|
2010-01-29 22:02:52 +00:00 |
|
juce_OwnedArray.h
|
Reduced the memory footprint of the array classes.
|
2010-02-06 09:16:20 +00:00 |
|
juce_PropertySet.cpp
|
Fix for String copying thread-safety, and some minor compile issues.
|
2010-02-08 16:23:01 +00:00 |
|
juce_PropertySet.h
|
Rearranged the layout of the source tree, giving it a slightly flatter directory structure. Also fixed a small bug with DragAndDropComponents that was stopping the toolbar customisation working properly.
|
2009-08-22 21:57:23 +00:00 |
|
juce_Range.h
|
Added support for extended character input on the mac. Added a few methods to Rectangle and Range.
|
2010-02-18 16:49:30 +00:00 |
|
juce_ReferenceCountedArray.h
|
Reduced the memory footprint of the array classes.
|
2010-02-06 09:16:20 +00:00 |
|
juce_ReferenceCountedObject.h
|
Added Value support to the Button's toggle state and TextEditor content. Refactored the atomic operation functions to live inside a class called Atomic, and the byte order functions into a class called ByteOrder.
|
2010-01-10 22:00:59 +00:00 |
|
juce_ScopedPointer.h
|
Fix for linux atomics. Fix for ScopedPointer in some compilers. Mac PPC build fix.
|
2010-02-09 10:44:45 +00:00 |
|
juce_SortedSet.h
|
Reduced the memory footprint of the array classes.
|
2010-02-06 09:16:20 +00:00 |
|
juce_SparseSet.h
|
Reduced the memory footprint of the array classes.
|
2010-02-06 09:16:20 +00:00 |
|
juce_Value.cpp
|
Removed the (rather pointless) granularity value from the array objects. Converted a few macros into functions and other misc code clean-ups.
|
2010-01-13 18:58:40 +00:00 |
|
juce_Value.h
|
Removed the (rather pointless) granularity value from the array objects. Converted a few macros into functions and other misc code clean-ups.
|
2010-01-13 18:58:40 +00:00 |
|
juce_ValueTree.cpp
|
New class: NamedValueSet, which is a simple container for named var objects. Removed the clunky get/setComponentProperty methods and replaced them a single method Component::getProperties(), which returns a NamedValueSet for that component - if you've used component properties in your code you might need to change your syntax, but this is a cleaner solution, and using var objects for the data is more powerful than the old, string-based implementation. Also fixed a Mac image rendering bug.
|
2010-01-29 10:31:12 +00:00 |
|
juce_ValueTree.h
|
Added a sort method to the TreeView class.
|
2010-02-03 23:03:38 +00:00 |
|
juce_Variant.cpp
|
Created a new class "Range", for holding generic number ranges. New abstract class TextInputTarget, which defines methods common to text editors. Changed a couple of method definitions in TextEditor and CodeEditorComponent so that they could implement TextInputTarget. Added ability for wav files to save their SMPL chunk.
|
2010-02-12 17:38:39 +00:00 |
|
juce_Variant.h
|
Created a new class "Range", for holding generic number ranges. New abstract class TextInputTarget, which defines methods common to text editors. Changed a couple of method definitions in TextEditor and CodeEditorComponent so that they could implement TextInputTarget. Added ability for wav files to save their SMPL chunk.
|
2010-02-12 17:38:39 +00:00 |
|
juce_VoidArray.h
|
Rearranged the layout of the source tree, giving it a slightly flatter directory structure. Also fixed a small bug with DragAndDropComponents that was stopping the toolbar customisation working properly.
|
2009-08-22 21:57:23 +00:00 |