aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa
AgeCommit message (Collapse)AuthorFilesLines
2013-01-04Implement a delegate for Scintilla notifications.nyamatongwe2-1/+20
From Mike Lischke at Oracle.
2013-01-04Fix retain count of timerTarget so it can be deallocated.nyamatongwe1-1/+1
From Mike Lischke at Oracle.
2013-01-04Fix object ownership and thus memory management. Change owner and backendnyamatongwe2-7/+8
properties to (nonatomic, assign) as pointers to owners should not be retained and backend is a pointer to a C++ object. Move property declarations before methods. Update copyright notice. From Mike Lischke at Oracle.
2013-01-04Fix positioning of autompletion lists on retina displays.nyamatongwe1-2/+1
From Mike Lischke at Oracle.
2012-12-30Fixed invalid octal number 0f.nyamatongwe1-1/+1
2012-10-26cocoa: avoid dividing by zero when setting vertical scroll positionMook1-1/+2
2012-10-13Limit horizontal scroll value so that it does not go negative when swipingnyamatongwe1-0/+2
touchpad with a small scroll width.
2012-10-06Fix problem with find indicator showing upside down at wrong y-position whennyamatongwe1-7/+13
applications built for 10.8.
2012-10-06Updated upgrade check numbers avoids dialogs.nyamatongwe2-2/+2
2012-09-14Added LexPO to Cocoa build.nyamatongwe1-0/+4
2012-09-08Fix extra release of info bar.nyamatongwe1-1/+0
2012-09-06Stop setting the save point from calls that should only be reading.nyamatongwe1-2/+0
2012-08-24Ensure abandoned paints cover full area by using NSView display instead of ↵nyamatongwe3-14/+11
trying to draw more within initial drawing context.
2012-08-14Drop notifications so not sent after ScintillaView freed.nyamatongwe1-0/+1
2012-08-14Break reference cycle between ScintillaView and its InnerView.nyamatongwe1-1/+1
2012-07-29Decrease sensitivity of pinch-zoom. From Chinh Nguyen.nyamatongwe2-7/+14
2012-07-29Updated Base SDK to 10.7 so builds with standard Xcode 4.4.nyamatongwe2-6/+8
2012-07-25Limit horizontal touch scrolling to existing established width.nyamatongwe1-1/+4
2012-07-21Scale factor implemented for RGBAImages to allow for high definition markers ↵nyamatongwe1-1/+1
on retina displays.
2012-07-20Fix text size on retina display by not scaling by device resolution.nyamatongwe1-10/+6
2012-07-15Use unnamed namespace so that ListBox implementation is not visible outside ↵nyamatongwe1-76/+91
this file. Use IListBox interface to limit exposure of ListBoxImpl to AutoCompletionDataSource. Changes only affect visibility and declarations with no change to functionality.
2012-07-15Fix position and remove dead code.nyamatongwe1-7/+2
2012-07-15Memory for image was used after being freed. Fixed.nyamatongwe1-4/+7
2012-06-12Reindented as was inconsistent.nyamatongwe1-35/+34
2012-06-12Fix truncation of descenders and underscores in list box.nyamatongwe1-1/+1
From Mike Lischke.
2012-06-12Fix double free of font objects with list box by copying font.nyamatongwe2-1/+14
2012-06-07Initial version of build checker script.nyamatongwe1-0/+75
2012-06-07Protect against APIs only available on 10.6+ when building for 10.5.nyamatongwe2-0/+16
2012-06-07Use clang instead of gcc for ScintillaTest as that allows building fornyamatongwe1-0/+2
OS X 10.5 with Xcode 4.3.2.
2012-05-10Added OScript and Visual Prolog lexers to OS X build.nyamatongwe1-1/+9
2012-04-30When attempting to show invalid text in find indicator, hide the indicator.nyamatongwe1-1/+3
2012-04-26Fix crash where find indicator range fragments a character.nyamatongwe1-1/+2
2012-04-26Fix bug identified by Xcode Analyze.nyamatongwe1-1/+1
2012-04-16Implemented find indicator with animation for OS X.nyamatongwe4-1/+277
2012-04-09Protect against NULLs when text is not valid in encoding.nyamatongwe1-3/+5
2012-03-27Ensure default style copied to all styles so that font attributes work.nyamatongwe1-0/+2
2012-03-13Change name of the 'layout' method of ScintillaView and InfoBar to ↵nyamatongwe4-11/+11
'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-01Enable basic pinch zoom. From Matthew Brush.nyamatongwe1-0/+16
2012-02-18Add ECL lexer.nyamatongwe1-0/+4
2012-02-17Xcode analyze could not understand treating a 2D array as a 1D arraynyamatongwe1-4/+6
so treat as a 2D array.
2012-02-17New Xcode notes it has performed an upgrade check.nyamatongwe1-1/+1
2012-01-23Added LexAVS to build for Cocoa.nyamatongwe1-0/+4
2011-12-22Sort lexers in alphabetical order.nyamatongwe1-2/+2
2011-12-22Add TCMD lexer to OS X build.nyamatongwe1-0/+4
2011-12-01Change memory management so will work with deferred drawing such as printing.nyamatongwe1-4/+10
2011-11-30Added CoffeeScript lexer.nyamatongwe1-0/+4
2011-11-27Follow standard pattern as that will work better with ARC if ever used.nyamatongwe1-4/+2
2011-11-14Use fields to hold NSTimer pointers to avoid warnings from Analyze.nyamatongwe2-11/+13
Does not change behaviour.
2011-11-09Fix potential memory problems found by analyze.nyamatongwe2-11/+11
2011-11-09Remove unused variable.nyamatongwe1-3/+0