aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/PlatWin.cxx
AgeCommit message (Expand)AuthorFilesLines
2021-03-22Implement more support values.Neil1-0/+2
2021-03-20Replace FillRectangle with FillRectangleAligned as FillRectangle will stopNeil1-4/+4
2021-03-25Translucent text.Neil1-78/+51
2021-03-20Add AllocatePixMap method on Surface to create a pixmap surface.Neil1-12/+55
2021-03-20Use SurfaceMode struct as a way to inform Surface of modes like code page andNeil1-37/+42
2021-03-25Add FillRectangleAligned to align rectangle to pixel grid on x-axis beforeNeil1-0/+10
2021-03-20Implement LineDraw and PolyLine.Neil1-0/+79
2021-03-20Implement Stadium on all platforms except for Win32 GDI.Neil1-0/+103
2021-03-20Implement RectangleFrame.Neil1-0/+18
2021-03-25Use FillStroke for parameters to Polygon, RectangleDraw, RoundedRectangle, andNeil1-6/+150
2021-03-19Support strokeWidth and float cornerSize in AlphaRectangle. Use FillStrokeNeil1-0/+87
2021-03-25Implement translucent FillRectangle.Neil1-19/+39
2021-03-19UTF-8 text drawing and measurement.Neil1-34/+259
2021-03-19Add an explicit FlushDrawing method to Surface that should be called afterNeil1-13/+12
2021-03-19Implement PopClip to allow local clipping.Neil1-0/+15
2021-03-19Add Surface::PixelDivisions which detects 'retina' displays that useNeil1-0/+12
2021-03-19Add Platform::Supports for SupportsFeature API.Neil1-0/+19
2021-03-19Add localeName to FontParameters for Bug [#2027].Neil1-1/+2
2021-03-19Ensure variables are initialised, are const where possible.Neil1-21/+26
2021-03-18Make Surface::Release and callers (where possible) noexcept.Neil1-4/+4
2021-03-18Use unique_ptr to add to RGBAImageSet.Neil1-2/+2
2021-03-18Use unique_ptr for Surface::Allocate to show transfer of ownership.Neil1-4/+4
2021-03-18std::optional is a basic vocabulary type that may be used widely so includeNeil1-0/+1
2021-03-18Move assert and debug trace functions into their own header Debugging.h.Neil1-0/+1
2021-03-18ListBox options API. ListOptions is currently empty but may contain list itemNeil1-0/+6
2021-03-17Use unique_ptr for ListBox::Allocate to show transfer of ownership.Neil1-3/+2
2021-03-17Change Window::Cursor to an enum class.Neil1-9/+9
2021-03-17Remove Window::SetFont as never used.Neil1-5/+0
2021-03-17Change Font to an interface and stop using FontID. Fonts are shared andNeil1-177/+133
2021-03-17Make Window argument to Menu::Show const as that avoids warnings and the WindowNeil1-1/+1
2021-03-17Mark Window::Destroy, ListBox::Clear, and Menu::Destroy as noexcept sinceNeil1-4/+4
2021-03-17Extract geometry and colour definitions from Platform.h into src/Geometry.h.Neil1-0/+1
2021-03-17Remove DynamicLibrary as loading lexers with SCI_LOADLEXERLIBRARY was removedNeil1-36/+0
2021-03-16Convert Platform from a class to a namespace. Does not change callers.Neil1-5/+5
2020-07-29Use dynamic_cast for SurfaceGDI::Copy as it will fail better if a mistake made.Neil1-1/+1
2020-07-28Fix factory leak by using global factory instead of getting from render target.Neil1-4/+1
2020-07-27Add private SurfaceD2D::GetBitmap to better encapsulate the bitmap render targetNeil1-8/+11
2020-07-17Tidied up code using wstring, which will often avoid allocating, and fixingNeil1-9/+9
2020-07-17Fix truncation of locale due to not counting NUL. Add return code check.Neil1-2/+4
2020-07-15Hoist common conversion code into RectangleFromPRectangle.Neil1-4/+12
2020-07-15Stronger argument validation in BlobInline methods.Neil1-1/+9
2020-07-15Add extra checking and assertions for NULLs.Neil1-30/+34
2020-07-11Removed GetNearestColor as paletted displays are no longer supported.Neil1-3/+1
2020-06-15Use ReleaseUnknown to extend noexcept over finalisation.Zufu Liu1-22/+9
2020-06-13Add include that defines back_inserter.Greg Smith1-0/+1
2020-06-11Bug [#2185]. Fix printing to use correct text size.Neil1-1/+3
2020-06-06Implement gradients for GDI. GradientRectangle previously drew an average of theNeil1-5/+60
2020-06-06Add DIBSection class to simplify bitmap operations on GDI.Neil1-66/+121
2020-06-06Avoid type-pun union when converting from RGBA colour to DWORD as this may beNeil1-13/+9
2020-06-06Specify locally visible methods as noexcept.Neil1-20/+20