jules
1b9a60e52c
Added a templated type to the RectangleList class. If you've used this class and these changes cause syntax errors, all you need to do to your code is to replace "RectangleList" with "RectangleList<int>" and everything will work as it did before.
11 years ago
jules
5a1112ab94
Updated the format of the header include guard macros.
11 years ago
jules
eb646f8c42
Deprecated some old bool notification mode parameters, and replaced them with NotificationType values in the ComboBox and Button classes.
12 years ago
jules
2091e8dfc8
Replaced a few Justification references.
12 years ago
jules
c75a7300f5
Added some 'override' modifiers to overridden methods.
12 years ago
jules
2af7585fc2
spelling fixes
12 years ago
jules
03c2801f3f
Copyright header update in all module files. juce_core modules are now ISC licensed. All other modules are GPLv2/3/AGPLv3
12 years ago
jules
c7506df13f
Changed some pass-by-references to pass-by-value to improve compiler optimisation.
12 years ago
jules
eeb59c57a9
Documentation fixes.
12 years ago
jules
7bc0cf13b1
Added method Component::mouseMagnify(), to respond to pinch-to-zoom gestures. Supported in OSX and (untested) Windows.
12 years ago
jules
b627a75c21
Minor docs updates. Added a method to Rectangle.
12 years ago
jules
f9e31ab7a9
Documentation pedanticism.
12 years ago
jules
273662c583
Spelling fix.
12 years ago
jules
3a9cad8f2c
Enabled some code that was disabled for mingw, but which will work with the latest version.
12 years ago
jules
0ceeb573d8
Minor changes to avoid pedantic compiler warnings.
12 years ago
jules
ba0cb5f2a9
mouseUp behaviour fix when components are modal.
12 years ago
jules
3831af62ef
Updated CodeEditorComponent to act as an ApplicationCommandTarget
12 years ago
jules
fb29acf1fa
Introjucer: minor internal stuff.
13 years ago
jules
87175c91f5
Changed the signature of MouseListener::mouseWheelMove() to take a struct MouseWheelDetails rather than raw floats. This will require updates in source code that uses mouse-wheel callbacks, but provides some new abilities, including a flag to indicate inverted wheel direction.
13 years ago
jules
72db44a138
Removed an old VC6 workaround from Component::findParentComponentOfClass. If you were using its old dummy parameter, just tweak your code to call it using a templated type instead.
13 years ago
jules
28fbf4cb64
Relaxed some assertions in Component to make it easier to load SVG on threads. Minor internal tinkering with Path class.
13 years ago
jules
16f5684bd9
Introjucer: added a button for changing the copying mode of all modules. Added support for kiosk mode in iOS.
13 years ago
jules
8f4548745a
Minor introjucer rejigging.
13 years ago
jules
36bd285c4b
Viewport component listener fix. Minor clean-ups.
13 years ago
jules
15375dd223
Internal work on the ComponentBuilder system.
13 years ago
jules
cd0683ef4d
Tidied up a few return types.
13 years ago
jules
ea6df1c8f1
New internal class CachedComponentImage, which is used internally to manage component buffering. I've used this to rebuild the OpenGLComponent's rendering algorithm so that it now supports sub-components and can have 2D content drawn in its paint method. Updated the openGL demo to show this in action.
13 years ago
jules
5435bfcb26
win32 revealToUser improvement. TextEditor fix. Supprt for cut/copy/paste shortcuts when OSX file browsers are visible. iOS embedded window positioning fix.
13 years ago
jules
fee33f45fd
Added Component::findChildWithID
13 years ago
Julian Storer
2c328dfedc
Changed some return types from being const objects to non-const objects (for better c++11 compliance in future). This may mean that you need to remove the 'const' from your own code if you override the virtual methods that have changed.
13 years ago
Julian Storer
89455b18cb
Added a callback method to FileBrowserListener.
13 years ago
Julian Storer
c65c07312d
Small fixes for Viewport and Identifier.
13 years ago
Julian Storer
b70e0a28d2
First check-in of the "jucequake": a major re-organisation of the library to break it up into modules. For more details about this, see the website forum..
13 years ago
Julian Storer
b317b47533
Multi-touch handling changes for Component class. 64-bit VST keypress fix.
14 years ago
Julian Storer
67e22bbb56
Added selection to treeview persistent state. Minor optimisations to AudioThumbnail. Added FTP password support for win32 networking. Cleaned up some file dependencies and altered some return value types to allow better c++0x forwarding behaviour.
14 years ago
Julian Storer
b047d9be53
More 'nullptr' updates and minor clean-ups.
14 years ago
Julian Storer
f04309f44a
Added fake placeholder versions of the new c++0x 'noexcept' and 'nullptr' keywords, and altered the library classes to use these instead of 'throw()' and '0'. This shouldn't make any difference at all to existing code, but will enable better static checking with future c++0x compilers.
14 years ago
Julian Storer
5d98779f19
Updated the date in the copyright notice.
14 years ago
Julian Storer
3f97694143
Added a Component::setBounds method to take an expression. Fix for deleting CoreAudio devices.
14 years ago
Julian Storer
2a86002b31
New class: ResizableEdgeComponent.
14 years ago
Julian Storer
2d10b0b43d
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.
14 years ago
Julian Storer
f01340e4aa
Lots of refactoring of the Expression and relative coordinate classes. This has changed some of the semantics that were in place, so any early adopters who had been playing with RelativeRectangles may need to check their expressions.
14 years ago
Julian Storer
e7f4dac9f9
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.
14 years ago
Julian Storer
e05f6a2b95
Improvements to ComponentMovementWatcher to check visibility. TopLevelWindow activation fix. Changed MidiMessage default constructor to an empty sysex.
14 years ago
Julian Storer
c1d8ac22df
New Component::setBounds() method using a RelativeRectangle.
Added Justification::appliedToRectangle() and RectanglePlacement::appliedTo(). Removed a behavioural oddity from TopLevelWindow which brought them to the front when made visible. More RelativeRectangle development. AU wrapper now detects app shutdown and closes its UI.
14 years ago
Julian Storer
e2ef26e91c
Added an alertwindow font setting to the lookandfeel class. Made sure the ComponentListener::componentChildrenChanged is called when component z-order changes. Fix for CoreMidi output timestamps.
14 years ago
Julian Storer
2c669674ad
Fix for listbox and table multi-selection. Internal updates for relative positioning. Additions to Typeface class to allow hinted subclasses.
14 years ago
Julian Storer
faecab9ca5
Refactoring of Drawables with new class MarkerList. Fixes for Mac 10.5 SDK includes and minor change to win32 repainting.
14 years ago
Julian Storer
9973f5a81e
New class ComponentBuilder, and some refactoring of Drawables to use it.
14 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.
14 years ago