summaryrefslogtreecommitdiff
path: root/core/apps/embeddedkonsole/TEScreen.h
Side-by-side diff
Diffstat (limited to 'core/apps/embeddedkonsole/TEScreen.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/TEScreen.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/core/apps/embeddedkonsole/TEScreen.h b/core/apps/embeddedkonsole/TEScreen.h
index ba47ee5..a28f7c5 100644
--- a/core/apps/embeddedkonsole/TEScreen.h
+++ b/core/apps/embeddedkonsole/TEScreen.h
@@ -11,7 +11,7 @@
/* -------------------------------------------------------------------------- */
-/* */
+/* */
/* Ported Konsole to Qt/Embedded */
-/* */
+/* */
/* Copyright (C) 2000 by John Ryland <jryland@trolltech.com> */
-/* */
+/* */
/* -------------------------------------------------------------------------- */
@@ -142,2 +142,3 @@ public: // these are all `Screen' operations
int getLines() { return lines; }
+
/*! return the number of columns. */
@@ -150,2 +151,7 @@ public: // these are all `Screen' operations
+ /*! set the position of the horizontal cursor. */
+ void setHorzCursor(int cursor);
+ /*! return the position of the horizontal cursor. */
+ int getHorzCursor();
+
int getHistLines ();
@@ -201,2 +207,4 @@ private:
HistoryScroll hist;
+
+ int horzCursor;