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

Kernel: Mark Console::{hide,show}_cursor methods protected

Only the Console code in the Graphics directory should be able to call
on these methods. The set_cursor method stays public as VirtualConsole
uses that method to change the cursor position.
This commit is contained in:
Liav A 2022-09-20 22:44:48 +03:00 committed by Linus Groh
parent a40f289ee5
commit 0a5416a87a
3 changed files with 9 additions and 6 deletions

View file

@ -21,8 +21,6 @@ public:
virtual size_t bytes_per_base_glyph() const override { return 2; }
virtual void set_cursor(size_t x, size_t y) override;
virtual void hide_cursor() override;
virtual void show_cursor() override;
virtual void clear(size_t x, size_t y, size_t length) override;
virtual void write(size_t x, size_t y, char ch, bool critical = false) override;
virtual void write(size_t x, size_t y, char ch, Color background, Color foreground, bool critical = false) override;
@ -33,6 +31,9 @@ public:
virtual void disable() override { }
private:
virtual void hide_cursor() override;
virtual void show_cursor() override;
void clear_vga_row(u16 row);
explicit VGATextModeConsole(NonnullOwnPtr<Memory::Region>);