aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa
AgeCommit message (Collapse)AuthorFilesLines
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
2011-10-29Fix warnings from Clang analyze about memory management.nyamatongwe2-5/+5
2011-10-28Fix warnings from Clang analyze by using single statement alloc and init.nyamatongwe2-12/+7
Remove unused variables. Fix potential leak.
2011-10-26Updated to Xcode 4.2 and now using Clang.nyamatongwe2-4/+4
2011-09-25Fixed Cocoa for palette removal.nyamatongwe1-1/+0
2011-09-25Palette support removed.nyamatongwe2-78/+30
2011-09-09Merge with main repository.nyamatongwe2-4/+55
2011-08-20Fix memory leak with images in autocompletion list.nyamatongwe1-1/+0
2011-08-20Specify that AutoCompletionDataSource implements NSTableViewDataSourcenyamatongwe1-1/+4
protocol only when building for later than 10.5 so SDK has to know about that protocol.
2011-08-20Replace call available only on 10.6 with sequence that works on 10.5.nyamatongwe1-2/+8
2011-08-20Include autocompletion list test.nyamatongwe1-0/+43
2011-08-11Implement new APIs defined for technology choice on Windows.nyamatongwe2-10/+9
2011-08-07Support a range of weights on Cocoa.nyamatongwe2-2/+3
2011-08-07Avoid warnings about unavailable warnings.nyamatongwe1-2/+2
2011-08-02Implemented floating point text positioning for Cocoa.nyamatongwe3-30/+36
2011-07-27Ran modernize.nyamatongwe1-5/+5
2011-07-27Ran modernize and it removed some archaic options and updated version numbers.nyamatongwe1-5/+5
2011-07-27Updated base SDK to 10.6.nyamatongwe1-2/+2
2011-07-19Switched back to LLVM GCC 4.2 from Clang as there was a crash with 32-bit Clang.nyamatongwe1-2/+2
2011-07-19Added more key bindings for symmetry and completeness.nyamatongwe1-6/+8
Chnaged SCI_CMD to SCI_CTRL for compatibility with KeyMap.cxx/
2011-07-12Fix Shift-JIS lead byte ranges to match Windows.nyamatongwe1-1/+2
2011-07-12Report control key as SCMOD_META with GTK+ on OS X.nyamatongwe1-1/+0
Mostly from Mitchell Foral.
2011-07-11Include control ID in WM_COMMAND notifications.nyamatongwe1-2/+4
This allows container to be more selective with processing.
2011-07-11Fix memory leaks for font and color objects.nyamatongwe3-2/+16
2011-07-11Compiling with Clang and increasing warnings.nyamatongwe1-0/+10
2011-07-11Avoid unused parameter warnings when deliberate.nyamatongwe3-15/+33
2011-07-11Fix type warnings.nyamatongwe1-1/+1
2011-07-11Fix warning about extra ';'.nyamatongwe1-1/+1
2011-07-11Fix 64 bit -> 32 bit warnings in Cocoa code.nyamatongwe4-42/+42
2011-07-10Added header used in Scintilla and removed header not used for Cocoa.nyamatongwe1-7/+7
Ordered headers alphabetically.
2011-07-10Return byte length of insertion for encoding from InsertText so can benyamatongwe2-3/+3
used to underline text inserted by IME and replace correctly when the IME changes.
2011-07-10If requested font can't be created use same font without bold or italic.nyamatongwe1-1/+16
If that fails, use Monaco.
2011-07-10Remove unnecessary code.nyamatongwe1-2/+0