summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/widget_layer.h
blob: 68127115d77fc614cef92c2ac8f908440c579509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/* -------------------------------------------------------------------------- */
/*                                                                            */
/* [widget_layer.h]         Widget Layer                                      */
/*                                                                            */
/* -------------------------------------------------------------------------- */

// proposal of a widget Layer in opie-console
//
// fellow devels:
//   just mail me (ibotty@web.de), what you additionally need from the main widget
//   (or say in chat)

#ifndef WIDGET_LAYER_H
#define WIDGET_LAYER_H

// qt includes
#include <qapplication.h>
#include <qframe.h>
#include <qarray.h>
#include <qtimer.h>
#include <qkeycode.h>
#include <qclipboard.h>


// opie-console includes
#include "session.h"
#include "common.h"
#include "profile.h"


/*
 * given a pseudo location ( column, line ),
 * returns the actual index, in the QArray<Character>
 */
#define loc(X,Y) ((Y)*m_columns+(X))



extern unsigned short vt100_graphics[32];

class WidgetLayer : public QFrame
{ Q_OBJECT

public:

	/**
	 * constructor
	 * @param const Profile &config, the configuration for this widget
	 * @param QWidget *parent, the parent widget
	 * @param const char *name, the name of the widget, defaults to ""
	 */
	WidgetLayer( const Profile& config, QWidget *parent=0, const char *name=0 );

	/**
	 * destructor
	 */
	virtual ~WidgetLayer();

public:
	/**
	 * sets the image
	 * @param QArray<Character> const newimg, the new image
	 * @param int lines, lines count of newimg
	 * @param int columns, columns count of newimg
	 */
	virtual void setImage( QArray<Character> const newimg, int lines, int colums ) = 0;

	/**
	 * annoy the user
	 */
	void bell();

	/**
	 * @return int m_lines, the lines count
	 */
	int lines()	{ return m_lines; }

	/**
	 * @return int m_columns, the columns count
	 */
	int columns()	{ return m_columns; }

	/**
	 * insert current selection (currently this is only the clipboard)
	 */
	void insertSelection();

	/**
	 * insert text
	 * @param QString text, the text to be inserted
	 */
	void insertText( QString text );

	/**
	 * set selection (clipboard) to text
	 * @param const QString &text, the text to be selected
	 */
	void setSelection( const QString &text );

	/**
	 * paste content of clipboard
	 */
	void pasteClipboard();


	/**
	 * reload configuration
	 * @param const Profile& config, the config to be used (may be the same as in constructor)
	 */
	virtual void reloadConfig( const Profile& config ) = 0;


	/**
	 * sets the scrollbar (if implemented by successor of this class)
	 */
	virtual void setScroll( int cursor, int slines ) = 0;

	/**
	 * scrolls (if implemented, by successor of this class)
	 * @param int value, how much the widget should scroll up (positive value) or down (negative value)
	 */
	virtual void scroll( int value ) = 0;


	virtual bool eventFilter( QObject *obj, QEvent *event );


	QSize sizeHint();

	virtual QSize calcSize( int cols, int lins ) const = 0;
signals:

	/**
	 * key was pressed
	 */
	void keyPressed( QKeyEvent *e );

	/**
	 * whenever Mouse selects something
	 * @param int button, the button that us pressed :
	 * 		0	left Button
	 * 		3	Button released
	 * @param int x, x position
	 * @param int y, y position
	 *
	 * // numbering due to layout in old TEWidget
	 */
	void mousePressed( int button, int x, int y );

	/**
	 * size of image changed
	 * @param int lines, line count of new size
	 * @param int columns, column count of new size
	 */
	void imageSizeChanged( int lines, int columns );

	/**
	 * cursor in history changed
	 * @param int value, value of history cursor
	 */
	void historyCursorChanged( int value );

	/**
	 * selection should be cleared
	 */
	void selectionCleared();

	/**
	 * selection begin
	 * @param const int x, x position
	 * @param const int y, y position
	 */
	void selectionBegin( const int x, const int y );

	/**
	 * selection extended
	 *  (from begin (s.a.) to x, y)
	 *  @param const int x, x position
	 *  @param const int y, y position
	 */
	void selectionExtended( const int x, const int y );

	/**
	 * selection end
	 * @param const bool lineBreakPreserve, preserve line breaks in selection
	 */
	void selectionEnd( const bool lineBreakPreserve );



// protected methods
protected:

	// image operations

	/**
	 * changes image, to suit new size
	 * TODO: find meaningful name!
	 */
	void propagateSize();

	/**
	 *determines count of lines and columns
	 */
	virtual void calcGeometry() = 0;

	/**
	 * makes an empty image
	 */
	void makeImage();

	/**
	 * clears the image
	 */
	void clearImage();

protected slots:

	/**
	 * clear selection
	 */
	void onClearSelection();


// protected vars
protected:

	/**
	 * current Session
	 */
	Session *m_session;

	/**
	 * current character image
	 *
	 * a Character at loc( column, line )
	 * has the actual index:
	 *  ix = line * m_columns + column;
	 *
	 * use loc( x, y ) macro to access.
	 */
	QArray<Character> m_image;

	/**
	 * lines count
	 */
	int m_lines;

	/**
	 * columns count
	 */
	int m_columns;

	/**
	 * clipboard
	 */
	QClipboard* m_clipboard;

	/**
	 * whether widget is resizing
	 */
	bool m_resizing;
};

#endif // WIDGET_LAYER_H