| .. |
|
juce_Array.h
|
Minor Jucer updates. Fix for strange PNG problem. ICC and VC6 compilation changes.
|
2010-03-30 12:27:57 +01:00 |
|
juce_ArrayAllocationBase.h
|
Reduced the memory footprint of the array classes.
|
2010-02-06 09:16:20 +00:00 |
|
juce_BitArray.cpp
|
Minor string literal tidy-ups.
|
2010-03-23 17:36:12 +00:00 |
|
juce_BitArray.h
|
Converted the BitArray class into "BigInteger", replacing its clunky old arithmetic methods with a proper set of arithmetic operators so it can be used like an int. All the bit-access methods are still there, and there's a typedef of BitArray -> BigInteger to allow most old code to still work. (You might need to change calls to isEmpty() to isZero() though). Also fixed a bug in MidiBuffer.
|
2010-03-18 09:49:49 +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
|
Minor code clean-ups.
|
2010-03-27 18:29:09 +00:00 |
|
juce_MemoryBlock.cpp
|
Minor string literal tidy-ups.
|
2010-03-23 17:36:12 +00:00 |
|
juce_MemoryBlock.h
|
Updated VC6 project. Removed some unsafe templated casts from MemoryBlock and HeapBlock.
|
2010-02-25 18:31:06 +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
|
Converted the BitArray class into "BigInteger", replacing its clunky old arithmetic methods with a proper set of arithmetic operators so it can be used like an int. All the bit-access methods are still there, and there's a typedef of BitArray -> BigInteger to allow most old code to still work. (You might need to change calls to isEmpty() to isZero() though). Also fixed a bug in MidiBuffer.
|
2010-03-18 09:49:49 +00:00 |
|
juce_PropertySet.cpp
|
Minor string literal tidy-ups.
|
2010-03-23 17:36:12 +00:00 |
|
juce_PropertySet.h
|
Minor code clean-ups.
|
2010-02-22 15:28:18 +00:00 |
|
juce_Range.h
|
Added a few methods to Range, and used Ranges internally in Slider. Cleaned up a few files.
|
2010-03-30 15:23:53 +01:00 |
|
juce_ReferenceCountedArray.h
|
Converted the BitArray class into "BigInteger", replacing its clunky old arithmetic methods with a proper set of arithmetic operators so it can be used like an int. All the bit-access methods are still there, and there's a typedef of BitArray -> BigInteger to allow most old code to still work. (You might need to change calls to isEmpty() to isZero() though). Also fixed a bug in MidiBuffer.
|
2010-03-18 09:49:49 +00:00 |
|
juce_ReferenceCountedObject.h
|
Minor code clean-ups.
|
2010-02-22 15:28:18 +00:00 |
|
juce_ScopedPointer.h
|
Updated VC6 project. Removed some unsafe templated casts from MemoryBlock and HeapBlock.
|
2010-02-25 18:31:06 +00:00 |
|
juce_SortedSet.h
|
Modernised some old code.
|
2010-02-20 15:27:48 +00:00 |
|
juce_SparseSet.h
|
Converted the BitArray class into "BigInteger", replacing its clunky old arithmetic methods with a proper set of arithmetic operators so it can be used like an int. All the bit-access methods are still there, and there's a typedef of BitArray -> BigInteger to allow most old code to still work. (You might need to change calls to isEmpty() to isZero() though). Also fixed a bug in MidiBuffer.
|
2010-03-18 09:49:49 +00:00 |
|
juce_Value.cpp
|
Jucer VC6 support + misc VC6 compatibility hacks.
|
2010-03-17 14:46:03 +00:00 |
|
juce_Value.h
|
Jucer VC6 support + misc VC6 compatibility hacks.
|
2010-03-17 14:46:03 +00:00 |
|
juce_ValueTree.cpp
|
Added ListenerList class and changed some components to use it for their listener dispatching. Sorted out bug in popup menus and win32 mouse wheel.
|
2010-03-07 17:45:10 +00:00 |
|
juce_ValueTree.h
|
Minor code clean-ups.
|
2010-03-27 18:29:09 +00:00 |
|
juce_Variant.cpp
|
Minor string changes.
|
2010-03-26 18:23:54 +00:00 |
|
juce_Variant.h
|
iPhone on-screen keyboard support, when a TextEditor or CodeEditor is focused.
|
2010-03-22 17:25:45 +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 |