aboutsummaryrefslogtreecommitdiff
path: root/graphics
AgeCommit message (Collapse)Author
2019-12-11GRAPHICS: MACGUI: Implemented non-binary version of inline text formattingEugene Sandulenko
2019-12-11GRAPHICS: MACGUI: Added setup sanity checks to MacMenuEugene Sandulenko
2019-12-11GRAPHICS: Fix Missing Default Switch Cases in LarryScaleD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-12-01GRAPHICS: MACGUI: Fix default font sizeEugene Sandulenko
2019-12-01GRAPHICS: MACGUI: Fix crash on MacText reallocationEugene Sandulenko
2019-11-24MACGUI: Recognise the fact that Geneva font lives with 2 IDsEugene Sandulenko
2019-11-24MACGUI: Do not recalc empty textEugene Sandulenko
2019-11-24MACGUI: Temporary fix for Geneva font dualityEugene Sandulenko
2019-11-24GUI: Add DropdownButtonWidget and use it in the launcher for mass addBastien Bouclet
DropdownButtonWidget is a button split in two parts vertically. Clicking the left part triggers a default action. Clicking the right part shows a list of other actions the user can choose from. Using this widget on the launcher lets 'Mass add' be a secondary action of the 'Add' button, removing the necessity of pressing the shift key to access the feature.
2019-11-17GRAPHICS: Remove downscalers only used by the Windows CE portCameron Cawley
2019-11-17GRAPHICS: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-11-13GRAPHICS: Enhanced setAlpha methodEugene Sandulenko
2019-11-13GRAPHICS: Added setAlpha() method to TransparentSurfaceEugene Sandulenko
2019-10-20GRAPHICS: MACGUI: Added possibility to render MacText at any desired placeEugene Sandulenko
2019-10-19GRAPHICS: MACGUI: Added default font for MacTextEugene Sandulenko
2019-10-18GRAPHICS: MACGUI: Switched MacText to U32String internallyEugene Sandulenko
2019-10-18GRAPHICS: MACGUI: Fix compilation without freetypeEugene Sandulenko
2019-10-18GRAPHICS: MACGUI: Added support for Unicode fonts in menuEugene Sandulenko
2019-10-17GRAPHICS: MACGUI: Fix crash when clicking on the top windowEugene Sandulenko
2019-10-17GRAPHICS: MACGUI: Add possibility to set WM mode right awayEugene Sandulenko
This lets us to not load mac fonts when the built-in mode in enforced
2019-10-15GRAPHICS: MACGUI: Added possibility to create read only text windowsEugene Sandulenko
2019-10-15GRAPHICS: MACGUI: Fix window deletionEugene Sandulenko
2019-10-14GRAPHICS: MACGUI: Crash-proof window management.Eugene Sandulenko
2019-10-14GRAPHICS: MACGUI: Fix GCC Signed vs. Unsigned WarningsD G Turner
2019-10-13GRAPHICS: MACGUI: Fix menu width when there is a submenuEugene Sandulenko
2019-10-13GRAPHICS: MACGUI: Process tab symbol in Windows menusEugene Sandulenko
2019-10-13GRAPHICS: MACGUI: Fix assertion if shortcut in menu element is a last symbolMarisa-Chan
2019-10-08GRAPHICS: Fix drawing rounded rectangle borders for the non AA rendererBastien Bouclet
The check for the clipping rect was in the non-clip version of the method, and was using values not in screen-space.
2019-10-07GRAPHICS: Fix modern theme tab widgets being 2px too tallBastien Bouclet
This was noticeable in the graphics tab of the options dialog when scrolling down. The widgets would be partially drawn on top of the tabs.
2019-10-07GRAPHICS: Vector renderer clipping rect related cleanupsBastien Bouclet
Selecting whether a clipping variant of a draw call needs to be used is no longer the responsibility to the caller. The clipping rect is now part of the state of the renderer. Also fix some of the draw calls to better apply the clipping rect.
2019-10-05GRAPHICS: MACGUI: Fix Possible Out of Bounds Read with Trailing AmpersandD G Turner
Since the ampersand is used as an escape character, it is repeated when it actually appears in the string. Unfortunately, this requires a one character lookahead which could result in reading beyond the string if this ampersand is the last character (which would be malformed, but possible). To avoid an out of bounds read, this is now qualified by the string length. Trailing ampersands will now be ignored without issue.
2019-10-05GRAPHICS: MACGUI: Fix GCC Signed vs. Unsigned WarningsD G Turner
2019-10-04GRAPHICS: MACGUI: Add possibility to setup engine redraw callbackEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Implement enforcing built-in fontsEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Add possibility to pass borders as a surfaceEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Fix action id processing from the PE exe menusEugene Sandulenko
2019-10-04GRAPHICS: Properly process && in PE exe menusEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Enhande printMenu outputEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Properly process action menu ids from PE exeEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Remove extra debug outputEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Unify MacMenuItem and MacMenuSubItemEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Implement Windows-style shortcut underliningEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Process Windows menu shortcutsEugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Support grayed out menu items in PE exeEugene Sandulenko
2019-10-03GRAPHICS: MACGUI: Refactor some codeEugene Sandulenko
2019-10-03GRPAHICS: MACGUI: Avoid overdrawEugene Sandulenko
2019-10-03GRAPHICS: MACGUI: Implement hovering out of menus behaviourEugene Sandulenko
2019-10-03GRAPHICS: MACGUI: Fix nested menus parsingEugene Sandulenko
2019-10-03GRAPHICS: MACGUI: Fix nested menus command processingEugene Sandulenko
2019-10-03GRAPHICS: MACGUI: Fix menu re-entranceEugene Sandulenko