aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/PlatGTK.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-16/+16
2021-03-20Add AllocatePixMap method on Surface to create a pixmap surface.Neil1-15/+38
2021-03-20Use SurfaceMode struct as a way to inform Surface of modes like code page andNeil1-3/+28
2021-03-25Add FillRectangleAligned to align rectangle to pixel grid on x-axis beforeNeil1-0/+5
2021-03-20Implement LineDraw and PolyLine.Neil1-0/+27
2021-03-20Implement Stadium on all platforms except for Win32 GDI.Neil1-2/+61
2021-03-20Implement RectangleFrame.Neil1-0/+10
2021-03-25Use FillStroke for parameters to Polygon, RectangleDraw, RoundedRectangle, andNeil1-0/+59
2021-03-19Support strokeWidth and float cornerSize in AlphaRectangle. Use FillStrokeNeil1-0/+26
2021-03-25Implement translucent FillRectangle.Neil1-4/+23
2021-03-19UTF-8 text drawing and measurement.Neil1-0/+88
2021-03-19Add an explicit FlushDrawing method to Surface that should be called afterNeil1-0/+4
2021-03-19Implement PopClip to allow local clipping.Neil1-1/+13
2021-03-19Add Surface::PixelDivisions which detects 'retina' displays that useNeil1-0/+6
2021-03-19Add Platform::Supports for SupportsFeature API.Neil1-0/+14
2021-03-18Make Surface::Release and callers (where possible) noexcept.Neil1-2/+2
2021-03-18Use unique_ptr to add to RGBAImageSet.Neil1-7/+8
2021-03-18Use unique_ptr for Surface::Allocate to show transfer of ownership.Neil1-2/+2
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/+4
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-7/+7
2021-03-17Remove Window::SetFont as never used.Neil1-4/+0
2021-03-17Change Font to an interface and stop using FontID. Fonts are shared andNeil1-165/+140
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-5/+5
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-40/+0
2021-03-16Convert Platform from a class to a namespace. Does not change callers.Neil1-5/+5
2020-11-02Use std::size instead of ELEMENTS so StringCopy.h is only used by Lexilla andNeil1-1/+0
2020-07-31More consistent rectangle arguments.Neil1-11/+10
2020-07-31Simplify code by using CAIRO_EXTEND_REPEAT to tile a pattern instead of loopingNeil1-21/+6
2020-05-01Bug [#2173]. Tweak font measurement so underscores more likely visible.Neil1-2/+2
2020-03-26Fix spelling mistakes.Neil1-3/+3
2020-03-19Use dynamic_cast and assertion to make bugs more obvious.Neil1-26/+31
2020-02-15Extract image conversion from RGBA to BGRA premultiplied into common function.Neil1-10/+5
2019-09-30Delete standard functions on classes where there could be attempts to copy.Neil Hodgson1-1/+26
2019-03-27Ran astyle to standardize formatting.Neil1-117/+117
2019-03-27Use const where reasonable. Some additional type safety.Neil1-72/+77
2019-03-27Replace NULL/0 with nullptr. Mark noexcept where simple.Neil1-99/+104
2019-03-27Use size_t for consistency and to avoid casts.Neil1-4/+4
2019-03-27Add <algorithm> for std::min/max. Standardize on _WIN32 to gate Win32 features.Neil1-0/+1
2019-03-25Simplify with range for.Neil1-2/+2
2019-03-25Use generic std::abs instead of abs and fabs.Neil1-3/+3
2019-03-25Use generic versions of ceil, floor, round, lround, trunc from <cmath>.Neil1-2/+2
2018-06-02Define IScreenLineLayout as the main interface for implementing bidirectionalNeil1-13/+3
2018-05-23Add definitions for bidirectional support to Platform.h and provide emptyNeil1-0/+20