mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
feat(scintilla): extend FontWeight enum with all DirectWrite values
Adds full range of font weights to support all DirectWrite variants: - Thin (100), ExtraLight (200), Light (300), SemiLight (350) - Normal (400), Medium (500) - SemiBold (600), Bold (700), ExtraBold (800), Black (900), ExtraBlack (950)
This commit is contained in:
parent
caaa9a4f03
commit
3a26c0fd67
@ -159,11 +159,22 @@ enum class CaseVisible {
|
||||
Camel = 3,
|
||||
};
|
||||
|
||||
// >>>>>>>>>>>>>>> BEG NON STD SCI PATCH >>>>>>>>>>>>>>>
|
||||
// Extended FontWeight enum to support all DirectWrite font weight values
|
||||
enum class FontWeight {
|
||||
Thin = 100,
|
||||
ExtraLight = 200,
|
||||
Light = 300,
|
||||
SemiLight = 350,
|
||||
Normal = 400,
|
||||
Medium = 500,
|
||||
SemiBold = 600,
|
||||
Bold = 700,
|
||||
ExtraBold = 800,
|
||||
Black = 900,
|
||||
ExtraBlack = 950,
|
||||
};
|
||||
// <<<<<<<<<<<<<<< END NON STD SCI PATCH <<<<<<<<<<<<<<<
|
||||
|
||||
enum class FontStretch {
|
||||
UltraCondensed = 1,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user