aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
2014-09-03Feature [feature-requests:#1071]. BibTeX lexer added.Neil1-0/+3
From Sergiu Dotenco and danselmi.
2014-08-19Bug [#1636]. Support Visual Studio 2010+ line copy clipboard tag.Neil1-2/+6
2014-08-18Bug [#1639]. Only unregister windows classes registered.Neil1-6/+23
From Holger Stenger.
2014-08-09Added lexer for registry files.Neil1-0/+3
From nkmathew.
2014-08-09Getting ready to release 3.5.0.Neil1-2/+2
2014-08-08Stop using last argument to AddCharUTF from Korean IME code as previus releaseNeil1-5/+3
always used false for last argument so changing mynot be cmpatible. Move maxLenInputIME to superclass where it can be used for all platforms.
2014-07-30Removed NotifyChar tha is not needed from new Korean IME code and use correctNeil1-6/+2
value for treatAsDBCS argument to AddCharUTF.
2014-07-24Using separate variable imeCaretBlockOverride for IME mode instead of changingNeil1-14/+3
caretStyle as there could be confusion if the container changes caret style.
2014-07-23Avoid shadowed names mostly in method prototypes. Turn off shadowNeil1-4/+4
warnings for lexers since they may be maintained by others.
2014-07-23Limit and simplify variable lifetimes used in the IME code.Neil1-8/+4
From johnsonj and Neil.
2014-07-19Move Korean IME inside window and make undo work correctly without undoing intojohnsonj1-2/+133
temporary composition states.
2014-07-15Implement separate timers for each type of periodic activity and turn them ↵Neil Hodgson1-19/+46
on and off as required. This saves power as there are fewer wake ups. A tolerance value is provided so that platforms that support coalescing timers, Windows 8+ and OS X 10.9+, can use them. The previous global 100 millisecond timer may still be used by non-core platforms.
2014-07-10When losing focus, complete any IME composition.Neil1-0/+6
From johnsonj.
2014-07-08Split out EditModel, MarginView, and EditView classes into separate files.Neil4-195/+642
2014-06-30Making ready for 3.4.4.Neil1-2/+2
2014-06-01Bug [#1604]. Fix drawing of indicators when fold highlighting is on by moreNeil1-21/+29
accurately determining whether the area being drawn covers the entire window when the area is a complex shape.
2014-05-31Use standard macro of C++ compiler CXX. Remove definitions that are not needed.Neil1-10/+8
2014-05-31Compatibility with makefile conventions: use CXX for C++ compiler and CC forNeil1-9/+8
C compiler. Allow overriding file deletion command on command line so that 'rm' can be used when cross-compiling from Unix to Windows.
2014-05-31Don't repeat file names that are used for both Scintilla.DLL and SciLexer.DLL.Neil1-31/+9
2014-05-31Merge 343-Win32-Fix which fixes hangs and crashes at shutdown on Windows.Neil2-12/+14
2014-05-26Updates for 3.4.3 release.Neil1-2/+2
2014-05-26Bug [#1602]. Bug [#1603]. Fix hangs and crashes at shutdown.Neil3-30/+38
2014-05-24Header include statements are now in a standardised order with that orderNeil2-12/+13
defined in scripts/HeaderOrder.txt.
2014-05-24Avoid a runtime warning from Dr. Memory.Neil1-0/+1
2014-05-16Updates for 3.4.2 release.Neil1-2/+2
2014-05-10Bug [#685]. WM_GETTEXT now provides data in UTF-16 for Unicode window.Neil1-2/+72
2014-05-03Replacing the int-based constructors for Point and PRectangle with FromIntsNeil2-18/+22
static methods as there were too many failures with mixed types and not-quite matching types.
2014-05-03Turn on MSVC 'possible loss of data' warnings and add explicit casts.Neil2-41/+43
2014-05-03Explicit and more consistent use of XYPOSITION versus int.Neil1-74/+101
Fixes possible loss of data warnings when switched on.
2014-05-03Fix assertion that was broken by undefined behaviour fix.Neil1-1/+1
2014-05-02Use exact SciFnDirect function signature for DirectFunction as earlier versionNeil1-3/+3
depended on undefined behaviour.
2014-05-01Consolidate insertion for paste into Editor class and perform line endNeil1-44/+5
conversion in Editor.
2014-04-29Feature [feature-requests:#1049]. Lexer added for DMIS, a language for ↵Neil1-0/+3
coordinate measuring machines. From Andreas Tscharner.
2014-04-25Free system libraries at finalization.Neil2-4/+29
2014-04-25Delete factories when shutting down to avoid system messages frommm DXGI.Neil1-0/+9
2014-04-16Allow filtering of insertions.Neil1-4/+4
2014-03-28Updating vesion number for next release.Neil1-2/+2
2014-03-25Bug [#1587]. WM_LBUTTONDBLCLK was no longer sent to window.Neil1-4/+4
2014-03-18Updating to get ready for 3.4.0.Neil1-2/+2
2014-02-14Fix potential failure if FormatEnumerator_Next called with celt>1.Neil1-14/+10
Use std::vector for formats to avoid empty elements.
2014-02-02Fix bug when resizing list with only short strings caused the list to move.Neil1-1/+2
2014-01-31Update for 3.3.9.Neil1-2/+2
2014-01-24Make RoundedRectangle with Direct2D have similar shape to GDI with 4 pixelNeil1-2/+2
radius corners.
2014-01-24Updates for 3.3.8.Neil1-2/+2
2014-01-22Visual C++ project file added.Neil1-0/+129
2014-01-21Avoid memset for safety.Neil1-2/+2
2014-01-21Using ELEMENTS for clarity and safety.Neil1-4/+4
2014-01-18With Direct2D draw circles with a 1 pixel larger radius to better matchNeil1-1/+1
other platforms and ensure for folding markers that the '+' or '-' do not touch the circle. Change order of drawing so that circles are drawn after connecting lines so overwrite any tails.
2014-01-13Update the system caret position when scrolling to help screen readersNeil1-0/+1
see the scroll quickly.
2014-01-12Remove old workarounds for system headers missing elements.Neil2-55/+3