summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/emulation_widget.h
authoribotty <ibotty>2002-10-12 17:27:39 (UTC)
committer ibotty <ibotty>2002-10-12 17:27:39 (UTC)
commit9c983d273b055d847cf2d1fa4f5b6e082ce850c9 (patch) (unidiff)
treee9e6c6320ad3ba926089786f7b187dc62b0af359 /noncore/apps/opie-console/emulation_widget.h
parente6b92ad451dba66f4eb5000a41b96eb2ee203dce (diff)
downloadopie-9c983d273b055d847cf2d1fa4f5b6e082ce850c9.zip
opie-9c983d273b055d847cf2d1fa4f5b6e082ce850c9.tar.gz
opie-9c983d273b055d847cf2d1fa4f5b6e082ce850c9.tar.bz2
added functionality to emulation_widget
Diffstat (limited to 'noncore/apps/opie-console/emulation_widget.h') (more/less context) (show 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
@@ -11,6 +11,7 @@
11#include <qrect.h> 11#include <qrect.h>
12 12
13 13
14
14/** 15/**
15 * EmulationWidget 16 * EmulationWidget
16 * simple implementation of EmulationLayer 17 * simple implementation of EmulationLayer
@@ -40,13 +41,13 @@ public:
40 * @param int lines, lines of the new image 41 * @param int lines, lines of the new image
41 * @param int columns, columns of the new image 42 * @param int columns, columns of the new image
42 */ 43 */
43 virtual void setImage( QArray<Character> const newimg, int columns, int lines ) {}; 44 virtual void setImage( QArray<Character> const newimg, int columns, int lines );
44 45
45 /** 46 /**
46 * reloads configuration 47 * reloads configuration
47 * @param const Profile& config, configuration 48 * @param const Profile& config, configuration
48 */ 49 */
49 virtual void reloadConfig( const Profile& config ) {}; 50 virtual void reloadConfig( const Profile& config );
50 51
51 /** 52 /**
52 * sets the scrollbar (not yet implemented) 53 * sets the scrollbar (not yet implemented)
@@ -64,7 +65,13 @@ protected:
64 /** 65 /**
65 * calculates current image bounds 66 * calculates current image bounds
66 */ 67 */
67 virtual void calcGeometry() {}; 68 virtual void calcGeometry();
69
70
71 /**
72 * @param const ColorEntry* table, the new color table
73 */
74 void setColorTable( const ColorEntry table[] );
68 75
69 /** 76 /**
70 * draws a String 77 * draws a String
@@ -77,4 +84,29 @@ protected:
77 */ 84 */
78 void drawAttrString( QString& string, QPainter& painter, QRect rect, Character attr, bool pm, bool clear ); 85 void drawAttrString( QString& string, QPainter& painter, QRect rect, Character attr, bool pm, bool clear );
79 86
87protected:
88
89 enum ScrollLocation
90 {
91 SCRNONE,
92 SCRLEFT,
93 SCRIGHT
94 };
95
96 int f_height;
97 int f_width;
98 int f_ascent;
99 int m_blX;
100 int m_blY;
101 int m_brX;
102
103 int m_bY;
104 int m_bX;
105 QScrollBar* m_scrollbar;
106
107 ScrollLocation scrollLoc;
108
109 ColorEntry* color_table;
110
111 bool blinking;
80}; 112};