summaryrefslogtreecommitdiff
path: root/Source/Kernel/VTManager/SimpleVT.class.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Kernel/VTManager/SimpleVT.class.h')
-rw-r--r--Source/Kernel/VTManager/SimpleVT.class.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Kernel/VTManager/SimpleVT.class.h b/Source/Kernel/VTManager/SimpleVT.class.h
index 9eda6de..8639a82 100644
--- a/Source/Kernel/VTManager/SimpleVT.class.h
+++ b/Source/Kernel/VTManager/SimpleVT.class.h
@@ -10,7 +10,7 @@ class SimpleVT : public VirtualTerminal {
u8int m_color;
u32int m_maprow, m_mapcol;
- bool m_mapped;
+ bool m_mapped, m_hideCursor;
u32int m_csrlin, m_csrcol;
@@ -24,6 +24,10 @@ class SimpleVT : public VirtualTerminal {
bool isBoxed() { return true; }
u8int height() { return m_rows; }
u8int width() { return m_cols; }
+ u8int csrlin() { return m_csrlin; }
+ u8int csrcol() { return m_csrcol; }
+
+ void hideCursor(bool hide = true) { m_hideCursor = hide; }
void map(s32int row = -1, s32int col = -1);
void unmap();