summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/widget_layer.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/widget_layer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/widget_layer.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/noncore/apps/opie-console/widget_layer.h b/noncore/apps/opie-console/widget_layer.h
index 99d248e..adf2038 100644
--- a/noncore/apps/opie-console/widget_layer.h
+++ b/noncore/apps/opie-console/widget_layer.h
@@ -7,7 +7,7 @@
7// proposal of a widget Layer in opie-console 7// proposal of a widget Layer in opie-console
8// 8//
9// fellow devels: 9// fellow devels:
10// just mail me (ibotty@web.de), what you additionally need from the main widget 10// just mail me (ibotty@web.de), what you additionally need from the main widget
11// (or say in chat) 11// (or say in chat)
12 12
13#ifndef WIDGET_LAYER_H 13#ifndef WIDGET_LAYER_H
@@ -54,7 +54,7 @@ public:
54 /** 54 /**
55 * sets the image 55 * sets the image
56 */ 56 */
57 virtual void setImage( QArray<Character> const newimg, int lines, int colums ); 57 virtual void setImage( QArray<Character> const newimg, int lines, int colums ) = 0;
58 58
59 /** 59 /**
60 * annoy the user 60 * annoy the user
@@ -65,7 +65,7 @@ public:
65 * return the lines count 65 * return the lines count
66 */ 66 */
67 int lines(){ return m_lines; } 67 int lines(){ return m_lines; }
68 68
69 /** 69 /**
70 * return the columns count 70 * return the columns count
71 */ 71 */
@@ -120,7 +120,7 @@ signals:
120 * selection should be cleared 120 * selection should be cleared
121 */ 121 */
122 void selectionCleared(); 122 void selectionCleared();
123 123
124 /** 124 /**
125 * selection begin 125 * selection begin
126 */ 126 */
@@ -142,7 +142,7 @@ signals:
142 142
143// protected methods 143// protected methods
144protected: 144protected:
145 145
146 // image operations 146 // image operations
147 147
148 /** 148 /**
@@ -165,9 +165,9 @@ protected:
165 * clears the image 165 * clears the image
166 */ 166 */
167 void clearImage(); 167 void clearImage();
168 168
169protected slots: 169protected slots:
170 170
171 /** 171 /**
172 * clear selection 172 * clear selection
173 */ 173 */
@@ -176,7 +176,7 @@ protected slots:
176 176
177// protected vars 177// protected vars
178protected: 178protected:
179 179
180 /** 180 /**
181 * current Session 181 * current Session
182 */ 182 */
@@ -184,11 +184,11 @@ protected:
184 184
185 /** 185 /**
186 * current character image 186 * current character image
187 * 187 *
188 * a Character at loc( column, line ) 188 * a Character at loc( column, line )
189 * has the actual index: 189 * has the actual index:
190 * ix = line * m_columns + column; 190 * ix = line * m_columns + column;
191 * 191 *
192 * use loc( x, y ) macro to access. 192 * use loc( x, y ) macro to access.
193 */ 193 */
194 QArray<Character> m_image; 194 QArray<Character> m_image;
@@ -209,7 +209,7 @@ protected:
209 QClipboard* m_clipboard; 209 QClipboard* m_clipboard;
210 210
211 /** 211 /**
212 * whether widget is resizing 212 * whether widget is resizing
213 */ 213 */
214 bool m_resizing; 214 bool m_resizing;
215}; 215};