aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2013-09-26Change log.nyamatongwe1-0/+4
2013-09-26Fixed appearance of outlines of alpha rectangles.nyamatongwe2-6/+22
2013-09-26Enhance stability by defining GetLineEndPosition for lines beyond end of ↵Neil3-4/+10
document to return document size.
2013-09-26Feature [feature-requests:#1020]. Fold 'create view' statements.Neil2-31/+135
Fold on the 'AS' ... ; in `create view [name] as ... ;' From Eric Promislow.
2013-09-26Added image of indicators.Neil2-2/+4
2013-09-25Change log.Neil1-0/+4
2013-09-25Feature [feature-requests:#1021]. Cocoa SCI_POSITIONFROMPOINTCLOSE returning ↵nyamatongwe1-0/+3
invalid position.
2013-09-22Change log.nyamatongwe1-0/+4
2013-09-22Change log.Neil1-0/+7
2013-09-22Stricter checking for ctags lines in errorlist lexer.Neil1-3/+10
2013-09-22Avoid attempt to redraw an empty area.nyamatongwe1-0/+2
2013-09-21Fix test script to match move of scripts.nyamatongwe1-1/+2
2013-09-20Removed make files as they have not been maintained and no longer work.nyamatongwe4-209/+25
The checkbuildosx.sh script now looks for installed SDKs macosx10.? and builds with each one that is installed.
2013-09-20Simplify project file. Set and use settings on the project level and avoid ↵nyamatongwe1-10/+2
setting on target.
2013-09-20Change log.Neil1-0/+3
2013-09-20Switch parameter type to sptr_t to avoid problems with negative numbers likeUnknown1-3/+3
INVALID_POSITION=-1. From John Ehresman.
2013-09-18Change log.nyamatongwe1-1/+8
2013-09-18Reimplement notifications from ScintillaCocoa to ScintillaView as a delegate ↵nyamatongwe5-80/+119
relationship using ScintillaNotificationProtocol. Add optional command:idFrom: method to ScintillaNotificationProtocol for command notifications. In a future version registerNotifyCallback: and ScintillaCocoa::RegisterNotifyCallback will be deprecated.
2013-09-17Remove WM_UNICHAR as unused. A remnant from the Carbon platform layer.nyamatongwe1-17/+0
2013-09-16Take account of scroll position when creating drag image.nyamatongwe1-6/+6
2013-09-16Removed back up code that produced a simple drag image.nyamatongwe1-11/+0
2013-09-16Remove dead code that was a remnant of Carbon support.nyamatongwe1-16/+0
2013-09-13Change log.nyamatongwe1-0/+4
2013-09-10Cast away char subscripts to avoid warnings from clang.Unknown1-6/+6
2013-09-10Fix variable shadowing issues.nyamatongwe3-5/+5
2013-09-10Use C++ struct initialization {} so can drop -Wno-missing-braces setting for ↵Neil8-32/+29
gcc.
2013-09-10Drop warning setting -Wno-missing-braces since this has had no effect since ↵Neil3-3/+2
gcc 4.2.
2013-09-10Change log.Neil1-0/+23
2013-09-10Pass control ID with WM_NOTIFY for compatibility with other platforms.nyamatongwe2-2/+2
2013-09-10Bug [#1522]. Don't send selection change notification when scrolling.nyamatongwe1-1/+4
2013-09-09Remove dealloc from @interface as it should not be directly called.nyamatongwe1-2/+0
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.0nyamatongwe2-2/+2
2013-09-09Since overlay scroll bars, the info bar is always full width so remove variablenyamatongwe2-7/+0
for width and comments that is no longer correct.
2013-09-08Change log.Neil1-0/+3
2013-09-08Stop exposing Scintilla implementation to clients from ScintillaView header.nyamatongwe5-26/+35
Platform.h and ScintillaCocoa.h are no longer imported in ScintillaView.h
2013-09-08Fix spelling mistakes in comments.nyamatongwe5-21/+21
2013-09-07Mention that prefix keyword sets aren't implemented for SCI_SETIDENTIFIERS.Neil1-4/+5
2013-09-07Since ScintillaBase::Finalise is implemented, don't mark it as virtual.Neil1-1/+1
2013-09-06Be more explicit about the empty case to avoid warnings from Visual C++ ↵Neil1-13/+15
analyzer.
2013-09-06Bug [#1521]. Allow tab, cariage return and new line separators for ↵Neil1-3/+5
SCI_SETIDENTIFIERS. Treat multiple separators as a single separator.
2013-09-05Added SCI_GETPRIMARYSTYLEFROMSTYLE.Neil8-4/+34
2013-09-05Bug [#1520]. Make SCI_GETSTYLEFROMSUBSTYLE work for secondary styles.Neil2-5/+22
2013-09-05Update Pascal lexer keywords.Marko Njezic1-10/+11
2013-09-04Turn off idle events on destruction.Neil2-0/+4
From John Ehresman.
2013-09-04Fix namespace compilation errors when SCI_NAMESPACE defined.Neil3-42/+18
2013-09-04Build Direct2D platform code if Direct2D headers are available.Neil1-2/+9
2013-09-03Documentation for GetStyleFromSubStyle.Neil2-1/+19
2013-09-03Added another test for cpp lexer support for Unicode line ends.Neil1-0/+1
2013-09-03Added GetStyleFromSubStyle.Neil7-2/+66
Tests for this and other sub styles methods.