199 Commits (08339c92e2b71814bcd186667b421ed2973e12eb)

Author SHA1 Message Date
  Julian Storer efd1e4c88a Viewport positioning fix. Changed parameters of Viewport::visibleAreaChanged(). Small plugin header fix. 15 years ago
  Julian Storer f19e4d1c04 Added workarounds for mouse-wheel events in win32 VSTs and mouse-moves in carbon AUs and VSTs. Fixed a problem when swapping between carbon/cocoa views in AUs. 15 years ago
  Julian Storer c1d8ac22df New Component::setBounds() method using a RelativeRectangle. 15 years ago
  Julian Storer ea9a2c095d Fixes for 64-bit AUs and NamedValueSet. 15 years ago
  Julian Storer f5ed9621cd Fixed a typo in the plugin host type class. 15 years ago
  Julian Storer 7007b179b2 Added fruityloops plugin host type. Changed NamedValueSet to use a linked list internally. Fixes for 64-bit compilation targeting OSX10.6. 15 years ago
  Julian Storer 7becff2aa4 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. 15 years ago
  Julian Storer 7b955dd6c3 Small fixes for mouse positioning. Clean-up for win32 CD reader code. 15 years ago
  Julian Storer 99085429b5 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. 15 years ago
  Julian Storer 952b8c3940 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. 15 years ago
  Julian Storer a5cf4030f5 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. 15 years ago
  Julian Storer 1e8a28679f AU editor fix. Added a descriptive name field to PluginDescription. 15 years ago
  Julian Storer 9896b75340 Internal code modernisation. 15 years ago
  Julian Storer c16f6f17a9 The Component class no longer derives from MessageListener - this was adding a lot of overhead to each component construction/destruction, and was rarely providing any benefit. You can add it as a base class yourself if you need it. Component::isValidComponent() has now been removed - it was never 100% reliable and its job can be done better using Component::SafePointer to watch for deletions. Also minor fixes to AudioDeviceManager and Midi sysex parsing. 15 years ago
  Julian Storer 584d9a4ec0 Fixes for ComponentBoundsConstrainer, linux VSTs, and firefox NPAPI. 15 years ago
  Julian Storer 377b9ff2c4 Added a couple of useful constructors to some stream classes. Replaced some old static functions with anonymous namespaces. 15 years ago
  Julian Storer 9168728a7e Added a hasEditor() virtual method to the AudioProcessor class, which you'll need to implement in your plugins so that we can work around non-standard threading behaviour in Wavelab. 15 years ago
  Julian Storer 38c64a7840 Minor tweaks to LookAndFeel, VST wrapper. 15 years ago
  Julian Storer 098f0af3ed Fixes for ZipFile, QuickTimeAudioFormat. 15 years ago
  Julian Storer ba62157841 Added the AudioData class, which contains a range of templated structrures for manipulating different sample type primitives. This will replace the old AudioDataConverters class, and I've refactored a lot of the audio devices and formats to use the new classes. 15 years ago
  Julian Storer 8f4aaa4873 Fixed a problem with DirectoryIterator. Removed a few VC warnings. Tweaked mac Carbon windows for better keyboard focus. Disabled Carbon when doing a 64-bit plugin build. 15 years ago
  Julian Storer 0a6aaea93b Minor updates for plugins. Fixed some X windows locking. 15 years ago
  Julian Storer 73f17dba08 Minor clean-ups. 15 years ago
  Julian Storer dffa2dc6e7 Fix for Cubase 32/64 bit bridge. Fix for Jucer RTAS project generation. 15 years ago
  Julian Storer d2b3c283eb New classes UnitTest and UnitTestRunner. Minor updates to VST wrapper. Added a dynamic buffer for win32 midi input. 15 years ago
  Julian Storer b161c0f437 Minor code clean-ups. 15 years ago
  Julian Storer f953c19efb Fix for CoreGraphics image loading on iOS. Auto-linked library fix for win32. 15 years ago
  Julian Storer 5a89fc6ad8 Cleaned up a few compiler warnings. 15 years ago
  Julian Storer de4d8a5a14 Minor code clean-ups. 15 years ago
  Julian Storer 6fab77045b Small fixes for File, Expression, RTAS. 15 years ago
  Julian Storer 23e07daec7 Minor code clean-ups. 15 years ago
  Julian Storer 1335673bf0 Fixed a typo in PluginHostType. 15 years ago
  Julian Storer ccd8566e96 Fix for iOS launching. Tweak for win32 font rendering. Added a File::hostApplicationPath flag. 15 years ago
  Julian Storer 216d258ceb Added workarounds for a truly moronic VC2005 compiler bug. Very, very annoyed at having to spend hours and compromise my coding style geting this to build properly... 15 years ago
  Julian Storer 907a9aaffe Tidied up a bunch of listener classes, making them child classes - e.g. ButtonListener becomes Button::Listener. Did this for ComboBox, Button, CameraDevice, Label, ScrollBar, Slider, TextEditor, TableHeaderComponent. (There are typedefs to make sure old code still works, though I might remove those in the future). 15 years ago
  Julian Storer cb7b3d7562 Mouse fix for audio plugins in Muse Receptor. Fixed DrawableText constructor. 15 years ago
  Julian Storer e1cab61fa6 Fixed some minor typos in Rectangle and the RTAS wrapper. 15 years ago
  Julian Storer d93a3a8ddf Internal changes to drawable gradients. Fix for AudioFormat bug. 15 years ago
  Julian Storer 79b8ffa007 Made ResizableWindow slightly more resilient. Added a method to OwnedArray. 15 years ago
  Julian Storer ec021e9e67 Minor fixes for PopupMenu, AudioProcessorPlayer 15 years ago
  Julian Storer 80472c3448 Minor updates to some plugin classes. 15 years ago
  Julian Storer ed97872c1a Tidied up some filenames, cleaned up some code. Removed VoidArray class (just use Array<void*> instead) 15 years ago
  Julian Storer 27506c2120 Copyright notice update. 15 years ago
  Julian Storer f8f02568b3 Removed IntegerElementComparator and FloatElementComparator, replacing them with DefaultElementComparator, which does the same job. Added method Array::addUsingDefaultSort(). 15 years ago
  Julian Storer c1f4f5501f Added a couple of methods to ValueTree. Added a MidiBuffer::ensureSize method and used it in the audio plugin wrapper code to preallocate their midi buffers. 15 years ago
  Julian Storer 39ced6543a Small additions to ValueTree, Rectangle, AudioDeviceSelectorComponent. Jucer development. 15 years ago
  Julian Storer e663b1a04c Small fix for tab-key focus movement. Added default property option to ValueTree. RTAS change for mac shutdown problems. Rearranged Atomic methods. Jucer development. 15 years ago
  Julian Storer 1bc7a27676 Cleaned up AudioFilterStreamer to remove duplicate code and use AudioProcessorPlayer for its playout. Jucer update to compile .c files on linux. 15 years ago
  Julian Storer ca348c06d7 Minor SVG fix. Added manual reset option to WaitableEvent. Made AudioFilterStreamer update channel numbers when the audio device changes. 15 years ago
  Julian Storer 66643e85ac Minor string changes. 15 years ago