mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
feat(scintilla): add FontStyle enum for Oblique font support
Adds FontStyle enum matching DWRITE_FONT_STYLE values: - Normal (0) - Oblique (1) - Italic (2) This provides explicit API support for oblique fonts like 'Iosevka Oblique'.
This commit is contained in:
parent
3a26c0fd67
commit
9abb155c85
@ -188,6 +188,16 @@ enum class FontStretch {
|
||||
UltraExpanded = 9,
|
||||
};
|
||||
|
||||
// >>>>>>>>>>>>>>> BEG NON STD SCI PATCH >>>>>>>>>>>>>>>
|
||||
// FontStyle enum to support Oblique fonts (e.g., "Iosevka Oblique")
|
||||
// Values match DWRITE_FONT_STYLE
|
||||
enum class FontStyle {
|
||||
Normal = 0,
|
||||
Oblique = 1,
|
||||
Italic = 2,
|
||||
};
|
||||
// <<<<<<<<<<<<<<< END NON STD SCI PATCH <<<<<<<<<<<<<<<
|
||||
|
||||
enum class Element {
|
||||
List = 0,
|
||||
ListBack = 1,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user