aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ScintillaWin.cxx
AgeCommit message (Collapse)AuthorFilesLines
2011-11-17::GetCursorPos failure with screen saver handled. Bug #3438780.nyamatongwe1-10/+11
From Thomas Linder Puls.
2011-11-14Dont try to use Direct2D with very old versions of Visual C++ as itnyamatongwe1-1/+1
is unlikely to be available.
2011-11-07Fix size of font in IME.nyamatongwe1-1/+1
2011-09-25Palette support removed.nyamatongwe1-33/+0
2011-09-24Mingw32 doesn't have Direct2D or DirectWrite headers so turn off usenyamatongwe1-0/+30
of these libraries except when compiling with Visual C++.
2011-09-09Merge with main repository.nyamatongwe1-0/+7
2011-09-04Autocompletion lists respond to mouse wheel events. Feature #3403600.nyamatongwe1-0/+7
From David Wolfendale.
2011-08-11Fix bugs in calltip and autocompletion with technology choice.nyamatongwe1-9/+14
Simplified Direct2D code.
2011-08-11Parallel stacks for GDI and DirectWrite works.nyamatongwe1-15/+27
2011-08-11Implemented parallel stacks for GDI and DirectWrite. GDI worksnyamatongwe1-20/+33
but DirectWrite does not draw well and eventuall crashes.
2011-08-10Implement 'technology' concept which will allow GDI and Direct2D/DirectWritenyamatongwe1-1/+11
to run at the same time for different windows and operations.
2011-08-07Ensure deallocation.nyamatongwe1-0/+1
2011-08-07Dynamically loading Direct2D and DirectWrite at run time so can run on ↵nyamatongwe1-26/+3
Windows XP.
2011-08-07Implement APIs for fractional font sizes and a range of weights.nyamatongwe1-4/+4
2011-08-01Experimental Direct2D and DirectWrite platform layer.nyamatongwe1-12/+106
2011-06-25Add casts to avoid warnings from SDK 64-bit compiler.nyamatongwe1-17/+29
2011-06-25Initial implementation of RGBA images.nyamatongwe1-0/+1
2011-06-13Added Identifier property.nyamatongwe1-17/+28
2011-01-17Add SCI_SETMARGINCURSORN and SCI_GETMARGINCURSORN.jrxx1-1/+1
2011-01-03Right click cancels autocompletion and sets focus. Bug #3144531.nyamatongwe1-1/+4
2010-12-14NUL terminate strings for characters typed. Helps receivers of SCN_MACRORECORD.nyamatongwe1-0/+1
2010-12-11Make multiple selection multi-paste work when multi-type is off. Bug #3126221.nyamatongwe1-1/+1
2010-11-10Remove support for Borland C++.nyamatongwe1-4/+2
Use a library for the lexers with MSVC to simplify SciTE makefile.
2010-10-06Feature request #3079784 Use system caret blink time on Windowsnyamatongwe1-0/+4
2010-08-24Mouse button down claims focus early so that container notifications can ↵nyamatongwe1-1/+1
switch focus.
2010-08-05Case insensitive search in DBCS and faster processing of DBCS.nyamatongwe1-3/+55
DBCS case folder implemented on Windows.
2010-07-13Platform files changed for new lexer design.nyamatongwe1-5/+4
2010-06-24Protect against bad UTF-8 when case folding.nyamatongwe1-0/+6
2010-06-16For compatibility with TDM MingW64, undefine _WIN32_WINNT before defining it.nyamatongwe1-0/+1
2010-05-21EOL conversion for drop. Fixes bug #3005328.nyamatongwe1-0/+10
2010-05-11Made method const.nyamatongwe1-9/+9
2010-05-02Bug #2995278 minor fixes to typos and types.nyamatongwe1-1/+1
2010-04-07Made Scintilla.h compatible with the C language when stdbool.h not included.nyamatongwe1-2/+2
2010-04-07Removed dead code.nyamatongwe1-35/+0
2010-04-03NUL characters in text formats on clipboard terminate the text.nyamatongwe1-2/+2
This is a reversion to 2.03 behaviour because of other applications using large clipboard allocations for small pieces of text.
2010-03-25New case insensitive searching implementation uses objects implementingnyamatongwe1-0/+74
the CaseFolder interface to fold both search text and document text so they can be compared with a simple strcmp. A simple table based folder CaseFolderTable is used for 8 bit encodings and maps input bytes to folded bytes. For multi-byte encodings except for UTF-8 a null (output same as input) CaseFolderTable is used. For UTF-8, more complex subclasses are used which call platform APIs to perform the folding. Folding is approximately to lower case although this differs between platforms.
2010-03-23Upper and lower casing now works on non-ASCII characters.nyamatongwe1-6/+87
2010-03-11Implemented multipaste as an option.nyamatongwe1-4/+1
2010-03-11Use allocated sizes rather than relying on 0 termination.nyamatongwe1-4/+5
2010-03-08Fixed bug #2965482 Break Unicode Build.nyamatongwe1-2/+2
2010-02-24Avoid casting warnings from GCC.nyamatongwe1-39/+41
2010-02-24Extra bracketing to avoid GCC warnings.nyamatongwe1-1/+1
2010-02-19Removed old unused TOTAL_CONTROL symbol.nyamatongwe1-14/+0
2010-02-19Fix for bug #2951353 HotSpotRange clearing when mouse moves out of window.nyamatongwe1-0/+37
2010-02-16Whitespace formatting.nyamatongwe1-15/+15
2010-01-28Avoiding warnings from cppcheck. Mostly removing bodies of private copynyamatongwe1-2/+2
constructors and operator=. Also ensuring initialisation for some fields, reducing scope where possible, and passing by const reference.
2009-08-28When pasting into a rectangular selection use the start of the rectangularnyamatongwe1-1/+3
selection rather than the start of the main range which is often the last line.
2009-08-01Fix for Bug #2830223: ScintillaWin::Finalise should NOT callnyamatongwe1-1/+0
DestroySystemCaret.
2009-07-23Fix for Bug #2825485, paste in read-only mode sends EN_CHANGE despite nonyamatongwe1-1/+0
change taking place.
2009-07-21Using a much simpler property set implementation.nyamatongwe1-0/+1
Accessor objects use the PropertyGet interface to access just the property set methods they need. Removed SString.