ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/UI.pm
Revision: 1.382
Committed: Thu Jul 19 19:58:56 2007 UTC (16 years, 10 months ago) by root
Branch: MAIN
Changes since 1.381: +22 -4 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.340 package CFPlus::UI;
2 root 1.8
3 root 1.194 use utf8;
4 elmex 1.1 use strict;
5 root 1.18
6 root 1.74 use List::Util ();
7 root 1.284 use Event;
8 root 1.18
9 root 1.340 use CFPlus;
10 root 1.341 use CFPlus::Pod;
11 root 1.340 use CFPlus::Texture;
12 root 1.41
13 root 1.51 our ($FOCUS, $HOVER, $GRAB); # various widgets
14    
15 elmex 1.242 our $LAYOUT;
16 root 1.113 our $ROOT;
17 root 1.151 our $TOOLTIP;
18 root 1.51 our $BUTTON_STATE;
19    
20 root 1.202 our %WIDGET; # all widgets, weak-referenced
21    
22 root 1.284 our $TOOLTIP_WATCHER = Event->idle (min => 1/60, cb => sub {
23 root 1.151 if (!$GRAB) {
24     for (my $widget = $HOVER; $widget; $widget = $widget->{parent}) {
25 root 1.160 if (length $widget->{tooltip}) {
26 root 1.151 if ($TOOLTIP->{owner} != $widget) {
27 root 1.366 $TOOLTIP->{owner}->emit ("tooltip_hide") if $TOOLTIP->{owner};
28 root 1.253 $TOOLTIP->hide;
29    
30 root 1.151 $TOOLTIP->{owner} = $widget;
31 root 1.366 $TOOLTIP->{owner}->emit ("tooltip_show") if $TOOLTIP->{owner};
32 root 1.155
33 root 1.285 return if $ENV{CFPLUS_DEBUG} & 8;
34    
35 root 1.155 my $tip = $widget->{tooltip};
36    
37     $tip = $tip->($widget) if CODE:: eq ref $tip;
38    
39 root 1.196 $TOOLTIP->set_tooltip_from ($widget);
40 root 1.252 $TOOLTIP->show;
41 root 1.151 }
42    
43     return;
44     }
45     }
46     }
47    
48     $TOOLTIP->hide;
49 root 1.366 $TOOLTIP->{owner}->emit ("tooltip_hide") if $TOOLTIP->{owner};
50 root 1.151 delete $TOOLTIP->{owner};
51 root 1.284 });
52    
53     sub get_layout {
54     my $layout;
55    
56     for (grep { $_->{name} } values %WIDGET) {
57     my $win = $layout->{$_->{name}} = { };
58    
59     $win->{x} = ($_->{x} + $_->{w} * 0.5) / $::WIDTH if $_->{x} =~ /^[0-9.]+$/;
60     $win->{y} = ($_->{y} + $_->{h} * 0.5) / $::HEIGHT if $_->{y} =~ /^[0-9.]+$/;
61     $win->{w} = $_->{w} / $::WIDTH if defined $_->{w};
62     $win->{h} = $_->{h} / $::HEIGHT if defined $_->{h};
63    
64     $win->{show} = $_->{visible} && $_->{is_toplevel};
65     }
66    
67     $layout
68     }
69    
70     sub set_layout {
71     my ($layout) = @_;
72    
73     $LAYOUT = $layout;
74 root 1.151 }
75    
76 elmex 1.1 # class methods for events
77 root 1.51 sub feed_sdl_key_down_event {
78 root 1.231 $FOCUS->emit (key_down => $_[0])
79 root 1.163 if $FOCUS;
80 root 1.51 }
81    
82     sub feed_sdl_key_up_event {
83 root 1.231 $FOCUS->emit (key_up => $_[0])
84 root 1.163 if $FOCUS;
85 root 1.51 }
86    
87 root 1.330 sub check_hover {
88     my ($widget) = @_;
89    
90     if ($widget != $HOVER) {
91     my $hover = $HOVER; $HOVER = $widget;
92    
93     $hover->update if $hover && $hover->{can_hover};
94     $HOVER->update if $HOVER && $HOVER->{can_hover};
95    
96     $TOOLTIP_WATCHER->start;
97     }
98     }
99    
100 root 1.51 sub feed_sdl_button_down_event {
101     my ($ev) = @_;
102 root 1.137 my ($x, $y) = ($ev->{x}, $ev->{y});
103 root 1.51
104 root 1.339 $BUTTON_STATE |= 1 << ($ev->{button} - 1);
105    
106     unless ($GRAB) {
107 root 1.113 my $widget = $ROOT->find_widget ($x, $y);
108 root 1.51
109     $GRAB = $widget;
110     $GRAB->update if $GRAB;
111 root 1.151
112 root 1.284 $TOOLTIP_WATCHER->cb->();
113 root 1.51 }
114    
115 root 1.330 if ($GRAB) {
116     if ($ev->{button} == 4 || $ev->{button} == 5) {
117     # mousewheel
118     $ev->{dx} = 0;
119     $ev->{dy} = $ev->{button} * 2 - 9;
120     $GRAB->emit (mouse_wheel => $ev);
121     } else {
122     $GRAB->emit (button_down => $ev)
123     }
124     }
125 root 1.51 }
126    
127     sub feed_sdl_button_up_event {
128     my ($ev) = @_;
129    
130 root 1.330 my $widget = $GRAB || $ROOT->find_widget ($ev->{x}, $ev->{y});
131 root 1.51
132 root 1.137 $BUTTON_STATE &= ~(1 << ($ev->{button} - 1));
133 root 1.51
134 root 1.330 $GRAB->emit (button_up => $ev)
135     if $GRAB && $ev->{button} != 4 && $ev->{button} != 5;
136 root 1.58
137 root 1.330 unless ($BUTTON_STATE) {
138 root 1.51 my $grab = $GRAB; undef $GRAB;
139     $grab->update if $grab;
140     $GRAB->update if $GRAB;
141 root 1.151
142 root 1.330 check_hover $widget;
143 root 1.284 $TOOLTIP_WATCHER->cb->();
144 root 1.51 }
145     }
146    
147     sub feed_sdl_motion_event {
148     my ($ev) = @_;
149 root 1.137 my ($x, $y) = ($ev->{x}, $ev->{y});
150 root 1.51
151 root 1.113 my $widget = $GRAB || $ROOT->find_widget ($x, $y);
152 root 1.51
153 root 1.330 check_hover $widget;
154 root 1.51
155 root 1.330 $HOVER->emit (mouse_motion => $ev)
156 root 1.231 if $HOVER;
157 root 1.51 }
158 elmex 1.1
159 root 1.112 # convert position array to integers
160     sub harmonize {
161     my ($vals) = @_;
162    
163     my $rem = 0;
164    
165 root 1.116 for (@$vals) {
166 root 1.112 my $i = int $_ + $rem;
167     $rem += $_ - $i;
168     $_ = $i;
169     }
170     }
171    
172 root 1.220 sub full_refresh {
173     # make a copy, otherwise for complains about freed values.
174     my @widgets = values %WIDGET;
175    
176     $_->update
177     for @widgets;
178     }
179    
180 root 1.230 sub reconfigure_widgets {
181     # make a copy, otherwise C<for> complains about freed values.
182     my @widgets = values %WIDGET;
183    
184     $_->reconfigure
185     for @widgets;
186     }
187    
188 root 1.202 # call when resolution changes etc.
189     sub rescale_widgets {
190     my ($sx, $sy) = @_;
191    
192 root 1.230 for my $widget (values %WIDGET) {
193     if ($widget->{is_toplevel}) {
194 root 1.268 $widget->{x} += int $widget->{w} * 0.5 if $widget->{x} =~ /^[0-9.]+$/;
195     $widget->{y} += int $widget->{h} * 0.5 if $widget->{y} =~ /^[0-9.]+$/;
196 root 1.256
197     $widget->{x} = int 0.5 + $widget->{x} * $sx if $widget->{x} =~ /^[0-9.]+$/;
198     $widget->{w} = int 0.5 + $widget->{w} * $sx if exists $widget->{w};
199     $widget->{force_w} = int 0.5 + $widget->{force_w} * $sx if exists $widget->{force_w};
200     $widget->{y} = int 0.5 + $widget->{y} * $sy if $widget->{y} =~ /^[0-9.]+$/;
201     $widget->{h} = int 0.5 + $widget->{h} * $sy if exists $widget->{h};
202     $widget->{force_h} = int 0.5 + $widget->{force_h} * $sy if exists $widget->{force_h};
203    
204 root 1.268 $widget->{x} -= int $widget->{w} * 0.5 if $widget->{x} =~ /^[0-9.]+$/;
205     $widget->{y} -= int $widget->{h} * 0.5 if $widget->{y} =~ /^[0-9.]+$/;
206 root 1.256
207 root 1.202 }
208 root 1.230 }
209 root 1.202
210 root 1.230 reconfigure_widgets;
211 root 1.202 }
212    
213 root 1.73 #############################################################################
214    
215 root 1.340 package CFPlus::UI::Event;
216 root 1.330
217     sub xy {
218     $_[1]->coord2local ($_[0]{x}, $_[0]{y})
219     }
220    
221     #############################################################################
222    
223 root 1.340 package CFPlus::UI::Base;
224 root 1.73
225     use strict;
226    
227 root 1.340 use CFPlus::OpenGL;
228 root 1.73
229 elmex 1.1 sub new {
230     my $class = shift;
231 root 1.10
232 root 1.79 my $self = bless {
233 root 1.256 x => "center",
234     y => "center",
235 root 1.164 z => 0,
236 root 1.256 w => undef,
237     h => undef,
238 elmex 1.150 can_events => 1,
239 root 1.65 @_
240 root 1.79 }, $class;
241    
242 root 1.362 CFPlus::weaken ($CFPlus::UI::WIDGET{$self+0} = $self);
243 root 1.258
244     for (keys %$self) {
245     if (/^on_(.*)$/) {
246     $self->connect ($1 => delete $self->{$_});
247     }
248     }
249    
250 root 1.340 if (my $layout = $CFPlus::UI::LAYOUT->{$self->{name}}) {
251     $self->{x} = $layout->{x} * $CFPlus::UI::ROOT->{alloc_w} if exists $layout->{x};
252     $self->{y} = $layout->{y} * $CFPlus::UI::ROOT->{alloc_h} if exists $layout->{y};
253     $self->{force_w} = $layout->{w} * $CFPlus::UI::ROOT->{alloc_w} if exists $layout->{w};
254     $self->{force_h} = $layout->{h} * $CFPlus::UI::ROOT->{alloc_h} if exists $layout->{h};
255 root 1.256
256     $self->{x} -= $self->{force_w} * 0.5 if exists $layout->{x};
257     $self->{y} -= $self->{force_h} * 0.5 if exists $layout->{y};
258    
259 root 1.258 $self->show if $layout->{show};
260 root 1.79 }
261    
262     $self
263 elmex 1.1 }
264    
265 root 1.159 sub destroy {
266     my ($self) = @_;
267    
268     $self->hide;
269 root 1.361 $self->emit ("destroy");
270 root 1.159 %$self = ();
271     }
272    
273 root 1.368 sub TO_JSON {
274     { __widget_ref__ => $_[0]{s_id} }
275     }
276    
277 root 1.134 sub show {
278     my ($self) = @_;
279 root 1.248
280 root 1.134 return if $self->{parent};
281    
282 root 1.340 $CFPlus::UI::ROOT->add ($self);
283 root 1.134 }
284    
285 root 1.246 sub set_visible {
286     my ($self) = @_;
287    
288     return if $self->{visible};
289    
290     $self->{root} = $self->{parent}{root};
291     $self->{visible} = $self->{parent}{visible} + 1;
292    
293 root 1.248 $self->emit (visibility_change => 1);
294 root 1.251
295 root 1.252 $self->realloc if !exists $self->{req_w};
296 root 1.251
297     $_->set_visible for $self->children;
298 root 1.246 }
299    
300 root 1.231 sub set_invisible {
301 root 1.134 my ($self) = @_;
302    
303 root 1.244 return unless $self->{visible};
304    
305 root 1.251 $_->set_invisible for $self->children;
306 root 1.231
307 root 1.302 delete $self->{visible};
308 root 1.241 delete $self->{root};
309 root 1.231
310 root 1.163 undef $GRAB if $GRAB == $self;
311     undef $HOVER if $HOVER == $self;
312 root 1.134
313 root 1.340 $CFPlus::UI::TOOLTIP_WATCHER->cb->()
314 root 1.251 if $TOOLTIP->{owner} == $self;
315 root 1.232
316 root 1.305 $self->emit ("focus_out");
317 root 1.244 $self->emit (visibility_change => 0);
318 root 1.231 }
319    
320 root 1.250 sub set_visibility {
321     my ($self, $visible) = @_;
322    
323     return if $self->{visible} == $visible;
324    
325 root 1.369 $visible ? $self->show
326     : $self->hide;
327 root 1.250 }
328    
329     sub toggle_visibility {
330     my ($self) = @_;
331    
332     $self->{visible}
333     ? $self->hide
334     : $self->show;
335     }
336    
337 root 1.231 sub hide {
338     my ($self) = @_;
339    
340     $self->set_invisible;
341    
342 root 1.163 $self->{parent}->remove ($self)
343     if $self->{parent};
344 root 1.134 }
345    
346 root 1.256 sub move_abs {
347 root 1.18 my ($self, $x, $y, $z) = @_;
348 root 1.128
349 root 1.296 $self->{x} = List::Util::max 0, List::Util::min $self->{root}{w} - $self->{w}, int $x;
350     $self->{y} = List::Util::max 0, List::Util::min $self->{root}{h} - $self->{h}, int $y;
351 root 1.18 $self->{z} = $z if defined $z;
352 root 1.128
353     $self->update;
354 root 1.18 }
355    
356 root 1.158 sub set_size {
357     my ($self, $w, $h) = @_;
358    
359 root 1.256 $self->{force_w} = $w;
360     $self->{force_h} = $h;
361 root 1.158
362 root 1.251 $self->realloc;
363 elmex 1.20 }
364    
365 root 1.14 sub size_request {
366 elmex 1.36 require Carp;
367 root 1.147 Carp::confess "size_request is abstract";
368 elmex 1.36 }
369    
370 root 1.311 sub baseline_shift {
371     0
372     }
373    
374 root 1.128 sub configure {
375 root 1.75 my ($self, $x, $y, $w, $h) = @_;
376    
377 root 1.141 if ($self->{aspect}) {
378 root 1.256 my ($ow, $oh) = ($w, $h);
379    
380 root 1.340 $w = List::Util::min $w, CFPlus::ceil $h * $self->{aspect};
381     $h = List::Util::min $h, CFPlus::ceil $w / $self->{aspect};
382 root 1.141
383     # use alignment to adjust x, y
384 root 1.75
385 root 1.256 $x += int 0.5 * ($ow - $w);
386     $y += int 0.5 * ($oh - $h);
387 root 1.140 }
388    
389 root 1.256 if ($self->{x} ne $x || $self->{y} ne $y) {
390 root 1.141 $self->{x} = $x;
391     $self->{y} = $y;
392     $self->update;
393     }
394 root 1.40
395 root 1.259 if ($self->{alloc_w} != $w || $self->{alloc_h} != $h) {
396 root 1.251 return unless $self->{visible};
397    
398 root 1.259 $self->{alloc_w} = $w;
399     $self->{alloc_h} = $h;
400    
401     $self->{root}{size_alloc}{$self+0} = $self;
402 root 1.141 }
403 root 1.75 }
404    
405 root 1.202 sub children {
406 root 1.272 # nop
407     }
408    
409     sub visible_children {
410     $_[0]->children
411 root 1.202 }
412    
413 root 1.157 sub set_max_size {
414     my ($self, $w, $h) = @_;
415    
416 root 1.281 $self->{max_w} = int $w if defined $w;
417     $self->{max_h} = int $h if defined $h;
418 root 1.280
419     $self->realloc;
420 root 1.157 }
421    
422 root 1.209 sub set_tooltip {
423     my ($self, $tooltip) = @_;
424    
425 root 1.234 $tooltip =~ s/^\s+//;
426     $tooltip =~ s/\s+$//;
427    
428     return if $self->{tooltip} eq $tooltip;
429    
430 root 1.209 $self->{tooltip} = $tooltip;
431    
432 root 1.340 if ($CFPlus::UI::TOOLTIP->{owner} == $self) {
433     delete $CFPlus::UI::TOOLTIP->{owner};
434     $CFPlus::UI::TOOLTIP_WATCHER->cb->();
435 root 1.209 }
436     }
437    
438 root 1.82 # translate global coordinates to local coordinate system
439 root 1.113 sub coord2local {
440 root 1.58 my ($self, $x, $y) = @_;
441    
442 root 1.331 Carp::confess unless $self->{parent};#d#
443    
444 root 1.191 $self->{parent}->coord2local ($x - $self->{x}, $y - $self->{y})
445 root 1.113 }
446    
447     # translate local coordinates to global coordinate system
448     sub coord2global {
449     my ($self, $x, $y) = @_;
450    
451 root 1.332 Carp::confess unless $self->{parent};#d#
452    
453 root 1.191 $self->{parent}->coord2global ($x + $self->{x}, $y + $self->{y})
454 root 1.58 }
455    
456 root 1.305 sub invoke_focus_in {
457 root 1.51 my ($self) = @_;
458    
459 root 1.68 return if $FOCUS == $self;
460 root 1.97 return unless $self->{can_focus};
461 root 1.68
462 root 1.317 $FOCUS = $self;
463 elmex 1.120
464 root 1.317 $self->update;
465 root 1.305
466     0
467 elmex 1.1 }
468 root 1.4
469 root 1.305 sub invoke_focus_out {
470 root 1.51 my ($self) = @_;
471 root 1.4
472 root 1.51 return unless $FOCUS == $self;
473 root 1.4
474 root 1.317 undef $FOCUS;
475 elmex 1.120
476 root 1.317 $self->update;
477 root 1.231
478 root 1.305 $::MAPWIDGET->grab_focus #d# focus mapwidget if no other widget has focus
479 root 1.231 unless $FOCUS;
480 root 1.305
481     0
482 elmex 1.1 }
483 root 1.4
484 root 1.305 sub grab_focus {
485     my ($self) = @_;
486    
487 root 1.317 $FOCUS->emit ("focus_out") if $FOCUS;
488 root 1.305 $self->emit ("focus_in");
489     }
490    
491 root 1.328 sub invoke_mouse_motion { 0 }
492     sub invoke_button_up { 0 }
493     sub invoke_key_down { 0 }
494     sub invoke_key_up { 0 }
495 root 1.330 sub invoke_mouse_wheel { 0 }
496 root 1.51
497 root 1.305 sub invoke_button_down {
498 root 1.68 my ($self, $ev, $x, $y) = @_;
499    
500 root 1.305 $self->grab_focus;
501    
502 root 1.328 0
503 root 1.305 }
504    
505     sub connect {
506     my ($self, $signal, $cb) = @_;
507    
508     push @{ $self->{signal_cb}{$signal} }, $cb;
509 root 1.332
510 root 1.340 defined wantarray and CFPlus::guard {
511 root 1.332 @{ $self->{signal_cb}{$signal} } = grep $_ != $cb,
512     @{ $self->{signal_cb}{$signal} };
513     }
514 root 1.305 }
515 root 1.271
516 root 1.361 sub disconnect_all {
517     my ($self, $signal) = @_;
518    
519     delete $self->{signal_cb}{$signal};
520     }
521    
522 root 1.331 my %has_coords = (
523     button_down => 1,
524     button_up => 1,
525     mouse_motion => 1,
526     mouse_wheel => 1,
527     );
528    
529 root 1.305 sub emit {
530     my ($self, $signal, @args) = @_;
531    
532 root 1.354 # I do not really like this solution, but I do not like duplication
533     # and needlessly verbose code, either.
534 root 1.330 my @append
535 root 1.331 = $has_coords{$signal}
536 root 1.330 ? $args[0]->xy ($self)
537     : ();
538    
539 root 1.329 #warn +(caller(1))[3] . "emit $signal on $self (parent $self->{parent})\n";#d#
540    
541 root 1.362 for my $cb (
542     @{$self->{signal_cb}{$signal} || []}, # before
543     ($self->can ("invoke_$signal") || sub { 1 }), # closure
544     ) {
545     return $cb->($self, @args, @append) || next;
546     }
547    
548     # parent
549     $self->{parent} && $self->{parent}->emit ($signal, @args)
550 root 1.68 }
551    
552 root 1.251 sub find_widget {
553     my ($self, $x, $y) = @_;
554    
555     return () unless $self->{can_events};
556    
557     return $self
558     if $x >= $self->{x} && $x < $self->{x} + $self->{w}
559     && $y >= $self->{y} && $y < $self->{y} + $self->{h};
560    
561     ()
562     }
563    
564     sub set_parent {
565     my ($self, $parent) = @_;
566    
567 root 1.362 CFPlus::weaken ($self->{parent} = $parent);
568 root 1.251 $self->set_visible if $parent->{visible};
569     }
570    
571     sub realloc {
572     my ($self) = @_;
573    
574 root 1.252 if ($self->{visible}) {
575 root 1.259 return if $self->{root}{realloc}{$self+0};
576 root 1.251
577 root 1.259 $self->{root}{realloc}{$self+0} = $self;
578 root 1.252 $self->{root}->update;
579     } else {
580     delete $self->{req_w};
581 root 1.259 delete $self->{req_h};
582 root 1.252 }
583 root 1.251 }
584    
585     sub update {
586     my ($self) = @_;
587    
588     $self->{parent}->update
589     if $self->{parent};
590     }
591    
592 root 1.256 sub reconfigure {
593     my ($self) = @_;
594    
595     $self->realloc;
596     $self->update;
597     }
598    
599 root 1.267 # using global variables seems a bit hacky, but passing through all drawing
600     # functions seems pointless.
601     our ($draw_x, $draw_y, $draw_w, $draw_h); # screen rectangle being drawn
602    
603 elmex 1.1 sub draw {
604 elmex 1.11 my ($self) = @_;
605    
606 root 1.68 return unless $self->{h} && $self->{w};
607    
608 root 1.268 # update screen rectangle
609 root 1.267 local $draw_x = $draw_x + $self->{x};
610     local $draw_y = $draw_y + $self->{y};
611    
612 root 1.268 # skip widgets that are entirely outside the drawing area
613     return if ($draw_x + $self->{w} < 0) || ($draw_x >= $draw_w)
614     || ($draw_y + $self->{h} < 0) || ($draw_y >= $draw_h);
615 root 1.267
616 elmex 1.11 glPushMatrix;
617 root 1.12 glTranslate $self->{x}, $self->{y}, 0;
618 root 1.72
619 root 1.97 if ($self == $HOVER && $self->{can_hover}) {
620 root 1.278 glColor 1*0.2, 0.8*0.2, 0.5*0.2, 0.2;
621 root 1.50 glEnable GL_BLEND;
622 root 1.278 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
623 root 1.48 glBegin GL_QUADS;
624 root 1.278 glVertex 0 , 0;
625     glVertex $self->{w}, 0;
626     glVertex $self->{w}, $self->{h};
627     glVertex 0 , $self->{h};
628 root 1.47 glEnd;
629 root 1.50 glDisable GL_BLEND;
630 root 1.47 }
631 root 1.162
632 root 1.259 if ($ENV{CFPLUS_DEBUG} & 1) {
633 root 1.162 glPushMatrix;
634     glColor 1, 1, 0, 1;
635 root 1.278 glTranslate 0.375, 0.375;
636 root 1.162 glBegin GL_LINE_LOOP;
637 root 1.234 glVertex 0 , 0;
638     glVertex $self->{w} - 1, 0;
639     glVertex $self->{w} - 1, $self->{h} - 1;
640     glVertex 0 , $self->{h} - 1;
641 root 1.162 glEnd;
642     glPopMatrix;
643 root 1.340 #CFPlus::UI::Label->new (w => $self->{w}, h => $self->{h}, text => $self, fontsize => 0)->_draw;
644 root 1.162 }
645 root 1.278
646     $self->_draw;
647     glPopMatrix;
648 elmex 1.11 }
649    
650     sub _draw {
651 root 1.38 my ($self) = @_;
652    
653     warn "no draw defined for $self\n";
654 elmex 1.1 }
655 root 1.4
656 root 1.362 my $cntx;#d#
657 root 1.18 sub DESTROY {
658     my ($self) = @_;
659    
660 root 1.340 return if CFPlus::in_destruct;
661 root 1.324
662 root 1.302 eval { $self->destroy };
663     warn "exception during widget destruction: $@" if $@ & $@ != /during global destruction/;
664 root 1.361
665     delete $WIDGET{$self+0};
666 root 1.18 }
667    
668 root 1.39 #############################################################################
669    
670 root 1.340 package CFPlus::UI::DrawBG;
671 root 1.68
672 root 1.340 our @ISA = CFPlus::UI::Base::;
673 root 1.68
674     use strict;
675 root 1.340 use CFPlus::OpenGL;
676 root 1.68
677     sub new {
678     my $class = shift;
679    
680     # range [value, low, high, page]
681    
682     $class->SUPER::new (
683 root 1.209 #bg => [0, 0, 0, 0.2],
684     #active_bg => [1, 1, 1, 0.5],
685 root 1.68 @_
686     )
687     }
688    
689     sub _draw {
690     my ($self) = @_;
691    
692 root 1.209 my $color = $FOCUS == $self && $self->{active_bg}
693     ? $self->{active_bg}
694     : $self->{bg};
695    
696     if ($color && (@$color < 4 || $color->[3])) {
697     my ($w, $h) = @$self{qw(w h)};
698 root 1.68
699 root 1.209 glEnable GL_BLEND;
700 root 1.278 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
701     glColor_premultiply @$color;
702 root 1.76
703 root 1.209 glBegin GL_QUADS;
704     glVertex 0 , 0;
705     glVertex 0 , $h;
706     glVertex $w, $h;
707     glVertex $w, 0;
708     glEnd;
709 root 1.76
710 root 1.209 glDisable GL_BLEND;
711     }
712 root 1.68 }
713    
714     #############################################################################
715    
716 root 1.340 package CFPlus::UI::Empty;
717 root 1.66
718 root 1.340 our @ISA = CFPlus::UI::Base::;
719 root 1.66
720 elmex 1.150 sub new {
721     my ($class, %arg) = @_;
722     $class->SUPER::new (can_events => 0, %arg);
723     }
724    
725 root 1.66 sub size_request {
726 root 1.256 my ($self) = @_;
727    
728     ($self->{w} + 0, $self->{h} + 0)
729 root 1.66 }
730    
731 root 1.67 sub draw { }
732 root 1.66
733     #############################################################################
734    
735 root 1.340 package CFPlus::UI::Container;
736 elmex 1.15
737 root 1.340 our @ISA = CFPlus::UI::Base::;
738 elmex 1.15
739 root 1.38 sub new {
740 root 1.64 my ($class, %arg) = @_;
741    
742 root 1.272 my $children = delete $arg{children};
743 root 1.38
744 root 1.166 my $self = $class->SUPER::new (
745     children => [],
746     can_events => 0,
747     %arg,
748     );
749 root 1.272
750     $self->add (@$children)
751     if $children;
752 root 1.38
753     $self
754     }
755    
756 root 1.332 sub realloc {
757     my ($self) = @_;
758    
759     $self->{force_realloc} = 1;
760     $self->{force_size_alloc} = 1;
761     $self->SUPER::realloc;
762     }
763    
764 root 1.38 sub add {
765 root 1.188 my ($self, @widgets) = @_;
766 root 1.113
767 root 1.188 $_->set_parent ($self)
768     for @widgets;
769 root 1.38
770 root 1.113 use sort 'stable';
771 root 1.38
772 root 1.66 $self->{children} = [
773 root 1.38 sort { $a->{z} <=> $b->{z} }
774 root 1.188 @{$self->{children}}, @widgets
775 root 1.66 ];
776 root 1.38
777 root 1.251 $self->realloc;
778 root 1.38 }
779 root 1.35
780 root 1.172 sub children {
781     @{ $_[0]{children} }
782     }
783    
784 elmex 1.32 sub remove {
785 root 1.134 my ($self, $child) = @_;
786    
787     delete $child->{parent};
788 root 1.163 $child->hide;
789 root 1.38
790 root 1.134 $self->{children} = [ grep $_ != $child, @{ $self->{children} } ];
791 root 1.38
792 root 1.251 $self->realloc;
793 root 1.38 }
794    
795 root 1.162 sub clear {
796     my ($self) = @_;
797    
798 root 1.163 my $children = delete $self->{children};
799     $self->{children} = [];
800 root 1.162
801 root 1.163 for (@$children) {
802     delete $_->{parent};
803     $_->hide;
804     }
805 root 1.182
806 root 1.251 $self->realloc;
807 root 1.162 }
808    
809 root 1.38 sub find_widget {
810     my ($self, $x, $y) = @_;
811    
812 root 1.45 $x -= $self->{x};
813     $y -= $self->{y};
814    
815 root 1.38 my $res;
816    
817 root 1.272 for (reverse $self->visible_children) {
818 root 1.45 $res = $_->find_widget ($x, $y)
819 root 1.38 and return $res;
820     }
821    
822 root 1.46 $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
823 elmex 1.32 }
824 elmex 1.15
825 root 1.35 sub _draw {
826     my ($self) = @_;
827    
828 root 1.38 $_->draw for @{$self->{children}};
829 root 1.35 }
830 elmex 1.15
831 root 1.39 #############################################################################
832    
833 root 1.340 package CFPlus::UI::Bin;
834 elmex 1.32
835 root 1.340 our @ISA = CFPlus::UI::Container::;
836 elmex 1.32
837 root 1.66 sub new {
838     my ($class, %arg) = @_;
839    
840 root 1.340 my $child = (delete $arg{child}) || new CFPlus::UI::Empty::;
841 root 1.66
842     $class->SUPER::new (children => [$child], %arg)
843     }
844    
845     sub add {
846 root 1.134 my ($self, $child) = @_;
847 root 1.66
848 root 1.302 $self->SUPER::remove ($_) for @{ $self->{children} };
849 root 1.134 $self->SUPER::add ($child);
850 root 1.66 }
851    
852     sub remove {
853     my ($self, $widget) = @_;
854    
855     $self->SUPER::remove ($widget);
856    
857 root 1.340 $self->{children} = [new CFPlus::UI::Empty]
858 root 1.66 unless @{$self->{children}};
859     }
860    
861 root 1.39 sub child { $_[0]->{children}[0] }
862 elmex 1.32
863 root 1.38 sub size_request {
864 root 1.68 $_[0]{children}[0]->size_request
865 root 1.38 }
866 elmex 1.32
867 root 1.305 sub invoke_size_allocate {
868 root 1.259 my ($self, $w, $h) = @_;
869 root 1.42
870 root 1.128 $self->{children}[0]->configure (0, 0, $w, $h);
871 root 1.305
872     1
873 root 1.38 }
874 elmex 1.32
875 root 1.39 #############################################################################
876    
877 root 1.274 # back-buffered drawing area
878    
879 root 1.340 package CFPlus::UI::Window;
880 elmex 1.20
881 root 1.340 our @ISA = CFPlus::UI::Bin::;
882 elmex 1.20
883 root 1.340 use CFPlus::OpenGL;
884 elmex 1.20
885 root 1.42 sub new {
886 root 1.64 my ($class, %arg) = @_;
887 elmex 1.32
888 root 1.64 my $self = $class->SUPER::new (%arg);
889 elmex 1.32 }
890    
891     sub update {
892     my ($self) = @_;
893 root 1.42
894 root 1.198 $ROOT->on_post_alloc ($self => sub { $self->render_child });
895 root 1.42 $self->SUPER::update;
896 elmex 1.20 }
897    
898 root 1.305 sub invoke_size_allocate {
899 root 1.259 my ($self, $w, $h) = @_;
900 root 1.174
901 root 1.259 $self->update;
902 root 1.305
903     $self->SUPER::invoke_size_allocate ($w, $h)
904 root 1.174 }
905    
906 root 1.182 sub _render {
907 root 1.267 my ($self) = @_;
908    
909     $self->{children}[0]->draw;
910 root 1.182 }
911    
912 root 1.174 sub render_child {
913 elmex 1.20 my ($self) = @_;
914    
915 root 1.340 $self->{texture} = new_from_opengl CFPlus::Texture $self->{w}, $self->{h}, sub {
916 root 1.216 glClearColor 0, 0, 0, 0;
917 root 1.105 glClear GL_COLOR_BUFFER_BIT;
918 root 1.182
919 root 1.267 {
920 root 1.340 package CFPlus::UI::Base;
921 root 1.267
922 root 1.351 local ($draw_x, $draw_y, $draw_w, $draw_h) =
923 root 1.267 (0, 0, $self->{w}, $self->{h});
924 root 1.352
925     $self->_render;
926 root 1.267 }
927 root 1.105 };
928 elmex 1.36 }
929    
930 elmex 1.20 sub _draw {
931     my ($self) = @_;
932    
933     my $tex = $self->{texture}
934     or return;
935    
936     glEnable GL_TEXTURE_2D;
937 root 1.35 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
938 root 1.278 glColor 0, 0, 0, 1;
939 elmex 1.20
940 root 1.344 $tex->draw_quad_alpha_premultiplied (0, 0);
941 elmex 1.20
942     glDisable GL_TEXTURE_2D;
943     }
944    
945 root 1.39 #############################################################################
946    
947 root 1.340 package CFPlus::UI::ViewPort;
948 root 1.125
949 root 1.375 use List::Util qw(min max);
950    
951 root 1.340 our @ISA = CFPlus::UI::Window::;
952 root 1.125
953 root 1.234 sub new {
954     my $class = shift;
955    
956     $class->SUPER::new (
957     scroll_x => 0,
958     scroll_y => 1,
959     @_,
960     )
961     }
962    
963 root 1.125 sub size_request {
964     my ($self) = @_;
965    
966 root 1.259 my ($w, $h) = @{$self->child}{qw(req_w req_h)};
967 root 1.247
968     $w = 10 if $self->{scroll_x};
969     $h = 10 if $self->{scroll_y};
970 root 1.125
971 root 1.247 ($w, $h)
972 root 1.125 }
973    
974 root 1.305 sub invoke_size_allocate {
975 root 1.259 my ($self, $w, $h) = @_;
976    
977     my $child = $self->child;
978 root 1.182
979 root 1.259 $w = $child->{req_w} if $self->{scroll_x} && $child->{req_w};
980     $h = $child->{req_h} if $self->{scroll_y} && $child->{req_h};
981 root 1.234
982     $self->child->configure (0, 0, $w, $h);
983 root 1.182 $self->update;
984 root 1.305
985     1
986 root 1.182 }
987    
988     sub set_offset {
989     my ($self, $x, $y) = @_;
990    
991 root 1.378 my $x = max 0, min $self->child->{w} - $self->{w}, int $x;
992     my $y = max 0, min $self->child->{h} - $self->{h}, int $y;
993 root 1.182
994 root 1.378 if ($x != $self->{view_x} or $y != $self->{view_y}) {
995     $self->{view_x} = $x;
996     $self->{view_y} = $y;
997    
998     $self->emit (changed => $x, $y);
999     $self->update;
1000     }
1001 root 1.182 }
1002    
1003 root 1.191 # hmm, this does not work for topleft of $self... but we should not ask for that
1004     sub coord2local {
1005     my ($self, $x, $y) = @_;
1006    
1007     $self->SUPER::coord2local ($x + $self->{view_x}, $y + $self->{view_y})
1008     }
1009    
1010     sub coord2global {
1011 root 1.184 my ($self, $x, $y) = @_;
1012    
1013 root 1.191 $x = List::Util::min $self->{w}, $x - $self->{view_x};
1014     $y = List::Util::min $self->{h}, $y - $self->{view_y};
1015    
1016     $self->SUPER::coord2global ($x, $y)
1017 root 1.184 }
1018    
1019     sub find_widget {
1020     my ($self, $x, $y) = @_;
1021    
1022     if ( $x >= $self->{x} && $x < $self->{x} + $self->{w}
1023     && $y >= $self->{y} && $y < $self->{y} + $self->{h}
1024     ) {
1025     $self->child->find_widget ($x + $self->{view_x}, $y + $self->{view_y})
1026     } else {
1027 root 1.340 $self->CFPlus::UI::Base::find_widget ($x, $y)
1028 root 1.184 }
1029     }
1030    
1031 root 1.182 sub _render {
1032 root 1.125 my ($self) = @_;
1033    
1034 root 1.340 local $CFPlus::UI::Base::draw_x = $CFPlus::UI::Base::draw_x - $self->{view_x};
1035     local $CFPlus::UI::Base::draw_y = $CFPlus::UI::Base::draw_y - $self->{view_y};
1036 root 1.267
1037 root 1.340 CFPlus::OpenGL::glTranslate -$self->{view_x}, -$self->{view_y};
1038 root 1.182
1039     $self->SUPER::_render;
1040     }
1041    
1042     #############################################################################
1043    
1044 root 1.340 package CFPlus::UI::ScrolledWindow;
1045 root 1.182
1046 root 1.369 our @ISA = CFPlus::UI::Table::;
1047 root 1.182
1048     sub new {
1049 root 1.273 my ($class, %arg) = @_;
1050    
1051     my $child = delete $arg{child};
1052 root 1.182
1053     my $self;
1054    
1055 root 1.369 my $hslider = new CFPlus::UI::Slider
1056     vertical => 0,
1057     range => [0, 0, 1, 0.01], # HACK fix
1058     on_changed => sub {
1059     $self->{hpos} = $_[1];
1060     $self->{vp}->set_offset ($self->{hpos}, $self->{vpos});
1061     },
1062     ;
1063    
1064     my $vslider = new CFPlus::UI::Slider
1065 root 1.243 vertical => 1,
1066     range => [0, 0, 1, 0.01], # HACK fix
1067     on_changed => sub {
1068 root 1.369 $self->{vpos} = $_[1];
1069     $self->{vp}->set_offset ($self->{hpos}, $self->{vpos});
1070 root 1.182 },
1071     ;
1072    
1073     $self = $class->SUPER::new (
1074 root 1.372 scroll_x => 0,
1075     scroll_y => 1,
1076 root 1.330 can_events => 1,
1077 root 1.369 hslider => $hslider,
1078     vslider => $vslider,
1079     col_expand => [1, 0],
1080     row_expand => [1, 0],
1081 root 1.273 %arg,
1082 root 1.182 );
1083    
1084 root 1.372 $self->{vp} = new CFPlus::UI::ViewPort
1085 root 1.376 expand => 1,
1086     scroll_x => $self->{scroll_x},
1087     scroll_y => $self->{scroll_y},
1088     on_changed => sub {
1089     my ($vp, $x, $y) = @_;
1090 root 1.377
1091 root 1.376 $vp->{parent}{hslider}->set_value ($x);
1092     $vp->{parent}{vslider}->set_value ($y);
1093    
1094     0
1095     },
1096 root 1.372 ;
1097    
1098 root 1.369 $self->SUPER::add (0, 0, $self->{vp});
1099    
1100 root 1.273 $self->add ($child) if $child;
1101 root 1.182
1102     $self
1103 root 1.125 }
1104    
1105 root 1.314 #TODO# update range on size_allocate depending on child
1106    
1107 root 1.273 sub add {
1108     my ($self, $widget) = @_;
1109    
1110     $self->{vp}->add ($self->{child} = $widget);
1111     }
1112    
1113 root 1.314 sub update_slider {
1114     my ($self) = @_;
1115    
1116 root 1.371 my $child = ($self->{vp} or return)->child;
1117    
1118     my ($w1, $w2) = ($child->{w}, $self->{vp}{w});
1119 root 1.369 $self->{hslider}->set_range ([$self->{hslider}{range}[0], 0, $w1, $w2, 1]);
1120 root 1.374
1121     my $visible = $w1 > $w2;
1122     if ($visible != $self->{hslider}{visible}) {
1123     $visible ? $self->SUPER::add (0, 1, $self->{hslider})
1124     : $self->{hslider}->hide;
1125     }
1126 root 1.369
1127 root 1.371 my ($h1, $h2) = ($child->{h}, $self->{vp}{h});
1128 root 1.369 $self->{vslider}->set_range ([$self->{vslider}{range}[0], 0, $h1, $h2, 1]);
1129 root 1.374
1130     my $visible = $h1 > $h2;
1131     if ($visible != $self->{vslider}{visible}) {
1132     $visible ? $self->SUPER::add (1, 0, $self->{vslider})
1133     : $self->{vslider}->hide;
1134     }
1135 root 1.314 }
1136    
1137 root 1.239 sub update {
1138     my ($self) = @_;
1139    
1140     $self->SUPER::update;
1141 root 1.314 $self->update_slider;
1142 root 1.239 }
1143    
1144 root 1.375 sub invoke_mouse_wheel {
1145     my ($self, $ev) = @_;
1146    
1147     return 0 unless $ev->{dy}; # only vertical movements for now
1148    
1149     $self->{vslider}->emit (mouse_wheel => $ev);
1150    
1151     1
1152     }
1153    
1154     sub invoke_button_down {
1155     my ($self, $ev, $x, $y) = @_;
1156    
1157     if ($ev->{button} == 2) {
1158     $self->grab_focus;
1159 root 1.376
1160     my $ox = $self->{vp}{view_x} + $ev->{x};
1161     my $oy = $self->{vp}{view_y} + $ev->{y};
1162 root 1.375
1163     $self->{motion} = sub {
1164     my ($ev, $x, $y) = @_;
1165    
1166 root 1.376 $self->{vp}->set_offset ($ox - $ev->{x}, $oy - $ev->{y});
1167     $self->update;
1168 root 1.375 };
1169    
1170     return 1;
1171     }
1172    
1173     0
1174     }
1175    
1176     sub invoke_button_up {
1177     my ($self, $ev, $x, $y) = @_;
1178    
1179     if (delete $self->{motion}) {
1180     return 1;
1181     }
1182    
1183     0
1184     }
1185    
1186     sub invoke_mouse_motion {
1187     my ($self, $ev, $x, $y) = @_;
1188    
1189     if ($self->{motion}) {
1190     $self->{motion}->($ev, $x, $y);
1191     return 1;
1192     }
1193    
1194     0
1195     }
1196    
1197 root 1.305 sub invoke_size_allocate {
1198 root 1.259 my ($self, $w, $h) = @_;
1199 root 1.229
1200 root 1.314 $self->update_slider;
1201 root 1.305 $self->SUPER::invoke_size_allocate ($w, $h)
1202 root 1.229 }
1203    
1204 root 1.125 #############################################################################
1205    
1206 root 1.340 package CFPlus::UI::Frame;
1207 elmex 1.15
1208 root 1.340 our @ISA = CFPlus::UI::Bin::;
1209 elmex 1.15
1210 root 1.340 use CFPlus::OpenGL;
1211 elmex 1.15
1212 root 1.199 sub new {
1213     my $class = shift;
1214    
1215     $class->SUPER::new (
1216     bg => undef,
1217     @_,
1218     )
1219     }
1220    
1221     sub _draw {
1222     my ($self) = @_;
1223    
1224     if ($self->{bg}) {
1225     my ($w, $h) = @$self{qw(w h)};
1226    
1227     glEnable GL_BLEND;
1228 root 1.278 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
1229     glColor_premultiply @{ $self->{bg} };
1230 root 1.199
1231     glBegin GL_QUADS;
1232     glVertex 0 , 0;
1233     glVertex 0 , $h;
1234     glVertex $w, $h;
1235     glVertex $w, 0;
1236     glEnd;
1237    
1238     glDisable GL_BLEND;
1239     }
1240    
1241     $self->SUPER::_draw;
1242     }
1243    
1244 root 1.39 #############################################################################
1245    
1246 root 1.340 package CFPlus::UI::FancyFrame;
1247 elmex 1.31
1248 root 1.340 our @ISA = CFPlus::UI::Bin::;
1249 elmex 1.31
1250 root 1.340 use CFPlus::OpenGL;
1251 elmex 1.31
1252 root 1.346 sub new {
1253     my ($class, %arg) = @_;
1254    
1255     if ((exists $arg{label}) && !ref $arg{label}) {
1256     $arg{label} = new CFPlus::UI::Label
1257     align => 1,
1258 root 1.347 valign => 0,
1259 root 1.346 text => $arg{label},
1260     fontsize => ($arg{border} || 0.8) * 0.75;
1261     }
1262    
1263     my $self = $class->SUPER::new (
1264     # label => "",
1265     fg => [0.6, 0.3, 0.1],
1266     border => 0.8,
1267     style => 'single',
1268     %arg,
1269     );
1270    
1271     $self
1272     }
1273    
1274     sub add {
1275     my ($self, @widgets) = @_;
1276    
1277     $self->SUPER::add (@widgets);
1278     $self->CFPlus::UI::Container::add ($self->{label}) if $self->{label};
1279     }
1280    
1281     sub border {
1282     int $_[0]{border} * $::FONTSIZE
1283     }
1284    
1285     sub size_request {
1286     my ($self) = @_;
1287    
1288     ($self->{label_w}, undef) = $self->{label}->size_request
1289     if $self->{label};
1290    
1291     my ($w, $h) = $self->SUPER::size_request;
1292    
1293     (
1294     $w + $self->border * 2,
1295     $h + $self->border * 2,
1296     )
1297     }
1298    
1299     sub invoke_size_allocate {
1300     my ($self, $w, $h) = @_;
1301    
1302     my $border = $self->border;
1303    
1304     $w -= List::Util::max 0, $border * 2;
1305     $h -= List::Util::max 0, $border * 2;
1306    
1307     if (my $label = $self->{label}) {
1308     $label->{w} = List::Util::max 0, List::Util::min $self->{label_w}, $w - $border * 2;
1309     $label->{h} = List::Util::min $h, $border;
1310     $label->invoke_size_allocate ($label->{w}, $label->{h});
1311     }
1312    
1313     $self->child->configure ($border, $border, $w, $h);
1314    
1315     1
1316     }
1317    
1318     sub _draw {
1319     my ($self) = @_;
1320    
1321     my $child = $self->{children}[0];
1322    
1323     my $border = $self->border;
1324     my ($w, $h) = ($self->{w}, $self->{h});
1325    
1326     $child->draw;
1327    
1328     glColor @{$self->{fg}};
1329     glBegin GL_LINE_STRIP;
1330     glVertex $border * 1.5 , $border * 0.5 + 0.5;
1331     glVertex $border * 0.5 + 0.5, $border * 0.5 + 0.5;
1332     glVertex $border * 0.5 + 0.5, $h - $border * 0.5 + 0.5;
1333     glVertex $w - $border * 0.5 + 0.5, $h - $border * 0.5 + 0.5;
1334     glVertex $w - $border * 0.5 + 0.5, $border * 0.5 + 0.5;
1335     glVertex $self->{label} ? $border * 2 + $self->{label}{w} : $border * 1.5, $border * 0.5 + 0.5;
1336     glEnd;
1337    
1338     if ($self->{label}) {
1339     glTranslate $border * 2, 0;
1340     $self->{label}->_draw;
1341     }
1342     }
1343    
1344     #############################################################################
1345    
1346     package CFPlus::UI::Toplevel;
1347    
1348     our @ISA = CFPlus::UI::Bin::;
1349    
1350     use CFPlus::OpenGL;
1351    
1352 root 1.255 my $bg =
1353 root 1.340 new_from_file CFPlus::Texture CFPlus::find_rcfile "d1_bg.png",
1354 root 1.255 mipmap => 1, wrap => 1;
1355    
1356     my @border =
1357 root 1.340 map { new_from_file CFPlus::Texture CFPlus::find_rcfile $_, mipmap => 1 }
1358 root 1.255 qw(d1_border_top.png d1_border_right.png d1_border_left.png d1_border_bottom.png);
1359 elmex 1.34
1360 root 1.382 my @icon =
1361     map { new_from_file CFPlus::Texture CFPlus::find_rcfile $_, mipmap => 1 }
1362     qw(x1_move.png x1_resize.png);
1363    
1364 root 1.97 sub new {
1365 root 1.269 my ($class, %arg) = @_;
1366    
1367 root 1.141 my $self = $class->SUPER::new (
1368 root 1.230 bg => [1, 1, 1, 1],
1369     border_bg => [1, 1, 1, 1],
1370     border => 0.6,
1371     can_events => 1,
1372 root 1.326 min_w => 64,
1373     min_h => 32,
1374 root 1.269 %arg,
1375 root 1.141 );
1376    
1377 root 1.340 $self->{title_widget} = new CFPlus::UI::Label
1378 root 1.141 align => 0,
1379     valign => 1,
1380 root 1.302 text => $self->{title},
1381     fontsize => $self->{border},
1382     if exists $self->{title};
1383 root 1.141
1384 root 1.305 if ($self->{has_close_button}) {
1385     $self->{close_button} =
1386 root 1.340 new CFPlus::UI::ImageButton
1387 root 1.310 path => 'x1_close.png',
1388 root 1.317 on_activate => sub { $self->emit ("delete") };
1389 elmex 1.303
1390 root 1.340 $self->CFPlus::UI::Container::add ($self->{close_button});
1391 elmex 1.303 }
1392    
1393 root 1.141 $self
1394 root 1.97 }
1395    
1396 root 1.269 sub add {
1397     my ($self, @widgets) = @_;
1398    
1399     $self->SUPER::add (@widgets);
1400 root 1.340 $self->CFPlus::UI::Container::add ($self->{close_button}) if $self->{close_button};
1401     $self->CFPlus::UI::Container::add ($self->{title_widget}) if $self->{title_widget};
1402 root 1.269 }
1403    
1404 root 1.134 sub border {
1405     int $_[0]{border} * $::FONTSIZE
1406     }
1407    
1408 elmex 1.34 sub size_request {
1409     my ($self) = @_;
1410 root 1.39
1411 root 1.302 $self->{title_widget}->size_request
1412     if $self->{title_widget};
1413 root 1.269
1414 root 1.305 $self->{close_button}->size_request
1415     if $self->{close_button};
1416 elmex 1.303
1417 root 1.78 my ($w, $h) = $self->SUPER::size_request;
1418 elmex 1.34
1419 root 1.97 (
1420 root 1.134 $w + $self->border * 2,
1421     $h + $self->border * 2,
1422 root 1.97 )
1423 elmex 1.36 }
1424    
1425 root 1.305 sub invoke_size_allocate {
1426 root 1.259 my ($self, $w, $h) = @_;
1427 root 1.40
1428 root 1.302 if ($self->{title_widget}) {
1429     $self->{title_widget}{w} = $w;
1430     $self->{title_widget}{h} = $h;
1431 root 1.305 $self->{title_widget}->invoke_size_allocate ($w, $h);
1432 root 1.269 }
1433 elmex 1.36
1434 root 1.269 my $border = $self->border;
1435 root 1.141
1436 root 1.269 $h -= List::Util::max 0, $border * 2;
1437     $w -= List::Util::max 0, $border * 2;
1438 elmex 1.303
1439 root 1.269 $self->child->configure ($border, $border, $w, $h);
1440 elmex 1.303
1441 root 1.305 $self->{close_button}->configure ($self->{w} - $border, 0, $border, $border)
1442     if $self->{close_button};
1443    
1444     1
1445 elmex 1.34 }
1446    
1447 root 1.317 sub invoke_delete {
1448     my ($self) = @_;
1449    
1450     $self->hide;
1451    
1452     1
1453     }
1454    
1455 root 1.305 sub invoke_button_down {
1456 root 1.77 my ($self, $ev, $x, $y) = @_;
1457    
1458 root 1.176 my ($w, $h) = @$self{qw(w h)};
1459 root 1.134 my $border = $self->border;
1460    
1461 root 1.176 my $lr = ($x >= 0 && $x < $border) || ($x > $w - $border && $x < $w);
1462     my $td = ($y >= 0 && $y < $border) || ($y > $h - $border && $y < $h);
1463 root 1.77
1464 root 1.176 if ($lr & $td) {
1465     my ($wx, $wy) = ($self->{x}, $self->{y});
1466 root 1.139 my ($ox, $oy) = ($ev->{x}, $ev->{y});
1467 root 1.77 my ($bw, $bh) = ($self->{w}, $self->{h});
1468    
1469 root 1.176 my $mx = $x < $border;
1470     my $my = $y < $border;
1471    
1472 root 1.77 $self->{motion} = sub {
1473     my ($ev, $x, $y) = @_;
1474    
1475 root 1.176 my $dx = $ev->{x} - $ox;
1476     my $dy = $ev->{y} - $oy;
1477 root 1.77
1478 root 1.256 $self->{force_w} = $bw + $dx * ($mx ? -1 : 1);
1479     $self->{force_h} = $bh + $dy * ($my ? -1 : 1);
1480    
1481 root 1.277 $self->move_abs ($wx + $dx * $mx, $wy + $dy * $my);
1482 root 1.251 $self->realloc;
1483 root 1.77 };
1484    
1485 root 1.176 } elsif ($lr ^ $td) {
1486 root 1.139 my ($ox, $oy) = ($ev->{x}, $ev->{y});
1487 root 1.77 my ($bx, $by) = ($self->{x}, $self->{y});
1488    
1489     $self->{motion} = sub {
1490     my ($ev, $x, $y) = @_;
1491    
1492 root 1.139 ($x, $y) = ($ev->{x}, $ev->{y});
1493 root 1.77
1494 root 1.256 $self->move_abs ($bx + $x - $ox, $by + $y - $oy);
1495 root 1.277 # HACK: the next line is required to enforce placement
1496 root 1.305 $self->{parent}->invoke_size_allocate ($self->{parent}{w}, $self->{parent}{h});
1497 root 1.77 };
1498 root 1.271 } else {
1499     return 0;
1500 root 1.77 }
1501 root 1.271
1502     1
1503 root 1.77 }
1504    
1505 root 1.305 sub invoke_button_up {
1506 root 1.77 my ($self, $ev, $x, $y) = @_;
1507    
1508 root 1.305 ! ! delete $self->{motion}
1509 root 1.77 }
1510    
1511 root 1.305 sub invoke_mouse_motion {
1512 root 1.77 my ($self, $ev, $x, $y) = @_;
1513    
1514     $self->{motion}->($ev, $x, $y) if $self->{motion};
1515 root 1.271
1516 root 1.305 ! ! $self->{motion}
1517 root 1.77 }
1518    
1519 root 1.339 sub invoke_visibility_change {
1520     my ($self, $visible) = @_;
1521    
1522     delete $self->{motion} unless $visible;
1523    
1524     0
1525     }
1526    
1527 elmex 1.34 sub _draw {
1528     my ($self) = @_;
1529    
1530 root 1.269 my $child = $self->{children}[0];
1531    
1532 root 1.97 my ($w, $h ) = ($self->{w}, $self->{h});
1533 root 1.269 my ($cw, $ch) = ($child->{w}, $child->{h});
1534 elmex 1.34
1535     glEnable GL_TEXTURE_2D;
1536 root 1.97 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
1537 elmex 1.34
1538 root 1.134 my $border = $self->border;
1539    
1540 root 1.97 glColor @{ $self->{border_bg} };
1541 root 1.382 $border[0]->draw_quad_alpha ( 0, 0, $w, $border);
1542     $border[1]->draw_quad_alpha ( 0, $border, $border, $ch);
1543     $border[2]->draw_quad_alpha ($w - $border, $border, $border, $ch);
1544     $border[3]->draw_quad_alpha ( 0, $h - $border, $w, $border);
1545    
1546     # move
1547     my $w2 = ($w - $border) * .5;
1548     my $h2 = ($h - $border) * .5;
1549     $icon[0]->draw_quad_alpha ( 0, $h2, $border, $border);
1550     $icon[0]->draw_quad_alpha ($w - $border, $h2, $border, $border);
1551     $icon[0]->draw_quad_alpha ($w2 , $h - $border, $border, $border);
1552    
1553     # resize
1554     $icon[1]->draw_quad_alpha ( 0, 0, $border, $border);
1555     $icon[1]->draw_quad_alpha ($w - $border, 0, $border, $border)
1556     unless $self->{has_close_button};
1557     $icon[1]->draw_quad_alpha ( 0, $h - $border, $border, $border);
1558     $icon[1]->draw_quad_alpha ($w - $border, $h - $border, $border, $border);
1559 elmex 1.34
1560 root 1.177 if (@{$self->{bg}} < 4 || $self->{bg}[3]) {
1561 root 1.255 glColor @{ $self->{bg} };
1562 root 1.76
1563 root 1.177 # TODO: repeat texture not scale
1564 root 1.255 # solve this better(?)
1565     $bg->{s} = $cw / $bg->{w};
1566     $bg->{t} = $ch / $bg->{h};
1567 root 1.197 $bg->draw_quad_alpha ($border, $border, $cw, $ch);
1568     }
1569 elmex 1.34
1570 root 1.197 glDisable GL_TEXTURE_2D;
1571 elmex 1.36
1572 root 1.269 $child->draw;
1573 root 1.177
1574 root 1.302 if ($self->{title_widget}) {
1575 root 1.269 glTranslate 0, $border - $self->{h};
1576 root 1.302 $self->{title_widget}->_draw;
1577 elmex 1.303
1578     glTranslate 0, - ($border - $self->{h});
1579 root 1.269 }
1580 elmex 1.303
1581 root 1.305 $self->{close_button}->draw
1582     if $self->{close_button};
1583 elmex 1.34 }
1584 elmex 1.31
1585 root 1.39 #############################################################################
1586    
1587 root 1.340 package CFPlus::UI::Table;
1588 elmex 1.15
1589 root 1.340 our @ISA = CFPlus::UI::Base::;
1590 elmex 1.15
1591 root 1.75 use List::Util qw(max sum);
1592    
1593 root 1.340 use CFPlus::OpenGL;
1594 elmex 1.15
1595 root 1.78 sub new {
1596     my $class = shift;
1597    
1598     $class->SUPER::new (
1599 root 1.374 children => [],
1600 root 1.78 col_expand => [],
1601 root 1.369 row_expand => [],
1602 root 1.234 @_,
1603 root 1.78 )
1604     }
1605    
1606 root 1.236 sub children {
1607     grep $_, map @$_, grep $_, @{ $_[0]{children} }
1608     }
1609    
1610 root 1.374 # TODO: store row/col info in child widget and use standard add/del
1611 elmex 1.15 sub add {
1612 root 1.332 my ($self) = shift;
1613 elmex 1.32
1614 root 1.332 while (@_) {
1615     my ($x, $y, $child) = splice @_, 0, 3, ();
1616     $child->set_parent ($self);
1617     $self->{children}[$y][$x] = $child;
1618     }
1619 root 1.75
1620 root 1.374 $self->{force_realloc} = 1;
1621 root 1.332 $self->{force_size_alloc} = 1;
1622 root 1.251 $self->realloc;
1623 root 1.172 }
1624    
1625 root 1.302 sub remove {
1626     my ($self, $child) = @_;
1627    
1628 root 1.374 for (@{ $self->{children} }) {
1629     for (@{ $_ || [] }) {
1630     $_ = undef if $_ == $child;
1631     }
1632     }
1633 root 1.302 }
1634    
1635 root 1.236 # TODO: move to container class maybe? send children a signal on removal?
1636 root 1.115 sub clear {
1637     my ($self) = @_;
1638    
1639 root 1.172 my @children = $self->children;
1640     delete $self->{children};
1641 root 1.163
1642 root 1.172 for (@children) {
1643 root 1.163 delete $_->{parent};
1644     $_->hide;
1645     }
1646    
1647 root 1.251 $self->realloc;
1648 root 1.115 }
1649    
1650 root 1.75 sub get_wh {
1651     my ($self) = @_;
1652    
1653     my (@w, @h);
1654 elmex 1.15
1655 root 1.75 for my $y (0 .. $#{$self->{children}}) {
1656     my $row = $self->{children}[$y]
1657     or next;
1658 elmex 1.15
1659 root 1.75 for my $x (0 .. $#$row) {
1660     my $widget = $row->[$x]
1661     or next;
1662 root 1.149 my ($w, $h) = @$widget{qw(req_w req_h)};
1663 elmex 1.15
1664 root 1.75 $w[$x] = max $w[$x], $w;
1665     $h[$y] = max $h[$y], $h;
1666 elmex 1.17 }
1667 elmex 1.15 }
1668 root 1.75
1669     (\@w, \@h)
1670 elmex 1.15 }
1671    
1672     sub size_request {
1673     my ($self) = @_;
1674    
1675 root 1.75 my ($ws, $hs) = $self->get_wh;
1676 elmex 1.15
1677 root 1.75 (
1678 root 1.78 (sum @$ws),
1679     (sum @$hs),
1680 root 1.75 )
1681     }
1682    
1683 root 1.305 sub invoke_size_allocate {
1684 root 1.259 my ($self, $w, $h) = @_;
1685 root 1.75
1686     my ($ws, $hs) = $self->get_wh;
1687    
1688 root 1.238 my $req_w = (sum @$ws) || 1;
1689     my $req_h = (sum @$hs) || 1;
1690 root 1.78
1691 root 1.369 # TODO: nicer code
1692 root 1.78 my @col_expand = @{$self->{col_expand}};
1693     @col_expand = (1) x @$ws unless @col_expand;
1694     my $col_expand = (sum @col_expand) || 1;
1695 elmex 1.15
1696 root 1.78 $ws->[$_] += $col_expand[$_] / $col_expand * ($w - $req_w) for 0 .. $#$ws;
1697 elmex 1.15
1698 root 1.340 CFPlus::UI::harmonize $ws;
1699 root 1.369
1700     my @row_expand = @{$self->{row_expand}};
1701     @row_expand = (1) x @$ws unless @row_expand;
1702     my $row_expand = (sum @row_expand) || 1;
1703    
1704     $hs->[$_] += $row_expand[$_] / $row_expand * ($h - $req_h) for 0 .. $#$hs;
1705    
1706 root 1.340 CFPlus::UI::harmonize $hs;
1707 root 1.106
1708 root 1.75 my $y;
1709 elmex 1.15
1710 root 1.75 for my $r (0 .. $#{$self->{children}}) {
1711     my $row = $self->{children}[$r]
1712     or next;
1713 elmex 1.15
1714     my $x = 0;
1715 root 1.75 my $row_h = $hs->[$r];
1716    
1717     for my $c (0 .. $#$row) {
1718     my $col_w = $ws->[$c];
1719 elmex 1.15
1720 root 1.83 if (my $widget = $row->[$c]) {
1721 root 1.128 $widget->configure ($x, $y, $col_w, $row_h);
1722 root 1.83 }
1723 elmex 1.15
1724 root 1.75 $x += $col_w;
1725 elmex 1.15 }
1726    
1727 root 1.75 $y += $row_h;
1728     }
1729    
1730 root 1.305 1
1731 root 1.75 }
1732    
1733 root 1.76 sub find_widget {
1734     my ($self, $x, $y) = @_;
1735    
1736     $x -= $self->{x};
1737     $y -= $self->{y};
1738    
1739     my $res;
1740    
1741     for (grep $_, map @$_, grep $_, @{ $self->{children} }) {
1742     $res = $_->find_widget ($x, $y)
1743     and return $res;
1744     }
1745    
1746     $self->SUPER::find_widget ($x + $self->{x}, $y + $self->{y})
1747     }
1748    
1749 root 1.75 sub _draw {
1750     my ($self) = @_;
1751    
1752     for (grep $_, @{$self->{children}}) {
1753     $_->draw for grep $_, @$_;
1754 elmex 1.15 }
1755     }
1756    
1757 root 1.39 #############################################################################
1758    
1759 root 1.374 package CFPlus::UI::Fixed;
1760    
1761     use List::Util qw(min max);
1762    
1763     our @ISA = CFPlus::UI::Container::;
1764    
1765     sub add {
1766     my ($self, $child, $posmode, $x, $y, $sizemode, $w, $h) = @_;
1767    
1768     $child->{_fixed} = [$posmode, $x, $y, $sizemode, $w, $h];
1769     $self->SUPER::add ($child);
1770     }
1771    
1772     sub _scale($$$) {
1773     my ($mode, $val, $max) = @_;
1774    
1775     $mode eq "abs" ? $val
1776     : $mode eq "rel" ? $val * $max
1777     : 0
1778     }
1779    
1780     sub size_request {
1781     my ($self) = @_;
1782    
1783     my ($x1, $y1, $x2, $y2) = (0, 0, 0, 0);
1784    
1785     # determine overall size by querying abs widgets
1786     for my $child ($self->visible_children) {
1787     my ($pos, $x, $y, $size, $w, $h) = @{ $child->{_fixed} };
1788    
1789     if ($pos eq "abs") {
1790     $w = _scale $size, $w, $child->{req_w};
1791     $h = _scale $size, $h, $child->{req_h};
1792    
1793     $x1 = min $x1, $x; $x2 = max $x2, $x + $w;
1794     $y1 = min $y1, $y; $y2 = max $y2, $y + $h;
1795     }
1796     }
1797    
1798     my $W = $x2 - $x1;
1799     my $H = $y2 - $y1;
1800    
1801     # now layout remaining widgets
1802     for my $child ($self->visible_children) {
1803     my ($pos, $x, $y, $size, $w, $h) = @{ $child->{_fixed} };
1804    
1805     if ($pos ne "abs") {
1806     $x = _scale $pos, $x, $W;
1807     $y = _scale $pos, $x, $H;
1808     $w = _scale $size, $w, $child->{req_w};
1809     $h = _scale $size, $h, $child->{req_h};
1810    
1811     $x1 = min $x1, $x; $x2 = max $x2, $x + $w;
1812     $y1 = min $y1, $y; $y2 = max $y2, $y + $h;
1813     }
1814     }
1815    
1816     my $W = $x2 - $x1;
1817     my $H = $y2 - $y1;
1818    
1819     ($W, $H)
1820     }
1821    
1822     sub invoke_size_allocate {
1823     my ($self, $W, $H) = @_;
1824    
1825     for my $child ($self->visible_children) {
1826     my ($pos, $x, $y, $size, $w, $h) = @{ $child->{_fixed} };
1827    
1828     $x = _scale $pos, $x, $W;
1829     $y = _scale $pos, $x, $H;
1830     $w = _scale $size, $w, $child->{req_w};
1831     $h = _scale $size, $h, $child->{req_h};
1832    
1833     $child->configure ($x, $y, $w, $h);
1834     }
1835    
1836     1
1837     }
1838    
1839     #############################################################################
1840    
1841 root 1.340 package CFPlus::UI::Box;
1842 root 1.76
1843 root 1.340 our @ISA = CFPlus::UI::Container::;
1844 root 1.76
1845     sub size_request {
1846     my ($self) = @_;
1847    
1848 root 1.246 $self->{vertical}
1849     ? (
1850     (List::Util::max map $_->{req_w}, @{$self->{children}}),
1851     (List::Util::sum map $_->{req_h}, @{$self->{children}}),
1852     )
1853     : (
1854     (List::Util::sum map $_->{req_w}, @{$self->{children}}),
1855     (List::Util::max map $_->{req_h}, @{$self->{children}}),
1856     )
1857 root 1.76 }
1858    
1859 root 1.305 sub invoke_size_allocate {
1860 root 1.259 my ($self, $w, $h) = @_;
1861 root 1.76
1862 root 1.246 my $space = $self->{vertical} ? $h : $w;
1863 root 1.310 my @children = $self->visible_children;
1864 root 1.76
1865 root 1.247 my @req;
1866 root 1.76
1867 root 1.247 if ($self->{homogeneous}) {
1868 root 1.310 @req = ($space / (@children || 1)) x @children;
1869 root 1.76 } else {
1870 root 1.310 @req = map $_->{$self->{vertical} ? "req_h" : "req_w"}, @children;
1871 root 1.247 my $req = List::Util::sum @req;
1872    
1873     if ($req > $space) {
1874     # ah well, not enough space
1875     $_ *= $space / $req for @req;
1876     } else {
1877 root 1.310 my $expand = (List::Util::sum map $_->{expand}, @children) || 1;
1878 root 1.247
1879     $space = ($space - $req) / $expand; # remaining space to give away
1880    
1881 root 1.310 $req[$_] += $space * $children[$_]{expand}
1882     for 0 .. $#children;
1883 root 1.247 }
1884 root 1.76 }
1885    
1886 root 1.340 CFPlus::UI::harmonize \@req;
1887 root 1.112
1888 root 1.246 my $pos = 0;
1889 root 1.310 for (0 .. $#children) {
1890 root 1.246 my $alloc = $req[$_];
1891 root 1.310 $children[$_]->configure ($self->{vertical} ? (0, $pos, $w, $alloc) : ($pos, 0, $alloc, $h));
1892 root 1.76
1893 root 1.246 $pos += $alloc;
1894 root 1.76 }
1895 root 1.125
1896     1
1897 root 1.76 }
1898    
1899     #############################################################################
1900    
1901 root 1.340 package CFPlus::UI::HBox;
1902 elmex 1.15
1903 root 1.340 our @ISA = CFPlus::UI::Box::;
1904 root 1.76
1905 root 1.246 sub new {
1906     my $class = shift;
1907 elmex 1.15
1908 root 1.246 $class->SUPER::new (
1909     vertical => 0,
1910     @_,
1911 root 1.43 )
1912     }
1913    
1914 root 1.246 #############################################################################
1915 root 1.68
1916 root 1.340 package CFPlus::UI::VBox;
1917 root 1.193
1918 root 1.340 our @ISA = CFPlus::UI::Box::;
1919 root 1.68
1920 root 1.246 sub new {
1921     my $class = shift;
1922 root 1.68
1923 root 1.246 $class->SUPER::new (
1924     vertical => 1,
1925     @_,
1926     )
1927 elmex 1.36 }
1928    
1929 root 1.39 #############################################################################
1930    
1931 root 1.340 package CFPlus::UI::Label;
1932 root 1.10
1933 root 1.340 our @ISA = CFPlus::UI::DrawBG::;
1934 root 1.12
1935 root 1.340 use CFPlus::OpenGL;
1936 root 1.10
1937     sub new {
1938 root 1.64 my ($class, %arg) = @_;
1939 root 1.51
1940 root 1.59 my $self = $class->SUPER::new (
1941 root 1.164 fg => [1, 1, 1],
1942 root 1.209 #bg => none
1943     #active_bg => none
1944 root 1.164 #font => default_font
1945 root 1.194 #text => initial text
1946     #markup => initial narkup
1947 root 1.213 #max_w => maximum pixel width
1948 root 1.343 #style => 0, # render flags
1949 root 1.213 ellipsise => 3, # end
1950 root 1.340 layout => (new CFPlus::Layout),
1951 root 1.164 fontsize => 1,
1952     align => -1,
1953     valign => -1,
1954 root 1.258 padding_x => 2,
1955     padding_y => 2,
1956 elmex 1.150 can_events => 0,
1957 root 1.64 %arg
1958 root 1.59 );
1959 root 1.10
1960 root 1.141 if (exists $self->{template}) {
1961 root 1.340 my $layout = new CFPlus::Layout;
1962 root 1.141 $layout->set_text (delete $self->{template});
1963     $self->{template} = $layout;
1964     }
1965 root 1.121
1966 root 1.194 if (exists $self->{markup}) {
1967     $self->set_markup (delete $self->{markup});
1968     } else {
1969     $self->set_text (delete $self->{text});
1970     }
1971 root 1.10
1972     $self
1973     }
1974    
1975 root 1.173 sub update {
1976     my ($self) = @_;
1977    
1978     delete $self->{texture};
1979     $self->SUPER::update;
1980     }
1981    
1982 root 1.282 sub realloc {
1983     my ($self) = @_;
1984    
1985     delete $self->{ox};
1986     $self->SUPER::realloc;
1987     }
1988    
1989 elmex 1.15 sub set_text {
1990     my ($self, $text) = @_;
1991 root 1.28
1992 root 1.173 return if $self->{text} eq "T$text";
1993     $self->{text} = "T$text";
1994    
1995 root 1.121 $self->{layout}->set_text ($text);
1996 root 1.288
1997 root 1.289 delete $self->{size_req};
1998 root 1.251 $self->realloc;
1999 root 1.252 $self->update;
2000 elmex 1.15 }
2001    
2002 root 1.121 sub set_markup {
2003     my ($self, $markup) = @_;
2004    
2005 root 1.173 return if $self->{text} eq "M$markup";
2006     $self->{text} = "M$markup";
2007    
2008 root 1.194 my $rgba = $markup =~ /span.*(?:foreground|background)/;
2009    
2010 root 1.121 $self->{layout}->set_markup ($markup);
2011 root 1.288
2012 root 1.289 delete $self->{size_req};
2013 root 1.251 $self->realloc;
2014 root 1.252 $self->update;
2015 elmex 1.15 }
2016    
2017 root 1.14 sub size_request {
2018     my ($self) = @_;
2019    
2020 root 1.289 $self->{size_req} ||= do {
2021 root 1.282 $self->{layout}->set_font ($self->{font}) if $self->{font};
2022     $self->{layout}->set_width ($self->{max_w} || -1);
2023     $self->{layout}->set_ellipsise ($self->{ellipsise});
2024     $self->{layout}->set_single_paragraph_mode ($self->{ellipsise});
2025     $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
2026    
2027     my ($w, $h) = $self->{layout}->size;
2028 root 1.121
2029 root 1.282 if (exists $self->{template}) {
2030     $self->{template}->set_font ($self->{font}) if $self->{font};
2031 root 1.323 $self->{template}->set_width ($self->{max_w} || -1);
2032 root 1.282 $self->{template}->set_height ($self->{fontsize} * $::FONTSIZE);
2033 root 1.76
2034 root 1.282 my ($w2, $h2) = $self->{template}->size;
2035 root 1.141
2036 root 1.282 $w = List::Util::max $w, $w2;
2037     $h = List::Util::max $h, $h2;
2038     }
2039 root 1.141
2040 root 1.289 [$w, $h]
2041     };
2042    
2043     @{ $self->{size_req} }
2044 root 1.59 }
2045 root 1.51
2046 root 1.311 sub baseline_shift {
2047     $_[0]{layout}->descent
2048     }
2049    
2050 root 1.305 sub invoke_size_allocate {
2051 root 1.259 my ($self, $w, $h) = @_;
2052 root 1.68
2053 root 1.269 delete $self->{ox};
2054    
2055 root 1.264 delete $self->{texture}
2056 root 1.266 unless $w >= $self->{req_w} && $self->{old_w} >= $self->{req_w};
2057 root 1.305
2058     1
2059 root 1.14 }
2060    
2061 elmex 1.146 sub set_fontsize {
2062     my ($self, $fontsize) = @_;
2063    
2064     $self->{fontsize} = $fontsize;
2065 root 1.316 delete $self->{size_req};
2066 root 1.152 delete $self->{texture};
2067 root 1.186
2068 root 1.251 $self->realloc;
2069 elmex 1.146 }
2070    
2071 root 1.289 sub reconfigure {
2072     my ($self) = @_;
2073    
2074     delete $self->{size_req};
2075 root 1.320 delete $self->{texture};
2076 root 1.289
2077     $self->SUPER::reconfigure;
2078     }
2079    
2080 elmex 1.11 sub _draw {
2081 root 1.10 my ($self) = @_;
2082    
2083 root 1.209 $self->SUPER::_draw; # draw background, if applicable
2084    
2085 root 1.320 my $size = $self->{texture} ||= do {
2086 root 1.194 $self->{layout}->set_foreground (@{$self->{fg}});
2087 root 1.157 $self->{layout}->set_font ($self->{font}) if $self->{font};
2088 root 1.59 $self->{layout}->set_width ($self->{w});
2089 root 1.213 $self->{layout}->set_ellipsise ($self->{ellipsise});
2090     $self->{layout}->set_single_paragraph_mode ($self->{ellipsise});
2091     $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
2092 root 1.194
2093 root 1.323 [$self->{layout}->size]
2094 root 1.269 };
2095 root 1.194
2096 root 1.269 unless (exists $self->{ox}) {
2097 root 1.258 $self->{ox} = int ($self->{align} < 0 ? $self->{padding_x}
2098 root 1.320 : $self->{align} > 0 ? $self->{w} - $size->[0] - $self->{padding_x}
2099     : ($self->{w} - $size->[0]) * 0.5);
2100 root 1.208
2101 root 1.258 $self->{oy} = int ($self->{valign} < 0 ? $self->{padding_y}
2102 root 1.320 : $self->{valign} > 0 ? $self->{h} - $size->[1] - $self->{padding_y}
2103     : ($self->{h} - $size->[1]) * 0.5);
2104 root 1.59 };
2105 root 1.10
2106 root 1.320 my $w = List::Util::min $self->{w} + 4, $size->[0];
2107     my $h = List::Util::min $self->{h} + 2, $size->[1];
2108 root 1.294
2109 root 1.343 $self->{layout}->render ($self->{ox}, $self->{oy}, $self->{style});
2110 root 1.10 }
2111    
2112 root 1.39 #############################################################################
2113    
2114 root 1.340 package CFPlus::UI::EntryBase;
2115 elmex 1.31
2116 root 1.340 our @ISA = CFPlus::UI::Label::;
2117 elmex 1.31
2118 root 1.340 use CFPlus::OpenGL;
2119 elmex 1.31
2120 root 1.68 sub new {
2121     my $class = shift;
2122    
2123     $class->SUPER::new (
2124 root 1.164 fg => [1, 1, 1],
2125     bg => [0, 0, 0, 0.2],
2126     active_bg => [1, 1, 1, 0.5],
2127     active_fg => [0, 0, 0],
2128     can_hover => 1,
2129     can_focus => 1,
2130     valign => 0,
2131 elmex 1.150 can_events => 1,
2132 root 1.358 ellipsise => 0,
2133 root 1.225 #text => ...
2134 root 1.291 #hidden => "*",
2135 root 1.68 @_
2136     )
2137     }
2138    
2139     sub _set_text {
2140     my ($self, $text) = @_;
2141    
2142 root 1.121 delete $self->{cur_h};
2143    
2144     return if $self->{text} eq $text;
2145 elmex 1.100
2146 root 1.68 $self->{last_activity} = $::NOW;
2147     $self->{text} = $text;
2148 root 1.72
2149     $text =~ s/./*/g if $self->{hidden};
2150 root 1.121 $self->{layout}->set_text ("$text ");
2151 root 1.289 delete $self->{size_req};
2152 root 1.72
2153 root 1.305 $self->emit (changed => $self->{text});
2154 root 1.283
2155     $self->realloc;
2156 root 1.276 $self->update;
2157 root 1.121 }
2158 root 1.68
2159 root 1.194 sub set_text {
2160     my ($self, $text) = @_;
2161    
2162     $self->{cursor} = length $text;
2163     $self->_set_text ($text);
2164     }
2165    
2166 root 1.121 sub get_text {
2167     $_[0]{text}
2168 root 1.68 }
2169    
2170     sub size_request {
2171     my ($self) = @_;
2172    
2173     my ($w, $h) = $self->SUPER::size_request;
2174    
2175     ($w + 1, $h) # add 1 for cursor
2176     }
2177    
2178 root 1.305 sub invoke_key_down {
2179 elmex 1.31 my ($self, $ev) = @_;
2180    
2181 root 1.137 my $mod = $ev->{mod};
2182     my $sym = $ev->{sym};
2183     my $uni = $ev->{unicode};
2184 elmex 1.31
2185     my $text = $self->get_text;
2186    
2187 root 1.367 $self->{cursor} = List::Util::max 0, List::Util::min $self->{cursor}, length $text;
2188    
2189 root 1.200 if ($uni == 8) {
2190 root 1.68 substr $text, --$self->{cursor}, 1, "" if $self->{cursor};
2191 root 1.200 } elsif ($uni == 127) {
2192 root 1.68 substr $text, $self->{cursor}, 1, "";
2193 root 1.340 } elsif ($sym == CFPlus::SDLK_LEFT) {
2194 root 1.68 --$self->{cursor} if $self->{cursor};
2195 root 1.340 } elsif ($sym == CFPlus::SDLK_RIGHT) {
2196 root 1.68 ++$self->{cursor} if $self->{cursor} < length $self->{text};
2197 root 1.340 } elsif ($sym == CFPlus::SDLK_HOME) {
2198 root 1.363 # what a hack
2199     $self->{cursor} =
2200     (substr $self->{text}, 0, $self->{cursor}) =~ /^(.*\012)/
2201     ? length $1
2202     : 0;
2203 root 1.340 } elsif ($sym == CFPlus::SDLK_END) {
2204 root 1.363 # uh, again
2205     $self->{cursor} =
2206     (substr $self->{text}, $self->{cursor}) =~ /^([^\012]*)\012/
2207     ? $self->{cursor} + length $1
2208     : length $self->{text};
2209 root 1.360 } elsif ($uni == 21) { # ctrl-u
2210 root 1.348 $text = "";
2211 root 1.349 $self->{cursor} = 0;
2212 root 1.200 } elsif ($uni == 27) {
2213 root 1.305 $self->emit ('escape');
2214 root 1.363 } elsif ($uni == 0x0d) {
2215     substr $text, $self->{cursor}++, 0, "\012";
2216     } elsif ($uni >= 0x20) {
2217 root 1.68 substr $text, $self->{cursor}++, 0, chr $uni;
2218 root 1.271 } else {
2219     return 0;
2220 elmex 1.31 }
2221 root 1.51
2222 root 1.68 $self->_set_text ($text);
2223 root 1.251
2224     $self->realloc;
2225 root 1.358 $self->update;
2226 root 1.271
2227     1
2228 root 1.68 }
2229    
2230 root 1.305 sub invoke_focus_in {
2231 root 1.68 my ($self) = @_;
2232    
2233     $self->{last_activity} = $::NOW;
2234    
2235 root 1.305 $self->SUPER::invoke_focus_in
2236 elmex 1.31 }
2237    
2238 root 1.305 sub invoke_button_down {
2239 root 1.68 my ($self, $ev, $x, $y) = @_;
2240    
2241 root 1.305 $self->SUPER::invoke_button_down ($ev, $x, $y);
2242 root 1.68
2243     my $idx = $self->{layout}->xy_to_index ($x, $y);
2244    
2245     # byte-index to char-index
2246 root 1.76 my $text = $self->{text};
2247 root 1.325 utf8::encode $text; $text = substr $text, 0, $idx; utf8::decode $text;
2248     $self->{cursor} = length $text;
2249 root 1.51
2250 root 1.68 $self->_set_text ($self->{text});
2251     $self->update;
2252 root 1.271
2253     1
2254 root 1.51 }
2255    
2256 root 1.305 sub invoke_mouse_motion {
2257 root 1.58 my ($self, $ev, $x, $y) = @_;
2258 root 1.68 # printf "M %d,%d %d,%d\n", $ev->motion_x, $ev->motion_y, $x, $y;#d#
2259 root 1.271
2260 root 1.305 1
2261 root 1.58 }
2262    
2263 root 1.51 sub _draw {
2264     my ($self) = @_;
2265    
2266 root 1.68 local $self->{fg} = $self->{fg};
2267    
2268 root 1.51 if ($FOCUS == $self) {
2269 root 1.278 glColor_premultiply @{$self->{active_bg}};
2270 root 1.68 $self->{fg} = $self->{active_fg};
2271 root 1.51 } else {
2272 root 1.278 glColor_premultiply @{$self->{bg}};
2273 root 1.51 }
2274    
2275 root 1.76 glEnable GL_BLEND;
2276 root 1.278 glBlendFunc GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
2277 root 1.51 glBegin GL_QUADS;
2278 root 1.68 glVertex 0 , 0;
2279     glVertex 0 , $self->{h};
2280     glVertex $self->{w}, $self->{h};
2281     glVertex $self->{w}, 0;
2282 root 1.51 glEnd;
2283 root 1.76 glDisable GL_BLEND;
2284 root 1.51
2285     $self->SUPER::_draw;
2286 root 1.68
2287     #TODO: force update every cursor change :(
2288     if ($FOCUS == $self && (($::NOW - $self->{last_activity}) & 1023) < 600) {
2289 root 1.121
2290     unless (exists $self->{cur_h}) {
2291     my $text = substr $self->{text}, 0, $self->{cursor};
2292     utf8::encode $text;
2293    
2294     @$self{qw(cur_x cur_y cur_h)} = $self->{layout}->cursor_pos (length $text)
2295     }
2296    
2297 root 1.68 glBegin GL_LINES;
2298 root 1.344 glVertex 0.5 + $self->{cur_x} + $self->{ox}, $self->{cur_y} + $self->{oy};
2299     glVertex 0.5 + $self->{cur_x} + $self->{ox}, $self->{cur_y} + $self->{oy} + $self->{cur_h};
2300 root 1.68 glEnd;
2301     }
2302     }
2303    
2304 root 1.358 #############################################################################
2305    
2306 root 1.340 package CFPlus::UI::Entry;
2307 elmex 1.99
2308 root 1.340 our @ISA = CFPlus::UI::EntryBase::;
2309 elmex 1.99
2310 root 1.340 use CFPlus::OpenGL;
2311 elmex 1.99
2312 root 1.305 sub invoke_key_down {
2313 elmex 1.99 my ($self, $ev) = @_;
2314    
2315 root 1.137 my $sym = $ev->{sym};
2316 elmex 1.99
2317 root 1.360 if ($ev->{uni} == 0x0d || $sym == 13) {
2318 elmex 1.167 unshift @{$self->{history}},
2319     my $txt = $self->get_text;
2320 root 1.306
2321 elmex 1.167 $self->{history_pointer} = -1;
2322 elmex 1.169 $self->{history_saveback} = '';
2323 root 1.305 $self->emit (activate => $txt);
2324 elmex 1.99 $self->update;
2325    
2326 root 1.340 } elsif ($sym == CFPlus::SDLK_UP) {
2327 elmex 1.167 if ($self->{history_pointer} < 0) {
2328     $self->{history_saveback} = $self->get_text;
2329     }
2330 elmex 1.169 if (@{$self->{history} || []} > 0) {
2331     $self->{history_pointer}++;
2332     if ($self->{history_pointer} >= @{$self->{history} || []}) {
2333     $self->{history_pointer} = @{$self->{history} || []} - 1;
2334     }
2335     $self->set_text ($self->{history}->[$self->{history_pointer}]);
2336 elmex 1.167 }
2337    
2338 root 1.340 } elsif ($sym == CFPlus::SDLK_DOWN) {
2339 elmex 1.167 $self->{history_pointer}--;
2340     $self->{history_pointer} = -1 if $self->{history_pointer} < 0;
2341    
2342     if ($self->{history_pointer} >= 0) {
2343     $self->set_text ($self->{history}->[$self->{history_pointer}]);
2344     } else {
2345     $self->set_text ($self->{history_saveback});
2346     }
2347    
2348 root 1.360 } else {
2349 root 1.305 return $self->SUPER::invoke_key_down ($ev)
2350 elmex 1.99 }
2351    
2352 root 1.271 1
2353 elmex 1.99 }
2354    
2355 root 1.68 #############################################################################
2356    
2357 root 1.358 package CFPlus::UI::TextEdit;
2358    
2359     our @ISA = CFPlus::UI::EntryBase::;
2360    
2361     use CFPlus::OpenGL;
2362    
2363     sub move_cursor_ver {
2364     my ($self, $dy) = @_;
2365    
2366     my ($y, $x) = $self->{layout}->index_to_line_x ($self->{cursor});
2367    
2368 root 1.359 $y += $dy;
2369    
2370     if (defined (my $index = $self->{layout}->line_x_to_index ($y, $x))) {
2371     $self->{cursor} = $index;
2372     delete $self->{cur_h};
2373     $self->update;
2374     return;
2375     }
2376 root 1.358 }
2377    
2378     sub invoke_key_down {
2379     my ($self, $ev) = @_;
2380    
2381     my $sym = $ev->{sym};
2382    
2383     if ($sym == CFPlus::SDLK_UP) {
2384     $self->move_cursor_ver (-1);
2385     } elsif ($sym == CFPlus::SDLK_DOWN) {
2386     $self->move_cursor_ver (+1);
2387     } else {
2388     return $self->SUPER::invoke_key_down ($ev)
2389     }
2390    
2391     1
2392     }
2393    
2394     #############################################################################
2395    
2396 root 1.340 package CFPlus::UI::Button;
2397 root 1.79
2398 root 1.340 our @ISA = CFPlus::UI::Label::;
2399 root 1.79
2400 root 1.340 use CFPlus::OpenGL;
2401 root 1.79
2402 elmex 1.85 my @tex =
2403 root 1.340 map { new_from_file CFPlus::Texture CFPlus::find_rcfile $_, mipmap => 1 }
2404 root 1.381 qw(b1_button_inactive.png b1_button_active.png);
2405 elmex 1.85
2406 root 1.79 sub new {
2407     my $class = shift;
2408    
2409     $class->SUPER::new (
2410 root 1.258 padding_x => 4,
2411     padding_y => 4,
2412 root 1.381 fg => [1.0, 1.0, 1.0],
2413     active_fg => [0.8, 0.8, 0.8],
2414 root 1.164 can_hover => 1,
2415     align => 0,
2416     valign => 0,
2417 elmex 1.150 can_events => 1,
2418 root 1.79 @_
2419     )
2420     }
2421    
2422 root 1.305 sub invoke_button_up {
2423 root 1.79 my ($self, $ev, $x, $y) = @_;
2424    
2425 root 1.231 $self->emit ("activate")
2426     if $x >= 0 && $x < $self->{w}
2427     && $y >= 0 && $y < $self->{h};
2428 root 1.271
2429     1
2430 root 1.79 }
2431    
2432     sub _draw {
2433     my ($self) = @_;
2434    
2435 root 1.279 local $self->{fg} = $GRAB == $self ? $self->{active_fg} : $self->{fg};
2436 root 1.79
2437 root 1.119 glEnable GL_TEXTURE_2D;
2438 elmex 1.85 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2439 root 1.119 glColor 0, 0, 0, 1;
2440 elmex 1.85
2441 root 1.381 my $tex = $tex[$GRAB == $self];
2442     $tex->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
2443 elmex 1.85
2444     glDisable GL_TEXTURE_2D;
2445 root 1.79
2446     $self->SUPER::_draw;
2447     }
2448    
2449     #############################################################################
2450    
2451 root 1.340 package CFPlus::UI::CheckBox;
2452 root 1.86
2453 root 1.340 our @ISA = CFPlus::UI::DrawBG::;
2454 root 1.86
2455 elmex 1.102 my @tex =
2456 root 1.340 map { new_from_file CFPlus::Texture CFPlus::find_rcfile $_, mipmap => 1 }
2457 elmex 1.102 qw(c1_checkbox_bg.png c1_checkbox_active.png);
2458    
2459 root 1.340 use CFPlus::OpenGL;
2460 root 1.86
2461     sub new {
2462     my $class = shift;
2463    
2464     $class->SUPER::new (
2465 root 1.258 padding_x => 2,
2466     padding_y => 2,
2467 root 1.86 fg => [1, 1, 1],
2468     active_fg => [1, 1, 0],
2469 root 1.209 bg => [0, 0, 0, 0.2],
2470     active_bg => [1, 1, 1, 0.5],
2471 root 1.86 state => 0,
2472 root 1.97 can_hover => 1,
2473 root 1.86 @_
2474     )
2475     }
2476    
2477 root 1.87 sub size_request {
2478     my ($self) = @_;
2479    
2480 root 1.258 (6) x 2
2481 root 1.87 }
2482    
2483 root 1.319 sub toggle {
2484     my ($self) = @_;
2485    
2486     $self->{state} = !$self->{state};
2487     $self->emit (changed => $self->{state});
2488     $self->update;
2489     }
2490    
2491 root 1.305 sub invoke_button_down {
2492 root 1.86 my ($self, $ev, $x, $y) = @_;
2493    
2494 root 1.258 if ($x >= $self->{padding_x} && $x < $self->{w} - $self->{padding_x}
2495     && $y >= $self->{padding_y} && $y < $self->{h} - $self->{padding_y}) {
2496 root 1.319 $self->toggle;
2497 root 1.271 } else {
2498     return 0
2499 root 1.86 }
2500 root 1.271
2501     1
2502 root 1.86 }
2503    
2504     sub _draw {
2505     my ($self) = @_;
2506    
2507 root 1.87 $self->SUPER::_draw;
2508 root 1.86
2509 root 1.258 glTranslate $self->{padding_x} + 0.375, $self->{padding_y} + 0.375, 0;
2510 root 1.86
2511 root 1.258 my ($w, $h) = @$self{qw(w h)};
2512    
2513     my $s = List::Util::min $w - $self->{padding_x} * 2, $h - $self->{padding_y} * 2;
2514 elmex 1.102
2515 root 1.87 glColor @{ $FOCUS == $self ? $self->{active_fg} : $self->{fg} };
2516 root 1.86
2517 elmex 1.102 my $tex = $self->{state} ? $tex[1] : $tex[0];
2518    
2519 root 1.197 glEnable GL_TEXTURE_2D;
2520 root 1.195 $tex->draw_quad_alpha (0, 0, $s, $s);
2521 elmex 1.102 glDisable GL_TEXTURE_2D;
2522 root 1.86 }
2523    
2524     #############################################################################
2525    
2526 root 1.340 package CFPlus::UI::Image;
2527 elmex 1.145
2528 root 1.340 our @ISA = CFPlus::UI::Base::;
2529 elmex 1.145
2530 root 1.340 use CFPlus::OpenGL;
2531 elmex 1.145
2532 root 1.310 our %texture_cache;
2533 elmex 1.145
2534     sub new {
2535     my $class = shift;
2536    
2537 root 1.310 my $self = $class->SUPER::new (
2538     can_events => 0,
2539     @_,
2540     );
2541 elmex 1.145
2542 root 1.327 $self->{path} || $self->{tex}
2543     or Carp::croak "'path' or 'tex' attributes required";
2544 elmex 1.145
2545 root 1.327 $self->{tex} ||= $texture_cache{$self->{path}} ||=
2546 root 1.340 new_from_file CFPlus::Texture CFPlus::find_rcfile $self->{path}, mipmap => 1;
2547 elmex 1.145
2548 root 1.362 CFPlus::weaken $texture_cache{$self->{path}};
2549 root 1.147
2550 root 1.310 $self->{aspect} ||= $self->{tex}{w} / $self->{tex}{h};
2551 elmex 1.145
2552     $self
2553     }
2554    
2555 root 1.334 sub STORABLE_freeze {
2556     my ($self, $cloning) = @_;
2557    
2558     $self->{path}
2559 root 1.340 or die "cannot serialise CFPlus::UI::Image on non-loadable images\n";
2560 root 1.334
2561     $self->{path}
2562     }
2563    
2564     sub STORABLE_attach {
2565     my ($self, $cloning, $path) = @_;
2566    
2567     $self->new (path => $path)
2568     }
2569    
2570 elmex 1.145 sub size_request {
2571     my ($self) = @_;
2572    
2573 root 1.310 ($self->{tex}{w}, $self->{tex}{h})
2574 elmex 1.145 }
2575    
2576     sub _draw {
2577     my ($self) = @_;
2578    
2579     my $tex = $self->{tex};
2580    
2581     my ($w, $h) = ($self->{w}, $self->{h});
2582    
2583     if ($self->{rot90}) {
2584     glRotate 90, 0, 0, 1;
2585     glTranslate 0, -$self->{w}, 0;
2586    
2587     ($w, $h) = ($h, $w);
2588     }
2589    
2590     glEnable GL_TEXTURE_2D;
2591     glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2592    
2593 root 1.334 $tex->draw_quad (0, 0, $w, $h);
2594 elmex 1.145
2595     glDisable GL_TEXTURE_2D;
2596     }
2597    
2598     #############################################################################
2599    
2600 root 1.340 package CFPlus::UI::ImageButton;
2601 root 1.336
2602 root 1.340 our @ISA = CFPlus::UI::Image::;
2603 root 1.336
2604 root 1.340 use CFPlus::OpenGL;
2605 root 1.336
2606     my %textures;
2607    
2608     sub new {
2609     my $class = shift;
2610    
2611     my $self = $class->SUPER::new (
2612     padding_x => 4,
2613     padding_y => 4,
2614     fg => [1, 1, 1],
2615     active_fg => [0, 0, 1],
2616     can_hover => 1,
2617     align => 0,
2618     valign => 0,
2619     can_events => 1,
2620     @_
2621     );
2622     }
2623    
2624     sub invoke_button_up {
2625     my ($self, $ev, $x, $y) = @_;
2626    
2627     $self->emit ("activate")
2628     if $x >= 0 && $x < $self->{w}
2629     && $y >= 0 && $y < $self->{h};
2630    
2631     1
2632     }
2633    
2634     #############################################################################
2635    
2636 root 1.340 package CFPlus::UI::VGauge;
2637 elmex 1.124
2638 root 1.340 our @ISA = CFPlus::UI::Base::;
2639 elmex 1.124
2640 root 1.158 use List::Util qw(min max);
2641    
2642 root 1.340 use CFPlus::OpenGL;
2643 elmex 1.124
2644     my %tex = (
2645     food => [
2646 root 1.340 map { new_from_file CFPlus::Texture CFPlus::find_rcfile $_, mipmap => 1 }
2647 elmex 1.124 qw/g1_food_gauge_empty.png g1_food_gauge_full.png/
2648     ],
2649     grace => [
2650 root 1.340 map { new_from_file CFPlus::Texture CFPlus::find_rcfile $_, mipmap => 1 }
2651 root 1.158 qw/g1_grace_gauge_empty.png g1_grace_gauge_full.png g1_grace_gauge_overflow.png/
2652 elmex 1.124 ],
2653     hp => [
2654 root 1.340 map { new_from_file CFPlus::Texture CFPlus::find_rcfile $_, mipmap => 1 }
2655 elmex 1.124 qw/g1_hp_gauge_empty.png g1_hp_gauge_full.png/
2656     ],
2657     mana => [
2658 root 1.340 map { new_from_file CFPlus::Texture CFPlus::find_rcfile $_, mipmap => 1 }
2659 root 1.158 qw/g1_mana_gauge_empty.png g1_mana_gauge_full.png g1_mana_gauge_overflow.png/
2660 elmex 1.124 ],
2661     );
2662    
2663     # eg. VGauge->new (gauge => 'food'), default gauge: food
2664     sub new {
2665     my $class = shift;
2666    
2667 root 1.140 my $self = $class->SUPER::new (
2668 root 1.141 type => 'food',
2669 root 1.140 @_
2670     );
2671    
2672 root 1.141 $self->{aspect} = $tex{$self->{type}}[0]{w} / $tex{$self->{type}}[0]{h};
2673 elmex 1.124
2674     $self
2675     }
2676    
2677     sub size_request {
2678     my ($self) = @_;
2679    
2680 root 1.143 #my $tex = $tex{$self->{type}}[0];
2681     #@$tex{qw(w h)}
2682     (0, 0)
2683 elmex 1.124 }
2684    
2685     sub set_max {
2686     my ($self, $max) = @_;
2687 root 1.127
2688 root 1.173 return if $self->{max_val} == $max;
2689    
2690 elmex 1.124 $self->{max_val} = $max;
2691 root 1.173 $self->update;
2692 elmex 1.124 }
2693    
2694     sub set_value {
2695     my ($self, $val, $max) = @_;
2696    
2697     $self->set_max ($max)
2698     if defined $max;
2699    
2700 root 1.173 return if $self->{val} == $val;
2701    
2702 elmex 1.124 $self->{val} = $val;
2703     $self->update;
2704     }
2705    
2706     sub _draw {
2707     my ($self) = @_;
2708    
2709 root 1.141 my $tex = $tex{$self->{type}};
2710 root 1.158 my ($t1, $t2, $t3) = @$tex;
2711 elmex 1.124
2712     my ($w, $h) = ($self->{w}, $self->{h});
2713    
2714 elmex 1.142 if ($self->{vertical}) {
2715     glRotate 90, 0, 0, 1;
2716     glTranslate 0, -$self->{w}, 0;
2717    
2718     ($w, $h) = ($h, $w);
2719     }
2720    
2721 elmex 1.124 my $ycut = $self->{val} / ($self->{max_val} || 1);
2722    
2723 root 1.158 my $ycut1 = max 0, min 1, $ycut;
2724     my $ycut2 = max 0, min 1, $ycut - 1;
2725    
2726     my $h1 = $self->{h} * (1 - $ycut1);
2727     my $h2 = $self->{h} * (1 - $ycut2);
2728 root 1.317 my $h3 = $self->{h};
2729    
2730     $_ = $_ * (284-4)/288 + 4/288 for ($h1, $h2, $h3);
2731 elmex 1.124
2732     glEnable GL_BLEND;
2733 root 1.278 glBlendFuncSeparate GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA,
2734     GL_ONE, GL_ONE_MINUS_SRC_ALPHA;
2735 elmex 1.124 glEnable GL_TEXTURE_2D;
2736     glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2737    
2738 root 1.131 glBindTexture GL_TEXTURE_2D, $t1->{name};
2739     glBegin GL_QUADS;
2740 root 1.158 glTexCoord 0 , 0; glVertex 0 , 0;
2741     glTexCoord 0 , $t1->{t} * (1 - $ycut1); glVertex 0 , $h1;
2742     glTexCoord $t1->{s}, $t1->{t} * (1 - $ycut1); glVertex $w, $h1;
2743     glTexCoord $t1->{s}, 0; glVertex $w, 0;
2744 root 1.131 glEnd;
2745 elmex 1.124
2746 root 1.158 my $ycut1 = List::Util::min 1, $ycut;
2747 root 1.131 glBindTexture GL_TEXTURE_2D, $t2->{name};
2748     glBegin GL_QUADS;
2749 root 1.158 glTexCoord 0 , $t2->{t} * (1 - $ycut1); glVertex 0 , $h1;
2750     glTexCoord 0 , $t2->{t} * (1 - $ycut2); glVertex 0 , $h2;
2751     glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut2); glVertex $w, $h2;
2752     glTexCoord $t2->{s}, $t2->{t} * (1 - $ycut1); glVertex $w, $h1;
2753 root 1.131 glEnd;
2754 elmex 1.124
2755 root 1.158 if ($t3) {
2756     glBindTexture GL_TEXTURE_2D, $t3->{name};
2757     glBegin GL_QUADS;
2758     glTexCoord 0 , $t3->{t} * (1 - $ycut2); glVertex 0 , $h2;
2759 root 1.317 glTexCoord 0 , $t3->{t}; glVertex 0 , $h3;
2760     glTexCoord $t3->{s}, $t3->{t}; glVertex $w, $h3;
2761 root 1.158 glTexCoord $t3->{s}, $t3->{t} * (1 - $ycut2); glVertex $w, $h2;
2762     glEnd;
2763     }
2764    
2765 elmex 1.124 glDisable GL_BLEND;
2766     glDisable GL_TEXTURE_2D;
2767     }
2768    
2769     #############################################################################
2770    
2771 root 1.340 package CFPlus::UI::Gauge;
2772 root 1.141
2773 root 1.340 our @ISA = CFPlus::UI::VBox::;
2774 root 1.141
2775     sub new {
2776 root 1.151 my ($class, %arg) = @_;
2777 root 1.141
2778     my $self = $class->SUPER::new (
2779 root 1.171 tooltip => $arg{type},
2780     can_hover => 1,
2781     can_events => 1,
2782 root 1.151 %arg,
2783 root 1.141 );
2784    
2785 root 1.340 $self->add ($self->{value} = new CFPlus::UI::Label valign => +1, align => 0, template => "999");
2786     $self->add ($self->{gauge} = new CFPlus::UI::VGauge type => $self->{type}, expand => 1, can_hover => 1);
2787     $self->add ($self->{max} = new CFPlus::UI::Label valign => -1, align => 0, template => "999");
2788 root 1.141
2789     $self
2790     }
2791    
2792 elmex 1.146 sub set_fontsize {
2793     my ($self, $fsize) = @_;
2794    
2795     $self->{value}->set_fontsize ($fsize);
2796     $self->{max} ->set_fontsize ($fsize);
2797     }
2798    
2799 root 1.173 sub set_max {
2800     my ($self, $max) = @_;
2801    
2802     $self->{gauge}->set_max ($max);
2803     $self->{max}->set_text ($max);
2804     }
2805    
2806 root 1.141 sub set_value {
2807     my ($self, $val, $max) = @_;
2808    
2809     $self->set_max ($max)
2810     if defined $max;
2811    
2812     $self->{gauge}->set_value ($val, $max);
2813     $self->{value}->set_text ($val);
2814     }
2815    
2816     #############################################################################
2817    
2818 root 1.340 package CFPlus::UI::Slider;
2819 root 1.68
2820     use strict;
2821    
2822 root 1.340 use CFPlus::OpenGL;
2823 root 1.68
2824 root 1.340 our @ISA = CFPlus::UI::DrawBG::;
2825 root 1.68
2826 elmex 1.99 my @tex =
2827 root 1.340 map { new_from_file CFPlus::Texture CFPlus::find_rcfile $_ }
2828 elmex 1.99 qw(s1_slider.png s1_slider_bg.png);
2829    
2830 root 1.68 sub new {
2831     my $class = shift;
2832    
2833 root 1.206 # range [value, low, high, page, unit]
2834 root 1.68
2835 root 1.97 # TODO: 0-width page
2836     # TODO: req_w/h are wrong with vertical
2837     # TODO: calculations are off
2838 root 1.76 my $self = $class->SUPER::new (
2839 root 1.68 fg => [1, 1, 1],
2840     active_fg => [0, 0, 0],
2841 root 1.209 bg => [0, 0, 0, 0.2],
2842     active_bg => [1, 1, 1, 0.5],
2843 root 1.227 range => [0, 0, 100, 10, 0],
2844 root 1.257 min_w => $::WIDTH / 80,
2845     min_h => $::WIDTH / 80,
2846 root 1.76 vertical => 0,
2847 root 1.97 can_hover => 1,
2848 root 1.217 inner_pad => 0.02,
2849 root 1.68 @_
2850 root 1.76 );
2851    
2852 root 1.206 $self->set_value ($self->{range}[0]);
2853     $self->update;
2854    
2855 root 1.76 $self
2856     }
2857    
2858 root 1.225 sub set_range {
2859     my ($self, $range) = @_;
2860    
2861 root 1.239 ($range, $self->{range}) = ($self->{range}, $range);
2862 root 1.225
2863 root 1.295 if ("@$range" ne "@{$self->{range}}") {
2864     $self->update;
2865     $self->set_value ($self->{range}[0]);
2866     }
2867 root 1.225 }
2868    
2869 root 1.206 sub set_value {
2870     my ($self, $value) = @_;
2871    
2872     my ($old_value, $lo, $hi, $page, $unit) = @{$self->{range}};
2873    
2874     $hi = $lo + 1 if $hi <= $lo;
2875    
2876 root 1.227 $page = $hi - $lo if $page > $hi - $lo;
2877    
2878     $value = $lo if $value < $lo;
2879     $value = $hi - $page if $value > $hi - $page;
2880 root 1.206
2881     $value = $lo + $unit * int +($value - $lo + $unit * 0.5) / $unit
2882     if $unit;
2883    
2884     @{$self->{range}} = ($value, $lo, $hi, $page, $unit);
2885    
2886     if ($value != $old_value) {
2887 root 1.305 $self->emit (changed => $value);
2888 root 1.206 $self->update;
2889     }
2890     }
2891    
2892 root 1.76 sub size_request {
2893     my ($self) = @_;
2894    
2895 root 1.257 ($self->{req_w}, $self->{req_h})
2896 root 1.68 }
2897    
2898 root 1.305 sub invoke_button_down {
2899 root 1.69 my ($self, $ev, $x, $y) = @_;
2900    
2901 root 1.305 $self->SUPER::invoke_button_down ($ev, $x, $y);
2902 root 1.227
2903     $self->{click} = [$self->{range}[0], $self->{vertical} ? $y : $x];
2904    
2905 root 1.307 $self->invoke_mouse_motion ($ev, $x, $y)
2906 root 1.69 }
2907    
2908 root 1.305 sub invoke_mouse_motion {
2909 root 1.69 my ($self, $ev, $x, $y) = @_;
2910    
2911     if ($GRAB == $self) {
2912 root 1.71 my ($x, $w) = $self->{vertical} ? ($y, $self->{h}) : ($x, $self->{w});
2913    
2914 root 1.206 my (undef, $lo, $hi, $page) = @{$self->{range}};
2915 elmex 1.103
2916 root 1.227 $x = ($x - $self->{click}[1]) / ($w * $self->{scale});
2917 root 1.69
2918 root 1.227 $self->set_value ($self->{click}[0] + $x * ($hi - $page - $lo));
2919 root 1.271 } else {
2920     return 0;
2921 root 1.69 }
2922 root 1.271
2923     1
2924 root 1.69 }
2925    
2926 root 1.330 sub invoke_mouse_wheel {
2927     my ($self, $ev) = @_;
2928    
2929     my $delta = $self->{vertical} ? $ev->{dy} : $ev->{dx};
2930    
2931 root 1.364 my $pagepart = $ev->{mod} & CFPlus::KMOD_SHIFT ? 1 : 0.2;
2932    
2933     $self->set_value ($self->{range}[0] + $delta * $self->{range}[3] * $pagepart);
2934 root 1.330
2935     ! ! $delta
2936     }
2937    
2938 root 1.206 sub update {
2939     my ($self) = @_;
2940    
2941 root 1.275 delete $self->{knob_w};
2942     $self->SUPER::update;
2943     }
2944    
2945     sub _draw {
2946     my ($self) = @_;
2947    
2948     unless ($self->{knob_w}) {
2949 root 1.206 $self->set_value ($self->{range}[0]);
2950    
2951     my ($value, $lo, $hi, $page) = @{$self->{range}};
2952 root 1.227 my $range = ($hi - $page - $lo) || 1e-100;
2953 root 1.206
2954 root 1.227 my $knob_w = List::Util::min 1, $page / ($hi - $lo) || 0.1;
2955 root 1.206
2956 root 1.227 $self->{offset} = List::Util::max $self->{inner_pad}, $knob_w * 0.5;
2957     $self->{scale} = 1 - 2 * $self->{offset} || 1e-100;
2958 root 1.206
2959 root 1.227 $value = ($value - $lo) / $range;
2960     $value = $value * $self->{scale} + $self->{offset};
2961 root 1.206
2962 root 1.227 $self->{knob_x} = $value - $knob_w * 0.5;
2963     $self->{knob_w} = $knob_w;
2964 root 1.275 }
2965 root 1.68
2966     $self->SUPER::_draw ();
2967    
2968 root 1.206 glScale $self->{w}, $self->{h};
2969 root 1.68
2970     if ($self->{vertical}) {
2971     # draw a vertical slider like a rotated horizontal slider
2972    
2973 root 1.214 glTranslate 1, 0, 0;
2974 root 1.68 glRotate 90, 0, 0, 1;
2975     }
2976    
2977     my $fg = $FOCUS == $self ? $self->{active_fg} : $self->{fg};
2978     my $bg = $FOCUS == $self ? $self->{active_bg} : $self->{bg};
2979    
2980 elmex 1.99 glEnable GL_TEXTURE_2D;
2981     glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
2982    
2983     # draw background
2984 root 1.206 $tex[1]->draw_quad_alpha (0, 0, 1, 1);
2985 root 1.69
2986 elmex 1.99 # draw handle
2987 root 1.206 $tex[0]->draw_quad_alpha ($self->{knob_x}, 0, $self->{knob_w}, 1);
2988 root 1.69
2989 elmex 1.99 glDisable GL_TEXTURE_2D;
2990 root 1.51 }
2991    
2992 root 1.39 #############################################################################
2993    
2994 root 1.340 package CFPlus::UI::ValSlider;
2995 root 1.225
2996 root 1.340 our @ISA = CFPlus::UI::HBox::;
2997 root 1.225
2998     sub new {
2999     my ($class, %arg) = @_;
3000    
3001     my $range = delete $arg{range};
3002    
3003     my $self = $class->SUPER::new (
3004 root 1.340 slider => (new CFPlus::UI::Slider expand => 1, range => $range),
3005     entry => (new CFPlus::UI::Label text => "", template => delete $arg{template}),
3006 root 1.225 to_value => sub { shift },
3007     from_value => sub { shift },
3008     %arg,
3009     );
3010    
3011     $self->{slider}->connect (changed => sub {
3012     my ($self, $value) = @_;
3013     $self->{parent}{entry}->set_text ($self->{parent}{to_value}->($value));
3014     $self->{parent}->emit (changed => $value);
3015     });
3016    
3017     # $self->{entry}->connect (changed => sub {
3018     # my ($self, $value) = @_;
3019     # $self->{parent}{slider}->set_value ($self->{parent}{from_value}->($value));
3020     # $self->{parent}->emit (changed => $value);
3021     # });
3022    
3023     $self->add ($self->{slider}, $self->{entry});
3024    
3025     $self->{slider}->emit (changed => $self->{slider}{range}[0]);
3026    
3027     $self
3028     }
3029    
3030     sub set_range { shift->{slider}->set_range (@_) }
3031     sub set_value { shift->{slider}->set_value (@_) }
3032    
3033     #############################################################################
3034    
3035 root 1.340 package CFPlus::UI::TextScroller;
3036 root 1.97
3037 root 1.340 our @ISA = CFPlus::UI::HBox::;
3038 root 1.97
3039 root 1.340 use CFPlus::OpenGL;
3040 root 1.97
3041     sub new {
3042     my $class = shift;
3043    
3044     my $self = $class->SUPER::new (
3045 root 1.164 fontsize => 1,
3046 root 1.330 can_events => 1,
3047 root 1.293 indent => 0,
3048 root 1.164 #font => default_font
3049 root 1.105 @_,
3050 root 1.164
3051 root 1.340 layout => (new CFPlus::Layout),
3052 root 1.164 par => [],
3053 root 1.365 max_par => 0,
3054 root 1.164 height => 0,
3055     children => [
3056 root 1.340 (new CFPlus::UI::Empty expand => 1),
3057     (new CFPlus::UI::Slider vertical => 1),
3058 root 1.97 ],
3059     );
3060    
3061 root 1.176 $self->{children}[1]->connect (changed => sub { $self->update });
3062 root 1.107
3063 root 1.97 $self
3064     }
3065    
3066 root 1.107 sub set_fontsize {
3067     my ($self, $fontsize) = @_;
3068    
3069     $self->{fontsize} = $fontsize;
3070     $self->reflow;
3071     }
3072    
3073 root 1.312 sub size_request {
3074 root 1.310 my ($self) = @_;
3075    
3076 root 1.312 my ($empty, $slider) = @{ $self->{children} };
3077    
3078     local $self->{children} = [$empty, $slider];
3079     $self->SUPER::size_request
3080 root 1.310 }
3081    
3082 root 1.305 sub invoke_size_allocate {
3083 root 1.259 my ($self, $w, $h) = @_;
3084 root 1.220
3085 root 1.311 my ($empty, $slider, @other) = @{ $self->{children} };
3086 root 1.310 $_->configure (@$_{qw(x y req_w req_h)}) for @other;
3087    
3088 root 1.220 $self->{layout}->set_font ($self->{font}) if $self->{font};
3089     $self->{layout}->set_height ($self->{fontsize} * $::FONTSIZE);
3090 root 1.311 $self->{layout}->set_width ($empty->{w});
3091 root 1.293 $self->{layout}->set_indent ($self->{fontsize} * $::FONTSIZE * $self->{indent});
3092 root 1.220
3093     $self->reflow;
3094 root 1.305
3095 root 1.312 local $self->{children} = [$empty, $slider];
3096 root 1.305 $self->SUPER::invoke_size_allocate ($w, $h)
3097 root 1.220 }
3098    
3099 root 1.330 sub invoke_mouse_wheel {
3100     my ($self, $ev) = @_;
3101    
3102     return 0 unless $ev->{dy}; # only vertical movements
3103    
3104     $self->{children}[1]->emit (mouse_wheel => $ev);
3105    
3106     1
3107     }
3108    
3109 root 1.310 sub get_layout {
3110     my ($self, $para) = @_;
3111 root 1.105
3112     my $layout = $self->{layout};
3113    
3114 root 1.310 $layout->set_font ($self->{font}) if $self->{font};
3115 root 1.311 $layout->set_foreground (@{$para->{fg}});
3116 root 1.134 $layout->set_height ($self->{fontsize} * $::FONTSIZE);
3117 root 1.310 $layout->set_width ($self->{children}[0]{w} - $para->{indent});
3118 root 1.293 $layout->set_indent ($self->{fontsize} * $::FONTSIZE * $self->{indent});
3119 root 1.310 $layout->set_markup ($para->{markup});
3120 root 1.311
3121     $layout->set_shapes (
3122     map
3123     +(0, $_->baseline_shift +$_->{padding_y} - $_->{h}, $_->{w}, $_->{h}),
3124     @{$para->{widget}}
3125     );
3126 root 1.310
3127     $layout
3128 root 1.105 }
3129    
3130     sub reflow {
3131     my ($self) = @_;
3132    
3133 root 1.107 $self->{need_reflow}++;
3134     $self->update;
3135 root 1.105 }
3136    
3137 root 1.227 sub set_offset {
3138     my ($self, $offset) = @_;
3139    
3140     # todo: base offset on lines or so, not on pixels
3141     $self->{children}[1]->set_value ($offset);
3142     }
3143    
3144 root 1.345 sub current_paragraph {
3145     my ($self) = @_;
3146    
3147     $self->{top_paragraph} - 1
3148     }
3149    
3150     sub scroll_to {
3151     my ($self, $para) = @_;
3152    
3153     $para = List::Util::max 0, List::Util::min $#{$self->{par}}, $para;
3154    
3155 root 1.347 $self->{scroll_to} = $para;
3156     $self->update;
3157 root 1.345 }
3158    
3159 root 1.226 sub clear {
3160     my ($self) = @_;
3161    
3162 root 1.310 my (undef, undef, @other) = @{ $self->{children} };
3163     $self->remove ($_) for @other;
3164    
3165 root 1.226 $self->{par} = [];
3166     $self->{height} = 0;
3167 root 1.227 $self->{children}[1]->set_range ([0, 0, 0, 1, 1]);
3168 root 1.226 }
3169    
3170 root 1.97 sub add_paragraph {
3171 root 1.338 my $self = shift;
3172 root 1.310
3173 root 1.338 for my $para (@_) {
3174     $para = {
3175     fg => [1, 1, 1, 1],
3176     indent => 0,
3177     markup => "",
3178     widget => [],
3179     ref $para ? %$para : (markup => $para),
3180     w => 1e10,
3181     wrapped => 1,
3182     };
3183 root 1.310
3184 root 1.338 $self->add (@{ $para->{widget} }) if @{ $para->{widget} };
3185     push @{$self->{par}}, $para;
3186     }
3187 root 1.97
3188 root 1.365 if (my $max = $self->{max_par}) {
3189     shift @{$self->{par}} while @{$self->{par}} > $max;
3190     }
3191    
3192 root 1.310 $self->{need_reflow}++;
3193     $self->update;
3194     }
3195    
3196     sub scroll_to_bottom {
3197     my ($self) = @_;
3198 root 1.105
3199 root 1.347 $self->{scroll_to} = $#{$self->{par}};
3200 root 1.310 $self->update;
3201 root 1.97 }
3202    
3203 root 1.345 sub force_uptodate {
3204 root 1.97 my ($self) = @_;
3205    
3206 root 1.345 if (delete $self->{need_reflow}) {
3207     my ($W, $H) = @{$self->{children}[0]}{qw(w h)};
3208    
3209     my $height = 0;
3210    
3211     for my $para (@{$self->{par}}) {
3212     if ($para->{w} != $W && ($para->{wrapped} || $para->{w} > $W)) {
3213     my $layout = $self->get_layout ($para);
3214     my ($w, $h) = $layout->size;
3215    
3216     $para->{w} = $w + $para->{indent};
3217     $para->{h} = $h;
3218     $para->{wrapped} = $layout->has_wrapped;
3219     }
3220    
3221     $para->{y} = $height;
3222     $height += $para->{h};
3223     }
3224 root 1.105
3225 root 1.345 $self->{height} = $height;
3226     $self->{children}[1]->set_range ([$self->{children}[1]{range}[0], 0, $height, $H, 1]);
3227 root 1.228
3228 root 1.345 delete $self->{texture};
3229     }
3230 root 1.107
3231 root 1.347 if (my $paridx = delete $self->{scroll_to}) {
3232     $self->{children}[1]->set_value ($self->{par}[$paridx]{y});
3233 root 1.345 }
3234     }
3235 root 1.228
3236 root 1.345 sub update {
3237     my ($self) = @_;
3238 root 1.228
3239 root 1.345 $self->SUPER::update;
3240 root 1.107
3241 root 1.345 return unless $self->{h} > 0;
3242 root 1.107
3243 root 1.345 delete $self->{texture};
3244 root 1.295
3245 root 1.345 $ROOT->on_post_alloc ($self => sub {
3246     $self->force_uptodate;
3247 root 1.107
3248 root 1.345 my ($W, $H) = @{$self->{children}[0]}{qw(w h)};
3249 root 1.310
3250 root 1.340 $self->{texture} ||= new_from_opengl CFPlus::Texture $W, $H, sub {
3251 root 1.279 glClearColor 0, 0, 0, 0;
3252 root 1.107 glClear GL_COLOR_BUFFER_BIT;
3253    
3254 root 1.352 package CFPlus::UI::Base;
3255     local ($draw_x, $draw_y, $draw_w, $draw_h) =
3256     (0, 0, $self->{w}, $self->{h});
3257 root 1.351
3258 root 1.107 my $top = int $self->{children}[1]{range}[0];
3259 root 1.105
3260 root 1.347 my $paridx = 0;
3261     my $top_paragraph;
3262     my $top = int $self->{children}[1]{range}[0];
3263    
3264 root 1.107 my $y0 = $top;
3265 root 1.228 my $y1 = $top + $H;
3266 root 1.105
3267 root 1.310 for my $para (@{$self->{par}}) {
3268     my $h = $para->{h};
3269 root 1.345 my $y = $para->{y};
3270 root 1.97
3271 root 1.107 if ($y0 < $y + $h && $y < $y1) {
3272 root 1.310 my $layout = $self->get_layout ($para);
3273 root 1.220
3274 root 1.320 $layout->render ($para->{indent}, $y - $y0);
3275 root 1.310
3276     if (my @w = @{ $para->{widget} }) {
3277     my @s = $layout->get_shapes;
3278    
3279     for (@w) {
3280     my ($dx, $dy) = splice @s, 0, 2, ();
3281    
3282     $_->{x} = $dx + $para->{indent};
3283     $_->{y} = $dy + $y - $y0;
3284    
3285     $_->draw;
3286     }
3287     }
3288 root 1.107 }
3289 root 1.347
3290     $paridx++;
3291     $top_paragraph ||= $paridx if $y >= $top;
3292 root 1.105 }
3293 root 1.347
3294     $self->{top_paragraph} = $top_paragraph;
3295 root 1.107 };
3296     });
3297 root 1.105 }
3298 root 1.97
3299 root 1.310 sub reconfigure {
3300     my ($self) = @_;
3301    
3302     $self->SUPER::reconfigure;
3303    
3304     $_->{w} = 1e10 for @{ $self->{par} };
3305     $self->reflow;
3306     }
3307    
3308 root 1.105 sub _draw {
3309     my ($self) = @_;
3310 root 1.97
3311 root 1.176 glEnable GL_TEXTURE_2D;
3312     glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
3313 root 1.279 glColor 0, 0, 0, 1;
3314     $self->{texture}->draw_quad_alpha_premultiplied (0, 0, $self->{children}[0]{w}, $self->{children}[0]{h});
3315 root 1.176 glDisable GL_TEXTURE_2D;
3316 root 1.97
3317 root 1.106 $self->{children}[1]->draw;
3318 root 1.97 }
3319    
3320     #############################################################################
3321    
3322 root 1.340 package CFPlus::UI::Animator;
3323 root 1.35
3324 root 1.340 use CFPlus::OpenGL;
3325 root 1.35
3326 root 1.340 our @ISA = CFPlus::UI::Bin::;
3327 root 1.35
3328     sub moveto {
3329     my ($self, $x, $y) = @_;
3330    
3331     $self->{moveto} = [$self->{x}, $self->{y}, $x, $y];
3332 root 1.56 $self->{speed} = 0.001;
3333 root 1.35 $self->{time} = 1;
3334    
3335     ::animation_start $self;
3336     }
3337    
3338     sub animate {
3339     my ($self, $interval) = @_;
3340    
3341     $self->{time} -= $interval * $self->{speed};
3342     if ($self->{time} <= 0) {
3343     $self->{time} = 0;
3344     ::animation_stop $self;
3345     }
3346    
3347     my ($x0, $y0, $x1, $y1) = @{$self->{moveto}};
3348    
3349     $self->{x} = $x0 * $self->{time} + $x1 * (1 - $self->{time});
3350     $self->{y} = $y0 * $self->{time} + $y1 * (1 - $self->{time});
3351     }
3352    
3353     sub _draw {
3354     my ($self) = @_;
3355    
3356     glPushMatrix;
3357 root 1.51 glRotate $self->{time} * 1000, 0, 1, 0;
3358 root 1.38 $self->{children}[0]->draw;
3359 root 1.35 glPopMatrix;
3360     }
3361    
3362 root 1.51 #############################################################################
3363    
3364 root 1.340 package CFPlus::UI::Flopper;
3365 root 1.96
3366 root 1.340 our @ISA = CFPlus::UI::Button::;
3367 root 1.96
3368     sub new {
3369     my $class = shift;
3370    
3371     my $self = $class->SUPER::new (
3372 root 1.243 state => 0,
3373     on_activate => \&toggle_flopper,
3374 root 1.96 @_
3375     );
3376    
3377     $self
3378     }
3379    
3380     sub toggle_flopper {
3381     my ($self) = @_;
3382    
3383 elmex 1.245 $self->{other}->toggle_visibility;
3384 root 1.96 }
3385    
3386     #############################################################################
3387    
3388 root 1.340 package CFPlus::UI::Tooltip;
3389 root 1.153
3390 root 1.340 our @ISA = CFPlus::UI::Bin::;
3391 root 1.153
3392 root 1.340 use CFPlus::OpenGL;
3393 root 1.153
3394     sub new {
3395     my $class = shift;
3396    
3397     $class->SUPER::new (
3398     @_,
3399     can_events => 0,
3400     )
3401     }
3402    
3403 root 1.196 sub set_tooltip_from {
3404     my ($self, $widget) = @_;
3405 root 1.195
3406 root 1.342 $widget->{tooltip} = CFPlus::Pod::section_label tooltip => $1
3407 root 1.341 if $widget->{tooltip} =~ /^#(.*)$/;
3408    
3409 root 1.259 my $tooltip = $widget->{tooltip};
3410    
3411     if ($ENV{CFPLUS_DEBUG} & 2) {
3412     $tooltip .= "\n\n" . (ref $widget) . "\n"
3413     . "$widget->{x} $widget->{y} $widget->{w} $widget->{h}\n"
3414     . "req $widget->{req_w} $widget->{req_h}\n"
3415     . "visible $widget->{visible}";
3416     }
3417    
3418 root 1.298 $tooltip =~ s/^\n+//;
3419     $tooltip =~ s/\n+$//;
3420    
3421 root 1.340 $self->add (new CFPlus::UI::Label
3422 root 1.259 markup => $tooltip,
3423 root 1.213 max_w => ($widget->{tooltip_width} || 0.25) * $::WIDTH,
3424     fontsize => 0.8,
3425 root 1.343 style => 1, # FLAG_INVERSE
3426 root 1.213 ellipsise => 0,
3427     font => ($widget->{tooltip_font} || $::FONT_PROP),
3428 root 1.197 );
3429 root 1.153 }
3430    
3431     sub size_request {
3432     my ($self) = @_;
3433    
3434     my ($w, $h) = @{$self->child}{qw(req_w req_h)};
3435    
3436 root 1.154 ($w + 4, $h + 4)
3437     }
3438    
3439 root 1.305 sub invoke_size_allocate {
3440 root 1.259 my ($self, $w, $h) = @_;
3441 root 1.162
3442 root 1.305 $self->SUPER::invoke_size_allocate ($w - 4, $h - 4)
3443 root 1.162 }
3444    
3445 root 1.305 sub invoke_visibility_change {
3446 root 1.253 my ($self, $visible) = @_;
3447    
3448     return unless $visible;
3449    
3450     $self->{root}->on_post_alloc ("move_$self" => sub {
3451 root 1.254 my $widget = $self->{owner}
3452     or return;
3453 root 1.253
3454 root 1.332 if ($widget->{visible}) {
3455     my ($x, $y) = $widget->coord2global ($widget->{w}, 0);
3456 root 1.253
3457 root 1.332 ($x, $y) = $widget->coord2global (-$self->{w}, 0)
3458     if $x + $self->{w} > $self->{root}{w};
3459 root 1.253
3460 root 1.332 $self->move_abs ($x, $y);
3461     } else {
3462     $self->hide;
3463     }
3464 root 1.253 });
3465     }
3466    
3467 root 1.154 sub _draw {
3468     my ($self) = @_;
3469    
3470     glTranslate 0.375, 0.375;
3471    
3472     my ($w, $h) = @$self{qw(w h)};
3473    
3474     glColor 1, 0.8, 0.4;
3475     glBegin GL_QUADS;
3476     glVertex 0 , 0;
3477     glVertex 0 , $h;
3478     glVertex $w, $h;
3479     glVertex $w, 0;
3480     glEnd;
3481    
3482     glColor 0, 0, 0;
3483     glBegin GL_LINE_LOOP;
3484     glVertex 0 , 0;
3485     glVertex 0 , $h;
3486     glVertex $w, $h;
3487     glVertex $w, 0;
3488     glEnd;
3489    
3490 root 1.197 glTranslate 2 - 0.375, 2 - 0.375;
3491 root 1.252
3492 root 1.154 $self->SUPER::_draw;
3493 root 1.153 }
3494    
3495     #############################################################################
3496    
3497 root 1.340 package CFPlus::UI::Face;
3498 root 1.162
3499 root 1.340 our @ISA = CFPlus::UI::DrawBG::;
3500 root 1.162
3501 root 1.340 use CFPlus::OpenGL;
3502 root 1.162
3503     sub new {
3504     my $class = shift;
3505    
3506 root 1.217 my $self = $class->SUPER::new (
3507 root 1.373 size_w => 32,
3508     size_h => 8,
3509 root 1.234 aspect => 1,
3510     can_events => 0,
3511 root 1.162 @_,
3512 root 1.217 );
3513    
3514     if ($self->{anim} && $self->{animspeed}) {
3515 root 1.362 CFPlus::weaken (my $widget = $self);
3516 root 1.217
3517 root 1.379 $widget->{animspeed} = List::Util::max 0.05, $widget->{animspeed};
3518     $widget->{anim_start} = $self->{animspeed} * Event::time / $self->{animspeed};
3519 root 1.217 $self->{timer} = Event->timer (
3520 root 1.379 parked => 1,
3521 root 1.217 cb => sub {
3522 root 1.380 return unless $::CONN && $widget;
3523 root 1.379
3524 root 1.217 ++$widget->{frame};
3525 root 1.379 $widget->update_face;
3526     $widget->update;
3527    
3528     $widget->update_timer;
3529 root 1.217 },
3530     );
3531 root 1.373
3532     $self->update_face;
3533 root 1.379 $self->update_timer;
3534 root 1.217 }
3535    
3536     $self
3537 root 1.162 }
3538    
3539 root 1.379 sub update_timer {
3540     my ($self) = @_;
3541    
3542     return unless $self->{timer};
3543    
3544     if ($self->{visible}) {
3545     $self->{timer}->at (
3546     $self->{anim_start}
3547     + $self->{animspeed}
3548     * int 1.5 + (Event::time - $self->{anim_start}) / $self->{animspeed}
3549     );
3550     $self->{timer}->start;
3551     } else {
3552     $self->{timer}->stop;
3553     }
3554     }
3555    
3556 root 1.373 sub update_face {
3557     my ($self) = @_;
3558    
3559     return unless $::CONN;
3560    
3561     if (my $anim = $::CONN->{anim}[$self->{anim}]) {
3562     if ($anim && @$anim) {
3563     delete $self->{wait_face};
3564     $self->{face} = $anim->[ $self->{frame} % @$anim ];
3565     }
3566     }
3567     }
3568    
3569 root 1.162 sub size_request {
3570 root 1.373 my ($self) = @_;
3571    
3572     if ($::CONN) {
3573     if (my $faceid = $::CONN->{faceid}[$self->{face}]) {
3574     if (my $tex = $::CONN->{texture}[$faceid]) {
3575     return ($self->{size_w} || $tex->{w}, $self->{size_h} || $tex->{h});
3576     } else {
3577     $self->{wait_face} ||= $::CONN->connect_face_update ($faceid, sub {
3578     $self->realloc;
3579     });
3580     }
3581     }
3582     }
3583    
3584     ($self->{size_w} || 8, $self->{size_h} || 8)
3585 root 1.162 }
3586    
3587 root 1.222 sub update {
3588     my ($self) = @_;
3589    
3590     return unless $self->{visible};
3591    
3592     $self->SUPER::update;
3593     }
3594    
3595 root 1.379 sub invoke_visibility_change {
3596     my ($self) = @_;
3597    
3598     $self->update_timer;
3599    
3600     0
3601     }
3602    
3603 elmex 1.179 sub _draw {
3604 root 1.162 my ($self) = @_;
3605    
3606 root 1.227 return unless $::CONN;
3607 root 1.162
3608 root 1.337 $self->SUPER::_draw;
3609    
3610 root 1.373 my $faceid = $::CONN->{faceid}[$self->{face}]
3611 root 1.371 or return;
3612 root 1.217
3613 root 1.371 my $tex = $::CONN->{texture}[$faceid];
3614 root 1.217
3615 root 1.162 if ($tex) {
3616     glEnable GL_TEXTURE_2D;
3617     glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE;
3618 root 1.279 glColor 0, 0, 0, 1;
3619 root 1.195 $tex->draw_quad_alpha (0, 0, $self->{w}, $self->{h});
3620 root 1.162 glDisable GL_TEXTURE_2D;
3621     }
3622     }
3623    
3624 root 1.302 sub destroy {
3625 root 1.217 my ($self) = @_;
3626    
3627 root 1.379 (delete $self->{timer})->cancel
3628 root 1.217 if $self->{timer};
3629    
3630 root 1.302 $self->SUPER::destroy;
3631 root 1.217 }
3632    
3633 root 1.162 #############################################################################
3634    
3635 root 1.340 package CFPlus::UI::Buttonbar;
3636 root 1.272
3637 root 1.340 our @ISA = CFPlus::UI::HBox::;
3638 root 1.272
3639 root 1.353 # TODO: should actually wrap buttons and other goodies.
3640 root 1.272
3641     #############################################################################
3642    
3643 root 1.340 package CFPlus::UI::Menu;
3644 root 1.178
3645 root 1.346 our @ISA = CFPlus::UI::Toplevel::;
3646 root 1.178
3647 root 1.340 use CFPlus::OpenGL;
3648 root 1.178
3649     sub new {
3650     my $class = shift;
3651    
3652     my $self = $class->SUPER::new (
3653     items => [],
3654     z => 100,
3655     @_,
3656     );
3657    
3658 root 1.340 $self->add ($self->{vbox} = new CFPlus::UI::VBox);
3659 root 1.178
3660     for my $item (@{ $self->{items} }) {
3661 root 1.291 my ($widget, $cb, $tooltip) = @$item;
3662 root 1.178
3663     # handle various types of items, only text for now
3664     if (!ref $widget) {
3665 root 1.322 if ($widget =~ /\t/) {
3666     my ($left, $right) = split /\t/, $widget, 2;
3667    
3668 root 1.340 $widget = new CFPlus::UI::HBox
3669 root 1.322 can_hover => 1,
3670     can_events => 1,
3671     tooltip => $tooltip,
3672     children => [
3673 root 1.340 (new CFPlus::UI::Label markup => $left, expand => 1),
3674     (new CFPlus::UI::Label markup => $right, align => +1),
3675 root 1.322 ],
3676     ;
3677    
3678     } else {
3679 root 1.340 $widget = new CFPlus::UI::Label
3680 root 1.322 can_hover => 1,
3681     can_events => 1,
3682     markup => $widget,
3683     tooltip => $tooltip;
3684     }
3685 root 1.178 }
3686    
3687     $self->{item}{$widget} = $item;
3688    
3689     $self->{vbox}->add ($widget);
3690     }
3691    
3692     $self
3693     }
3694    
3695     # popup given the event (must be a mouse button down event currently)
3696     sub popup {
3697     my ($self, $ev) = @_;
3698    
3699 root 1.305 $self->emit ("popdown");
3700 root 1.178
3701     # maybe save $GRAB? must be careful about events...
3702     $GRAB = $self;
3703     $self->{button} = $ev->{button};
3704    
3705     $self->show;
3706 root 1.258 $self->move_abs ($ev->{x} - $self->{w} * 0.5, $ev->{y} - $self->{h} * 0.5);
3707 root 1.178 }
3708    
3709 root 1.305 sub invoke_mouse_motion {
3710 root 1.178 my ($self, $ev, $x, $y) = @_;
3711    
3712 root 1.182 # TODO: should use vbox->find_widget or so
3713 root 1.178 $HOVER = $ROOT->find_widget ($ev->{x}, $ev->{y});
3714     $self->{hover} = $self->{item}{$HOVER};
3715 root 1.271
3716     0
3717 root 1.178 }
3718    
3719 root 1.305 sub invoke_button_up {
3720 root 1.178 my ($self, $ev, $x, $y) = @_;
3721    
3722     if ($ev->{button} == $self->{button}) {
3723     undef $GRAB;
3724     $self->hide;
3725    
3726 root 1.305 $self->emit ("popdown");
3727 root 1.178 $self->{hover}[1]->() if $self->{hover};
3728 root 1.271 } else {
3729     return 0
3730 root 1.178 }
3731 root 1.271
3732     1
3733 root 1.178 }
3734    
3735     #############################################################################
3736    
3737 root 1.340 package CFPlus::UI::Multiplexer;
3738 root 1.272
3739 root 1.340 our @ISA = CFPlus::UI::Container::;
3740 root 1.272
3741     sub new {
3742     my $class = shift;
3743    
3744     my $self = $class->SUPER::new (
3745     @_,
3746     );
3747    
3748     $self->{current} = $self->{children}[0]
3749     if @{ $self->{children} };
3750    
3751     $self
3752     }
3753    
3754     sub add {
3755     my ($self, @widgets) = @_;
3756    
3757     $self->SUPER::add (@widgets);
3758    
3759     $self->{current} = $self->{children}[0]
3760     if @{ $self->{children} };
3761     }
3762    
3763 root 1.319 sub get_current_page {
3764     my ($self) = @_;
3765    
3766     $self->{current}
3767     }
3768    
3769 root 1.272 sub set_current_page {
3770     my ($self, $page_or_widget) = @_;
3771    
3772     my $widget = ref $page_or_widget
3773     ? $page_or_widget
3774     : $self->{children}[$page_or_widget];
3775    
3776     $self->{current} = $widget;
3777     $self->{current}->configure (0, 0, $self->{w}, $self->{h});
3778    
3779 root 1.305 $self->emit (page_changed => $self->{current});
3780 root 1.272
3781     $self->realloc;
3782     }
3783    
3784     sub visible_children {
3785     $_[0]{current}
3786     }
3787    
3788     sub size_request {
3789     my ($self) = @_;
3790    
3791     $self->{current}->size_request
3792     }
3793    
3794 root 1.305 sub invoke_size_allocate {
3795 root 1.272 my ($self, $w, $h) = @_;
3796    
3797     $self->{current}->configure (0, 0, $w, $h);
3798 root 1.305
3799     1
3800 root 1.272 }
3801    
3802     sub _draw {
3803     my ($self) = @_;
3804    
3805     $self->{current}->draw;
3806     }
3807    
3808     #############################################################################
3809    
3810 root 1.340 package CFPlus::UI::Notebook;
3811 root 1.272
3812 root 1.340 our @ISA = CFPlus::UI::VBox::;
3813 root 1.272
3814     sub new {
3815     my $class = shift;
3816    
3817     my $self = $class->SUPER::new (
3818 root 1.340 buttonbar => (new CFPlus::UI::Buttonbar),
3819     multiplexer => (new CFPlus::UI::Multiplexer expand => 1),
3820 root 1.273 # filter => # will be put between multiplexer and $self
3821 root 1.272 @_,
3822     );
3823 root 1.273
3824     $self->{filter}->add ($self->{multiplexer}) if $self->{filter};
3825     $self->SUPER::add ($self->{buttonbar}, $self->{filter} || $self->{multiplexer});
3826 root 1.272
3827     $self
3828     }
3829    
3830     sub add {
3831     my ($self, $title, $widget, $tooltip) = @_;
3832    
3833 root 1.362 CFPlus::weaken $self;
3834 root 1.272
3835 root 1.340 $self->{buttonbar}->add (new CFPlus::UI::Button
3836 root 1.272 markup => $title,
3837     tooltip => $tooltip,
3838     on_activate => sub { $self->set_current_page ($widget) },
3839     );
3840    
3841     $self->{multiplexer}->add ($widget);
3842     }
3843    
3844 root 1.319 sub get_current_page {
3845     my ($self) = @_;
3846    
3847     $self->{multiplexer}->get_current_page
3848     }
3849    
3850 root 1.272 sub set_current_page {
3851     my ($self, $page) = @_;
3852    
3853     $self->{multiplexer}->set_current_page ($page);
3854 root 1.305 $self->emit (page_changed => $self->{multiplexer}{current});
3855 root 1.272 }
3856    
3857     #############################################################################
3858    
3859 root 1.340 package CFPlus::UI::Selector;
3860 root 1.291
3861     use utf8;
3862    
3863 root 1.340 our @ISA = CFPlus::UI::Button::;
3864 root 1.291
3865     sub new {
3866     my $class = shift;
3867    
3868     my $self = $class->SUPER::new (
3869 root 1.297 options => [], # [value, title, longdesc], ...
3870 root 1.291 value => undef,
3871     @_,
3872     );
3873    
3874     $self->_set_value ($self->{value});
3875    
3876     $self
3877     }
3878    
3879 root 1.305 sub invoke_button_down {
3880 root 1.291 my ($self, $ev) = @_;
3881    
3882     my @menu_items;
3883    
3884     for (@{ $self->{options} }) {
3885 root 1.297 my ($value, $title, $tooltip) = @$_;
3886 root 1.291
3887 root 1.297 push @menu_items, [$tooltip || $title, sub { $self->set_value ($value) }];
3888 root 1.291 }
3889    
3890 root 1.340 CFPlus::UI::Menu->new (items => \@menu_items)->popup ($ev);
3891 root 1.291 }
3892    
3893     sub _set_value {
3894     my ($self, $value) = @_;
3895    
3896 root 1.297 my ($item) = grep $_->[0] eq $value, @{ $self->{options} }
3897 root 1.291 or return;
3898    
3899 root 1.297 $self->{value} = $item->[0];
3900     $self->set_markup ("$item->[1] ⇓");
3901 root 1.291 $self->set_tooltip ($item->[2]);
3902     }
3903    
3904     sub set_value {
3905     my ($self, $value) = @_;
3906    
3907     return unless $self->{value} ne $value;
3908    
3909     $self->_set_value ($value);
3910 root 1.305 $self->emit (changed => $value);
3911 root 1.291 }
3912    
3913     #############################################################################
3914    
3915 root 1.340 package CFPlus::UI::Statusbox;
3916 root 1.194
3917 root 1.340 our @ISA = CFPlus::UI::VBox::;
3918 root 1.194
3919 root 1.210 sub new {
3920     my $class = shift;
3921    
3922 root 1.280 my $self = $class->SUPER::new (
3923 root 1.210 fontsize => 0.8,
3924     @_,
3925 root 1.280 );
3926    
3927 root 1.362 CFPlus::weaken (my $this = $self);
3928 root 1.280
3929 root 1.281 $self->{timer} = Event->timer (after => 1, interval => 1, cb => sub { $this->reorder });
3930 root 1.280
3931     $self
3932 root 1.210 }
3933    
3934 root 1.194 sub reorder {
3935     my ($self) = @_;
3936 root 1.280 my $NOW = Time::HiRes::time;
3937 root 1.194
3938 root 1.281 # freeze display when hovering over any label
3939 root 1.340 return if $CFPlus::UI::TOOLTIP->{owner}
3940     && grep $CFPlus::UI::TOOLTIP->{owner} == $_->{label},
3941 root 1.281 values %{ $self->{item} };
3942    
3943 root 1.194 while (my ($k, $v) = each %{ $self->{item} }) {
3944     delete $self->{item}{$k} if $v->{timeout} < $NOW;
3945     }
3946    
3947     my @widgets;
3948 root 1.197
3949     my @items = sort {
3950     $a->{pri} <=> $b->{pri}
3951     or $b->{id} <=> $a->{id}
3952     } values %{ $self->{item} };
3953    
3954 root 1.280 $self->{timer}->interval (1);
3955    
3956 root 1.194 my $count = 10 + 1;
3957     for my $item (@items) {
3958     last unless --$count;
3959    
3960 root 1.281 my $label = $item->{label} ||= do {
3961 root 1.194 # TODO: doesn't handle markup well (read as: at all)
3962 root 1.197 my $short = $item->{count} > 1
3963     ? "<b>$item->{count} ×</b> $item->{text}"
3964     : $item->{text};
3965    
3966 root 1.194 for ($short) {
3967     s/^\s+//;
3968 root 1.205 s/\s+/ /g;
3969 root 1.194 }
3970    
3971 root 1.340 new CFPlus::UI::Label
3972 root 1.196 markup => $short,
3973 root 1.197 tooltip => $item->{tooltip},
3974 root 1.196 tooltip_font => $::FONT_PROP,
3975 root 1.197 tooltip_width => 0.67,
3976 root 1.213 fontsize => $item->{fontsize} || $self->{fontsize},
3977     max_w => $::WIDTH * 0.44,
3978 root 1.281 fg => [@{ $item->{fg} }],
3979 root 1.196 can_events => 1,
3980 root 1.197 can_hover => 1
3981 root 1.194 };
3982 root 1.280
3983     if ((my $diff = $item->{timeout} - $NOW) < 2) {
3984 root 1.281 $label->{fg}[3] = ($item->{fg}[3] || 1) * $diff / 2;
3985     $label->update;
3986     $label->set_max_size (undef, $label->{req_h} * $diff)
3987     if $diff < 1;
3988 root 1.280 $self->{timer}->interval (1/30);
3989 root 1.281 } else {
3990     $label->{fg}[3] = $item->{fg}[3] || 1;
3991 root 1.280 }
3992 root 1.281
3993     push @widgets, $label;
3994 root 1.194 }
3995    
3996     $self->clear;
3997 root 1.197 $self->SUPER::add (reverse @widgets);
3998 root 1.194 }
3999    
4000     sub add {
4001     my ($self, $text, %arg) = @_;
4002    
4003 root 1.198 $text =~ s/^\s+//;
4004     $text =~ s/\s+$//;
4005    
4006 root 1.233 return unless $text;
4007    
4008 root 1.280 my $timeout = (int time) + ((delete $arg{timeout}) || 60);
4009 root 1.194
4010 root 1.197 my $group = exists $arg{group} ? $arg{group} : ++$self->{id};
4011 root 1.194
4012 root 1.197 if (my $item = $self->{item}{$group}) {
4013     if ($item->{text} eq $text) {
4014     $item->{count}++;
4015     } else {
4016     $item->{count} = 1;
4017     $item->{text} = $item->{tooltip} = $text;
4018     }
4019 root 1.300 $item->{id} += 0.2;#d#
4020 root 1.197 $item->{timeout} = $timeout;
4021     delete $item->{label};
4022     } else {
4023     $self->{item}{$group} = {
4024     id => ++$self->{id},
4025     text => $text,
4026     timeout => $timeout,
4027     tooltip => $text,
4028 root 1.205 fg => [0.8, 0.8, 0.8, 0.8],
4029 root 1.197 pri => 0,
4030     count => 1,
4031     %arg,
4032     };
4033     }
4034 root 1.194
4035 root 1.315 $ROOT->on_refresh (reorder => sub {
4036     $self->reorder;
4037     });
4038 root 1.194 }
4039    
4040 root 1.213 sub reconfigure {
4041     my ($self) = @_;
4042    
4043     delete $_->{label}
4044     for values %{ $self->{item} || {} };
4045    
4046     $self->reorder;
4047     $self->SUPER::reconfigure;
4048     }
4049    
4050 root 1.302 sub destroy {
4051 root 1.280 my ($self) = @_;
4052    
4053     $self->{timer}->cancel;
4054    
4055 root 1.302 $self->SUPER::destroy;
4056 root 1.280 }
4057    
4058 root 1.194 #############################################################################
4059    
4060 root 1.340 package CFPlus::UI::Root;
4061 root 1.265
4062 root 1.340 our @ISA = CFPlus::UI::Container::;
4063 elmex 1.260
4064 root 1.280 use List::Util qw(min max);
4065    
4066 root 1.340 use CFPlus::OpenGL;
4067 elmex 1.260
4068     sub new {
4069     my $class = shift;
4070    
4071 root 1.265 my $self = $class->SUPER::new (
4072     visible => 1,
4073     @_,
4074     );
4075    
4076 root 1.362 CFPlus::weaken ($self->{root} = $self);
4077 root 1.265
4078     $self
4079     }
4080    
4081     sub size_request {
4082     my ($self) = @_;
4083    
4084     ($self->{w}, $self->{h})
4085     }
4086 elmex 1.260
4087 root 1.265 sub _to_pixel {
4088     my ($coord, $size, $max) = @_;
4089 elmex 1.260
4090 root 1.265 $coord =
4091     $coord eq "center" ? ($max - $size) * 0.5
4092     : $coord eq "max" ? $max
4093     : $coord;
4094 elmex 1.260
4095 root 1.265 $coord = 0 if $coord < 0;
4096     $coord = $max - $size if $coord > $max - $size;
4097 elmex 1.260
4098 root 1.265 int $coord + 0.5
4099     }
4100 elmex 1.260
4101 root 1.305 sub invoke_size_allocate {
4102 root 1.265 my ($self, $w, $h) = @_;
4103 elmex 1.261
4104 root 1.265 for my $child ($self->children) {
4105     my ($X, $Y, $W, $H) = @$child{qw(x y req_w req_h)};
4106 elmex 1.260
4107 root 1.265 $X = $child->{force_x} if exists $child->{force_x};
4108     $Y = $child->{force_y} if exists $child->{force_y};
4109 elmex 1.260
4110 root 1.265 $X = _to_pixel $X, $W, $self->{w};
4111     $Y = _to_pixel $Y, $H, $self->{h};
4112 elmex 1.260
4113 root 1.265 $child->configure ($X, $Y, $W, $H);
4114     }
4115 root 1.305
4116     1
4117 elmex 1.260 }
4118    
4119 root 1.265 sub coord2local {
4120     my ($self, $x, $y) = @_;
4121    
4122     ($x, $y)
4123 elmex 1.260 }
4124    
4125 root 1.265 sub coord2global {
4126     my ($self, $x, $y) = @_;
4127 elmex 1.260
4128 root 1.265 ($x, $y)
4129 elmex 1.260 }
4130    
4131 root 1.265 sub update {
4132 elmex 1.260 my ($self) = @_;
4133    
4134 root 1.265 $::WANT_REFRESH++;
4135     }
4136 elmex 1.260
4137 root 1.265 sub add {
4138     my ($self, @children) = @_;
4139 elmex 1.260
4140 root 1.265 $_->{is_toplevel} = 1
4141     for @children;
4142 elmex 1.260
4143 root 1.265 $self->SUPER::add (@children);
4144 elmex 1.260 }
4145    
4146 root 1.265 sub remove {
4147     my ($self, @children) = @_;
4148    
4149     $self->SUPER::remove (@children);
4150 elmex 1.260
4151 root 1.265 delete $self->{is_toplevel}
4152     for @children;
4153 elmex 1.260
4154 root 1.265 while (@children) {
4155     my $w = pop @children;
4156     push @children, $w->children;
4157     $w->set_invisible;
4158     }
4159     }
4160 elmex 1.260
4161 root 1.265 sub on_refresh {
4162     my ($self, $id, $cb) = @_;
4163 elmex 1.260
4164 root 1.265 $self->{refresh_hook}{$id} = $cb;
4165 elmex 1.260 }
4166    
4167 root 1.265 sub on_post_alloc {
4168     my ($self, $id, $cb) = @_;
4169    
4170     $self->{post_alloc_hook}{$id} = $cb;
4171 elmex 1.262 }
4172    
4173 root 1.265 sub draw {
4174 elmex 1.260 my ($self) = @_;
4175    
4176 root 1.265 while ($self->{refresh_hook}) {
4177     $_->()
4178     for values %{delete $self->{refresh_hook}};
4179     }
4180    
4181     if ($self->{realloc}) {
4182 root 1.266 my %queue;
4183 root 1.265 my @queue;
4184 root 1.266 my $widget;
4185 root 1.265
4186 root 1.266 outer:
4187 root 1.265 while () {
4188 root 1.266 if (my $realloc = delete $self->{realloc}) {
4189     for $widget (values %$realloc) {
4190     $widget->{visible} or next; # do not resize invisible widgets
4191 root 1.265
4192 root 1.266 $queue{$widget+0}++ and next; # duplicates are common
4193 root 1.265
4194 root 1.266 push @{ $queue[$widget->{visible}] }, $widget;
4195     }
4196 root 1.265 }
4197    
4198 root 1.266 while () {
4199     @queue or last outer;
4200    
4201     $widget = pop @{ $queue[-1] || [] }
4202     and last;
4203    
4204     pop @queue;
4205     }
4206 root 1.265
4207 root 1.266 delete $queue{$widget+0};
4208 root 1.265
4209     my ($w, $h) = $widget->size_request;
4210    
4211 root 1.280 $w = max $widget->{min_w}, $w + $widget->{padding_x} * 2;
4212     $h = max $widget->{min_h}, $h + $widget->{padding_y} * 2;
4213    
4214     $w = min $widget->{max_w}, $w if exists $widget->{max_w};
4215     $h = min $widget->{max_h}, $h if exists $widget->{max_h};
4216 root 1.265
4217     $w = $widget->{force_w} if exists $widget->{force_w};
4218     $h = $widget->{force_h} if exists $widget->{force_h};
4219    
4220     if ($widget->{req_w} != $w || $widget->{req_h} != $h
4221     || delete $widget->{force_realloc}) {
4222     $widget->{req_w} = $w;
4223     $widget->{req_h} = $h;
4224    
4225     $self->{size_alloc}{$widget+0} = $widget;
4226    
4227     if (my $parent = $widget->{parent}) {
4228 root 1.266 $self->{realloc}{$parent+0} = $parent
4229     unless $queue{$parent+0};
4230    
4231 root 1.265 $parent->{force_size_alloc} = 1;
4232     $self->{size_alloc}{$parent+0} = $parent;
4233     }
4234     }
4235    
4236     delete $self->{realloc}{$widget+0};
4237     }
4238     }
4239 elmex 1.260
4240 root 1.265 while (my $size_alloc = delete $self->{size_alloc}) {
4241     my @queue = sort { $b->{visible} <=> $a->{visible} }
4242     values %$size_alloc;
4243 elmex 1.260
4244 root 1.265 while () {
4245     my $widget = pop @queue || last;
4246 elmex 1.260
4247 root 1.265 my ($w, $h) = @$widget{qw(alloc_w alloc_h)};
4248 elmex 1.260
4249 root 1.265 $w = 0 if $w < 0;
4250     $h = 0 if $h < 0;
4251 elmex 1.260
4252 root 1.326 $w = max $widget->{min_w}, $w;
4253     $h = max $widget->{min_h}, $h;
4254    
4255 root 1.337 # $w = min $self->{w} - $widget->{x}, $w if $self->{w};
4256     # $h = min $self->{h} - $widget->{y}, $h if $self->{h};
4257    
4258 root 1.326 $w = min $widget->{max_w}, $w if exists $widget->{max_w};
4259     $h = min $widget->{max_h}, $h if exists $widget->{max_h};
4260    
4261 root 1.265 $w = int $w + 0.5;
4262     $h = int $h + 0.5;
4263 elmex 1.260
4264 root 1.265 if ($widget->{w} != $w || $widget->{h} != $h || delete $widget->{force_size_alloc}) {
4265 root 1.266 $widget->{old_w} = $widget->{w};
4266     $widget->{old_h} = $widget->{h};
4267    
4268 root 1.265 $widget->{w} = $w;
4269     $widget->{h} = $h;
4270 elmex 1.260
4271 root 1.265 $widget->emit (size_allocate => $w, $h);
4272     }
4273     }
4274     }
4275 elmex 1.260
4276 root 1.265 while ($self->{post_alloc_hook}) {
4277     $_->()
4278     for values %{delete $self->{post_alloc_hook}};
4279 elmex 1.260 }
4280 root 1.265
4281     glViewport 0, 0, $::WIDTH, $::HEIGHT;
4282     glClearColor +($::CFG->{fow_intensity}) x 3, 1;
4283     glClear GL_COLOR_BUFFER_BIT;
4284    
4285     glMatrixMode GL_PROJECTION;
4286     glLoadIdentity;
4287     glOrtho 0, $::WIDTH, $::HEIGHT, 0, -10000, 10000;
4288     glMatrixMode GL_MODELVIEW;
4289     glLoadIdentity;
4290    
4291 root 1.267 {
4292 root 1.340 package CFPlus::UI::Base;
4293 root 1.267
4294 root 1.351 local ($draw_x, $draw_y, $draw_w, $draw_h) =
4295 root 1.267 (0, 0, $self->{w}, $self->{h});
4296 root 1.352
4297     $self->_draw;
4298 root 1.267 }
4299 elmex 1.260 }
4300    
4301 elmex 1.262 #############################################################################
4302    
4303 root 1.340 package CFPlus::UI;
4304 root 1.51
4305 root 1.340 $ROOT = new CFPlus::UI::Root;
4306     $TOOLTIP = new CFPlus::UI::Tooltip z => 900;
4307 root 1.51
4308     1
4309 root 1.5