summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/emulation_widget.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/emulation_widget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/emulation_widget.h38
1 files changed, 35 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/emulation_widget.h b/noncore/apps/opie-console/emulation_widget.h
index 56ea15f..e185534 100644
--- a/noncore/apps/opie-console/emulation_widget.h
+++ b/noncore/apps/opie-console/emulation_widget.h
@@ -13,2 +13,3 @@
+
/**
@@ -42,3 +43,3 @@ public:
*/
- virtual void setImage( QArray<Character> const newimg, int columns, int lines ) {};
+ virtual void setImage( QArray<Character> const newimg, int columns, int lines );
@@ -48,3 +49,3 @@ public:
*/
- virtual void reloadConfig( const Profile& config ) {};
+ virtual void reloadConfig( const Profile& config );
@@ -66,3 +67,9 @@ protected:
*/
- virtual void calcGeometry() {};
+ virtual void calcGeometry();
+
+
+ /**
+ * @param const ColorEntry* table, the new color table
+ */
+ void setColorTable( const ColorEntry table[] );
@@ -79,2 +86,27 @@ protected:
+protected:
+
+ enum ScrollLocation
+ {
+ SCRNONE,
+ SCRLEFT,
+ SCRIGHT
+ };
+
+ int f_height;
+ int f_width;
+ int f_ascent;
+ int m_blX;
+ int m_blY;
+ int m_brX;
+
+ int m_bY;
+ int m_bX;
+ QScrollBar* m_scrollbar;
+
+ ScrollLocation scrollLoc;
+
+ ColorEntry* color_table;
+
+ bool blinking;
};