From da35fe11125de172c49f0e3f57a74b5a7cfd8363 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Thu, 3 Feb 2011 02:41:21 +0000 Subject: [PATCH] cursor type enum git-svn-id: svn://qnap.local/TwoTerm/trunk@2015 5590a31f-7b70-45f8-8c82-aa3a8e5f4507 --- cpp/Screen.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cpp/Screen.h b/cpp/Screen.h index 2d1b820..438dc1f 100644 --- a/cpp/Screen.h +++ b/cpp/Screen.h @@ -84,6 +84,13 @@ public: EraseLineAfterCursor }; + enum CursorType { + CursorNone, + CursorUnderscore, + CursorPipe, + CursorBlock + }; + Screen(unsigned height = 24, unsigned width = 80);