Julian Storer
|
24c60f447c
|
Updated iphone project with new files.
|
15 years ago |
Julian Storer
|
0744c0db37
|
New class: TemporaryFile, which manages a temporary file, deleting it when it goes out of scope. Also fixes for compile problems in VC7.
|
15 years ago |
Julian Storer
|
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.
|
15 years ago |
Julian Storer
|
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.
|
15 years ago |
Julian Storer
|
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.
|
15 years ago |
Julian Storer
|
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.
|
15 years ago |
Julian Storer
|
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.
|
15 years ago |
Julian Storer
|
24a121e4dd
|
Fixed a small streaming bug, tidied up some warnings.
|
15 years ago |
Julian Storer
|
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.
|
15 years ago |
Julian Storer
|
d9dc6b1cfc
|
New class: ValueTree for storing undoable structured data. Also added tooltip support to the ListBoxModel.
|
15 years ago |
Julian Storer
|
15c32d3f3a
|
Couple of fixes for the iPhone build
|
15 years ago |
Julian Storer
|
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.
|
15 years ago |
Julian Storer
|
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.
|
15 years ago |
Julian Storer
|
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
|
15 years ago |
Julian Storer
|
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.
|
15 years ago |
Julian Storer
|
f744dd9062
|
Initial check-in of a CodeEditorComponent class. Also tweaked ProgressBar to stop it sometimes moving too slowly.
|
15 years ago |
Julian Storer
|
ebeaa40689
|
Initial version of a CoreGraphics-based rendering context for the mac. Also an intial version of JACK support for linux.
|
15 years ago |
Julian Storer
|
1fc8f483e2
|
Tweaked lots of code to help things compile on the iPhone (still work-in-progress).
|
15 years ago |
Julian Storer
|
3ae9ac0295
|
added some changes to make the core library compile on the iPhone (none of the UI code is done yet). In the process of this, fixed some endianness problems in SystemStats::getMACAddresses, and changed some of the mac code for timing, directory searching, etc to use different APIs internally.
|
15 years ago |
Julian Storer
|
deeb652939
|
fixed a seek bug in the flac reader; added a JucePlugin_TailLengthSeconds setting for plugins; made the colour class limit the HSV values that are passed into it
|
15 years ago |
Julian Storer
|
9aa0c05ac2
|
Complete revamp of the Juce Demo's audio page, to include several tabs of handy demos, including audio recording, synths, playback, audio thumbnails and an automatic round-trip latency detector
|
15 years ago |
Julian Storer
|
a90a65343c
|
whitespace tidying-up
|
15 years ago |
Julian Storer
|
c2e85238c8
|
minor updates for XCode 3.2 compatibility
|
15 years ago |
jules
|
4d16424d9c
|
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.
|
15 years ago |
jules
|
61f0d6903e
|
minor whitespace clean-up
|
16 years ago |
jules
|
ea83c7ee5e
|
Collected all the platform-specific code from the different build folders into a new folder in src/native. Also removed support for OSX10.2
|
16 years ago |
jules
|
13d8703ffc
|
Added the CameraDevice class to allow webcam capture!
|
16 years ago |
jules
|
e24662925d
|
Changed AudioDeviceManager to support multiple simultaneous callbacks - this will break some code, but is easy to change by using AudioDeviceManager::addAudioCallback instead of setAudioCallback. Also added a new variant class 'var' which will be used by future browser-plugin support and scripting.
|
16 years ago |
jules
|
540474d0ce
|
Rewrote MessageManagerLock (again), hopefully now making it bulletproof. Also gave it an extra constructor and changed the threads section of the juce demo to use messagemanagerlocks to animate its components. Stopped using NSLog on the mac because it's unsafe for non-literal strings. Added a bodge to fake italic fonts on the mac if a real italic is unavailable. Added a new class: CallbackMessage, for triggering a custom callback on the event thread. Updated the RTAS plugin build to use the 8.0 version of the SDK. Fixed a problem with ComponentDraggers when working inside a magnifier component.
|
16 years ago |
jules
|
975851d31c
|
Altered the way MessageManagerLocks are applied internally; tweaked ResamplingAudioSource to avoid a DC offset condition; changed AudioUnitPluginFormat to handle null-pointers; added a method to get all the currently modal components as well as just the most recent; changed AlertWindow to allow more customisation by the look and feel; added a few handy methods to Rectangle;
|
16 years ago |
jules
|
08d0621c07
|
whitespace clean-up
|
16 years ago |
jules
|
19f99e6c5c
|
added a missing file to the mac project
|
16 years ago |
jules
|
47cf2369e5
|
|
16 years ago |
jules
|
9d6a41e7f6
|
|
17 years ago |
jules
|
443637831e
|
|
17 years ago |
jules
|
4aaa65f52b
|
|
17 years ago |
jules
|
a6f55829b3
|
|
17 years ago |
jules
|
117b36da19
|
|
17 years ago |
jules
|
8e959a6d78
|
|
17 years ago |
jules
|
0108b2f1d2
|
|
17 years ago |
jules
|
8471edfcd2
|
|
17 years ago |
jules
|
af097645d3
|
|
17 years ago |
jules
|
5ed7520324
|
|
17 years ago |
jules
|
701175832b
|
added the QuickTimeAudioFormat class
|
17 years ago |
jules
|
7bd917a933
|
|
17 years ago |
jules
|
346c3de206
|
|
17 years ago |
jules
|
a9e726681c
|
|
17 years ago |
jules
|
e5dc936c5b
|
|
17 years ago |
jules
|
60e1be176e
|
added FileDragAndDropTarget class and rewrote all the drag handling code
|
17 years ago |
jules
|
8229d215a6
|
Added the AudioProcessor and related classes to the source tree.
|
17 years ago |