line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# You may distribute under the terms of either the GNU General Public License |
2
|
|
|
|
|
|
|
# or the Artistic License (the same terms as Perl itself) |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
# (C) Paul Evans, 2009-2017 -- leonerd@leonerd.org.uk |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
package Tickit::ContainerWidget; |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
19
|
|
9
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
15
|
|
10
|
1
|
|
|
1
|
|
16
|
use 5.010; # // |
|
1
|
|
|
|
|
2
|
|
11
|
1
|
|
|
1
|
|
3
|
use feature qw( switch ); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
83
|
|
12
|
1
|
|
|
1
|
|
4
|
use base qw( Tickit::Widget ); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
390
|
|
13
|
|
|
|
|
|
|
no if $] >= 5.017011, warnings => 'experimental::smartmatch'; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
our $VERSION = '0.52'; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
use Carp; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
use Scalar::Util qw( refaddr ); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
C - abstract base class for widgets that contain |
24
|
|
|
|
|
|
|
other widgets |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 SYNOPSIS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
TODO |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 DESCRIPTION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This class acts as an abstract base class for widgets that contain at leaast |
33
|
|
|
|
|
|
|
one other widget object. It provides storage for a hash of "options" |
34
|
|
|
|
|
|
|
associated with each child widget. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 STYLE |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
The following style tags are used: |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=over 4 |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=item :focus-child |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Set whenever a child widget within the container has the input focus. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=back |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=cut |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
sub new |
51
|
|
|
|
|
|
|
{ |
52
|
|
|
|
|
|
|
my $class = shift; |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
foreach my $method (qw( children )) { |
55
|
|
|
|
|
|
|
$class->can( $method ) or |
56
|
|
|
|
|
|
|
croak "$class cannot ->$method - do you subclass and implement it?"; |
57
|
|
|
|
|
|
|
} |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
my $self = $class->SUPER::new( @_ ); |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
$self->{child_opts} = {}; |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
return $self; |
64
|
|
|
|
|
|
|
} |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 $widget->add( $child, %opts ) |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Sets the child widget's parent, stores the options for the child, and calls |
69
|
|
|
|
|
|
|
the C method. The concrete implementation will have to |
70
|
|
|
|
|
|
|
implement storage of this child widget. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Returns the container C<$widget> itself, for easy chaining. |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=cut |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
sub add |
77
|
|
|
|
|
|
|
{ |
78
|
|
|
|
|
|
|
my $self = shift; |
79
|
|
|
|
|
|
|
my ( $child, %opts ) = @_; |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
$child->set_parent( $self ); |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
$self->{child_opts}{refaddr $child} = \%opts; |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
$self->children_changed; |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
return $self; |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head2 $widget->remove( $child_or_index ) |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
Removes the child widget's parent, and calls the C method. |
93
|
|
|
|
|
|
|
The concrete implementation will have to remove this child from its storage. |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
Returns the container C<$widget> itself, for easy chaining. |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=cut |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
sub remove |
100
|
|
|
|
|
|
|
{ |
101
|
|
|
|
|
|
|
my $self = shift; |
102
|
|
|
|
|
|
|
my ( $child ) = @_; |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
$child->set_parent( undef ); |
105
|
|
|
|
|
|
|
$child->window->close if $child->window; |
106
|
|
|
|
|
|
|
$child->set_window( undef ); |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
delete $self->{child_opts}{refaddr $child}; |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
$self->children_changed; |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
return $self; |
113
|
|
|
|
|
|
|
} |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
=head2 %opts = $widget->child_opts( $child ) |
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
=head2 $opts = $widget->child_opts( $child ) |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
Returns the options currently set for the given child as a key/value list in |
120
|
|
|
|
|
|
|
list context, or as a HASH reference in scalar context. The HASH reference in |
121
|
|
|
|
|
|
|
scalar context is the actual hash used to store the options - modifications to |
122
|
|
|
|
|
|
|
it will be preserved. |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
=cut |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
sub child_opts |
127
|
|
|
|
|
|
|
{ |
128
|
|
|
|
|
|
|
my $self = shift; |
129
|
|
|
|
|
|
|
my ( $child ) = @_; |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
my $opts = $self->{child_opts}{refaddr $child}; |
132
|
|
|
|
|
|
|
return $opts if !wantarray; |
133
|
|
|
|
|
|
|
return %$opts; |
134
|
|
|
|
|
|
|
} |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
=head2 $widget->set_child_opts( $child, %newopts ) |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
Sets new options on the given child. Any options whose value is given as |
139
|
|
|
|
|
|
|
C are deleted. |
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
=cut |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
sub set_child_opts |
144
|
|
|
|
|
|
|
{ |
145
|
|
|
|
|
|
|
my $self = shift; |
146
|
|
|
|
|
|
|
my ( $child, %newopts ) = @_; |
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
my $opts = $self->{child_opts}{refaddr $child}; |
149
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
foreach ( keys %newopts ) { |
151
|
|
|
|
|
|
|
defined $newopts{$_} ? ( $opts->{$_} = $newopts{$_} ) : ( delete $opts->{$_} ); |
152
|
|
|
|
|
|
|
} |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
$self->children_changed; |
155
|
|
|
|
|
|
|
} |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
sub child_resized |
158
|
|
|
|
|
|
|
{ |
159
|
|
|
|
|
|
|
my $self = shift; |
160
|
|
|
|
|
|
|
$self->reshape if $self->window; |
161
|
|
|
|
|
|
|
$self->resized; |
162
|
|
|
|
|
|
|
} |
163
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
sub children_changed |
165
|
|
|
|
|
|
|
{ |
166
|
|
|
|
|
|
|
my $self = shift; |
167
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
$self->reshape if $self->window; |
169
|
|
|
|
|
|
|
$self->resized; |
170
|
|
|
|
|
|
|
} |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
sub window_gained |
173
|
|
|
|
|
|
|
{ |
174
|
|
|
|
|
|
|
my $self = shift; |
175
|
|
|
|
|
|
|
$self->SUPER::window_gained( @_ ); |
176
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
$self->window->set_focus_child_notify( 1 ); |
178
|
|
|
|
|
|
|
} |
179
|
|
|
|
|
|
|
|
180
|
|
|
|
|
|
|
sub window_lost |
181
|
|
|
|
|
|
|
{ |
182
|
|
|
|
|
|
|
my $self = shift; |
183
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
foreach my $child ( $self->children ) { |
185
|
|
|
|
|
|
|
$child->window->close; |
186
|
|
|
|
|
|
|
$child->set_window( undef ); |
187
|
|
|
|
|
|
|
} |
188
|
|
|
|
|
|
|
|
189
|
|
|
|
|
|
|
$self->SUPER::window_lost( @_ ); |
190
|
|
|
|
|
|
|
} |
191
|
|
|
|
|
|
|
|
192
|
|
|
|
|
|
|
sub _on_win_focus |
193
|
|
|
|
|
|
|
{ |
194
|
|
|
|
|
|
|
my $self = shift; |
195
|
|
|
|
|
|
|
$self->SUPER::_on_win_focus( @_ ); |
196
|
|
|
|
|
|
|
|
197
|
|
|
|
|
|
|
$self->set_style_tag( "focus-child" => $_[1] ) if $_[2]; |
198
|
|
|
|
|
|
|
} |
199
|
|
|
|
|
|
|
|
200
|
|
|
|
|
|
|
=head2 $child = $widget->find_child( $how, $other, %args ) |
201
|
|
|
|
|
|
|
|
202
|
|
|
|
|
|
|
Returns a child widget. The C<$how> argument determines how this is done, |
203
|
|
|
|
|
|
|
relative to the child widget given by C<$other>: |
204
|
|
|
|
|
|
|
|
205
|
|
|
|
|
|
|
=over 4 |
206
|
|
|
|
|
|
|
|
207
|
|
|
|
|
|
|
=item first |
208
|
|
|
|
|
|
|
|
209
|
|
|
|
|
|
|
The first child returned by C (C<$other> is ignored) |
210
|
|
|
|
|
|
|
|
211
|
|
|
|
|
|
|
=item last |
212
|
|
|
|
|
|
|
|
213
|
|
|
|
|
|
|
The last child returned by C (C<$other> is ignored) |
214
|
|
|
|
|
|
|
|
215
|
|
|
|
|
|
|
=item before |
216
|
|
|
|
|
|
|
|
217
|
|
|
|
|
|
|
The child widget just before C<$other> in the order given by C |
218
|
|
|
|
|
|
|
|
219
|
|
|
|
|
|
|
=item after |
220
|
|
|
|
|
|
|
|
221
|
|
|
|
|
|
|
The child widget just after C<$other> in the order given by C |
222
|
|
|
|
|
|
|
|
223
|
|
|
|
|
|
|
=back |
224
|
|
|
|
|
|
|
|
225
|
|
|
|
|
|
|
Takes the following named arguments: |
226
|
|
|
|
|
|
|
|
227
|
|
|
|
|
|
|
=over 8 |
228
|
|
|
|
|
|
|
|
229
|
|
|
|
|
|
|
=item where => CODE |
230
|
|
|
|
|
|
|
|
231
|
|
|
|
|
|
|
Optional. If defined, gives a filter function to filter the list of children |
232
|
|
|
|
|
|
|
before searching for the required one. Will be invoked once per child, with |
233
|
|
|
|
|
|
|
the child widget set as C<$_>; it should return a boolean value to indicate if |
234
|
|
|
|
|
|
|
that child should be included in the search. |
235
|
|
|
|
|
|
|
|
236
|
|
|
|
|
|
|
=back |
237
|
|
|
|
|
|
|
|
238
|
|
|
|
|
|
|
=cut |
239
|
|
|
|
|
|
|
|
240
|
|
|
|
|
|
|
sub find_child |
241
|
|
|
|
|
|
|
{ |
242
|
|
|
|
|
|
|
my $self = shift; |
243
|
|
|
|
|
|
|
my ( $how, $other, %args ) = @_; |
244
|
|
|
|
|
|
|
|
245
|
|
|
|
|
|
|
my $children = $args{children} // "children"; |
246
|
|
|
|
|
|
|
my @children = $self->$children; |
247
|
|
|
|
|
|
|
if( my $where = $args{where} ) { |
248
|
|
|
|
|
|
|
@children = grep { defined $other and $_ == $other or $where->() } @children; |
249
|
|
|
|
|
|
|
} |
250
|
|
|
|
|
|
|
|
251
|
|
|
|
|
|
|
for( $how ) { |
252
|
|
|
|
|
|
|
when( "first" ) { |
253
|
|
|
|
|
|
|
return $children[0]; |
254
|
|
|
|
|
|
|
} |
255
|
|
|
|
|
|
|
when( "last" ) { |
256
|
|
|
|
|
|
|
return $children[-1]; |
257
|
|
|
|
|
|
|
} |
258
|
|
|
|
|
|
|
when( "before" ) { |
259
|
|
|
|
|
|
|
$children[$_] == $other and return $children[$_-1] for 1 .. $#children; |
260
|
|
|
|
|
|
|
return undef; |
261
|
|
|
|
|
|
|
} |
262
|
|
|
|
|
|
|
when( "after" ) { |
263
|
|
|
|
|
|
|
$children[$_] == $other and return $children[$_+1] for 0 .. $#children-1; |
264
|
|
|
|
|
|
|
return undef; |
265
|
|
|
|
|
|
|
} |
266
|
|
|
|
|
|
|
default { |
267
|
|
|
|
|
|
|
croak "Unrecognised ->find_child mode '$how'"; |
268
|
|
|
|
|
|
|
} |
269
|
|
|
|
|
|
|
} |
270
|
|
|
|
|
|
|
} |
271
|
|
|
|
|
|
|
|
272
|
|
|
|
|
|
|
use constant CONTAINER_OR_FOCUSABLE => sub { |
273
|
|
|
|
|
|
|
$_->isa( "Tickit::ContainerWidget" ) or |
274
|
|
|
|
|
|
|
$_->window && $_->window->is_visible && $_->CAN_FOCUS |
275
|
|
|
|
|
|
|
}; |
276
|
|
|
|
|
|
|
|
277
|
|
|
|
|
|
|
=head2 $widget->focus_next( $how, $other ) |
278
|
|
|
|
|
|
|
|
279
|
|
|
|
|
|
|
Moves the input focus to the next widget in the widget tree, by searching in |
280
|
|
|
|
|
|
|
the direction given by C<$how> relative to the widget given by C<$other> |
281
|
|
|
|
|
|
|
(which must be an immediate child of C<$widget>). |
282
|
|
|
|
|
|
|
|
283
|
|
|
|
|
|
|
The direction C<$how> must be one of the following four values: |
284
|
|
|
|
|
|
|
|
285
|
|
|
|
|
|
|
=over 4 |
286
|
|
|
|
|
|
|
|
287
|
|
|
|
|
|
|
=item first |
288
|
|
|
|
|
|
|
|
289
|
|
|
|
|
|
|
=item last |
290
|
|
|
|
|
|
|
|
291
|
|
|
|
|
|
|
Moves focus to the first or last child widget that can take focus. Recurses |
292
|
|
|
|
|
|
|
into child widgets that are themselves containers. C<$other> is ignored. |
293
|
|
|
|
|
|
|
|
294
|
|
|
|
|
|
|
=item after |
295
|
|
|
|
|
|
|
|
296
|
|
|
|
|
|
|
=item before |
297
|
|
|
|
|
|
|
|
298
|
|
|
|
|
|
|
Moves focus to the next or previous child widget in tree order from the one |
299
|
|
|
|
|
|
|
given by C<$other>. Recurses into child widgets that are themselves |
300
|
|
|
|
|
|
|
containers, and out into parent containers. |
301
|
|
|
|
|
|
|
|
302
|
|
|
|
|
|
|
These searches will wrap around the widget tree; moving C the last node |
303
|
|
|
|
|
|
|
in the widget tree will move to the first, and vice versa. |
304
|
|
|
|
|
|
|
|
305
|
|
|
|
|
|
|
=back |
306
|
|
|
|
|
|
|
|
307
|
|
|
|
|
|
|
This differs from C in that it performs a full tree search through |
308
|
|
|
|
|
|
|
the widget tree, considering parents and children. If a C or C |
309
|
|
|
|
|
|
|
search falls off the end of one node, it will recurse up to its parent and |
310
|
|
|
|
|
|
|
search within the next child, and so on. |
311
|
|
|
|
|
|
|
|
312
|
|
|
|
|
|
|
Usually this would be used via the widget itself: |
313
|
|
|
|
|
|
|
|
314
|
|
|
|
|
|
|
$self->parent->focus_next( $how => $self ); |
315
|
|
|
|
|
|
|
|
316
|
|
|
|
|
|
|
=cut |
317
|
|
|
|
|
|
|
|
318
|
|
|
|
|
|
|
sub focus_next |
319
|
|
|
|
|
|
|
{ |
320
|
|
|
|
|
|
|
my $self = shift; |
321
|
|
|
|
|
|
|
my ( $how, $other ) = @_; |
322
|
|
|
|
|
|
|
|
323
|
|
|
|
|
|
|
# This tree search has the potential to loop infinitely, if there are no |
324
|
|
|
|
|
|
|
# focusable widgets at all. It would only do this if it cycles via the root |
325
|
|
|
|
|
|
|
# widget twice in a row. Technically we could detect it earlier, but that |
326
|
|
|
|
|
|
|
# is more difficult to arrange for |
327
|
|
|
|
|
|
|
my $done_root; |
328
|
|
|
|
|
|
|
|
329
|
|
|
|
|
|
|
my $next; |
330
|
|
|
|
|
|
|
|
331
|
|
|
|
|
|
|
my $children = $self->can( "children_for_focus" ) || "children"; |
332
|
|
|
|
|
|
|
|
333
|
|
|
|
|
|
|
while(1) { |
334
|
|
|
|
|
|
|
$next = $self->find_child( $how, $other, |
335
|
|
|
|
|
|
|
where => CONTAINER_OR_FOCUSABLE, |
336
|
|
|
|
|
|
|
children => $children, |
337
|
|
|
|
|
|
|
); |
338
|
|
|
|
|
|
|
last if $next and $next->CAN_FOCUS; |
339
|
|
|
|
|
|
|
|
340
|
|
|
|
|
|
|
# Either we found a container (recurse into it), |
341
|
|
|
|
|
|
|
if( $next ) { |
342
|
|
|
|
|
|
|
my $childhow = $how; |
343
|
|
|
|
|
|
|
if( $how eq "after" ) { $childhow = "first" } |
344
|
|
|
|
|
|
|
elsif( $how eq "before" ) { $childhow = "last" } |
345
|
|
|
|
|
|
|
|
346
|
|
|
|
|
|
|
# See if child has it |
347
|
|
|
|
|
|
|
return 1 if $next->focus_next( $childhow => undef ); |
348
|
|
|
|
|
|
|
|
349
|
|
|
|
|
|
|
$other = $next; |
350
|
|
|
|
|
|
|
redo; |
351
|
|
|
|
|
|
|
} |
352
|
|
|
|
|
|
|
# or we'll have to recurse up to my parent |
353
|
|
|
|
|
|
|
elsif( my $parent = $self->parent ) { |
354
|
|
|
|
|
|
|
if( $how eq "after" or $how eq "before" ) { |
355
|
|
|
|
|
|
|
$other = $self; |
356
|
|
|
|
|
|
|
$self = $parent; |
357
|
|
|
|
|
|
|
redo; |
358
|
|
|
|
|
|
|
} |
359
|
|
|
|
|
|
|
else { |
360
|
|
|
|
|
|
|
return undef; |
361
|
|
|
|
|
|
|
} |
362
|
|
|
|
|
|
|
} |
363
|
|
|
|
|
|
|
# or we'll have to cycle around the root |
364
|
|
|
|
|
|
|
else { |
365
|
|
|
|
|
|
|
die "Cycled through the entire widget tree and did not find a focusable widget" if $done_root; |
366
|
|
|
|
|
|
|
$done_root++; |
367
|
|
|
|
|
|
|
|
368
|
|
|
|
|
|
|
if( $how eq "after" ) { $how = "first" } |
369
|
|
|
|
|
|
|
elsif( $how eq "before" ) { $how = "last" } |
370
|
|
|
|
|
|
|
else { die "Cannot cycle how=$how around root widget"; } |
371
|
|
|
|
|
|
|
|
372
|
|
|
|
|
|
|
$other = undef; |
373
|
|
|
|
|
|
|
redo; |
374
|
|
|
|
|
|
|
} |
375
|
|
|
|
|
|
|
} |
376
|
|
|
|
|
|
|
|
377
|
|
|
|
|
|
|
$next->take_focus; |
378
|
|
|
|
|
|
|
return 1; |
379
|
|
|
|
|
|
|
} |
380
|
|
|
|
|
|
|
|
381
|
|
|
|
|
|
|
=head1 SUBCLASS METHODS |
382
|
|
|
|
|
|
|
|
383
|
|
|
|
|
|
|
=head2 @children = $widget->children |
384
|
|
|
|
|
|
|
|
385
|
|
|
|
|
|
|
Required. Should return a list of all the contained child widgets. The order |
386
|
|
|
|
|
|
|
is not specified, but should be in some stable order that makes sense given |
387
|
|
|
|
|
|
|
the layout of the widget's children. |
388
|
|
|
|
|
|
|
|
389
|
|
|
|
|
|
|
This method is used by C to remove the windows from all the child |
390
|
|
|
|
|
|
|
widgets automatically, and by C to obtain a child relative to |
391
|
|
|
|
|
|
|
another given one. |
392
|
|
|
|
|
|
|
|
393
|
|
|
|
|
|
|
=head2 @children = $widget->children_for_focus |
394
|
|
|
|
|
|
|
|
395
|
|
|
|
|
|
|
Optional. If implemented, this method is called to obtain a list of child |
396
|
|
|
|
|
|
|
widgets to perform a child search on when changing focus using the |
397
|
|
|
|
|
|
|
C method. If it is not implemented, the regular C method |
398
|
|
|
|
|
|
|
is called instead. |
399
|
|
|
|
|
|
|
|
400
|
|
|
|
|
|
|
Normally this method shouldn't be used, but it may be useful on container |
401
|
|
|
|
|
|
|
widgets that also display "helper" widgets that should not be considered as |
402
|
|
|
|
|
|
|
part of the main focus set. This method can then exclude them. |
403
|
|
|
|
|
|
|
|
404
|
|
|
|
|
|
|
=head2 $widget->children_changed |
405
|
|
|
|
|
|
|
|
406
|
|
|
|
|
|
|
Optional. If implemented, this method will be called after any change of the |
407
|
|
|
|
|
|
|
contained child widgets or their options. Typically this will be used to set |
408
|
|
|
|
|
|
|
windows on them by sub-dividing the window of the parent. |
409
|
|
|
|
|
|
|
|
410
|
|
|
|
|
|
|
If not overridden, the base implementation will call C. |
411
|
|
|
|
|
|
|
|
412
|
|
|
|
|
|
|
=head2 $widget->child_resized( $child ) |
413
|
|
|
|
|
|
|
|
414
|
|
|
|
|
|
|
Optional. If implemented, this method will be called after a child widget |
415
|
|
|
|
|
|
|
changes or may have changed its size requirements. Typically this will be used |
416
|
|
|
|
|
|
|
to adjusts the windows allocated to children. |
417
|
|
|
|
|
|
|
|
418
|
|
|
|
|
|
|
If not overridden, the base implementation will call C. |
419
|
|
|
|
|
|
|
|
420
|
|
|
|
|
|
|
=head1 AUTHOR |
421
|
|
|
|
|
|
|
|
422
|
|
|
|
|
|
|
Paul Evans |
423
|
|
|
|
|
|
|
|
424
|
|
|
|
|
|
|
=cut |
425
|
|
|
|
|
|
|
|
426
|
|
|
|
|
|
|
0x55AA; |