1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibGUI+TextEditor: Allow cursor line highlighting to be toggled

This commit is contained in:
thankyouverycool 2021-09-11 11:08:01 -04:00 committed by Andreas Kling
parent a5ff941c86
commit 9a5a9fbee0
4 changed files with 23 additions and 1 deletions

View file

@ -68,6 +68,9 @@ public:
void set_visualize_leading_whitespace(bool);
bool visualize_leading_whitespace() const { return m_visualize_leading_whitespace; }
bool is_cursor_line_highlighted() const { return m_cursor_line_highlighting; }
void set_cursor_line_highlighting(bool);
virtual bool is_automatic_indentation_enabled() const final { return m_automatic_indentation_enabled; }
void set_automatic_indentation_enabled(bool enabled) { m_automatic_indentation_enabled = enabled; }
@ -337,6 +340,7 @@ private:
WrappingMode m_wrapping_mode { WrappingMode::NoWrap };
bool m_visualize_trailing_whitespace { true };
bool m_visualize_leading_whitespace { false };
bool m_cursor_line_highlighting { true };
int m_line_spacing { 4 };
size_t m_soft_tab_width { 4 };
int m_horizontal_content_padding { 3 };