|  jules | dd4230586f | Noticed that we still had some template whitespace workarounds for older compilers, so tidied them up | 8 years ago | 
				
					
						|  jules | d00a459480 | Added method TextEditor::setJustification() | 8 years ago | 
				
					
						|  jules | 6290e95152 | Whitespace | 8 years ago | 
				
					
						|  jules | c309a5b244 | Avoided forcing TextEditor to be always opaque | 8 years ago | 
				
					
						|  jules | eda613c6db | Moved all "namespace juce" declarations from module headers to the individual .h and .cpp source files. This makes life a lot easier for Intellisense and other IDE autocompletion tools | 8 years ago | 
				
					
						|  ed | 919e3e36ec | Added TextEditor::applyColourToAllText() method | 8 years ago | 
				
					
						|  hogliux | b5afccc37c | Updated file headers and the README with the JUCE 5 license | 8 years ago | 
				
					
						|  jules | d6bf2e8cf9 | Added line spacing to TextEditor and methods to set/get the current line spacing | 8 years ago | 
				
					
						|  hogliux | 2da1bc5f41 | Replace include guards with "#pragma once" | 8 years ago | 
				
					
						|  tpoole | 255dc1d1ba | Fixed documentation typo | 9 years ago | 
				
					
						|  hogliux | 62ac568b77 | Made sure that colours are updated when the look and feel of a TextEditor changes | 9 years ago | 
				
					
						|  luigisambuy | ed0c032a01 | Added a styleChanged flag to enable setText() to take effect after setColor() | 9 years ago | 
				
					
						|  jules | fcf1683f48 | Moved a method in LengthAndCharacterRestriction to be public. | 9 years ago | 
				
					
						|  Joshua Gerrard | 854e8af44a | Documentation: changed insertText to insertTextAtCaret | 10 years ago | 
				
					
						|  jules | f8b5da8b1e | Minor fixes + cleanups to TextEditor. | 10 years ago | 
				
					
						|  jules | 7edb1b5614 | Cleaned up some caret code in TextEditor. | 10 years ago | 
				
					
						|  hogliux | c7b8e77031 | Update copyright notice | 10 years ago | 
				
					
						|  jules | db4a0ffec5 | Added method UndoManager::getCurrentTransactionName | 10 years ago | 
				
					
						|  jules | 395cf7ac46 | Added a small comment to TextEditor | 10 years ago | 
				
					
						|  jules | ac8bc1a7b4 | Added methods to Label and TextEditor to specify the type of virtual keyboard they require. | 10 years ago | 
				
					
						|  jules | 426f5a7174 | Added a method TextEditor::getInputFilter | 11 years ago | 
				
					
						|  jules | 542c4bc8eb | Refactored some TextEditor allocation. | 11 years ago | 
				
					
						|  jules | bea7b83cb8 | Renamed and refactored the LookAndFeel classes. The LookAndFeel class is now an abstract base-class, and there are 3 concrete subclasses you can use. These are LookAndFeel_V1 (replaces OldSchoolLookAndFeel), LookAndFeel_V2 (replaces what was the normal LookAndFeel class) and LookAndFeel_V3 (this is a new style, taken from the Introjucer's L+F). | 12 years ago | 
				
					
						|  jules | 7f6394478a | Stripped out some unnecessary boilerplate includes from juce_gui_basics. | 12 years ago | 
				
					
						|  jules | 3d74717349 | Bit of tidying-up in the Point class, and some spelling fixes in comments. | 12 years ago | 
				
					
						|  jules | 5a1112ab94 | Updated the format of the header include guard macros. | 12 years ago | 
				
					
						|  jules | 4fc8fbaef1 | Added some more override decorators. | 12 years ago | 
				
					
						|  jules | 5918d039ce | Added some "override" annotations. | 12 years ago | 
				
					
						|  jules | 2329e63f20 | Converted a few Colour references to pass-by-values. | 12 years ago | 
				
					
						|  jules | c75a7300f5 | Added some 'override' modifiers to overridden methods. | 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 | d8454fc2b8 | Added missing JUCE_API flags. | 12 years ago | 
				
					
						|  jules | 9eb3c1955a | Added some missing JUCE_API modifiers. | 12 years ago | 
				
					
						|  jules | 0ceeb573d8 | Minor changes to avoid pedantic compiler warnings. | 13 years ago | 
				
					
						|  jules | c16c3a7c28 | Fixed some documentation and minor GCC warnings. Fixed a JACK bug that would have mixed up the input/output channels. | 13 years ago | 
				
					
						|  jules | b305389d46 | Changes for DLL build. | 13 years ago | 
				
					
						|  jules | a180c6c358 | Added a class TextEditor::InputFilter to perform custom filters on text input. | 13 years ago | 
				
					
						|  jules | 9281759612 | Added method TextEditor::setEscapeAndReturnKeysConsumed(). | 13 years ago | 
				
					
						|  jules | e3537ba57a | Cleaned out some defunct ComponentBuilder code. | 13 years ago | 
				
					
						|  jules | 00ff36f0e6 | Introjucer: some linux settings tweaks. | 13 years ago | 
				
					
						|  jules | 4268ed7453 | Introjucer: better tool windows. Font fixes. | 13 years ago | 
				
					
						|  jules | cd5893d6e8 | Removed the Scrollbar's setButtonVisibility method, and instead added LookAndFeel::areScrollbarButtonsVisible() | 13 years ago | 
				
					
						|  jules | 6758ce0bc9 | CodeEditorComponent improvements and TextEditor menu refactoring. | 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 | 15375dd223 | Internal work on the ComponentBuilder system. | 13 years ago | 
				
					
						|  jules | e0aa00181a | Minor tweaks to TextEditor, Message. | 13 years ago | 
				
					
						|  jules | cd0683ef4d | Tidied up a few return types. | 14 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. | 14 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.. | 14 years ago |