aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa
AgeCommit message (Collapse)AuthorFilesLines
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
2011-07-10Allow drag to trash to delete.nyamatongwe1-1/+13
2011-07-10Made drag image work similar to the Carbon port.nyamatongwe1-7/+84
2011-07-10Removed or replaced out of date TODO comments.nyamatongwe1-10/+9
2011-07-10Make copies of bitmap images so they can outlive their surface.nyamatongwe1-2/+10
2011-07-10Don't allow buffered drawing to be turned on as it doesn't work.nyamatongwe1-0/+3
2011-07-10Encoding support for copy and text insertion.nyamatongwe1-7/+23
2011-07-10Paste text into different encodings.nyamatongwe1-2/+19
2011-07-10Display and measure text in different encodings.nyamatongwe2-25/+69
2011-07-10Store character set in QuartzTextStyle.nyamatongwe2-2/+11
2011-07-10Implement ScrollText.nyamatongwe2-0/+46
2011-06-25Initial implementation of RGBA images.nyamatongwe3-0/+90
2011-06-15Implemented Control as separate modifier called META on OS X.nyamatongwe1-10/+22
Mapped keys to be closer to other platforms.
2011-06-15Made ScintillaCocoa::ContentView public so it can be used bynyamatongwe2-2/+4
ScintillaView and using hwndFrom to find view so idFrom can be used as it is on other platforms.
2011-06-15Change mouse drag modifier keys for compatibility with Apple Humannyamatongwe1-2/+2
Interface Guidelines and other applications. Alt is for rectangular selection and Command for discontinuous selection.
2011-06-15Use control identifier in notification messages for compatibilitynyamatongwe1-1/+1
with other platforms.
2011-06-14Ensure SurfaceImpl fully initialised. Fixes bad line height in 64-bit mode.nyamatongwe1-1/+11
2011-06-05Implement SCI_GRABFOCUS.nyamatongwe1-3/+3
2011-06-05Hide horizontal scrollbar in wrap mode.nyamatongwe1-1/+2