summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/plugins/src/accessible/widgets/qaccessiblewidget.h
blob: 2effd69c2af567f18e3da2d3e4a603559f1263ac (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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
#ifndef TQACCESSIBLEWIDGET_H
#define TQACCESSIBLEWIDGET_H

#include <tqaccessible.h>

class TQButton;
class TQScrollView;
class TQHeader;
class TQSpinWidget;
class TQScrollBar;
class TQSlider;
class TQListBox;
class TQListView;
class TQTextEdit;
class TQTabBar;
class TQComboBox;
class TQTitleBar;
class TQWidgetStack;

#ifndef TQT_NO_ICONVIEW
class TQIconView;
#endif


TQString buddyString( TQWidget * );
TQString stripAmp( const TQString& );
TQString hotKey( const TQString& );

class TQAccessibleWidget : public TQAccessibleObject
{
public:
    TQAccessibleWidget( TQObject *o, Role r = Client, TQString name = TQString::null, 
	TQString description = TQString::null, TQString value = TQString::null, 
	TQString help = TQString::null, TQString defAction = TQString::null,
	TQString accelerator = TQString::null, State s = Normal );

    ~TQAccessibleWidget();

    int		controlAt( int x, int y ) const;
    TQRect	rect( int control ) const;
    int		navigate( NavDirection direction, int startControl ) const;
    int		childCount() const;
    TQRESULT	queryChild( int control, TQAccessibleInterface ** ) const;
    TQRESULT	queryParent( TQAccessibleInterface ** ) const;

    TQString	text( Text t, int control ) const;
    void	setText( Text t, int control, const TQString &text );
    Role	role( int control ) const;
    State	state( int control ) const;

    bool	doDefaultAction( int control );
    bool	setFocus( int control );
    bool	setSelected( int control, bool on, bool extend );
    void	clearSelection();
    TQMemArray<int> selection() const;

    static ulong objects;

protected:
    TQWidget *widget() const;

private:
    Role role_;
    State state_;
    TQString name_;
    TQString description_;
    TQString value_;
    TQString help_;
    TQString defAction_;
    TQString accelerator_;
};

class TQAccessibleWidgetStack : public TQAccessibleWidget
{
public:
    TQAccessibleWidgetStack( TQObject *o );

    int		controlAt( int x, int y ) const;
    TQRESULT	queryChild( int control, TQAccessibleInterface ** ) const;

protected:
    TQWidgetStack *widgetStack() const;
};

class TQAccessibleButton : public TQAccessibleWidget
{
public:
    TQAccessibleButton( TQObject *o, Role r, TQString description = TQString::null,
	TQString help = TQString::null );

    TQString	text( Text t, int control ) const;
    State	state( int control ) const;

    bool	doDefaultAction( int control );

protected:
    TQButton *button() const;
};

class TQAccessibleRangeControl : public TQAccessibleWidget
{
public:
    TQAccessibleRangeControl( TQObject *o, Role role, TQString name = TQString::null, 
	TQString description = TQString::null, TQString help = TQString::null, 
	TQString defAction = TQString::null, TQString accelerator = TQString::null );

    TQString	text( Text t, int control ) const;
};

class TQAccessibleSpinWidget : public TQAccessibleRangeControl
{
public:
    TQAccessibleSpinWidget( TQObject *o );

    int		controlAt( int x, int y ) const;
    TQRect	rect( int control ) const;
    int		navigate( NavDirection direction, int startControl ) const;
    int		childCount() const;
    TQRESULT	queryChild( int control, TQAccessibleInterface ** ) const;

    TQString	text( Text t, int control ) const;
    Role	role( int control ) const;
    State	state( int control ) const;

    bool	doDefaultAction( int control );
};

class TQAccessibleScrollBar : public TQAccessibleRangeControl
{
public:
    TQAccessibleScrollBar( TQObject *o, TQString name = TQString::null, 
	TQString description = TQString::null, TQString help = TQString::null, 
	TQString defAction = TQString::null, TQString accelerator = TQString::null );

    int		controlAt( int x, int y ) const;
    TQRect	rect( int control ) const;
    int		navigate( NavDirection direction, int startControl ) const;
    int		childCount() const;
    TQRESULT	queryChild( int control, TQAccessibleInterface ** ) const;

    TQString	text( Text t, int control ) const;
    Role	role( int control ) const;

    bool	doDefaultAction( int control );

protected:
    TQScrollBar *scrollBar() const;
};

class TQAccessibleSlider : public TQAccessibleRangeControl
{
public:
    TQAccessibleSlider( TQObject *o, TQString name = TQString::null, 
	TQString description = TQString::null, TQString help = TQString::null, 
	TQString defAction = TQString::null, TQString accelerator = TQString::null );

    int		controlAt( int x, int y ) const;
    TQRect	rect( int control ) const;
    int		navigate( NavDirection direction, int startControl ) const;
    int		childCount() const;
    TQRESULT	queryChild( int control, TQAccessibleInterface ** ) const;

    TQString	text( Text t, int control ) const;
    Role	role( int control ) const;

    bool	doDefaultAction( int control );

protected:
    TQSlider *slider() const;
};

class TQAccessibleText : public TQAccessibleWidget
{
public:
    TQAccessibleText( TQObject *o, Role role, TQString name = TQString::null, 
	TQString description = TQString::null, TQString help = TQString::null, 
	TQString defAction = TQString::null, TQString accelerator = TQString::null );

    TQString	text( Text t, int control ) const;
    State	state( int control ) const;
    void        setText(Text t, int control, const TQString &text);
};

class TQAccessibleDisplay : public TQAccessibleWidget
{
public:
    TQAccessibleDisplay( TQObject *o, Role role, TQString description = TQString::null, 
	TQString value = TQString::null, TQString help = TQString::null, 
	TQString defAction = TQString::null, TQString accelerator = TQString::null );

    TQString	text( Text t, int control ) const;
    Role	role( int control ) const;
};

class TQAccessibleHeader : public TQAccessibleWidget
{
public:
    TQAccessibleHeader( TQObject *o, TQString description = TQString::null, 
	TQString value = TQString::null, TQString help = TQString::null, 
	TQString defAction = TQString::null, TQString accelerator = TQString::null );

    int		controlAt( int x, int y ) const;
    TQRect	rect( int control ) const;
    int		navigate( NavDirection direction, int startControl ) const;
    int		childCount() const;
    TQRESULT	queryChild( int control, TQAccessibleInterface ** ) const;

    TQString	text( Text t, int control ) const;

    Role role( int control ) const;
    State state( int control ) const;

protected:
    TQHeader *header() const;
};

class TQAccessibleTabBar : public TQAccessibleWidget
{
public:
    TQAccessibleTabBar( TQObject *o, TQString description = TQString::null, 
	TQString value = TQString::null, TQString help = TQString::null, 
	TQString defAction = TQString::null, TQString accelerator = TQString::null );

    int		controlAt( int x, int y ) const;
    TQRect	rect( int control ) const;
    int		navigate( NavDirection direction, int startControl ) const;
    int		childCount() const;
    TQRESULT	queryChild( int control, TQAccessibleInterface ** ) const;

    TQString	text( Text t, int control ) const;

    Role	role( int control ) const;
    State	state( int control ) const;

    bool	doDefaultAction( int control );
    bool	setSelected( int control, bool on, bool extend );
    void	clearSelection();
    TQMemArray<int> selection() const;    

protected:
    TQTabBar *tabBar() const;
};

class TQAccessibleComboBox : public TQAccessibleWidget
{
public:
    TQAccessibleComboBox( TQObject *o );

    int		controlAt( int x, int y ) const;
    TQRect	rect( int control ) const;
    int		navigate( NavDirection direction, int startControl ) const;
    int		childCount() const;
    TQRESULT	queryChild( int control, TQAccessibleInterface ** ) const;

    TQString	text( Text t, int control ) const;

    Role	role( int control ) const;
    State	state( int control ) const;

    bool	doDefaultAction( int control );

protected:
    TQComboBox *comboBox() const;
};

class TQAccessibleTitleBar : public TQAccessibleWidget
{
public:
    TQAccessibleTitleBar( TQObject *o );

    int		controlAt( int x, int y ) const;
    TQRect	rect( int control ) const;
    int		navigate( NavDirection direction, int startControl ) const;
    int		childCount() const;
    TQRESULT	queryChild( int control, TQAccessibleInterface ** ) const;

    TQString	text( Text t, int control ) const;
    Role	role( int control ) const;
    State	state( int control ) const;

    bool	doDefaultAction( int control );

protected:
    TQTitleBar *titleBar() const;
};

class TQAccessibleScrollView : public TQAccessibleWidget
{
public:
    TQAccessibleScrollView( TQObject *o, Role role, TQString name = TQString::null,
	TQString description = TQString::null, TQString value = TQString::null, 
	TQString help = TQString::null, TQString defAction = TQString::null, 
	TQString accelerator = TQString::null );

    TQString	text( Text t, int control ) const;

    virtual int itemAt( int x, int y ) const;
    virtual TQRect tqitemRect( int item ) const;
    virtual int itemCount() const;
};

class TQAccessibleViewport : public TQAccessibleWidget
{
public:
    TQAccessibleViewport( TQObject *o, TQObject *sv );

    int		controlAt( int x, int y ) const;
    TQRect	rect( int control ) const;
    int		navigate( NavDirection direction, int startControl ) const;
    int		childCount() const;

    TQString	text( Text t, int control ) const;
    Role	role( int control ) const;
    State	state( int control ) const;

    bool	doDefaultAction( int control );
    bool	setFocus( int control );
    bool	setSelected( int control, bool on, bool extend );
    void	clearSelection();
    TQMemArray<int> selection() const;

protected:
    TQAccessibleScrollView *scrollView() const;
    TQScrollView *scrollview;
};

class TQAccessibleListBox : public TQAccessibleScrollView
{
public:
    TQAccessibleListBox( TQObject *o );

    int		itemAt( int x, int y ) const;
    TQRect	tqitemRect( int item ) const;
    int		itemCount() const;

    TQString	text( Text t, int control ) const;
    Role	role( int control ) const;
    State	state( int control ) const;

    bool	setFocus( int control );
    bool	setSelected( int control, bool on, bool extend );
    void	clearSelection();
    TQMemArray<int> selection() const;

protected:
    TQListBox *listBox() const;
};

class TQAccessibleListView : public TQAccessibleScrollView
{
public:
    TQAccessibleListView( TQObject *o );

    int		itemAt( int x, int y ) const;
    TQRect	tqitemRect( int item ) const;
    int		itemCount() const;

    TQString	text( Text t, int control ) const;
    Role	role( int control ) const;
    State	state( int control ) const;

    bool	setFocus( int control );
    bool	setSelected( int control, bool on, bool extend );
    void	clearSelection();
    TQMemArray<int> selection() const;

protected:
    TQListView *listView() const;
};

#ifndef TQT_NO_ICONVIEW
class TQAccessibleIconView : public TQAccessibleScrollView
{
public:
    TQAccessibleIconView( TQObject *o );

    int		itemAt( int x, int y ) const;
    TQRect	tqitemRect( int item ) const;
    int		itemCount() const;

    TQString	text( Text t, int control ) const;
    Role	role( int control ) const;
    State	state( int control ) const;

    bool	setFocus( int control );
    bool	setSelected( int control, bool on, bool extend );
    void	clearSelection();
    TQMemArray<int> selection() const;

protected:
    TQIconView *iconView() const;
};
#endif

class TQAccessibleTextEdit : public TQAccessibleScrollView
{
public:
    TQAccessibleTextEdit( TQObject *o );

    int		itemAt( int x, int y ) const;
    TQRect	tqitemRect( int item ) const;
    int		itemCount() const;

    TQString	text( Text t, int control ) const;
    void        setText(Text t, int control, const TQString &text);
    Role	role( int control ) const;

protected:
    TQTextEdit *textEdit() const;
};

#endif // TQ_ACESSIBLEWIDGET_H