1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00
JUCE/src/gui/components/layout
2011-02-16 18:13:50 +00:00
..
juce_ComponentAnimator.cpp New class: WeakReference. Used this to clean up and simplify implementation of Component::SafePointer and BailOutChecker. 2010-12-20 16:52:20 +00:00
juce_ComponentAnimator.h New class LeakedObjectDetector, and JUCE_LEAK_DETECTOR macros for spotting leakages in a neat, cross-platform way. Used these to replace all the old juce_UseDebuggingNewOperator stuff in all the classes. Also some drawable and component transform fixes. 2010-11-29 12:24:55 +00:00
juce_ComponentBoundsConstrainer.cpp New class: ResizableEdgeComponent. 2011-02-16 18:13:50 +00:00
juce_ComponentBoundsConstrainer.h New class ComponentBuilder, and some refactoring of Drawables to use it. 2010-12-29 23:11:05 +00:00
juce_ComponentBuilder.cpp Minor fixes for mac strings, WAV format, DrawableButton hit tests, win32 clipboard. New class: CharPointer_ASCII. Changes to the callback methods for ValueTree::Listener, to provide more detailed information about the event. 2011-01-31 09:28:06 +00:00
juce_ComponentBuilder.h Minor fixes for mac strings, WAV format, DrawableButton hit tests, win32 clipboard. New class: CharPointer_ASCII. Changes to the callback methods for ValueTree::Listener, to provide more detailed information about the event. 2011-01-31 09:28:06 +00:00
juce_ComponentMovementWatcher.cpp Added a simple utility class: ScopedValueSetter. 2011-01-11 18:12:02 +00:00
juce_ComponentMovementWatcher.h Improvements to ComponentMovementWatcher to check visibility. TopLevelWindow activation fix. Changed MidiMessage default constructor to an empty sysex. 2011-01-11 15:37:31 +00:00
juce_GroupComponent.cpp Small mac font fix. Jucer development. 2010-05-16 12:31:46 +01:00
juce_GroupComponent.h Updated ComponentDragger to handle transformed components (this required a change to its parameters). Tidied up some classes with the JUCE_DECLARE_NON_COPYABLE macro. Changed some 3rd-party include statements to use angle-bracket quotes. 2010-11-29 16:22:06 +00:00
juce_MultiDocumentPanel.cpp RTAS ppq fix. New class OptionalScopedPointer. Deprecated the ResizableWindow::setContentComponent() method, replacing it with setContentOwned() and setContentNonOwned(), which provide a way to specify the component's ownership when it is added. 2011-02-11 22:16:07 +00:00
juce_MultiDocumentPanel.h New class LeakedObjectDetector, and JUCE_LEAK_DETECTOR macros for spotting leakages in a neat, cross-platform way. Used these to replace all the old juce_UseDebuggingNewOperator stuff in all the classes. Also some drawable and component transform fixes. 2010-11-29 12:24:55 +00:00
juce_ResizableBorderComponent.cpp New class: ResizableEdgeComponent. 2011-02-16 18:13:50 +00:00
juce_ResizableBorderComponent.h New class: ResizableEdgeComponent. 2011-02-16 18:13:50 +00:00
juce_ResizableCornerComponent.cpp New class: ResizableEdgeComponent. 2011-02-16 18:13:50 +00:00
juce_ResizableCornerComponent.h New class: ResizableEdgeComponent. 2011-02-16 18:13:50 +00:00
juce_ResizableEdgeComponent.cpp New class: ResizableEdgeComponent. 2011-02-16 18:13:50 +00:00
juce_ResizableEdgeComponent.h New class: ResizableEdgeComponent. 2011-02-16 18:13:50 +00:00
juce_ScrollBar.cpp Rewrote the AudioThumbnail class to support some new features like using readers and adding data directly to the thumb. Added an option to AudioFormatWriter::ThreadedWriter to take a thumbnail which it dynamically generates while recording. Added a couple of new maths functions: findMinAndMax, isPositiveAndBelow. 2010-12-03 23:36:00 +00:00
juce_ScrollBar.h Reorganised some of the juce source tree folders. Added a new JUCE_DEPRECATED macro, and tested it by renaming Button::addButtonListener to Button::addListener for consistency with other widgets. Added Samplitude to the AudioHostType class. Fixed window maximising in win32. 2010-12-21 12:44:45 +00:00
juce_StretchableLayoutManager.cpp Fix for xcode linker warnings when using the static lib. Tweaks to iPhone audio and StretchableLayoutManager. 2010-07-06 10:24:06 +01:00
juce_StretchableLayoutManager.h New class LeakedObjectDetector, and JUCE_LEAK_DETECTOR macros for spotting leakages in a neat, cross-platform way. Used these to replace all the old juce_UseDebuggingNewOperator stuff in all the classes. Also some drawable and component transform fixes. 2010-11-29 12:24:55 +00:00
juce_StretchableLayoutResizerBar.cpp Added platform-specific data to AudioPluginInstance. Fixed an image rendering problem in the software renderer. Added a minimum scale setting to TabbedButtonBar. 2010-11-10 20:39:34 +00:00
juce_StretchableLayoutResizerBar.h New class: ResizableEdgeComponent. 2011-02-16 18:13:50 +00:00
juce_StretchableObjectResizer.cpp Copyright notice update. 2010-04-23 09:37:13 +01:00
juce_StretchableObjectResizer.h New class LeakedObjectDetector, and JUCE_LEAK_DETECTOR macros for spotting leakages in a neat, cross-platform way. Used these to replace all the old juce_UseDebuggingNewOperator stuff in all the classes. Also some drawable and component transform fixes. 2010-11-29 12:24:55 +00:00
juce_TabbedButtonBar.cpp Changes and additions to provide alternatives to modal-loop functionality (Android can't run modal loops). New class ModalCallbackFunction providing quick objects for making callbacks to static functions. Changes to remove modal loops from most of the internal library classes. Added new methods to PopupMenu to provide easier async callbacks, and also a cleaner way of specifying options when showing a menu. Fix for PNG decoding of corrupted image files. 2011-02-11 14:27:28 +00:00
juce_TabbedButtonBar.h Changes and additions to provide alternatives to modal-loop functionality (Android can't run modal loops). New class ModalCallbackFunction providing quick objects for making callbacks to static functions. Changes to remove modal loops from most of the internal library classes. Added new methods to PopupMenu to provide easier async callbacks, and also a cleaner way of specifying options when showing a menu. Fix for PNG decoding of corrupted image files. 2011-02-11 14:27:28 +00:00
juce_TabbedComponent.cpp Removed the PositionedRectangle class (this has been superseded by the RelativeRectangle class. If you still need PositionedRectangle in your code, just grab a copy of the class from the last revision and put it directly into your codebase). Changed the BorderSize class to be templated like Point, Line, Rectangle, etc - if you've used a BorderSize anywhere, just replace "BorderSize" with "BorderSize<int>" to get it compiling again. Updated Graphics::drawDashedLine to take a Line object. 2011-01-13 12:55:26 +00:00
juce_TabbedComponent.h win32 font fix. Tidied up warnings in plugin host. More drawable refactoring. TabbedComponent fix. 2011-01-04 23:04:51 +00:00
juce_Viewport.cpp Improvements to ComponentMovementWatcher to check visibility. TopLevelWindow activation fix. Changed MidiMessage default constructor to an empty sysex. 2011-01-11 15:37:31 +00:00
juce_Viewport.h Viewport positioning fix. Changed parameters of Viewport::visibleAreaChanged(). Small plugin header fix. 2011-01-10 12:33:38 +00:00