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
|
8 years ago |
hogliux
|
62ac568b77
|
Made sure that colours are updated when the look and feel of a TextEditor changes
|
8 years ago |
luigisambuy
|
ed0c032a01
|
Added a styleChanged flag to enable setText() to take effect after setColor()
|
8 years ago |
jules
|
fcf1683f48
|
Moved a method in LengthAndCharacterRestriction to be public.
|
9 years ago |
Joshua Gerrard
|
854e8af44a
|
Documentation: changed insertText to insertTextAtCaret
|
9 years ago |
jules
|
f8b5da8b1e
|
Minor fixes + cleanups to TextEditor.
|
9 years ago |
jules
|
7edb1b5614
|
Cleaned up some caret code in TextEditor.
|
9 years ago |
hogliux
|
c7b8e77031
|
Update copyright notice
|
9 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).
|
11 years ago |
jules
|
7f6394478a
|
Stripped out some unnecessary boilerplate includes from juce_gui_basics.
|
11 years ago |
jules
|
3d74717349
|
Bit of tidying-up in the Point class, and some spelling fixes in comments.
|
11 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.
|
12 years ago |
jules
|
c16c3a7c28
|
Fixed some documentation and minor GCC warnings. Fixed a JACK bug that would have mixed up the input/output channels.
|
12 years ago |
jules
|
b305389d46
|
Changes for DLL build.
|
12 years ago |
jules
|
a180c6c358
|
Added a class TextEditor::InputFilter to perform custom filters on text input.
|
12 years ago |
jules
|
9281759612
|
Added method TextEditor::setEscapeAndReturnKeysConsumed().
|
12 years ago |
jules
|
e3537ba57a
|
Cleaned out some defunct ComponentBuilder code.
|
12 years ago |
jules
|
00ff36f0e6
|
Introjucer: some linux settings tweaks.
|
12 years ago |
jules
|
4268ed7453
|
Introjucer: better tool windows. Font fixes.
|
12 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.
|
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
|
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
|
59f78f4cbe
|
Sorted out some mac window maximising and ordering peculiarities. Fix for introjucer Xcode project generation. Added AudioIODeviceType::Listener class for monitoring audio device insertion/removal events (implemented for CoreAudio and WASAPI). Made TextEditor update its Value when it loses focus.
|
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
|
df2526e33b
|
New TextEditorKeyMapper class added to simplify text navigation key interpretation. Removed a problematic spinlock from the Timer code. Added an error callback to AudioIODeviceCallback.
|
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
|
453425ccd5
|
win32 paint fix. Initial steps towards supporting win32 IME. Fix for win32 NamedPipe hang.
|
14 years ago |