1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00
Commit graph

92 commits

Author SHA1 Message Date
jules
a0ed9c96e4 New class: ConcertinaPanel. 2012-08-05 22:09:26 +01:00
jules
897ee9017b C++ tokeniser fix. 2012-08-05 18:05:30 +01:00
jules
4f206a3f3a Version bump. 2012-07-24 17:04:29 +01:00
jules
e6e46b3187 Code editor fix for large line numbers. 2012-07-24 16:30:14 +01:00
jules
87db662f29 Introjucer: code editor improvements, icon class reshuffle. 2012-07-24 15:45:44 +01:00
jules
c2697bdce9 Code editor fix for long lines. 2012-07-24 10:37:33 +01:00
jules
d4ae8f3d55 Minor optimisations. New method OwnedArray::insertArray(). Changed some CodeDocument inner class constructors to use references rather than pointers. 2012-07-23 07:54:23 +01:00
jules
c16783f645 Minor code editor optimisation. 2012-07-22 14:48:14 +01:00
jules
75d72d6323 Version number bump. 2012-07-21 14:39:29 +01:00
jules
8ee1897916 Introjucer: some code editor fixes and functionality. 2012-07-20 20:57:39 +01:00
jules
391e99443e Added a method Desktop::getMouseWheelMoveCounter(), and made the existing getMouseButtonClickCounter() method non-static. 2012-07-15 13:59:13 +01:00
jules
d78b10edb3 Introjucer: code indent tweaks. 2012-07-15 11:56:10 +01:00
jules
dc9e0cb9bb Added some new versions of Graphics::drawText and drawFittedText that take Rectangle parameters. 2012-07-14 11:54:29 +01:00
jules
b1d73f2086 Minor internal refactoring and clean-ups. 2012-07-14 10:02:45 +01:00
jules
5a69cc6ce2 Internal tidying-up. 2012-07-13 19:31:00 +01:00
jules
df729be74a Cleaned-up class inheritance visibilities and encapsulation for some internal classes. 2012-07-12 14:10:46 +01:00
jules
3ddc6dd43d New class: DropShadow, and a complete refactoring of the way shadows are rendered. The DropShadowEffect and DropShadower classes now take a DropShadow object to describe their shadow parameters, instead of the raw numbers. 2012-07-11 21:07:47 +01:00
jules
7afbc077e7 Version update. 2012-07-11 10:19:09 +01:00
jules
b95258cb20 C++ syntax tokeniser fix. 2012-07-10 10:29:50 +01:00
jules
25e7361f2c Refactored some TreeView key handling. Introjucer: now restores the last set of open documents for a project. 2012-07-08 15:05:55 +01:00
jules
39c974194e Added a CodeEditorComponent::State class. 2012-07-07 21:09:49 +01:00
jules
591e89cd87 Replaced the badly-named method Array::removeValue() with two new methods: removeFirstMatchingValue() and removeAllInstancesOf(). If you call the old method anywhere, you can just replace any calls with removeFirstMatchingValue(), which does the same job, but whose name makes it clear that not all instances of the value will be removed. 2012-07-07 21:09:10 +01:00
jules
27f1901fe6 Refactored Path::addBubble, BubbleMessageComponent and BubbleComponent classes to work better and avoid duplicated code. 2012-07-07 15:13:46 +01:00
jules
9e3cd767aa Introjucer: minor internal changes. 2012-07-06 10:15:59 +01:00
jules
6758ce0bc9 CodeEditorComponent improvements and TextEditor menu refactoring. 2012-07-04 20:34:47 +01:00
jules
d3bb7fb9cc Added line-numbering to the CodeEditorComponent. 2012-07-04 13:11:25 +01:00
jules
f824e99f2d Introjucer: refactoring and addition of appearance settings window for editor colours + fonts. 2012-07-04 10:43:18 +01:00
jules
767589710b Minor syntax tokeniser changes. 2012-07-03 10:12:48 +01:00
jules
3974e09c9f Workaround for a GCC problem. 2012-06-26 20:40:31 +01:00
jules
f5d72f1406 Removed the style parameter from Graphics::setFont(), because if the current font doesn't support that style, it'll give the wrong results. If this breaks your code, just wrap your arguments in a Font constructor, e.g. g.setFont (Font (mySize, myStyle)); 2012-06-26 13:18:03 +01:00
jules
25303b158a Refactored the classes used for the CodeEditorComponent colour-schemes. 2012-06-25 21:16:19 +01:00
jules
943a8ef757 Added a get() method to ReferenceCountedObjectPtr. 2012-06-02 08:30:08 +01:00
jules
07a774adcc Fix for GCC syntax problem. 2012-05-31 09:01:39 +01:00
jules
dab9295611 Minor refactoring of obj-C internals. 2012-05-30 14:35:40 +01:00
jules
ac1d6955e7 Rewrote all internal OSX obj-C classes as dynamically-created classes. A side-effect of this is that plugins will no longer suffer from obj-C name-collision problems, and the old JUCE_ObjCExtraSuffix value is no longer needed. 2012-05-29 10:30:41 +01:00
jules
437f4d1e63 Minor change to BubbleMessageComponent layout. 2012-05-25 16:50:47 +01:00
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. 2012-05-25 16:42:36 +01:00
jules
cb169b251d Altered BubbleMessageComponent to take an AttributedString rather than a plain String, for more control over its layout. 2012-05-25 10:16:55 +01:00
jules
53b1e351cf Changed the return values of some virtual methods in FileBasedDocument - Strings and File objects are now non-const, and the load/save functions return a Result object rather than a string. 2012-05-23 21:25:28 +01:00
jules
5800910636 Fixed a windows build error. 2012-05-22 19:46:45 +01:00
jules
220114d04b Added a method RecentlyOpenedFilesList::registerRecentFileNatively() and updated the introjucer to register its recent documents with the OS. 2012-05-22 16:24:06 +01:00
jules
df5d50bcd8 Version number bump. 2012-04-16 17:54:42 +01:00
jules
d7df53bf2e Oops! Fixed a typo in the last check-in. 2012-04-16 15:42:14 +01:00
jules
abf8f59df4 Fix for OSX VST host windowing order problem. 2012-04-16 13:58:29 +01:00
jules
3a91979ea8 Version bump. 2012-04-11 11:06:43 +01:00
jules
1f95f54089 Purged some warnings. 2012-04-10 10:29:14 +01:00
jules
8de9d9c6da Version number bump. Clean-ups. 2012-03-30 15:40:17 +01:00
jules
59669e8bec Thread-local value fix for plugins on XP. Android startup tweaks. Minor component changes. 2012-03-27 11:04:27 +01:00
jules
56bbab1537 (automated whitespace clean-up) 2012-03-20 16:00:06 +00:00
jules
49870de020 Added a bit of extra functionality to WindowsRegistry. Linux: couple of fixes for fullscreen, file chooser, and a bit of tidying up. Internal refactoring in NSViewComponent. 2012-03-18 16:41:03 +00:00