aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
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
2013-12-22Avoid unsafe strcpy, strncpy, and strcat replacing with safer functions whichNeil2-7/+7
guaranty termination where possible.
2013-12-15Make single argument constructors explicit to avoid unexpected conversions.Neil2-6/+6
2013-12-15Format normalization - whitespace and braces made consistent.Neil2-19/+20
Parameter names added to method declarations.
2013-12-05Updates for 3.3.7.Neil1-2/+2
2013-11-11When Direct2D returns D2DERR_RECREATE_TARGET handle by complete redraw insteadNeil1-13/+10
of trying to redraw just the initially required area. Reported to eliminate black window contents after system Lock and similar actions.
2013-10-23Feature [feature-requests:#887]. Apply GDI gamma to DirectWrite .Neil1-1/+43
From Marko Njezic.
2013-10-18Feature [feature-requests:#1026]. DMAP lexer added.Neil1-0/+3
From Mark Robinson.
2013-10-17Avoid failure in MinGW-w64 Direct2D binding.Neil1-1/+6
2013-10-10Updated for next release.Neil1-2/+2
2013-10-08Feature [feature-requests:#1024]. Lexer added for Rust language.Neil1-0/+3
From SiegeLord.
2013-09-30Added FocusIn and FocusOut notification events (SCN_FOCUSIN/SCN_FOCUSOUT) to beNeil1-0/+1
used in preference to the SCEN_SETFOCUS and SCEN_KILLFOCUS command events.
2013-09-10Use C++ struct initialization {} so can drop -Wno-missing-braces setting for ↵Neil3-7/+5
gcc.
2013-09-10Drop warning setting -Wno-missing-braces since this has had no effect since ↵Neil1-1/+1
gcc 4.2.
2013-09-04Fix namespace compilation errors when SCI_NAMESPACE defined.Neil1-20/+8
2013-09-04Build Direct2D platform code if Direct2D headers are available.Neil1-2/+9
2013-08-26Updated version number and description for next release.Neil1-2/+2
2013-08-25Recent MingW does not compile due to missing Direct2D headers so disable ↵Neil1-1/+1
Direct2D.
2013-08-21Feature: [feature-requests:#1008]. Lexer added for KVIrc script.Neil1-0/+3
From OmegaPhil.
2013-08-15Feature: [feature-requests:#1007]. Option to allow mouse selection toNeil1-1/+4
switch to rectangular by pressing Alt after start of gesture. From Neomi.
2013-08-10Bug [#1513]. Differentiate rectangular and non-rectangular pastes from Borland.Neil1-9/+19
From Oezguer Emir.
2013-08-09Update make dependencies.Neil2-91/+125
2013-08-09Move wrapping, edge and visual adjustments from Editor to ViewStyle.Neil1-1/+1
Move printing parameters into a separate struct.
2013-08-03On Windows, fix painting on an explicit HDC when first paint attempt abandoned.Neil1-1/+5
2013-08-02Fix failures when invalid DBCS text was measured by ensuringNeil1-4/+7
all positions are filled with reasonable non-negative values.
2013-07-26Support rectangular selected text in clipboard from and to Borland Delphi IDEOezguer Emir1-3/+12
2013-07-25Minor changes to avoid warnings from Coverity.Neil2-7/+16
2013-07-23Only use map for character representations instead of unordered_map where ↵nyamatongwe1-3/+0
possible. unordered_map caused too many porting problems.
2013-07-22Added the character representation feature.Neil1-0/+3