aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa
AgeCommit message (Collapse)AuthorFilesLines
2013-03-10Make property readonly to avoid potential ownership/lifetime issues.nyamatongwe1-1/+1
2013-03-10Extract Window::Cursor enum -> NSCursor* mapping so can be reused.nyamatongwe1-26/+27
2013-03-10Fix spelling in comments. Add missing comment.nyamatongwe2-4/+7
2013-03-10Remove remnants of Carbon.nyamatongwe2-7/+2
2013-02-28Removed unnecessary code.nyamatongwe1-6/+2
2013-02-24Less intense version of previous change: just mark the view for drawing ↵nyamatongwe1-1/+1
instead of drawing.
2013-02-24Fix problem where abandoned paints may not cause redraw.nyamatongwe1-1/+3
2013-02-07Fix crash that can occur after running "Convert to Modern Objective-C Syntax"nyamatongwe1-4/+4
which leads to an NSArray that contains nil.
2013-01-30Type casts so will build in std=c++11 mode.nyamatongwe3-7/+7
2013-01-30Updated for Xcode 4.6.nyamatongwe1-1/+1
2013-01-11Feature: [#970]. Latex folding and better syntax highlighting.nyamatongwe1-0/+4
From G. Hu.
2013-01-11Bug: [#1436] Remove as observer in TimerTarget dealloc.nyamatongwe1-0/+2
2013-01-10Removed dead stores.nyamatongwe1-2/+2
2013-01-10Add a replace method and a parameter for backwards search.nyamatongwe2-24/+180
From Mike Lischke.
2013-01-10Turn off undo collection for IME composition.nyamatongwe2-17/+37
From Mike Lischke.
2013-01-10Switched Alt+Delete to delete word left to be more compatible withnyamatongwe1-1/+1
OS X standards.
2013-01-08Fix memory leak.nyamatongwe1-1/+1
2013-01-04When setting a font name, set first 128 styles insted of 32 as willnyamatongwe1-1/+1
work for more lexers. From Mike Lischke at Oracle.
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