Julian Storer
|
2343dcdcee
|
Added Linux contributions for headless messaging, clipboard and better shm support.
|
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
|
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.
|
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 |
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
|
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
|
15 years ago |
jules
|
2fee27c757
|
Updated the text of the copyright/license blurb at the top of each source file.
|
15 years ago |
jules
|
ddc16536a3
|
Changed the Linux native code files to use the same amalgamation file structure as the mac and windows ones do; made a small adjustment to the amalgamator, and removed some redundancy from the amalgamated files (if you are amalgamating code yourself, please build a new copy of the amalgamator, as the old one won't work correctly on this new code); fixed a few minor build warnings in linux
|
16 years ago |
jules
|
1ccb175762
|
tidied up whitespace in files
|
16 years ago |
jules
|
f9f3351839
|
fix for linux midi output; fix for NSViewComponent; tidying up of demo audio plugin; fixed backslashes in the jucer's generated code; added addOrReplaceSorted method to ReferenceCountedArray; added an option to ThreadPool::removeAllJobs.
|
16 years ago |
jules
|
c94bd62519
|
fix for javascript parameter order in IE browser plugins; fix for linux x64 icons
|
16 years ago |
jules
|
6fe090f2cb
|
Added code to make the mac detect its executable file, removing the need for the juce_setCurrentExecutable function, and removed this function from the codebase.
|
16 years ago |
jules
|
18533f9984
|
changed the parameters to the keyStateChanged method, to sort out a problem with texteditor key interception that was otherwise impossible to fix. Made a couple of changes to the Mac NPAPI window positioning code; got rid of a couple of win32 warnings; added a couple of missing JUCE_API declarations; small fix to DragAndDropContainer; allowed var objects to be cast to a string.
|
16 years ago |
jules
|
04f0303b84
|
small fixes for fonts on mac and win32; changed Thread::setPriority to return a bool; added a File::getVolumeTotalSize() method; added a freetype path to the linux makefile; tweaked the jucer to make cached image variable names more readable; tweaked the hit-spots in the resizable borders of very small windows; moved ResizableWindow background painting into the LookAndFeel; made the broadcast flag of a DatagramSocket an optional constructor parameter;
|
16 years ago |
jules
|
ca19733aad
|
fixed broken CD reader code on linux; added support for broadcasting in DatagramSockets; small fix for String::replaceSection
|
16 years ago |
jules
|
253e713d02
|
added URL stream length detection to Mac/win32; fixed a small linux audio bug; added some callbacks to Label to report when its text editor is shown or hidden; fixed a mouse-wheel problem with some types of slider; fixed a small SVG parsing error;
|
16 years ago |
jules
|
453646d068
|
Whitespace clean-ups.
|
16 years ago |
jules
|
749c2be6cb
|
Tweaks to VST for building on linux; improved linux code for detecting the executable's file path; small changes to linux window hinting; change on the Mac to fix app shutdown when the app isn't currently active; added Mac support for 3rd mouse button; fix to AudioDeviceManager thread safety when changing midi output devices; fix to DrawableButton text; made ComponentAnimator a change broadcaster to send messages when animations stop and start; small fix to DatagramSocket.
|
16 years ago |
jules
|
909be095d8
|
Fixed a typo in linux audio and added some hints to linux window resizing; fixed the WavAudioFormat to make it read stereo files correctly into a mono buffer; Fixed an infinite loop in the vst plugin format
|
16 years ago |
jules
|
7dd28c93e2
|
linux window z-order fix; small change to make audio plugin host demo compile; fix for assembly language in graphics rendering on gcc.
|
16 years ago |
jules
|
829f0c8dde
|
Small fix to ALSA audio; small fix for Linux window border sizes; fix to stop win32 incorrectly making windows always-on-top; added a constructor for MidiBuffer.
|
16 years ago |
jules
|
787a4e6de9
|
A handful of small fixes and whitespace clean-ups. Added a parameter to the DatagramSocket::read to specify whether the operation should block.
|
16 years ago |
jules
|
7fc53bff30
|
Fix for a linux build error; CoreAudio fix for mac; added some notes to the plugin framework docs
|
16 years ago |
jules
|
26e6cabe3d
|
Improved the performance of MemoryOutputStream; fixed a process priority problem in VST; made TreeViews repaint when they get enabled or disabled; small fixes to ActiveXControlComponent and QuickTimeMovieComponent; implemented File::getVolumeName() for mac;
|
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
|
68dba8605d
|
Fixed Mac font kerning problem. Fixed Mac native window maximising and getting rid of menus when a a native title bar is clicked. Added an option for kiosk mode that stops the main menu and dock popping up. Small tweak to SparseSet to try to avoid a compile problem in GCC4.3.3. Small fix to file relative pathname parsing.
|
16 years ago |
jules
|
390d7f69ef
|
Sorted out URL launching on the Mac, added a tweak for linux audio devices with lots of channels, and added a missing JUCE_API marker to AudioDeviceSetup.
|
16 years ago |
jules
|
b89cc9dcc7
|
Added a File::getVersion() method
|
16 years ago |
jules
|
4c1b6ce430
|
Added method String::containsNonWhitespaceChars(); changed the XML parser to not strip whitespace from around text elements, and also added XmlDocument::setEmptyTextElementsIgnored() to make it optionally keep all whitespace-only text elements. Added methods File::containsSubDirectories(), WebBrowserComponent::refresh(), TreeView::deleteRootItem(). Ironed out a possible bug with buttons crashing when deleted during a keypress callback. Changed pixel ordering to sort out transparent windows on PPC macs. Also fixed a mac AU build problem, and removed a couple of gcc warnings.
|
16 years ago |
jules
|
835b66084d
|
Rearranged the default font mechanism so that the LookAndFeel class has a chance to create custom typefaces for global use.
|
16 years ago |
jules
|
d85394d1bd
|
whitespace clean-up
|
16 years ago |
jules
|
c91e214808
|
Added a couple of methods to the File class: File::getLinkedTarget() and File::moveToTrash(). Also fixed a typo in QT headers, an overflow in BufferingAudioSource, removed a few linux warnings, and had another attempt at a reliable working screensaver-disabler on windows.
|
16 years ago |
jules
|
ec87ea494c
|
added support for sysexes to the VST plugin/hosting. Also tweaked URL::isProbablyAWebsiteURL(), and fixed a couple of mac build problems.
|
16 years ago |
jules
|
c1a1169059
|
obscure linux midi bugfix
|
16 years ago |
jules
|
1601daa2c2
|
Added a Thread::ThreadID type to be used by the Thread::getThreadId() method. Also tidied up a few warnings on OSX.
|
16 years ago |
jules
|
c4da90ef40
|
couple of small ALSA tweaks
|
16 years ago |
jules
|
c0be9b3424
|
|
16 years ago |
jules
|
567fe9b1e7
|
|
16 years ago |
jules
|
d47cf9e8d6
|
|
16 years ago |
jules
|
47cf2369e5
|
|
16 years ago |
jules
|
e06d581ec3
|
|
16 years ago |
jules
|
e2fb55c2ed
|
|
16 years ago |
jules
|
38bdc39e4e
|
|
16 years ago |
jules
|
2abd7b8892
|
|
16 years ago |
jules
|
d0e58c41b0
|
|
17 years ago |
jules
|
762a5bb0f9
|
|
17 years ago |
jules
|
3b59053b2c
|
|
17 years ago |
jules
|
ad56914057
|
|
17 years ago |
jules
|
7e19432cff
|
|
17 years ago |
jules
|
29e2de7fd0
|
cosmetic cleanup
|
17 years ago |