Commit Graph

  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • *
  • 6a4e8f235c Minor fixes and warning removals for VC7. by Julian Storer 2010-01-17 22:44:16 +0000
  • 7381243506 Changed the semantics of the ValueTree::Listener callbacks - listeners are now notified when a property or child is changed at any level inside the tree, including in child trees. by Julian Storer 2010-01-17 21:22:25 +0000
  • cff178cfaa Removed a minor compiler warning in VC7. by Julian Storer 2010-01-16 17:57:03 +0000
  • 0744c0db37 New class: TemporaryFile, which manages a temporary file, deleting it when it goes out of scope. Also fixes for compile problems in VC7. by Julian Storer 2010-01-16 17:51:48 +0000
  • 38bd05de16 Minor fixes for Value components. by Julian Storer 2010-01-15 20:54:57 +0000
  • e73a0fb874 Added Value support to Labels and ComboBoxes. Altered all the PropertyComponent classes so that as well as being used as abstract base classes, they can now also be instantiated directly as controllers for a Value. This allows property panels to be built to control a set of Value objects without writing any custom classes. by Julian Storer 2010-01-15 15:39:39 +0000
  • 55306275b1 Minor fixes to avoid compiler warnings by Julian Storer 2010-01-15 15:06:24 +0000
  • e61e8f6775 Changed some 'int's to 'size_t's, to improve 64-bit compatibility. Also changed jmin and jmax to use templates, so they can take any type. These changes might mean that you'll need to add some more explicit casts to get your existing code to compile, but this is actually a good thing - it brought to light a few dodgy implicit casts in my code, and may do the same in yours. Also added a function roundToInt(), which replaces roundDoubleToInt() and roundFloatToInt(), but takes any size of floating point number (I've left the old roundDoubleToInt() and roundFloatToInt() functions there for convenience, but will probably remove them in the future). by Julian Storer 2010-01-14 14:49:25 +0000
  • 0abb313d40 Tarted up the amalgamator, and made it replace spaces with tabs to reduce file size. by Julian Storer 2010-01-14 13:55:23 +0000
  • 97035bb3a1 Removed the (rather pointless) granularity value from the array objects. Converted a few macros into functions and other misc code clean-ups. by Julian Storer 2010-01-13 18:58:40 +0000
  • c368805559 Misc fixes for mingw compatibility by Julian Storer 2010-01-12 16:54:18 +0000
  • 68e04b453d Fixed an MS compile problem. Added code to add an audio stream to a camera file recorded on the mac to avoid a movie rate bug in some quicktime versions. Added a linux makefile for the amalgamator. by Julian Storer 2010-01-12 16:21:43 +0000
  • 2343dcdcee Added Linux contributions for headless messaging, clipboard and better shm support. by Julian Storer 2010-01-11 22:25:43 +0000
  • d7cbfe93c5 Minor tidying up. by Julian Storer 2010-01-11 12:17:43 +0000
  • 494f28601c Fixed a typo in the ASIO code in the last check-in. by Julian Storer 2010-01-11 09:34:11 +0000
  • 18ffeba9da 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. by Julian Storer 2010-01-10 22:00:59 +0000
  • 3ddbc82f9f Fixed a typo in VST wrapper class. by Julian Storer 2010-01-08 09:27:40 +0000
  • 98380f4744 New class: Value, which provides a way to share variants and listen for changes to them. Adapted Slider to use Value objects for its position, and changed the widgets demo to show how they can be easily tied together. Updated the VST speaker arrangement code. by Julian Storer 2010-01-07 17:54:51 +0000
  • 8bf4d88d97 Minor clean-ups. by Julian Storer 2010-01-04 15:24:13 +0000
  • c7957d7d1e Clean-ups and small fix for plugin hosting classes. by Julian Storer 2010-01-04 10:05:39 +0000
  • 45befc9ed2 Small fix to ValueTree by Julian Storer 2010-01-03 22:57:39 +0000
  • 59a2506864 Minor code clean-ups by Julian Storer 2010-01-03 16:17:42 +0000
  • c22c06c80c New class: ScopedPointer, which auto-releases a pointer when it goes out of scope. I've used this extensively to replace a lot of pointer deletions with more RAII-style patterns. by Julian Storer 2010-01-02 23:01:18 +0000
  • 4ed1d791e5 New class HeapBlock, which provides a safe and object-oriented way to allocate heap space. I've used HeapBlocks to replace almost all uses of malloc/free throughout the codebase. by Julian Storer 2010-01-02 14:55:44 +0000
  • 8c988319ec Added ability for the File::hasFileExtension() to accept lists of extensions. Made rendering complex clip regions more efficient on Windows. Fixed the look and feel for some uses of popup menus. by Julian Storer 2009-12-30 16:11:10 +0000
  • 2f8eaf9183 Fix for text editor line heights with mixed font sizes. Added mouse position velocity to the midi keyboard. Internationalised some text used in the Button class. by Julian Storer 2009-12-27 13:12:28 +0000
  • df5f73910b Fixed the position of the drag image when dragging listboxes. Minor fix for mac graphics contexts, and win32 webcam latency adjustment. by Julian Storer 2009-12-24 12:30:25 +0000
  • 9000fc6604 Moved an assertion that was getting triggered unnecessarily by Julian Storer 2009-12-23 10:14:40 +0000
  • a2183daee5 VC6 compatibility updates by Julian Storer 2009-12-22 20:59:32 +0000
  • 24a121e4dd Fixed a small streaming bug, tidied up some warnings. by Julian Storer 2009-12-22 14:53:12 +0000
  • aa98aa03ec Removed a few compiler warnings by Julian Storer 2009-12-21 16:51:57 +0000
  • af7d523f4f Fixed stack allocation bug in optimised win32 builds by Julian Storer 2009-12-21 11:49:38 +0000
  • 9e53cdc78e Updated the API documentation by Julian Storer 2009-12-20 16:01:35 +0000
  • 796848eb8b Updated the amalgamated files by Julian Storer 2009-12-18 16:38:15 +0000
  • a126b1918a Added a colour ID for TextButton text when the button is toggled on. Improved the class hierarchy implementation of some container classes. Made DSound cope better with dropped buffers. by Julian Storer 2009-12-18 16:37:46 +0000
  • 2a43959884 minor tweaks to TableHeaderComponent and ZipFiles by Julian Storer 2009-12-17 15:49:43 +0000
  • 4912b6d5ab Fixed a mac memory leak when using native sub-menus. by Julian Storer 2009-12-16 23:17:14 +0000
  • aa91094a4e Change to avoid MSVC warnings. by Julian Storer 2009-12-16 21:59:23 +0000
  • 80753f4c03 Lots of minor changes to prevent warnings. Small fixes to Path, AudioThumbnail, ValueTree, OutputStreams. Tweaks to convert Drawables to/from ValueTrees. New method to write XML to a stream. by Julian Storer 2009-12-16 21:13:46 +0000
  • d9dc6b1cfc New class: ValueTree for storing undoable structured data. Also added tooltip support to the ListBoxModel. by Julian Storer 2009-12-12 13:27:07 +0000
  • 1f38660d94 Added mac NSException catching and tidied up some warnings. by Julian Storer 2009-12-11 17:54:58 +0000
  • ce7def1f9d Changes for VC6 comptibility. Fixed a typo in BitArray::toString. by Julian Storer 2009-12-11 10:57:31 +0000
  • 03b54862c5 Fixed a type in AudioSampleBuffer::copyFrom. Added a LookAndFeel::getMouseCursorFor method. Added a parameter to MidiMessage::isNoteOff by Julian Storer 2009-12-09 15:44:27 +0000
  • c1e4c6c589 Added a parameter to MidiMessage::isNoteOn by Julian Storer 2009-12-09 13:30:59 +0000
  • be5ecce1fe Added drag-and-drop target support to TreeViews. The TreeViewItem class now has methods that can be overridden to accept external and internal drags, and the TreeView provides some nice graphics to indicate the target insertion point. Also added a handy method Viewport::autoScroll, and options for positioning the dragged image supplied to DragAndDropContainer::startDrag by Julian Storer 2009-12-09 13:08:38 +0000
  • 1f6d9ec92c Added multiple-selection, and the ability to browse for both files and folders to the Juce file chooser dialog classes. This has involved changing a few methods, so if you're using these classes directly, you may need to tweak your code, but it should be very easy to do. by Julian Storer 2009-12-08 16:07:47 +0000
  • 71a12a140e Improved CoreGraphics clipping. Added a method File::revealToUser(). Added obj-c keywords to the c++ tokeniser. Added a new mode to the file chooser (only implemented on mac so far) by Julian Storer 2009-12-08 11:24:09 +0000
  • 9a39433405 Fixed a couple of tiny inaccuracies in the graphics code. by Julian Storer 2009-12-03 22:52:35 +0000
  • 4c31b704ed Fix for Graphics::drawImage and small change to the parameters of Graphics::drawImageTransformed - if you were using subregions of images, note that this method now treats them slightly differently. Previously, the transform was relative to the origin of the image, but now it's relative to the origin of the subregion. by Julian Storer 2009-12-03 12:14:21 +0000
  • a8a602f7a2 Couple of small fixes for mac midi and win32 threads, and fixed a memory leak in the demo app. by Julian Storer 2009-12-03 11:22:38 +0000
  • d6e3576234 Fixes for iPhone build and mac/iPhone CoreGraphics. Added ability to remove specified jobs from a ThreadPool by Julian Storer 2009-12-02 14:21:33 +0000
  • 96680158cd Added a missing include file by Julian Storer 2009-12-02 10:29:22 +0000
  • 911e0d5ea5 Added new juce demo files. by Julian Storer 2009-12-01 22:26:22 +0000
  • ded840d456 Updated the demo to have a new graphics rendering test page - this tests a lot of the new graphics features and lets you swap between software/OS rendering engines. Also fixed a mac menu bug, and mac mouse event timestamps. by Julian Storer 2009-12-01 22:25:38 +0000
  • 15c32d3f3a Couple of fixes for the iPhone build by Julian Storer 2009-12-01 14:12:03 +0000
  • 3e77725594 Cleaned up some namespace issues, and tweaked the plugin host demo to avoid namespace clashes with juce plugins by Julian Storer 2009-12-01 13:16:55 +0000
  • 32d36148a0 Fix silly typo in last check-in and updated the Jucer to produce code that works with the new graphics methods. by Julian Storer 2009-12-01 10:55:39 +0000
  • 317af16782 Added some plugin host type detection code. by Julian Storer 2009-11-30 20:19:25 +0000
  • 95fcc168d8 More graphics updates, including fixes for CoreGraphics on PPC macs. Fix for keypress recursion in AU plugins, and fix for tabs in the CodeEditorComponent by Julian Storer 2009-11-30 19:21:25 +0000
  • 01f109e857 More graphics updates - new class FillType, which is now used by DrawablePath to specify its colours. New methods Graphics::clipToPath and Graphics::clipToImageAlpha. Added dynamic Xinerama loading. by Julian Storer 2009-11-30 12:02:51 +0000
  • f6a088961f Removed the Brush classes - everything they used to do can still be done by other methods in the Graphics class. Also did more optimising of the graphics contexts, both software and CoreGraphics. by Julian Storer 2009-11-28 20:09:56 +0000
  • dfc5fd54db Fix for setting up RTAS parameters and mac messaging by Julian Storer 2009-11-27 19:32:18 +0000
  • 537b90de53 Fixed broken RGB colours in loaded images on PC. by Julian Storer 2009-11-27 17:33:51 +0000
  • 6fdde63a63 Big rewrite of the LowLevelGraphicsSoftwareRenderer class, adding internal support for complex clipping regions - this will temporarily make font rendering quite slow, until it gets re-optimised for this new design. Changed the Image class to remove the lockPixelData methods, and replaced these with an object Image::BitmapData, which is easier to use. by Julian Storer 2009-11-26 21:36:45 +0000
  • 9fc4b6d822 Added midi out to AudioProcessorGraphs. Improved documenation for Singletons. Added a couple of methods to String. Fixed a small bug in ogg-vorbis decoding. by Julian Storer 2009-11-26 21:30:51 +0000
  • 55d8c360bb Improvements to mac and iPhone message dispatching by Julian Storer 2009-11-26 21:25:45 +0000
  • 037b4250e8 Fixed a window offset problem in RTAS. Tidied up a few compiler warnings. by Julian Storer 2009-11-23 17:31:02 +0000
  • 707c58186b Fixes to GlyphArrangement. Made the mac put quotes around filenames containing spaces before they are passed to anotherInstanceStarted() by Julian Storer 2009-11-21 16:11:13 +0000
  • 3d3c8ff957 updated the amalgamated files by Julian Storer 2009-11-20 19:24:21 +0000
  • df584f9cea Added a new AU config flag for plugins, to let you choose the obj-C classname that some hosts seem to be stupidly displaying to the user. Also added a couple of minor fixes and new documentation. by Julian Storer 2009-11-20 19:18:37 +0000
  • 15a5c53bc0 Fix for an AU crash when running in 10.4. Added a PlatformUtilities method to get the version of OSX that's running. Added a workaround for a 10.4 OS bug when drawing gradients. Added some macros to allow CD burning and reading to be enabled independantly. by Julian Storer 2009-11-17 16:21:18 +0000
  • 93e4236b57 Changes for VC6 compatibility; added a couple of trimming methods to String; added a parameter to Socket::createConnection by Julian Storer 2009-11-16 18:12:17 +0000
  • d3ff5d9c4b Fixed a problem with RTAS plugin window position in certain dual-monitor setups by Julian Storer 2009-11-16 16:50:10 +0000
  • 1c3b7fe2f8 Added missing file from last commit by Julian Storer 2009-11-16 15:23:11 +0000
  • 802f850015 Changed the way Mac messaging works internally to avoid shutdown problems with plugins. Updated some iPhone code. Fixed a CoreGraphics line drawing problem. by Julian Storer 2009-11-16 15:19:16 +0000
  • 9929d71c27 Fixed an image loading bug by Julian Storer 2009-11-13 20:13:50 +0000
  • d779fa9759 The first working check-in of an iPhone build! Added an iPhone project for the normal juce demo, which runs.. although it isn't exactly designed for a hand-held form factor! Also in this check-in is support for creation of custom Mac MIDI input and output devices, and an option to load URLs with the QuickTimeComponent by Julian Storer 2009-11-13 16:17:22 +0000
  • 6c66134173 Updated the VC6 juce project file to include the latest files by Julian Storer 2009-11-13 15:57:33 +0000
  • 1b0e85d187 Added a File::invokedExecutableFile key that can be used to find the name of the file or link that launched the exe by Julian Storer 2009-11-13 15:56:29 +0000
  • ca727ec2bb Improvements to path rendering and fix for PathStrokeType generating incorrect paths for some shapes. Added OSX10.4 compatibility for new new typeface classes. by Julian Storer 2009-11-10 17:45:06 +0000
  • dc83bf01e1 oops - the last check-in broke some path rendering code.. this fixes it. by Julian Storer 2009-11-10 00:31:53 +0000
  • fea4fb8575 Fixed a typo in some ALSA code by Julian Storer 2009-11-09 23:01:46 +0000
  • 4d000ff593 Rewrote EdgeTable so that it now always renders in perfect quality - this makes the old oversampling quality options defunct and I've removed them. by Julian Storer 2009-11-09 22:46:18 +0000
  • 405d934e68 Massive, long-overdue spring-cleaning and refactoring of the LowLevelGraphicsContext, Typeface and Font classes. Functions such as glyph rendering can now be handled directly by a native graphics context (and glyph rendering is now implemented natively on the Mac). The Typeface class is now an abstract base class with much minimal functionality, and platform-specific subclasses are used for font loading. A new class CustomTypeface lets you load and save typefaces in the old juce binary typeface format. For most people, these changes probably won't require you to alter your code, but you might need to change a few classnames in your code if you're using typefaces directly. by Julian Storer 2009-11-09 12:00:18 +0000
  • e53a0efb56 Fix for some audio plugin window focus issues. Changed the Jucer to use a CodeEditorComponent for its preview panel. by Julian Storer 2009-11-09 11:50:21 +0000
  • 69321e8b33 Tarted up the fonts demo page; added a scrollbar thickness to the code editor; improved the colour selector's rendering speed. by Julian Storer 2009-11-09 11:30:58 +0000
  • dad610b948 Added a getHighlightedFile method to the FileBrowserComponent by Julian Storer 2009-11-09 11:21:18 +0000
  • cd88571081 Added methods Graphics::setTiledImageFill and Graphics::setGradientFill - these are now the preferred way to specify a fill type, rather than using the Brush classes (which will probably disappear at some point in the future). Also refactored and renamed some DrawablePath methods, which might require a few tweaks to your code if you use this class. by Julian Storer 2009-11-05 17:59:44 +0000
  • 0b2f0f086c added a code-editor demo page to the juce demo and added some comments to the code editor classes by Julian Storer 2009-11-04 13:23:42 +0000
  • f744dd9062 Initial check-in of a CodeEditorComponent class. Also tweaked ProgressBar to stop it sometimes moving too slowly. by Julian Storer 2009-11-03 18:25:04 +0000
  • 1e1c9944c9 Removed methods Graphics::getCurrentFont and Graphics::getCurrentColour, because these methods will become impossible for future native drawing contexts. This required a couple of minor tweaks to LookAndFeel and Drawable methods. Also fixed native CoreGraphics drawing of transparent windows. by Julian Storer 2009-10-31 15:26:22 +0000
  • 3c32eda726 oops - forgot to add a couple of new files to the last check-in.. by Julian Storer 2009-10-31 12:47:52 +0000
  • ebeaa40689 Initial version of a CoreGraphics-based rendering context for the mac. Also an intial version of JACK support for linux. by Julian Storer 2009-10-31 11:15:12 +0000
  • 2d0600d594 fixed a missing TableListBox method; added a workaround to the mac code to ensure correct behaviour when repaint() is called during a paint() method by Julian Storer 2009-10-29 15:58:05 +0000
  • facb48b04c tweak to RTAS shutdown for PT8; added tooltips for the TableListBox; started adding some iphone audio code (not yet usable) by Julian Storer 2009-10-29 13:36:47 +0000
  • 2e0808b1c5 fixed a build error, and tweaked menu bars to use the MenuBarComponent's look and feel for its popup menus by Julian Storer 2009-10-28 09:00:11 +0000
  • 5b7f6f0f23 Minor fix for the linux build, and small fix for TreeView dragging logic by Julian Storer 2009-10-27 17:04:51 +0000
  • 7e56a7514c Fix for AU bundle paths; added column width access to TableHeaderComponent, made FileBasedDocument do extra checking about file overwriting by Julian Storer 2009-10-21 19:31:46 +0100
  • 1c01e897d9 Fixed a typo in JUCEApplication that caused a small leak by Julian Storer 2009-10-13 14:14:12 +0100
  • 409c952072 Added a method to String and fixed a glitch in the win32 amalgamated build by Julian Storer 2009-10-13 09:59:54 +0100