aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaView.mm
AgeCommit message (Expand)AuthorFilesLines
2015-06-25Bug [#1740]. Cancel autocompletion and calltip when window moved.Neil Hodgson1-0/+12
2015-03-11Update drag and drop to use current APIs instead of deprecated APIs.Neil Hodgson1-24/+39
2015-02-22Implement additional methods from the NSTextInputClient protocol so that moreNeil Hodgson1-110/+131
2015-02-16Fix bugs caused by deleting text with undo collection off when entering IME c...Neil Hodgson1-14/+40
2015-02-14Fix unused parameter warnings. Remove code that is never executed.Neil Hodgson1-2/+10
2015-02-14Fix warnings for suspicious type conversions and not fully bracketed initiali...Neil Hodgson1-18/+18
2015-02-14Fix 64->32 bit conversion warnings.Neil Hodgson1-13/+13
2015-02-14Fix doc comments.Neil Hodgson1-1/+1
2014-12-07Replace calls to deprecated methods with their current equivalents.Neil Hodgson1-9/+3
2014-07-15Switch from tracking rectangle to tracking area. This is the more recent Coco...Neil Hodgson1-10/+22
2014-07-10Fix the insertText: method on ScintillaView to accept NSAttributedString as w...Neil Hodgson1-2/+5
2014-05-02Type cast to make previous change compile on Cocoa.Neil Hodgson1-1/+2
2014-03-28Made indentation consistent.Neil Hodgson1-4/+4
2014-03-27Surround 10.9-specific calls with version checks to ensure builds on old SDKs.nyamatongwe1-0/+2
2014-03-27Improve scrolling by performing styling in methods called before drawing inst...Neil Hodgson1-0/+31
2014-03-26Indentation use tab.Neil Hodgson1-1/+1
2014-03-26Refactor range deletion into a method on ScintillaView.Neil Hodgson1-19/+17
2013-12-15Format normalization - whitespace and braces made consistent.Neil1-46/+46
2013-11-24Disable scroll wheel magnification by default since it causes visual garbage toNeil Hodgson1-0/+5
2013-11-17Fix problem where cursor didn’t change over margin after showing a dialog.Neil Hodgson1-0/+7
2013-11-11Add @2x images for cursors and info bar to match retina displays.Neil Hodgson1-2/+2
2013-10-30Bug [#1542]. Margin click focus handling on Cocoa.nyamatongwe1-0/+2
2013-10-14To follow naming conventions InnerView was renamed to SCIContentView andnyamatongwe1-8/+8
2013-10-06Allow subclassing InnerView.nyamatongwe1-1/+12
2013-09-30Removed command: method from ScintillaNotificationProtocol as all events can ...nyamatongwe1-21/+2
2013-09-18Reimplement notifications from ScintillaCocoa to ScintillaView as a delegate ...nyamatongwe1-72/+68
2013-09-10Bug [#1522]. Don't send selection change notification when scrolling.nyamatongwe1-1/+4
2013-09-09Fix memory leak for margin view.nyamatongwe1-0/+1
2013-09-09Use const for constant strings as recommended in Effective Objective C 2.0nyamatongwe1-1/+1
2013-09-09Since overlay scroll bars, the info bar is always full width so remove variablenyamatongwe1-6/+0
2013-09-08Stop exposing Scintilla implementation to clients from ScintillaView header.nyamatongwe1-3/+6
2013-09-08Fix spelling mistakes in comments.nyamatongwe1-7/+7
2013-07-21Fix Clang C++11 compatibility.Neil1-1/+1
2013-06-15Simplify direct access using Scintilla messages and avoid call layers.nyamatongwe1-0/+15
2013-06-15Fix insertText: of ScintillaView to directly call ScintillaCocoa since insert...nyamatongwe1-1/+1
2013-05-19The convertRectToScreen: message was introduced in 10.7 so use convertBaseToS...nyamatongwe1-2/+9
2013-05-04Replacing raw pointers and allocations with std::string and std::vector.nyamatongwe1-14/+6
2013-04-24Feature: [feature-requests:#987]. Cocoa user interface validation.nyamatongwe1-0/+22
2013-04-17Remove method no longer needed due to change from NSTextInput to NSTextInputC...nyamatongwe1-8/+0
2013-04-17Switch from implementing NSTextInput to its replacement NSTextInputClientnyamatongwe1-7/+31
2013-04-17Implement firstRectForCharacterRange so that composition popups appear near i...nyamatongwe1-3/+28
2013-04-17Restore undo collection after sequence of composition actions by only remembe...nyamatongwe1-4/+6
2013-04-17When setting composition text, correctly select the indicated text by convert...nyamatongwe1-4/+8
2013-04-09Fix problems with input composition that could stop undo working.nyamatongwe1-0/+5
2013-03-26Detect resizes on the ScintillaView so that text is rewrapped.nyamatongwe1-1/+4
2013-03-15Use an NSScrollView on Cocoa for kinetic scrolling and hiding scrollbars unle...nyamatongwe1-181/+171
2013-03-15Removed owner property as it is not used.nyamatongwe1-1/+0
2013-03-10Extract Window::Cursor enum -> NSCursor* mapping so can be reused.nyamatongwe1-26/+27
2013-03-10Fix spelling in comments. Add missing comment.nyamatongwe1-3/+3
2013-02-24Less intense version of previous change: just mark the view for drawing inste...nyamatongwe1-1/+1