Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-06-15 | Simplify direct access using Scintilla messages and avoid call layers. | nyamatongwe | 1 | -0/+15 | |
2013-06-15 | Fix insertText: of ScintillaView to directly call ScintillaCocoa since ↵ | nyamatongwe | 1 | -1/+1 | |
insertText of InnerView was replaced with insertText:replacementRange: to implement NSTextInputClient in [df4058]. | |||||
2013-05-19 | The convertRectToScreen: message was introduced in 10.7 so use ↵ | nyamatongwe | 1 | -2/+9 | |
convertBaseToScreen: call on 10.6. convertBaseToScreen: was deprecated in 10.7. | |||||
2013-05-04 | Replacing raw pointers and allocations with std::string and std::vector. | nyamatongwe | 1 | -14/+6 | |
Don't check result of new as failures throw an exception. | |||||
2013-04-24 | Feature: [feature-requests:#987]. Cocoa user interface validation. | nyamatongwe | 1 | -0/+22 | |
2013-04-17 | Remove method no longer needed due to change from NSTextInput to ↵ | nyamatongwe | 1 | -8/+0 | |
NSTextInputClient. | |||||
2013-04-17 | Switch from implementing NSTextInput to its replacement NSTextInputClient | nyamatongwe | 1 | -7/+31 | |
NSTextInput is slated for deprecation and NSTextInputClient allows the selection of accented characters through pressing and holding the base key. | |||||
2013-04-17 | Implement firstRectForCharacterRange so that composition popups appear near ↵ | nyamatongwe | 1 | -3/+28 | |
insertion. | |||||
2013-04-17 | Restore undo collection after sequence of composition actions by only ↵ | nyamatongwe | 1 | -4/+6 | |
remembering undo collection state when switching to composition, not when composition changed. | |||||
2013-04-17 | When setting composition text, correctly select the indicated text by ↵ | nyamatongwe | 1 | -4/+8 | |
converting range to bytes. | |||||
2013-04-09 | Fix problems with input composition that could stop undo working. | nyamatongwe | 1 | -0/+5 | |
2013-03-26 | Detect resizes on the ScintillaView so that text is rewrapped. | nyamatongwe | 1 | -1/+4 | |
2013-03-15 | Use an NSScrollView on Cocoa for kinetic scrolling and hiding scrollbars ↵ | nyamatongwe | 1 | -181/+171 | |
unless wanted. Also affects platform-independent code. | |||||
2013-03-15 | Removed owner property as it is not used. | nyamatongwe | 1 | -1/+0 | |
2013-03-10 | Extract Window::Cursor enum -> NSCursor* mapping so can be reused. | nyamatongwe | 1 | -26/+27 | |
2013-03-10 | Fix spelling in comments. Add missing comment. | nyamatongwe | 1 | -3/+3 | |
2013-02-24 | Less intense version of previous change: just mark the view for drawing ↵ | nyamatongwe | 1 | -1/+1 | |
instead of drawing. | |||||
2013-02-24 | Fix problem where abandoned paints may not cause redraw. | nyamatongwe | 1 | -1/+3 | |
2013-01-30 | Type casts so will build in std=c++11 mode. | nyamatongwe | 1 | -4/+4 | |
2013-01-10 | Removed dead stores. | nyamatongwe | 1 | -2/+2 | |
2013-01-10 | Add a replace method and a parameter for backwards search. | nyamatongwe | 1 | -23/+166 | |
From Mike Lischke. | |||||
2013-01-10 | Turn off undo collection for IME composition. | nyamatongwe | 1 | -16/+35 | |
From Mike Lischke. | |||||
2013-01-04 | When setting a font name, set first 128 styles insted of 32 as will | nyamatongwe | 1 | -1/+1 | |
work for more lexers. From Mike Lischke at Oracle. | |||||
2013-01-04 | Implement a delegate for Scintilla notifications. | nyamatongwe | 1 | -1/+13 | |
From Mike Lischke at Oracle. | |||||
2012-09-08 | Fix extra release of info bar. | nyamatongwe | 1 | -1/+0 | |
2012-09-06 | Stop setting the save point from calls that should only be reading. | nyamatongwe | 1 | -2/+0 | |
2012-08-24 | Ensure abandoned paints cover full area by using NSView display instead of ↵ | nyamatongwe | 1 | -1/+3 | |
trying to draw more within initial drawing context. | |||||
2012-08-14 | Drop notifications so not sent after ScintillaView freed. | nyamatongwe | 1 | -0/+1 | |
2012-07-29 | Decrease sensitivity of pinch-zoom. From Chinh Nguyen. | nyamatongwe | 1 | -7/+12 | |
2012-06-07 | Protect against APIs only available on 10.6+ when building for 10.5. | nyamatongwe | 1 | -0/+2 | |
2012-03-13 | Change name of the 'layout' method of ScintillaView and InfoBar to ↵ | nyamatongwe | 1 | -6/+6 | |
'positionSubViews' as 'layout' has been added to their superclass NSView in OS X 10.7. The existing 'layout' method interfered with the new automatic layout feature. | |||||
2012-03-01 | Enable basic pinch zoom. From Matthew Brush. | nyamatongwe | 1 | -0/+16 | |
2011-07-11 | Avoid unused parameter warnings when deliberate. | nyamatongwe | 1 | -0/+11 | |
2011-07-11 | Fix 64 bit -> 32 bit warnings in Cocoa code. | nyamatongwe | 1 | -12/+12 | |
2011-07-10 | Return byte length of insertion for encoding from InsertText so can be | nyamatongwe | 1 | -2/+2 | |
used to underline text inserted by IME and replace correctly when the IME changes. | |||||
2011-07-10 | Allow drag to trash to delete. | nyamatongwe | 1 | -1/+13 | |
2011-06-15 | Made ScintillaCocoa::ContentView public so it can be used by | nyamatongwe | 1 | -1/+2 | |
ScintillaView and using hwndFrom to find view so idFrom can be used as it is on other platforms. | |||||
2011-06-05 | Hide horizontal scrollbar in wrap mode. | nyamatongwe | 1 | -1/+2 | |
2011-06-05 | Respond to window deactivation by hiding caret. | nyamatongwe | 1 | -0/+23 | |
2011-06-05 | Comment typo. | nyamatongwe | 1 | -1/+1 | |
2011-05-27 | Fix last warning. | nyamatongwe | 1 | -1/+0 | |
2011-05-27 | Avoid warning. | nyamatongwe | 1 | -0/+2 | |
2011-05-27 | IME fixed to avoid inserting keys that are part of a character. | nyamatongwe | 1 | -7/+19 | |
Allows for either NSString or NSAttributedString. From Mike Schroeder of Adobe. | |||||
2011-05-27 | Expose registerNotifyCallback on ScintillaView class. | nyamatongwe | 1 | -0/+11 | |
From Elizabeth Irizarry of Adobe. | |||||
2011-02-07 | Merged in current scintilla-cocoa from bzr. | nyamatongwe | 1 | -24/+63 | |
2010-07-24 | Updates from Scintilla-Cocoa project. | nyamatongwe | 1 | -3/+85 | |
Updated case mapping, modifier key for zoom, redo, mouse wheel, search and highlight. | |||||
2010-04-22 | Updated to launchpad scintilla-cocoa revision 33. | nyamatongwe | 1 | -33/+56 | |
Context menu implemented. Many warnings avoided. Make files added. | |||||
2010-01-20 | Updated to current version (28) of Scintilla Cocoa. | nyamatongwe | 1 | -9/+56 | |
2009-09-04 | Avoid errors from new compiler in OS X 10.6. | nyamatongwe | 1 | -1/+3 | |
2009-09-04 | Fix in the InfoBar to avoid setting a cell class for the entire application. | nyamatongwe | 1 | -6/+14 | |
Fixed memory leak re. notification center. Cursor handling did not properly retain the used cursor image. |