summaryrefslogtreecommitdiff
path: root/Source/Kernel/VTManager/ScrollableVT.class.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Kernel/VTManager/ScrollableVT.class.h')
-rw-r--r--Source/Kernel/VTManager/ScrollableVT.class.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/Kernel/VTManager/ScrollableVT.class.h b/Source/Kernel/VTManager/ScrollableVT.class.h
index 6d29645..ce31225 100644
--- a/Source/Kernel/VTManager/ScrollableVT.class.h
+++ b/Source/Kernel/VTManager/ScrollableVT.class.h
@@ -9,14 +9,15 @@ class ScrollableVT : public SimpleVT {
u32int m_keeprows;
u32int m_linesup;
+ void updateCursor();
+ void redraw();
+ void scroll();
+
public:
ScrollableVT(u32int rows, u32int cols, u32int keepRows, u8int fgcolor = 7, u8int bgcolor = 0);
virtual ~ScrollableVT();
virtual void putChar(u32int row, u32int col, WChar c);
- void updateCursor();
- void redraw();
- void scroll();
void keyPress(keypress_t kp);
};